-
Notifications
You must be signed in to change notification settings - Fork 5
/
demo-router.ts
396 lines (343 loc) · 11.8 KB
/
demo-router.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
import { shardNumber } from "@nilfoundation/hardhat-plugin/dist/utils/conversion";
import { waitTillCompleted } from "@nilfoundation/niljs";
import { task } from "hardhat/config";
import { encodeFunctionData } from "viem";
import type {
Currency,
UniswapV2Factory,
UniswapV2Pair,
} from "../../typechain-types";
import { createClient } from "../util/client";
import {
faucetWithdrawal,
mintAndSendCurrency,
sleep,
} from "../util/currencyUtils";
import { deployNilContract } from "../util/deploy";
import { calculateOutputAmount } from "../util/math";
task("demo-router", "Run demo with Uniswap Router").setAction(
async (taskArgs, hre) => {
const walletAddress = process.env.WALLET_ADDR;
if (!walletAddress) {
throw new Error("WALLET_ADDR is not set in environment variables");
}
const faucetAddress = process.env.FAUCET_ADDR;
const shardId = 1;
const mintAmount = 100000;
const mintCurrency0Amount = 10000;
const mintCurrency1Amount = 10000;
const swapAmount = 1000;
const { wallet, publicClient, signer } = await createClient();
const {
deployedContract: factoryContract,
contractAddress: factoryAddress,
} = await deployNilContract(hre, "UniswapV2Factory", [walletAddress]);
const {
deployedContract: Currency0Contract,
contractAddress: currency0Address,
} = await deployNilContract(hre, "Currency", [
"currency0",
await signer.getPublicKey(),
]);
const {
deployedContract: Currency1Contract,
contractAddress: currency1Address,
} = await deployNilContract(hre, "Currency", [
"currency1",
await signer.getPublicKey(),
]);
console.log("Factory deployed " + factoryAddress);
console.log("Currency0 deployed " + currency0Address);
console.log("Currency1 deployed " + currency1Address);
const { deployedContract: RouterContract, contractAddress: routerAddress } =
await deployNilContract(hre, "UniswapV2Router01");
console.log("Router deployed " + routerAddress);
const factory = factoryContract as UniswapV2Factory;
// 1. CREATE PAIR
await factory.createPair(
currency0Address.toLowerCase(),
currency1Address.toLowerCase(),
Math.floor(Math.random() * 10000000),
shardId,
);
const pairAddress = await factory.getTokenPair(
currency0Address.toLowerCase(),
currency1Address.toLowerCase(),
);
// Log the pair address
console.log(`Pair created successfully at address: ${pairAddress}`);
// Attach to the Currency contract for both currencies
const firstCurrency = Currency0Contract as Currency;
const firstCurrencyId = await firstCurrency.getCurrencyId();
console.log(`First currency ID: ${firstCurrencyId}`);
const secondCurrency = Currency1Contract as Currency;
const secondCurrencyId = await secondCurrency.getCurrencyId();
console.log(`Second currency ID: ${secondCurrencyId}`);
// Attach to the newly created Uniswap V2 Pair contract
const pairContract = await hre.ethers.getContractFactory("UniswapV2Pair");
const pair = pairContract.attach(pairAddress) as UniswapV2Pair;
// Initialize the pair with currency addresses and IDs
await pair.initialize(
currency0Address.toLowerCase(),
currency1Address.toLowerCase(),
firstCurrencyId,
secondCurrencyId,
);
console.log(`Pair initialized successfully at address: ${pairAddress}`);
// Prepare currencies
await faucetWithdrawal(
currency0Address.toLowerCase(),
100000000000n,
faucetAddress,
hre,
publicClient,
);
await sleep(2000);
await faucetWithdrawal(
currency1Address.toLowerCase(),
100000000000n,
faucetAddress,
hre,
publicClient,
);
await sleep(2000);
// 2. MINT CURRENCIES
console.log(
`Minting ${mintAmount} Currency0 to wallet ${walletAddress}...`,
);
await mintAndSendCurrency({
publicClient,
signer,
currencyContract: firstCurrency,
contractAddress: currency0Address.toLowerCase(),
walletAddress,
mintAmount,
hre,
});
// Mint and send Currency1
console.log(
`Minting ${mintAmount} Currency1 to wallet ${walletAddress}...`,
);
await mintAndSendCurrency({
publicClient,
signer,
currencyContract: secondCurrency,
contractAddress: currency1Address.toLowerCase(),
walletAddress,
mintAmount,
hre,
});
// Verify the balance of the recipient wallet for both currencies
const recipientBalanceCurrency0 =
await firstCurrency.getCurrencyBalanceOf(walletAddress);
const recipientBalanceCurrency1 =
await secondCurrency.getCurrencyBalanceOf(walletAddress);
console.log(
`Recipient balance after transfer - Currency0: ${recipientBalanceCurrency0}, Currency1: ${recipientBalanceCurrency1}`,
);
// 3. ROUTER: ADD LIQUIDITY
const pairArtifact = await hre.artifacts.readArtifact("UniswapV2Pair");
const routerArtifact =
await hre.artifacts.readArtifact("UniswapV2Router01");
// Mint liquidity
console.log("Adding liquidity...");
const hash = await wallet.sendMessage({
to: routerAddress,
feeCredit: BigInt(10_000_000),
value: BigInt(0),
refundTo: wallet.address,
data: encodeFunctionData({
abi: routerArtifact.abi,
functionName: "addLiquidity",
args: [pairAddress, walletAddress],
}),
tokens: [
{
id: await firstCurrency.getCurrencyId(),
amount: BigInt(mintCurrency0Amount),
},
{
id: await secondCurrency.getCurrencyId(),
amount: BigInt(mintCurrency1Amount),
},
],
});
await waitTillCompleted(publicClient, shardNumber(walletAddress), hash);
// Log balances in the pair contract
const pairCurrency0Balance =
await firstCurrency.getCurrencyBalanceOf(pairAddress);
console.log("Pair Balance of Currency0:", pairCurrency0Balance.toString());
const pairCurrency1Balance =
await secondCurrency.getCurrencyBalanceOf(pairAddress);
console.log("Pair Balance of Currency1:", pairCurrency1Balance.toString());
console.log("Liquidity added...");
// Retrieve and log reserves from the pair
const [reserve0, reserve1] = await pair.getReserves();
console.log(
`ADDLIQUIDITY RESULT: Reserves - Currency0: ${reserve0.toString()}, Currency1: ${reserve1.toString()}`,
);
// Check and log liquidity provider balance
const lpBalance = await pair.getCurrencyBalanceOf(walletAddress);
console.log(
"ADDLIQUIDITY RESULT: Liquidity provider balance in wallet:",
lpBalance.toString(),
);
// Retrieve and log total supply for the pair
const totalSupply = await pair.getCurrencyTotalSupply();
console.log(
"ADDLIQUIDITY RESULT: Total supply of pair tokens:",
totalSupply.toString(),
);
// 4. ROUTER: SWAP
const expectedOutputAmount = calculateOutputAmount(
BigInt(swapAmount),
reserve0,
reserve1,
);
console.log(
"Expected output amount for swap:",
expectedOutputAmount.toString(),
);
// Log balances before the swap
const balanceCurrency0Before =
await firstCurrency.getCurrencyBalanceOf(walletAddress);
const balanceCurrency1Before =
await secondCurrency.getCurrencyBalanceOf(walletAddress);
console.log(
"Balance of currency0 before swap:",
balanceCurrency0Before.toString(),
);
console.log(
"Balance of currency1 before swap:",
balanceCurrency1Before.toString(),
);
// Execute the swap
console.log("Executing swap...");
// Send currency0 to the pair contract
const hash2 = await wallet.sendMessage({
to: routerAddress,
feeCredit: BigInt(10_000_000),
value: BigInt(0),
data: encodeFunctionData({
abi: routerArtifact.abi,
functionName: "swap",
args: [walletAddress, pairAddress, 0, expectedOutputAmount],
}),
refundTo: wallet.address,
tokens: [
{
id: await firstCurrency.getCurrencyId(),
amount: BigInt(swapAmount),
},
],
});
await waitTillCompleted(publicClient, shardNumber(walletAddress), hash2);
console.log(
`Sent ${swapAmount.toString()} of currency0 to the pair contract. Tx - ${hash2}`,
);
console.log("Swap executed successfully.");
// Log balances after the swap
const balanceCurrency0After =
await firstCurrency.getCurrencyBalanceOf(walletAddress);
const balanceCurrency1After =
await secondCurrency.getCurrencyBalanceOf(walletAddress);
console.log(
"SWAP RESULT: Balance of currency0 after swap:",
balanceCurrency0After.toString(),
);
console.log(
"SWAP RESULT: Balance of currency1 after swap:",
balanceCurrency1After.toString(),
);
// 5. ROUTER: REMOVE LIQUIDITY
const total = await pair.getCurrencyTotalSupply();
console.log("Total supply:", total.toString());
// Fetch and log pair balances before burn
const pairBalanceToken0 = await firstCurrency.getCurrencyBalanceOf(
pairAddress.toLowerCase(),
);
const pairBalanceToken1 = await secondCurrency.getCurrencyBalanceOf(
pairAddress.toLowerCase(),
);
console.log(
"Pair Balance token0 before burn:",
pairBalanceToken0.toString(),
);
console.log(
"Pair Balance token1 before burn:",
pairBalanceToken1.toString(),
);
// Fetch and log user balances before burn
let userBalanceToken0 =
await firstCurrency.getCurrencyBalanceOf(walletAddress);
let userBalanceToken1 =
await secondCurrency.getCurrencyBalanceOf(walletAddress);
console.log(
"User Balance token0 before burn:",
userBalanceToken0.toString(),
);
console.log(
"User Balance token1 before burn:",
userBalanceToken1.toString(),
);
const lpAddress = await pair.getCurrencyId();
const userLpBalance = await pair.getCurrencyBalanceOf(walletAddress);
console.log("Total LP balance for user wallet:", userLpBalance.toString());
// Execute burn
console.log("Executing burn...");
// Send LP tokens to the user wallet
const hash3 = await wallet.sendMessage({
// @ts-ignore
to: routerAddress,
feeCredit: BigInt(10_000_000),
value: BigInt(0),
data: encodeFunctionData({
abi: routerArtifact.abi,
functionName: "removeLiquidity",
args: [pairAddress, walletAddress],
}),
refundTo: walletAddress,
tokens: [
{
id: lpAddress,
amount: BigInt(userLpBalance),
},
],
});
await waitTillCompleted(publicClient, shardNumber(walletAddress), hash3);
console.log("Burn executed.");
// Log balances after burn
const balanceToken0 = await firstCurrency.getCurrencyBalanceOf(
pairAddress.toLowerCase(),
);
const balanceToken1 = await secondCurrency.getCurrencyBalanceOf(
pairAddress.toLowerCase(),
);
console.log(
"REMOVELIQUIDITY RESULT: Pair Balance token0 after burn:",
balanceToken0.toString(),
);
console.log(
"REMOVELIQUIDITY RESULT: Pair Balance token1 after burn:",
balanceToken1.toString(),
);
userBalanceToken0 = await firstCurrency.getCurrencyBalanceOf(walletAddress);
userBalanceToken1 =
await secondCurrency.getCurrencyBalanceOf(walletAddress);
console.log(
"REMOVELIQUIDITY RESULT: User Balance token0 after burn:",
userBalanceToken0.toString(),
);
console.log(
"REMOVELIQUIDITY RESULT: User Balance token1 after burn:",
userBalanceToken1.toString(),
);
// Fetch and log reserves after burn
const reserves = await pair.getReserves();
console.log(
"REMOVELIQUIDITY RESULT: Reserves from pair after burn:",
reserves[0].toString(),
reserves[1].toString(),
);
},
);