forked from across-protocol/relayer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunwrapWeth.ts
93 lines (88 loc) · 3.28 KB
/
unwrapWeth.ts
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
81
82
83
84
85
86
87
88
89
90
91
92
93
import {
ethers,
retrieveSignerFromCLIArgs,
getProvider,
WETH9,
toBN,
getNetworkName,
TOKEN_SYMBOLS_MAP,
assert,
} from "../src/utils";
import { askYesNoQuestion } from "./utils";
import minimist from "minimist";
const args = minimist(process.argv.slice(2), {
string: ["amount", "chainId"],
boolean: ["wrap"],
});
// Example run:
// ts-node ./scripts/unwrapWeth.ts
// \ --amount 3000000000000000000
// \ --chainId 1
// \ --wrap true
// \ --wallet gckms
// \ --keys bot1
export async function run(): Promise<void> {
if (!Object.keys(args).includes("chainId")) {
throw new Error("Define `chainId` as the chain you want to connect on");
}
if (!Object.keys(args).includes("amount")) {
throw new Error("Define `amount` as how much you want to unwrap");
}
const baseSigner = await retrieveSignerFromCLIArgs();
const signerAddr = await baseSigner.getAddress();
const chainId = Number(args.chainId);
const connectedSigner = baseSigner.connect(await getProvider(chainId));
assert(TOKEN_SYMBOLS_MAP.WETH.addresses[chainId], "chainId does not have a defined WETH address");
const token = TOKEN_SYMBOLS_MAP.WETH.addresses[chainId];
const weth = new ethers.Contract(token, WETH9.abi, connectedSigner);
const decimals = 18;
const amountFromWei = ethers.utils.formatUnits(args.amount, decimals);
const wrapping = args.wrap;
if (wrapping) {
console.log("Wrapping WETH 🎁");
const currentBalance = ethers.utils.formatUnits(await connectedSigner.provider.getBalance(signerAddr), decimals);
console.log(`Current ETH balance for account ${signerAddr} on ${getNetworkName(chainId)}: ${currentBalance}`);
if ((await connectedSigner.provider.getBalance(signerAddr)).lt(toBN(args.amount))) {
console.log(`ETH balance < ${amountFromWei}, exiting`);
return;
}
console.log(`Wrap ${amountFromWei} ETH`);
// Check the user is ok with the info provided. else abort.
if (!(await askYesNoQuestion("\nConfirm that you want to execute this transaction?"))) {
return;
}
console.log("sending...");
const tx = await weth.deposit({ value: args.amount });
const receipt = await tx.wait();
console.log("Transaction hash:", receipt.transactionHash);
} else {
console.log("Unwrapping WETH 🎊");
const currentBalance = ethers.utils.formatUnits(await weth.balanceOf(signerAddr), decimals);
console.log(`Current WETH balance for account ${signerAddr} on Mainnet: ${currentBalance}`);
if ((await weth.balanceOf(signerAddr)).lt(toBN(args.amount))) {
console.log(`WETH balance < ${amountFromWei}, exiting`);
return;
}
console.log(`Unwrap ${amountFromWei} WETH`);
// Check the user is ok with the info provided. else abort.
if (!(await askYesNoQuestion("\nConfirm that you want to execute this transaction?"))) {
return;
}
console.log("sending...");
const tx = await weth.withdraw(args.amount);
const receipt = await tx.wait();
console.log("Transaction hash:", receipt.transactionHash);
}
}
if (require.main === module) {
run()
.then(async () => {
// eslint-disable-next-line no-process-exit
process.exit(0);
})
.catch(async (error) => {
console.error("Process exited with", error);
// eslint-disable-next-line no-process-exit
process.exit(1);
});
}