50 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-02-07 18:39:56 -06:00
/*
* Copyright 2022 Fluence Labs Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { setLogLevel, Fluence } from "@fluencelabs/fluence";
import { krasnodar } from "@fluencelabs/fluence-network-environment";
import { collect_timestamps_from_neighborhood } from "./_aqua/timestamp_gatherer";
2022-02-07 18:39:56 -06:00
async function main() {
2022-04-04 18:13:41 +04:00
if (process.env.DEBUG === 'true') {
setLogLevel("DEBUG");
}
2022-02-07 18:39:56 -06:00
// Connect to the address specified by environment variable RELAY or use krasnodar[5] if not set
let relay = process.env.RELAY || krasnodar[5];
await Fluence.start({ connectTo: relay });
2022-02-07 18:39:56 -06:00
console.log(
"Created a fluence client with peer id %s and relay id %s",
Fluence.getStatus().peerId,
Fluence.getStatus().relayPeerId
);
2022-02-07 18:41:06 -06:00
// call the simple getter
const [timestamps, dead_peers] = await collect_timestamps_from_neighborhood();
console.log("timestamps: %s", timestamps);
console.log("dead peers: %s ", dead_peers);
2022-02-07 18:39:56 -06:00
await Fluence.stop();
}
main()
.then(() => process.exit(0))
.catch((error) => {
console.error(error);
process.exit(1);
});