forked from axelarnetwork/axelar-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
52 lines (41 loc) · 2.07 KB
/
index.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
46
47
48
49
50
51
52
'use strict';
const { getDefaultProvider, Contract } = require('ethers');
const Gateway = rootRequire(
'./artifacts/@axelar-network/axelar-gmp-sdk-solidity/contracts/interfaces/IAxelarGateway.sol/IAxelarGateway.json',
);
const IERC20 = rootRequire('./artifacts/@axelar-network/axelar-gmp-sdk-solidity/contracts/interfaces/IERC20.sol/IERC20.json');
async function execute(chains, wallet, options = {}) {
const args = options.args || [];
const source = chains.find((chain) => chain.name == (args[0] || 'Avalanche'));
const destination = chains.find((chain) => chain.name == (args[1] || 'Fantom'));
const amount = args[2] || 10e6;
const destinationAddress = args[3] || wallet.address;
const symbol = 'aUSDC';
for (const chain of [source, destination]) {
const provider = getDefaultProvider(chain.rpc);
chain.wallet = wallet.connect(provider);
chain.contract = new Contract(chain.gateway.address, Gateway.abi, chain.wallet);
const tokenAddress = await chain.contract.tokenAddresses(symbol);
chain.token = new Contract(tokenAddress, IERC20.abi, chain.wallet);
}
async function print() {
console.log(`Balance of ${wallet.address} at ${source.name} is ${await source.token.balanceOf(wallet.address)}`);
console.log(`Balance of ${destinationAddress} at ${destination.name} is ${await destination.token.balanceOf(destinationAddress)}`);
}
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
const balance = await destination.token.balanceOf(destinationAddress);
console.log('--- Initially ---');
await print();
await (await source.token.approve(source.gateway.address, amount)).wait();
await (await source.contract.sendToken(destination.name, destinationAddress, symbol, amount)).wait();
while (true) {
const newBalance = await destination.token.balanceOf(destinationAddress);
if (BigInt(balance) != BigInt(newBalance)) break;
await sleep(2000);
}
console.log('--- After ---');
await print();
}
module.exports = {
execute,
};