-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathexec.js
80 lines (69 loc) · 2.92 KB
/
exec.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const { utils, providers, Wallet } = require('ethers');
const { getArbitrumNetwork, EthBridger } = require('@arbitrum/sdk');
const {
arbLog,
requireEnvVariables,
addCustomNetworkFromFile,
} = require('arb-shared-dependencies');
require('dotenv').config();
requireEnvVariables(['PRIVATE_KEY', 'CHAIN_RPC', 'PARENT_CHAIN_RPC']);
/**
* Set up: instantiate wallets connected to providers
*/
const walletPrivateKey = process.env.PRIVATE_KEY;
const childChainProvider = new providers.JsonRpcProvider(process.env.CHAIN_RPC);
const childChainWallet = new Wallet(walletPrivateKey, childChainProvider);
/**
* Set the amount to be withdrawn from the child chain (in wei)
*/
const withdrawAmount = utils.parseEther('0.000001');
const main = async () => {
await arbLog('Withdraw Eth via Arbitrum SDK');
/**
* Add the custom network configuration to the SDK if present
*/
addCustomNetworkFromFile();
/**
* Use childChainNetwork to create an Arbitrum SDK EthBridger instance
* We'll use EthBridger for its convenience methods around transferring the native asset to the parent chain
*/
const childChainNetwork = await getArbitrumNetwork(childChainProvider);
const ethBridger = new EthBridger(childChainNetwork);
/**
* First, let's check our wallet's initial balance in the child chain and ensure there's some native asset to withdraw
*/
const initialEthBalance = await childChainWallet.getBalance();
if (initialEthBalance.lt(withdrawAmount)) {
throw new Error(
`Oops - not enough balance; fund your wallet on the child chain ${childChainWallet.address} with at least 0.000001 ether (or your chain's gas token)`,
);
}
console.log('Wallet properly funded: initiating withdrawal now');
/**
* We're ready to withdraw the native asset using the ethBridger instance from Arbitrum SDK
* It will use our current wallet's address as the default destination
*/
const withdrawTransaction = await ethBridger.withdraw({
amount: withdrawAmount,
childSigner: childChainWallet,
destinationAddress: childChainWallet.address,
});
const withdrawTransactionReceipt = await withdrawTransaction.wait();
/**
* And with that, our withdrawal is initiated! No additional time-sensitive actions are required.
* Any time after the transaction's assertion is confirmed, funds can be transferred out of the bridge via the outbox contract
* We'll display the withdrawals event data here:
*/
console.log(`Ether withdrawal initiated! 🥳 ${withdrawTransactionReceipt.transactionHash}`);
const withdrawEventsData = withdrawTransactionReceipt.getChildToParentEvents();
console.log('Withdrawal data:', withdrawEventsData);
console.log(
`To claim funds (after dispute period), run the outbox-execute tutorial using the transaction hash ${withdrawTransactionReceipt.transactionHash} 🫡`,
);
};
main()
.then(() => process.exit(0))
.catch((error) => {
console.error(error);
process.exit(1);
});