-
Notifications
You must be signed in to change notification settings - Fork 4
/
tdt_to_keep.js
48 lines (36 loc) · 2.04 KB
/
tdt_to_keep.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const ethers = require('ethers');
const BondedECDSAKeepFactory = require("@keep-network/keep-ecdsa/artifacts/BondedECDSAKeepFactory.json")
const BondedECDSAKeep = require("@keep-network/keep-ecdsa/artifacts/BondedECDSAKeep.json")
const TBTCSystem = require("@keep-network/tbtc/artifacts/TBTCSystem.json")
const TBTCDepositToken = require("@keep-network/tbtc/artifacts/TBTCDepositToken.json");
const DepositLog = require("@keep-network/tbtc/artifacts/DepositLog.json");
const Deposit = require("@keep-network/tbtc/artifacts/Deposit.json");
if (process.argv.length < 3 || !process.argv[2]) {
console.error('node tdt_to_keep.js [tdt]');
process.exit(1);
}
const states = require('./states')
async function main() {
try {
const ip = new ethers.providers.InfuraProvider('homestead', process.env.INFURA_API);
const dAddr = process.argv[2].toLowerCase();
//const keepFactory = new ethers.Contract(TBTCSystem.networks["1"].address, BondedECDSAKeepFactory.abi, ip);
const ecdsaKFContract = new ethers.Contract(BondedECDSAKeepFactory.networks["1"].address, BondedECDSAKeepFactory.abi, ip);
const tbtcSysContract = new ethers.Contract(TBTCSystem.networks["1"].address, TBTCSystem.abi, ip);
const tdtContract = new ethers.Contract(TBTCDepositToken.networks["1"].address, TBTCDepositToken.abi, ip);
const depositLogContract = new ethers.Contract(TBTCSystem.networks["1"].address, DepositLog.abi, ip);
const d = new ethers.Contract(dAddr, Deposit.abi, ip);
const k = new ethers.Contract(await d.keepAddress(), BondedECDSAKeep.abi, ip);
const depositState = states[await d.currentState()];
//const keepActive = (await k.isActive()) ? "active" : "inactive";
//const depositActive = (await d.inActive()) ? "active" : "inactive";
console.log(`TDT ${d.address} (${ethers.utils.formatEther(await d.lotSizeTbtc())} tBTC) with state: ${depositState} in custody of ${k.address}`);
console.log(`Members: ${await k.getMembers()}`)
} catch(err) {
console.error(`Could not authorize: ${err.message}`)
process.exit(1)
}
}
main().catch(err => {
console.error(err);
})