@paraswap/dex-lib 3.8.14 → 3.8.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/launch.json +6 -43
- package/.vscode/settings.json +2 -1
- package/build/abi/Uncompressor.json +250 -0
- package/build/abi/concentrator/arUSD.json +568 -0
- package/build/abi/concentrator/arUSD5115.json +1746 -0
- package/build/abi/fx-protocol/FxMarket.json +1284 -0
- package/build/abi/{wombat/pool.json → fx-protocol/FxUSD.json} +541 -603
- package/build/abi/fx-protocol/weETHOralce.json +676 -0
- package/build/abi/integral/factory.json +333 -0
- package/build/abi/integral/oracle.json +501 -0
- package/build/abi/integral/pool.json +1041 -0
- package/build/abi/integral/relayer.json +1536 -0
- package/build/abi/oswap/oswap.abi.json +452 -0
- package/build/dex/aave-v1/aave-v1.d.ts +1 -2
- package/build/dex/aave-v1/aave-v1.js +0 -23
- package/build/dex/aave-v1/aave-v1.js.map +1 -1
- package/build/dex/compound.js +1 -1
- package/build/dex/compound.js.map +1 -1
- package/build/dex/concentrator-arusd/concentrator-arusd-event.d.ts +17 -0
- package/build/dex/concentrator-arusd/concentrator-arusd-event.js +66 -0
- package/build/dex/concentrator-arusd/concentrator-arusd-event.js.map +1 -0
- package/build/dex/concentrator-arusd/concentrator-arusd.d.ts +41 -0
- package/build/dex/concentrator-arusd/concentrator-arusd.js +188 -0
- package/build/dex/concentrator-arusd/concentrator-arusd.js.map +1 -0
- package/build/dex/concentrator-arusd/config.d.ts +3 -0
- package/build/dex/concentrator-arusd/config.js +14 -0
- package/build/dex/concentrator-arusd/config.js.map +1 -0
- package/build/dex/concentrator-arusd/types.d.ts +14 -0
- package/build/dex/concentrator-arusd/types.js +3 -0
- package/build/dex/concentrator-arusd/types.js.map +1 -0
- package/build/dex/concentrator-arusd/utils.d.ts +4 -0
- package/build/dex/concentrator-arusd/utils.js +27 -0
- package/build/dex/concentrator-arusd/utils.js.map +1 -0
- package/build/dex/etherfi/etherfi.d.ts +26 -0
- package/build/dex/etherfi/etherfi.js +96 -0
- package/build/dex/etherfi/etherfi.js.map +1 -0
- package/build/dex/fx-protocol-rusd/config.d.ts +3 -0
- package/build/dex/fx-protocol-rusd/config.js +15 -0
- package/build/dex/fx-protocol-rusd/config.js.map +1 -0
- package/build/dex/fx-protocol-rusd/fx-protocol-rusd-event.d.ts +18 -0
- package/build/dex/fx-protocol-rusd/fx-protocol-rusd-event.js +71 -0
- package/build/dex/fx-protocol-rusd/fx-protocol-rusd-event.js.map +1 -0
- package/build/dex/fx-protocol-rusd/fx-protocol-rusd.d.ts +39 -0
- package/build/dex/fx-protocol-rusd/fx-protocol-rusd.js +201 -0
- package/build/dex/fx-protocol-rusd/fx-protocol-rusd.js.map +1 -0
- package/build/dex/fx-protocol-rusd/types.d.ts +13 -0
- package/build/dex/fx-protocol-rusd/types.js +3 -0
- package/build/dex/fx-protocol-rusd/types.js.map +1 -0
- package/build/dex/fx-protocol-rusd/utils.d.ts +4 -0
- package/build/dex/fx-protocol-rusd/utils.js +26 -0
- package/build/dex/fx-protocol-rusd/utils.js.map +1 -0
- package/build/dex/index.js +4 -0
- package/build/dex/index.js.map +1 -1
- package/build/dex/integral/config.d.ts +4 -0
- package/build/dex/integral/config.js +20 -0
- package/build/dex/integral/config.js.map +1 -0
- package/build/dex/integral/context.d.ts +40 -0
- package/build/dex/integral/context.js +158 -0
- package/build/dex/integral/context.js.map +1 -0
- package/build/dex/integral/helpers.d.ts +17 -0
- package/build/dex/integral/helpers.js +157 -0
- package/build/dex/integral/helpers.js.map +1 -0
- package/build/dex/integral/integral-factory.d.ts +24 -0
- package/build/dex/integral/integral-factory.js +95 -0
- package/build/dex/integral/integral-factory.js.map +1 -0
- package/build/dex/integral/integral-pool.d.ts +50 -0
- package/build/dex/integral/integral-pool.js +149 -0
- package/build/dex/integral/integral-pool.js.map +1 -0
- package/build/dex/integral/integral-pricing.d.ts +18 -0
- package/build/dex/integral/integral-pricing.js +114 -0
- package/build/dex/integral/integral-pricing.js.map +1 -0
- package/build/dex/integral/integral-relayer.d.ts +42 -0
- package/build/dex/integral/integral-relayer.js +192 -0
- package/build/dex/integral/integral-relayer.js.map +1 -0
- package/build/dex/integral/integral-token.d.ts +27 -0
- package/build/dex/integral/integral-token.js +59 -0
- package/build/dex/integral/integral-token.js.map +1 -0
- package/build/dex/integral/integral.d.ts +41 -0
- package/build/dex/integral/integral.js +377 -0
- package/build/dex/integral/integral.js.map +1 -0
- package/build/dex/integral/types.d.ts +84 -0
- package/build/dex/integral/types.js +9 -0
- package/build/dex/integral/types.js.map +1 -0
- package/build/dex/integral/utils-e2e.d.ts +9 -0
- package/build/dex/integral/utils-e2e.js +131 -0
- package/build/dex/integral/utils-e2e.js.map +1 -0
- package/build/dex/integral/utils.d.ts +17 -0
- package/build/dex/integral/utils.js +94 -0
- package/build/dex/integral/utils.js.map +1 -0
- package/build/dex/oswap/config.d.ts +5 -0
- package/build/dex/oswap/config.js +31 -0
- package/build/dex/oswap/config.js.map +1 -0
- package/build/dex/oswap/oswap-pool.d.ts +51 -0
- package/build/dex/oswap/oswap-pool.js +150 -0
- package/build/dex/oswap/oswap-pool.js.map +1 -0
- package/build/dex/oswap/oswap.d.ts +46 -0
- package/build/dex/oswap/oswap.js +266 -0
- package/build/dex/oswap/oswap.js.map +1 -0
- package/build/dex/oswap/types.d.ts +20 -0
- package/build/dex/oswap/types.js +3 -0
- package/build/dex/oswap/types.js.map +1 -0
- package/build/dex/platypus/platypus.d.ts +1 -2
- package/build/dex/platypus/platypus.js +0 -45
- package/build/dex/platypus/platypus.js.map +1 -1
- package/build/dex/sdai/config.d.ts +11 -0
- package/build/dex/sdai/config.js +21 -0
- package/build/dex/sdai/config.js.map +1 -0
- package/build/dex/sdai/constants.d.ts +2 -0
- package/build/dex/sdai/constants.js +6 -0
- package/build/dex/sdai/constants.js.map +1 -0
- package/build/dex/sdai/scripts/validate-state.js +102 -0
- package/build/dex/sdai/scripts/validate-state.js.map +1 -0
- package/build/dex/sdai/sdai-pool.d.ts +16 -0
- package/build/dex/sdai/sdai-pool.js +85 -0
- package/build/dex/sdai/sdai-pool.js.map +1 -0
- package/build/dex/sdai/sdai.d.ts +51 -0
- package/build/dex/sdai/sdai.js +172 -0
- package/build/dex/sdai/sdai.js.map +1 -0
- package/build/dex/sdai/types.d.ts +21 -0
- package/build/dex/sdai/types.js +11 -0
- package/build/dex/sdai/types.js.map +1 -0
- package/build/dex/sdai/utils.d.ts +4 -0
- package/build/dex/sdai/utils.js +39 -0
- package/build/dex/sdai/utils.js.map +1 -0
- package/build/dex/stable-pool.js +8 -1
- package/build/dex/stable-pool.js.map +1 -1
- package/build/dex/swaap-v1/swaap-v1.d.ts +1 -2
- package/build/dex/swaap-v1/swaap-v1.js +0 -14
- package/build/dex/swaap-v1/swaap-v1.js.map +1 -1
- package/build/executor/compressor/Compressor.d.ts +23 -0
- package/build/executor/compressor/Compressor.js +144 -0
- package/build/executor/compressor/Compressor.js.map +1 -0
- package/build/executor/compressor/compress.d.ts +17 -0
- package/build/executor/compressor/compress.js +187 -0
- package/build/executor/compressor/compress.js.map +1 -0
- package/build/executor/compressor/compress_functions/addressSubstitution.d.ts +6 -0
- package/build/executor/compressor/compress_functions/addressSubstitution.js +29 -0
- package/build/executor/compressor/compress_functions/addressSubstitution.js.map +1 -0
- package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.d.ts +10 -0
- package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js +40 -0
- package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js.map +1 -0
- package/build/executor/compressor/compress_functions/byteSubstitution.d.ts +11 -0
- package/build/executor/compressor/compress_functions/byteSubstitution.js +64 -0
- package/build/executor/compressor/compress_functions/byteSubstitution.js.map +1 -0
- package/build/executor/compressor/compress_functions/ffSubstitution.d.ts +7 -0
- package/build/executor/compressor/compress_functions/ffSubstitution.js +54 -0
- package/build/executor/compressor/compress_functions/ffSubstitution.js.map +1 -0
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute.d.ts +8 -0
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js +67 -0
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js.map +1 -0
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.d.ts +8 -0
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js +61 -0
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js.map +1 -0
- package/build/executor/compressor/compress_functions/reverseAddressSubstitution.d.ts +6 -0
- package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js +37 -0
- package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js.map +1 -0
- package/build/executor/compressor/compress_functions/searchUnusedBytes.d.ts +9 -0
- package/build/executor/compressor/compress_functions/searchUnusedBytes.js +33 -0
- package/build/executor/compressor/compress_functions/searchUnusedBytes.js.map +1 -0
- package/build/executor/compressor/fetchSaved.js +17 -0
- package/build/executor/compressor/fetchSaved.js.map +1 -0
- package/build/executor/compressor/utils/computeCostL2.d.ts +2 -0
- package/build/executor/compressor/utils/computeCostL2.js +14 -0
- package/build/executor/compressor/utils/computeCostL2.js.map +1 -0
- package/build/executor/compressor/utils/findLongestDuplicatedString.d.ts +2 -0
- package/build/executor/compressor/utils/findLongestDuplicatedString.js +30 -0
- package/build/executor/compressor/utils/findLongestDuplicatedString.js.map +1 -0
- package/build/executor/compressor/utils/getAllIndexes.d.ts +2 -0
- package/build/executor/compressor/utils/getAllIndexes.js +12 -0
- package/build/executor/compressor/utils/getAllIndexes.js.map +1 -0
- package/build/executor/compressor/utils/getByteForAddress.d.ts +2 -0
- package/build/executor/compressor/utils/getByteForAddress.js +14 -0
- package/build/executor/compressor/utils/getByteForAddress.js.map +1 -0
- package/build/executor/compressor/utils/intTo2Bytes.d.ts +2 -0
- package/build/executor/compressor/utils/intTo2Bytes.js +14 -0
- package/build/executor/compressor/utils/intTo2Bytes.js.map +1 -0
- package/build/executor/compressor/utils/intTo3Bytes.d.ts +2 -0
- package/build/executor/compressor/utils/intTo3Bytes.js +18 -0
- package/build/executor/compressor/utils/intTo3Bytes.js.map +1 -0
- package/build/executor/compressor/utils/intToByte.d.ts +2 -0
- package/build/executor/compressor/utils/intToByte.js +10 -0
- package/build/executor/compressor/utils/intToByte.js.map +1 -0
- package/package.json +1 -1
- package/src/abi/concentrator/arUSD.json +568 -0
- package/src/abi/concentrator/arUSD5115.json +1746 -0
- package/src/abi/fx-protocol/FxMarket.json +1284 -0
- package/src/abi/fx-protocol/FxUSD.json +1227 -0
- package/src/abi/fx-protocol/weETHOralce.json +676 -0
- package/src/dex/concentrator-arusd/concentrator-arusd-e2e.test.ts +92 -0
- package/src/dex/concentrator-arusd/concentrator-arusd-event.ts +100 -0
- package/src/dex/concentrator-arusd/concentrator-arusd-integration.test.ts +104 -0
- package/src/dex/concentrator-arusd/concentrator-arusd.ts +269 -0
- package/src/dex/concentrator-arusd/concetrator-arusd-events.test.ts +97 -0
- package/src/dex/concentrator-arusd/config.ts +13 -0
- package/src/dex/concentrator-arusd/types.ts +16 -0
- package/src/dex/concentrator-arusd/utils.ts +36 -0
- package/src/dex/fx-protocol-rusd/config.ts +14 -0
- package/src/dex/fx-protocol-rusd/fx-protocol-e2e.test.ts +96 -0
- package/src/dex/fx-protocol-rusd/fx-protocol-events.test.ts +101 -0
- package/src/dex/fx-protocol-rusd/fx-protocol-integration.test.ts +104 -0
- package/src/dex/fx-protocol-rusd/fx-protocol-rusd-event.ts +112 -0
- package/src/dex/fx-protocol-rusd/fx-protocol-rusd.ts +282 -0
- package/src/dex/fx-protocol-rusd/types.ts +16 -0
- package/src/dex/fx-protocol-rusd/utils.ts +47 -0
- package/src/dex/index.ts +4 -0
- package/src/dex/wsteth/wsteth-integration.test.ts +0 -1
- package/tests/constants-e2e.ts +10 -0
- package/.vscode/tasks.json +0 -15
- package/build/abi/uniswap-v3/AlienBaseV3Router.abi.json +0 -52
- package/build/dex/aave-v2/tokens-avalanche.json +0 -44
- package/build/dex/aave-v2/tokens-mainnet.json +0 -188
- package/build/dex/aave-v2/tokens-polygon.json +0 -44
- package/build/dex/maker-psm/scripts/gem.abi.json +0 -136
- package/build/dex/maker-psm/scripts/validate-state.js +0 -185
- package/build/dex/maker-psm/scripts/validate-state.js.map +0 -1
- package/build/dex/maker-psm/scripts/vat.abi.json +0 -243
- package/build/dex/solidly-v3/scripts/check-event-pool-event.js +0 -53
- package/build/dex/solidly-v3/scripts/check-event-pool-event.js.map +0 -1
- package/build/dex/trader-joe-v2.1/base.d.ts +0 -18
- package/build/dex/trader-joe-v2.1/base.js +0 -99
- package/build/dex/trader-joe-v2.1/base.js.map +0 -1
- package/build/dex/trader-joe-v2.1/trader-joe-v2.1-new.d.ts +0 -7
- package/build/dex/trader-joe-v2.1/trader-joe-v2.1-new.js +0 -20
- package/build/dex/trader-joe-v2.1/trader-joe-v2.1-new.js.map +0 -1
- package/build/dex/trader-joe-v2.1/trader-joe-v2.2.d.ts +0 -7
- package/build/dex/trader-joe-v2.1/trader-joe-v2.2.js +0 -20
- package/build/dex/trader-joe-v2.1/trader-joe-v2.2.js.map +0 -1
- package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.d.ts +0 -17
- package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js +0 -64
- package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js.map +0 -1
- package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.d.ts +0 -17
- package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js +0 -79
- package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js.map +0 -1
- package/config.ts +0 -1946
- package/src/dex/dexs.txt +0 -58
- /package/build/dex/{solidly-v3/scripts/check-event-pool-event.d.ts → sdai/scripts/validate-state.d.ts} +0 -0
- /package/build/{dex/maker-psm/scripts/validate-state.d.ts → executor/compressor/fetchSaved.d.ts} +0 -0
|
@@ -1,188 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"aSymbol": "aUSDT",
|
|
4
|
-
"aAddress": "0x3ed3b47dd13ec9a98b44e6204a523e766b225811",
|
|
5
|
-
"address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
|
|
6
|
-
"decimals": 6
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"aSymbol": "aWBTC",
|
|
10
|
-
"aAddress": "0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656",
|
|
11
|
-
"address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
|
|
12
|
-
"decimals": 8
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"aSymbol": "aWETH",
|
|
16
|
-
"aAddress": "0x030ba81f1c18d280636f32af80b9aad02cf0854e",
|
|
17
|
-
"address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
|
|
18
|
-
"decimals": 18
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"aSymbol": "aYFI",
|
|
22
|
-
"aAddress": "0x5165d24277cd063f5ac44efd447b27025e888f37",
|
|
23
|
-
"address": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
|
|
24
|
-
"decimals": 18
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"aSymbol": "aZRX",
|
|
28
|
-
"aAddress": "0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e",
|
|
29
|
-
"address": "0xe41d2489571d322189246dafa5ebde1f4699f498",
|
|
30
|
-
"decimals": 18
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"aSymbol": "aUNI",
|
|
34
|
-
"aAddress": "0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1",
|
|
35
|
-
"address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
|
|
36
|
-
"decimals": 18
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"aSymbol": "aAAVE",
|
|
40
|
-
"aAddress": "0xffc97d72e13e01096502cb8eb52dee56f74dad7b",
|
|
41
|
-
"address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
|
|
42
|
-
"decimals": 18
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"aSymbol": "aBAT",
|
|
46
|
-
"aAddress": "0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1",
|
|
47
|
-
"address": "0x0d8775f648430679a709e98d2b0cb6250d2887ef",
|
|
48
|
-
"decimals": 18
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"aSymbol": "aBUSD",
|
|
52
|
-
"aAddress": "0xa361718326c15715591c299427c62086f69923d9",
|
|
53
|
-
"address": "0x4fabb145d64652a948d72533023f6e7a623c7c53",
|
|
54
|
-
"decimals": 18
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"aSymbol": "aDAI",
|
|
58
|
-
"aAddress": "0x028171bca77440897b824ca71d1c56cac55b68a3",
|
|
59
|
-
"address": "0x6b175474e89094c44da98b954eedeac495271d0f",
|
|
60
|
-
"decimals": 18
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"aSymbol": "aENJ",
|
|
64
|
-
"aAddress": "0xac6df26a590f08dcc95d5a4705ae8abbc88509ef",
|
|
65
|
-
"address": "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c",
|
|
66
|
-
"decimals": 18
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"aSymbol": "aKNC",
|
|
70
|
-
"aAddress": "0x39c6b3e42d6a679d7d776778fe880bc9487c2eda",
|
|
71
|
-
"address": "0xdd974d5c2e2928dea5f71b9825b8b646686bd200",
|
|
72
|
-
"decimals": 18
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"aSymbol": "aLINK",
|
|
76
|
-
"aAddress": "0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0",
|
|
77
|
-
"address": "0x514910771af9ca656af840dff83e8264ecf986ca",
|
|
78
|
-
"decimals": 18
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"aSymbol": "aMANA",
|
|
82
|
-
"aAddress": "0xa685a61171bb30d4072b338c80cb7b2c865c873e",
|
|
83
|
-
"address": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942",
|
|
84
|
-
"decimals": 18
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"aSymbol": "aMKR",
|
|
88
|
-
"aAddress": "0xc713e5e149d5d0715dcd1c156a020976e7e56b88",
|
|
89
|
-
"address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
|
|
90
|
-
"decimals": 18
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"aSymbol": "aREN",
|
|
94
|
-
"aAddress": "0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a",
|
|
95
|
-
"address": "0x408e41876cccdc0f92210600ef50372656052a38",
|
|
96
|
-
"decimals": 18
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"aSymbol": "aSNX",
|
|
100
|
-
"aAddress": "0x35f6b052c598d933d69a4eec4d04c73a191fe6c2",
|
|
101
|
-
"address": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
|
|
102
|
-
"decimals": 18
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"aSymbol": "aSUSD",
|
|
106
|
-
"aAddress": "0x6c5024cd4f8a59110119c56f8933403a539555eb",
|
|
107
|
-
"address": "0x57ab1ec28d129707052df4df418d58a2d46d5f51",
|
|
108
|
-
"decimals": 18
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"aSymbol": "aTUSD",
|
|
112
|
-
"aAddress": "0x101cc05f4a51c0319f570d5e146a8c625198e636",
|
|
113
|
-
"address": "0x0000000000085d4780b73119b644ae5ecd22b376",
|
|
114
|
-
"decimals": 18
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"aSymbol": "aUSDC",
|
|
118
|
-
"aAddress": "0xbcca60bb61934080951369a648fb03df4f96263c",
|
|
119
|
-
"address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
|
|
120
|
-
"decimals": 6
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"aSymbol": "aCRV",
|
|
124
|
-
"aAddress": "0x8dae6cb04688c62d939ed9b68d32bc62e49970b1",
|
|
125
|
-
"address": "0xd533a949740bb3306d119cc777fa900ba034cd52",
|
|
126
|
-
"decimals": 18
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"aSymbol": "aGUSD",
|
|
130
|
-
"aAddress": "0xd37ee7e4f452c6638c96536e68090de8cbcdb583",
|
|
131
|
-
"address": "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd",
|
|
132
|
-
"decimals": 2
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"aSymbol": "aBAL",
|
|
136
|
-
"aAddress": "0x272f97b7a56a387ae942350bbc7df5700f8a4576",
|
|
137
|
-
"address": "0xba100000625a3754423978a60c9317c58a424e3d",
|
|
138
|
-
"decimals": 18
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"aSymbol": "aXSUSHI",
|
|
142
|
-
"aAddress": "0xf256cc7847e919fac9b808cc216cac87ccf2f47a",
|
|
143
|
-
"address": "0x8798249c2e607446efb7ad49ec89dd1865ff4272",
|
|
144
|
-
"decimals": 18
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"aSymbol": "aRENFIL",
|
|
148
|
-
"aAddress": "0x514cd6756ccbe28772d4cb81bc3156ba9d1744aa",
|
|
149
|
-
"address": "0xd5147bc8e386d91cc5dbe72099dac6c9b99276f5",
|
|
150
|
-
"decimals": 18
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"aSymbol": "aRAI",
|
|
154
|
-
"aAddress": "0xc9bc48c72154ef3e5425641a3c747242112a46af",
|
|
155
|
-
"address": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919",
|
|
156
|
-
"decimals": 18
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"aSymbol": "aAMPL",
|
|
160
|
-
"aAddress": "0x1e6bb68acec8fefbd87d192be09bb274170a0548",
|
|
161
|
-
"address": "0xd46ba6d942050d489dbd938a2c909a5d5039a161",
|
|
162
|
-
"decimals": 9
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"aSymbol": "aUSDP",
|
|
166
|
-
"aAddress": "0x2e8f4bdbe3d47d7d7de490437aea9915d930f1a3",
|
|
167
|
-
"address": "0x8e870d67f660d95d5be530380d0ec0bd388289e1",
|
|
168
|
-
"decimals": 18
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"aSymbol": "aDPI",
|
|
172
|
-
"aAddress": "0x6f634c6135d2ebd550000ac92f494f9cb8183dae",
|
|
173
|
-
"address": "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b",
|
|
174
|
-
"decimals": 18
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"aSymbol": "aFRAX",
|
|
178
|
-
"aAddress": "0xd4937682df3c8aef4fe912a96a74121c0829e664",
|
|
179
|
-
"address": "0x853d955acef822db058eb8505911ed77f175b99e",
|
|
180
|
-
"decimals": 18
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"aSymbol": "aFEI",
|
|
184
|
-
"aAddress": "0x683923db55fead99a79fa01a27eec3cb19679cc3",
|
|
185
|
-
"address": "0x956f47f50a910163d8bf957cf5846d573e7f87ca",
|
|
186
|
-
"decimals": 18
|
|
187
|
-
}
|
|
188
|
-
]
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"aSymbol": "amAAVE",
|
|
4
|
-
"aAddress": "0x1d2a0E5EC8E5bBDCA5CB219e649B565d8e5c3360",
|
|
5
|
-
"address": "0xd6df932a45c0f255f85145f286ea0b292b21c90b",
|
|
6
|
-
"decimals": 18
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"aSymbol": "amDAI",
|
|
10
|
-
"aAddress": "0x27f8d03b3a2196956ed754badc28d73be8830a6e",
|
|
11
|
-
"address": "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063",
|
|
12
|
-
"decimals": 18
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"aSymbol": "amUSDC",
|
|
16
|
-
"aAddress": "0x1a13f4ca1d028320a707d99520abfefca3998b7f",
|
|
17
|
-
"address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
|
|
18
|
-
"decimals": 6
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"aSymbol": "amUSDT",
|
|
22
|
-
"aAddress": "0x60d55f02a771d515e077c9c2403a1ef324885cec",
|
|
23
|
-
"address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
|
|
24
|
-
"decimals": 6
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"aSymbol": "amWBTC",
|
|
28
|
-
"aAddress": "0x5c2ed810328349100a66b82b78a1791b101c9d61",
|
|
29
|
-
"address": "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6",
|
|
30
|
-
"decimals": 8
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"aSymbol": "amWETH",
|
|
34
|
-
"aAddress": "0x28424507fefb6f7f8e9d3860f56504e4e5f5f390",
|
|
35
|
-
"address": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619",
|
|
36
|
-
"decimals": 18
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"aSymbol": "amWMATIC",
|
|
40
|
-
"aAddress": "0x8df3aad3a84da6b69a4da8aec3ea40d9091b2ac4",
|
|
41
|
-
"address": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270",
|
|
42
|
-
"decimals": 18
|
|
43
|
-
}
|
|
44
|
-
]
|
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"inputs": [
|
|
4
|
-
{ "internalType": "address", "name": "vat_", "type": "address" },
|
|
5
|
-
{ "internalType": "bytes32", "name": "ilk_", "type": "bytes32" },
|
|
6
|
-
{ "internalType": "address", "name": "gem_", "type": "address" }
|
|
7
|
-
],
|
|
8
|
-
"stateMutability": "nonpayable",
|
|
9
|
-
"type": "constructor"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"anonymous": true,
|
|
13
|
-
"inputs": [
|
|
14
|
-
{
|
|
15
|
-
"indexed": true,
|
|
16
|
-
"internalType": "bytes4",
|
|
17
|
-
"name": "sig",
|
|
18
|
-
"type": "bytes4"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"indexed": true,
|
|
22
|
-
"internalType": "address",
|
|
23
|
-
"name": "usr",
|
|
24
|
-
"type": "address"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"indexed": true,
|
|
28
|
-
"internalType": "bytes32",
|
|
29
|
-
"name": "arg1",
|
|
30
|
-
"type": "bytes32"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"indexed": true,
|
|
34
|
-
"internalType": "bytes32",
|
|
35
|
-
"name": "arg2",
|
|
36
|
-
"type": "bytes32"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"indexed": false,
|
|
40
|
-
"internalType": "bytes",
|
|
41
|
-
"name": "data",
|
|
42
|
-
"type": "bytes"
|
|
43
|
-
}
|
|
44
|
-
],
|
|
45
|
-
"name": "LogNote",
|
|
46
|
-
"type": "event"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"inputs": [],
|
|
50
|
-
"name": "cage",
|
|
51
|
-
"outputs": [],
|
|
52
|
-
"stateMutability": "nonpayable",
|
|
53
|
-
"type": "function"
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"inputs": [],
|
|
57
|
-
"name": "dec",
|
|
58
|
-
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
59
|
-
"stateMutability": "view",
|
|
60
|
-
"type": "function"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"inputs": [{ "internalType": "address", "name": "usr", "type": "address" }],
|
|
64
|
-
"name": "deny",
|
|
65
|
-
"outputs": [],
|
|
66
|
-
"stateMutability": "nonpayable",
|
|
67
|
-
"type": "function"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"inputs": [
|
|
71
|
-
{ "internalType": "address", "name": "guy", "type": "address" },
|
|
72
|
-
{ "internalType": "uint256", "name": "wad", "type": "uint256" }
|
|
73
|
-
],
|
|
74
|
-
"name": "exit",
|
|
75
|
-
"outputs": [],
|
|
76
|
-
"stateMutability": "nonpayable",
|
|
77
|
-
"type": "function"
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"inputs": [],
|
|
81
|
-
"name": "gem",
|
|
82
|
-
"outputs": [
|
|
83
|
-
{ "internalType": "contract GemLike_2", "name": "", "type": "address" }
|
|
84
|
-
],
|
|
85
|
-
"stateMutability": "view",
|
|
86
|
-
"type": "function"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"inputs": [],
|
|
90
|
-
"name": "ilk",
|
|
91
|
-
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
|
|
92
|
-
"stateMutability": "view",
|
|
93
|
-
"type": "function"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"inputs": [
|
|
97
|
-
{ "internalType": "address", "name": "urn", "type": "address" },
|
|
98
|
-
{ "internalType": "uint256", "name": "wad", "type": "uint256" },
|
|
99
|
-
{ "internalType": "address", "name": "_msgSender", "type": "address" }
|
|
100
|
-
],
|
|
101
|
-
"name": "join",
|
|
102
|
-
"outputs": [],
|
|
103
|
-
"stateMutability": "nonpayable",
|
|
104
|
-
"type": "function"
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"inputs": [],
|
|
108
|
-
"name": "live",
|
|
109
|
-
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
110
|
-
"stateMutability": "view",
|
|
111
|
-
"type": "function"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"inputs": [{ "internalType": "address", "name": "usr", "type": "address" }],
|
|
115
|
-
"name": "rely",
|
|
116
|
-
"outputs": [],
|
|
117
|
-
"stateMutability": "nonpayable",
|
|
118
|
-
"type": "function"
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"inputs": [],
|
|
122
|
-
"name": "vat",
|
|
123
|
-
"outputs": [
|
|
124
|
-
{ "internalType": "contract VatLike_4", "name": "", "type": "address" }
|
|
125
|
-
],
|
|
126
|
-
"stateMutability": "view",
|
|
127
|
-
"type": "function"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"inputs": [{ "internalType": "address", "name": "", "type": "address" }],
|
|
131
|
-
"name": "wards",
|
|
132
|
-
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
133
|
-
"stateMutability": "view",
|
|
134
|
-
"type": "function"
|
|
135
|
-
}
|
|
136
|
-
]
|
|
@@ -1,185 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// /* eslint-disable no-console */
|
|
3
|
-
// import dotenv from 'dotenv';
|
|
4
|
-
// dotenv.config();
|
|
5
|
-
// import { Network } from '../../../constants';
|
|
6
|
-
// import { DummyDexHelper } from '../../../dex-helper';
|
|
7
|
-
// import { BlockHeader } from 'web3-eth';
|
|
8
|
-
// import { MakerPsmConfig } from '../config';
|
|
9
|
-
// import { BigNumber, ethers } from 'ethers';
|
|
10
|
-
// import { Interface } from '@ethersproject/abi';
|
|
11
|
-
// import _ from 'lodash';
|
|
12
|
-
// import vatABI from './vat.abi.json';
|
|
13
|
-
// import gemABI from './gem.abi.json';
|
|
14
|
-
// // @ts-ignore
|
|
15
|
-
// import { Tokens } from '../../../../tests/constants-e2e';
|
|
16
|
-
// const tokens = Tokens[Network.MAINNET];
|
|
17
|
-
// const vatInterface = new Interface(vatABI);
|
|
18
|
-
// const gemInterface = new Interface(gemABI);
|
|
19
|
-
// const erc20Interface = new Interface([
|
|
20
|
-
// {
|
|
21
|
-
// constant: true,
|
|
22
|
-
// inputs: [{ internalType: 'address', name: '', type: 'address' }],
|
|
23
|
-
// name: 'balanceOf',
|
|
24
|
-
// outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
|
25
|
-
// payable: false,
|
|
26
|
-
// stateMutability: 'view',
|
|
27
|
-
// type: 'function',
|
|
28
|
-
// },
|
|
29
|
-
// ]);
|
|
30
|
-
// const network = Network.MAINNET;
|
|
31
|
-
// const vat = MakerPsmConfig.MakerPsm[Network.MAINNET].vatAddress;
|
|
32
|
-
// const MOVE_TOPIC =
|
|
33
|
-
// '0xbb35783b00000000000000000000000000000000000000000000000000000000';
|
|
34
|
-
// const dexHelper = new DummyDexHelper(network);
|
|
35
|
-
// async function findNewGems(): Promise<boolean> {
|
|
36
|
-
// const network = Network.MAINNET;
|
|
37
|
-
// const dexHelper = new DummyDexHelper(network);
|
|
38
|
-
// const lastBlockNumber = await dexHelper.provider.getBlockNumber();
|
|
39
|
-
// const startBlockNumber = lastBlockNumber - 1_000_000;
|
|
40
|
-
// const endBlockNumber = lastBlockNumber;
|
|
41
|
-
// // const startBlockNumber = endBlockNumber - 700_000;
|
|
42
|
-
// const totalRange = endBlockNumber - startBlockNumber;
|
|
43
|
-
// const smallChunkSize = 10_000;
|
|
44
|
-
// const bigChunkSize = 100_000;
|
|
45
|
-
// const bigChunks = Math.ceil(totalRange / bigChunkSize);
|
|
46
|
-
// const smallChunks = Math.ceil(bigChunkSize / smallChunkSize);
|
|
47
|
-
// const uniquePotentialGemJoinsSet = new Set();
|
|
48
|
-
// for (let i = 0; i < bigChunks; i++) {
|
|
49
|
-
// console.log('Processing chunk', i + 1, 'of', bigChunks);
|
|
50
|
-
// const from = startBlockNumber + i * bigChunkSize;
|
|
51
|
-
// console.log(
|
|
52
|
-
// new Array(smallChunks).fill(0).map((_, smallChunkNumber) => ({
|
|
53
|
-
// fromBlock: from + smallChunkNumber * smallChunkSize,
|
|
54
|
-
// toBlock: from + smallChunkNumber * smallChunkSize + smallChunkSize,
|
|
55
|
-
// })),
|
|
56
|
-
// );
|
|
57
|
-
// const logsToDispatch = (
|
|
58
|
-
// await Promise.all(
|
|
59
|
-
// new Array(smallChunks).fill(0).map((_, smallChunkNumber) =>
|
|
60
|
-
// dexHelper.provider.getLogs({
|
|
61
|
-
// fromBlock: from + smallChunkNumber * smallChunkSize,
|
|
62
|
-
// toBlock: from + smallChunkNumber * smallChunkSize + smallChunkSize,
|
|
63
|
-
// address: vat,
|
|
64
|
-
// }),
|
|
65
|
-
// ),
|
|
66
|
-
// )
|
|
67
|
-
// ).flat();
|
|
68
|
-
// const moveLogs = logsToDispatch.filter(l => l.topics[0] === MOVE_TOPIC);
|
|
69
|
-
// const potentialGemJoins = moveLogs.map(
|
|
70
|
-
// l => ethers.utils.defaultAbiCoder.decode(['address'], l.topics[1])[0],
|
|
71
|
-
// );
|
|
72
|
-
// potentialGemJoins.forEach(gemJoin =>
|
|
73
|
-
// uniquePotentialGemJoinsSet.add(gemJoin),
|
|
74
|
-
// );
|
|
75
|
-
// }
|
|
76
|
-
// const uniquePotentialGemJoins = Array.from(uniquePotentialGemJoinsSet);
|
|
77
|
-
// console.log('unique potential gem joins', uniquePotentialGemJoins.length);
|
|
78
|
-
// const gemJoinCalldata = uniquePotentialGemJoins
|
|
79
|
-
// .map(gemJoin => {
|
|
80
|
-
// return [
|
|
81
|
-
// {
|
|
82
|
-
// target: gemJoin,
|
|
83
|
-
// callData: vatInterface.encodeFunctionData('gemJoin'),
|
|
84
|
-
// },
|
|
85
|
-
// ];
|
|
86
|
-
// })
|
|
87
|
-
// .flat();
|
|
88
|
-
// const slicedGemJoinCallData = _.chunk(gemJoinCalldata, 500);
|
|
89
|
-
// const gemJoinData = (
|
|
90
|
-
// await Promise.all(
|
|
91
|
-
// slicedGemJoinCallData.map(async _multiCallData =>
|
|
92
|
-
// dexHelper.multiContract.methods
|
|
93
|
-
// .tryAggregate(false, _multiCallData)
|
|
94
|
-
// .call({}),
|
|
95
|
-
// ),
|
|
96
|
-
// )
|
|
97
|
-
// ).flat();
|
|
98
|
-
// // console.log(
|
|
99
|
-
// // gemJoinData
|
|
100
|
-
// // .map((data, i) => ({ ...data, index: i }))
|
|
101
|
-
// // .filter(d => d.returnData !== '0x' && d.returnData.length === 66)
|
|
102
|
-
// // .map(d => [d.returnData, gemJoinCalldata[d.index]]),
|
|
103
|
-
// // );
|
|
104
|
-
// const gemJoins = gemJoinData
|
|
105
|
-
// .filter(d => d.returnData !== '0x' && d.returnData.length === 66)
|
|
106
|
-
// .map(
|
|
107
|
-
// d => ethers.utils.defaultAbiCoder.decode(['address'], d.returnData)[0],
|
|
108
|
-
// );
|
|
109
|
-
// const uniqueGemJoins = [...new Set(gemJoins)];
|
|
110
|
-
// console.log('unique gem joins', uniqueGemJoins.length);
|
|
111
|
-
// const gemCalldata = uniqueGemJoins
|
|
112
|
-
// .map(gemJoin => {
|
|
113
|
-
// return [
|
|
114
|
-
// {
|
|
115
|
-
// target: gemJoin,
|
|
116
|
-
// callData: gemInterface.encodeFunctionData('gem'),
|
|
117
|
-
// },
|
|
118
|
-
// ];
|
|
119
|
-
// })
|
|
120
|
-
// .flat();
|
|
121
|
-
// const returnGemData = await dexHelper.multiContract.methods
|
|
122
|
-
// .tryAggregate(false, gemCalldata)
|
|
123
|
-
// .call({});
|
|
124
|
-
// const gems = returnGemData
|
|
125
|
-
// .filter((d: any) => d.returnData !== '0x')
|
|
126
|
-
// .map(
|
|
127
|
-
// (d: any) =>
|
|
128
|
-
// ethers.utils.defaultAbiCoder.decode(['address'], d.returnData)[0],
|
|
129
|
-
// );
|
|
130
|
-
// const balanceCalldata = gems
|
|
131
|
-
// .map((gem: any, i: number) => {
|
|
132
|
-
// return [
|
|
133
|
-
// {
|
|
134
|
-
// target: gem,
|
|
135
|
-
// callData: erc20Interface.encodeFunctionData('balanceOf', [
|
|
136
|
-
// uniqueGemJoins[i],
|
|
137
|
-
// ]),
|
|
138
|
-
// },
|
|
139
|
-
// ];
|
|
140
|
-
// })
|
|
141
|
-
// .flat();
|
|
142
|
-
// const returnBalanceData = await dexHelper.multiContract.methods
|
|
143
|
-
// .tryAggregate(false, balanceCalldata)
|
|
144
|
-
// .call({});
|
|
145
|
-
// console.log(returnBalanceData);
|
|
146
|
-
// const balances: BigNumber[] = returnBalanceData
|
|
147
|
-
// .filter((d: any) => d.returnData !== '0x')
|
|
148
|
-
// .map(
|
|
149
|
-
// (d: any) =>
|
|
150
|
-
// ethers.utils.defaultAbiCoder.decode(['uint256'], d.returnData)[0],
|
|
151
|
-
// );
|
|
152
|
-
// console.log(balances.map(b => b.toString()));
|
|
153
|
-
// const data = uniqueGemJoins.map((gemJoin, i) => {
|
|
154
|
-
// const token = Object.values(tokens).find(
|
|
155
|
-
// t => t.address.toLowerCase() === gems[i].toLowerCase(),
|
|
156
|
-
// );
|
|
157
|
-
// const symbol = token
|
|
158
|
-
// ? Object.entries(tokens).find(
|
|
159
|
-
// ([symbol, t]) => t.address.toLowerCase() === gems[i].toLowerCase(),
|
|
160
|
-
// )?.[0]
|
|
161
|
-
// : 'Not found';
|
|
162
|
-
// const balance = token
|
|
163
|
-
// ? Number(ethers.utils.formatUnits(balances[i], token.decimals))
|
|
164
|
-
// : balances[i].toString();
|
|
165
|
-
// return {
|
|
166
|
-
// gemJoin,
|
|
167
|
-
// gem: gems[i],
|
|
168
|
-
// balance,
|
|
169
|
-
// ...(token
|
|
170
|
-
// ? {
|
|
171
|
-
// address: gems[i],
|
|
172
|
-
// decimals: token.decimals,
|
|
173
|
-
// symbol,
|
|
174
|
-
// }
|
|
175
|
-
// : { address: gems[i] }),
|
|
176
|
-
// };
|
|
177
|
-
// });
|
|
178
|
-
// console.log(data);
|
|
179
|
-
// // const address = logsToDispatch[0].address;
|
|
180
|
-
// return true;
|
|
181
|
-
// }
|
|
182
|
-
// findNewGems()
|
|
183
|
-
// .then(() => console.log('Done'))
|
|
184
|
-
// .catch(e => console.error(e));
|
|
185
|
-
//# sourceMappingURL=validate-state.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate-state.js","sourceRoot":"","sources":["../../../../src/dex/maker-psm/scripts/validate-state.ts"],"names":[],"mappings":"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"}
|