@paraswap/dex-lib 3.8.1 → 3.8.3

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.
Files changed (213) hide show
  1. package/.vscode/launch.json +9 -49
  2. package/.vscode/settings.json +2 -1
  3. package/build/abi/Uncompressor.json +250 -0
  4. package/build/abi/integral/factory.json +333 -0
  5. package/build/abi/integral/oracle.json +501 -0
  6. package/build/abi/integral/pool.json +1041 -0
  7. package/build/abi/{wombat/pool.json → integral/relayer.json} +720 -473
  8. package/build/abi/oswap/oswap.abi.json +452 -0
  9. package/build/dex/aave-v1/aave-v1.d.ts +1 -2
  10. package/build/dex/aave-v1/aave-v1.js +0 -23
  11. package/build/dex/aave-v1/aave-v1.js.map +1 -1
  12. package/build/dex/aave-v3/aave-v3.js +2 -1
  13. package/build/dex/aave-v3/aave-v3.js.map +1 -1
  14. package/build/dex/aave-v3-stata/aave-v3-stata.js +1 -0
  15. package/build/dex/aave-v3-stata/aave-v3-stata.js.map +1 -1
  16. package/build/dex/angle-staked-stable/angle-staked-stable.js +4 -1
  17. package/build/dex/angle-staked-stable/angle-staked-stable.js.map +1 -1
  18. package/build/dex/compound/compound.js +2 -1
  19. package/build/dex/compound/compound.js.map +1 -1
  20. package/build/dex/compound.js +1 -1
  21. package/build/dex/compound.js.map +1 -1
  22. package/build/dex/etherfi/etherfi.d.ts +26 -0
  23. package/build/dex/etherfi/etherfi.js +96 -0
  24. package/build/dex/etherfi/etherfi.js.map +1 -0
  25. package/build/dex/etherfi.js +4 -1
  26. package/build/dex/etherfi.js.map +1 -1
  27. package/build/dex/idle-dao/idle-dao.js +1 -0
  28. package/build/dex/idle-dao/idle-dao.js.map +1 -1
  29. package/build/dex/integral/config.d.ts +4 -0
  30. package/build/dex/integral/config.js +20 -0
  31. package/build/dex/integral/config.js.map +1 -0
  32. package/build/dex/integral/context.d.ts +33 -0
  33. package/build/dex/integral/context.js +98 -0
  34. package/build/dex/integral/context.js.map +1 -0
  35. package/build/dex/integral/helpers.d.ts +17 -0
  36. package/build/dex/integral/helpers.js +157 -0
  37. package/build/dex/integral/helpers.js.map +1 -0
  38. package/build/dex/integral/integral-factory.d.ts +21 -0
  39. package/build/dex/integral/integral-factory.js +92 -0
  40. package/build/dex/integral/integral-factory.js.map +1 -0
  41. package/build/dex/integral/integral-pool.d.ts +46 -0
  42. package/build/dex/integral/integral-pool.js +143 -0
  43. package/build/dex/integral/integral-pool.js.map +1 -0
  44. package/build/dex/integral/integral-pricing.d.ts +18 -0
  45. package/build/dex/integral/integral-pricing.js +114 -0
  46. package/build/dex/integral/integral-pricing.js.map +1 -0
  47. package/build/dex/integral/integral-relayer.d.ts +39 -0
  48. package/build/dex/integral/integral-relayer.js +189 -0
  49. package/build/dex/integral/integral-relayer.js.map +1 -0
  50. package/build/dex/integral/integral-token.d.ts +22 -0
  51. package/build/dex/integral/integral-token.js +55 -0
  52. package/build/dex/integral/integral-token.js.map +1 -0
  53. package/build/dex/integral/integral.d.ts +41 -0
  54. package/build/dex/integral/integral.js +382 -0
  55. package/build/dex/integral/integral.js.map +1 -0
  56. package/build/dex/integral/types.d.ts +84 -0
  57. package/build/dex/integral/types.js +9 -0
  58. package/build/dex/integral/types.js.map +1 -0
  59. package/build/dex/integral/utils.d.ts +6 -0
  60. package/build/dex/integral/utils.js +23 -0
  61. package/build/dex/integral/utils.js.map +1 -0
  62. package/build/dex/mStable.js +1 -1
  63. package/build/dex/mStable.js.map +1 -1
  64. package/build/dex/oswap/config.d.ts +5 -0
  65. package/build/dex/oswap/config.js +31 -0
  66. package/build/dex/oswap/config.js.map +1 -0
  67. package/build/dex/oswap/oswap-pool.d.ts +51 -0
  68. package/build/dex/oswap/oswap-pool.js +150 -0
  69. package/build/dex/oswap/oswap-pool.js.map +1 -0
  70. package/build/dex/oswap/oswap.d.ts +46 -0
  71. package/build/dex/oswap/oswap.js +266 -0
  72. package/build/dex/oswap/oswap.js.map +1 -0
  73. package/build/dex/oswap/types.d.ts +20 -0
  74. package/build/dex/oswap/types.js +3 -0
  75. package/build/dex/oswap/types.js.map +1 -0
  76. package/build/dex/paraswap-limit-orders/paraswap-limit-orders.js +3 -0
  77. package/build/dex/paraswap-limit-orders/paraswap-limit-orders.js.map +1 -1
  78. package/build/dex/platypus/platypus.d.ts +1 -2
  79. package/build/dex/platypus/platypus.js +0 -45
  80. package/build/dex/platypus/platypus.js.map +1 -1
  81. package/build/dex/sdai/config.d.ts +11 -0
  82. package/build/dex/sdai/config.js +21 -0
  83. package/build/dex/sdai/config.js.map +1 -0
  84. package/build/dex/sdai/constants.d.ts +2 -0
  85. package/build/dex/sdai/constants.js +6 -0
  86. package/build/dex/sdai/constants.js.map +1 -0
  87. package/build/dex/sdai/scripts/validate-state.js +102 -0
  88. package/build/dex/sdai/scripts/validate-state.js.map +1 -0
  89. package/build/dex/sdai/sdai-pool.d.ts +16 -0
  90. package/build/dex/sdai/sdai-pool.js +85 -0
  91. package/build/dex/sdai/sdai-pool.js.map +1 -0
  92. package/build/dex/sdai/sdai.d.ts +51 -0
  93. package/build/dex/sdai/sdai.js +172 -0
  94. package/build/dex/sdai/sdai.js.map +1 -0
  95. package/build/dex/sdai/types.d.ts +21 -0
  96. package/build/dex/sdai/types.js +11 -0
  97. package/build/dex/sdai/types.js.map +1 -0
  98. package/build/dex/sdai/utils.d.ts +4 -0
  99. package/build/dex/sdai/utils.js +39 -0
  100. package/build/dex/sdai/utils.js.map +1 -0
  101. package/build/dex/simple-exchange.d.ts +1 -1
  102. package/build/dex/simple-exchange.js +4 -2
  103. package/build/dex/simple-exchange.js.map +1 -1
  104. package/build/dex/spark/spark.js +2 -1
  105. package/build/dex/spark/spark.js.map +1 -1
  106. package/build/dex/stable-pool.js +8 -1
  107. package/build/dex/stable-pool.js.map +1 -1
  108. package/build/dex/swaap-v1/swaap-v1.d.ts +1 -2
  109. package/build/dex/swaap-v1/swaap-v1.js +0 -14
  110. package/build/dex/swaap-v1/swaap-v1.js.map +1 -1
  111. package/build/executor/Executor01BytecodeBuilder.js +3 -1
  112. package/build/executor/Executor01BytecodeBuilder.js.map +1 -1
  113. package/build/executor/Executor02BytecodeBuilder.js +3 -1
  114. package/build/executor/Executor02BytecodeBuilder.js.map +1 -1
  115. package/build/executor/Executor03BytecodeBuilder.js +2 -0
  116. package/build/executor/Executor03BytecodeBuilder.js.map +1 -1
  117. package/build/executor/ExecutorBytecodeBuilder.js +2 -0
  118. package/build/executor/ExecutorBytecodeBuilder.js.map +1 -1
  119. package/build/executor/compressor/Compressor.d.ts +23 -0
  120. package/build/executor/compressor/Compressor.js +144 -0
  121. package/build/executor/compressor/Compressor.js.map +1 -0
  122. package/build/executor/compressor/compress.d.ts +17 -0
  123. package/build/executor/compressor/compress.js +187 -0
  124. package/build/executor/compressor/compress.js.map +1 -0
  125. package/build/executor/compressor/compress_functions/addressSubstitution.d.ts +6 -0
  126. package/build/executor/compressor/compress_functions/addressSubstitution.js +29 -0
  127. package/build/executor/compressor/compress_functions/addressSubstitution.js.map +1 -0
  128. package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.d.ts +10 -0
  129. package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js +40 -0
  130. package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js.map +1 -0
  131. package/build/executor/compressor/compress_functions/byteSubstitution.d.ts +11 -0
  132. package/build/executor/compressor/compress_functions/byteSubstitution.js +64 -0
  133. package/build/executor/compressor/compress_functions/byteSubstitution.js.map +1 -0
  134. package/build/executor/compressor/compress_functions/ffSubstitution.d.ts +7 -0
  135. package/build/executor/compressor/compress_functions/ffSubstitution.js +54 -0
  136. package/build/executor/compressor/compress_functions/ffSubstitution.js.map +1 -0
  137. package/build/executor/compressor/compress_functions/findLongestAndSubstitute.d.ts +8 -0
  138. package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js +67 -0
  139. package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js.map +1 -0
  140. package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.d.ts +8 -0
  141. package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js +61 -0
  142. package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js.map +1 -0
  143. package/build/executor/compressor/compress_functions/reverseAddressSubstitution.d.ts +6 -0
  144. package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js +37 -0
  145. package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js.map +1 -0
  146. package/build/executor/compressor/compress_functions/searchUnusedBytes.d.ts +9 -0
  147. package/build/executor/compressor/compress_functions/searchUnusedBytes.js +33 -0
  148. package/build/executor/compressor/compress_functions/searchUnusedBytes.js.map +1 -0
  149. package/build/executor/compressor/fetchSaved.js +17 -0
  150. package/build/executor/compressor/fetchSaved.js.map +1 -0
  151. package/build/executor/compressor/utils/computeCostL2.d.ts +2 -0
  152. package/build/executor/compressor/utils/computeCostL2.js +14 -0
  153. package/build/executor/compressor/utils/computeCostL2.js.map +1 -0
  154. package/build/executor/compressor/utils/findLongestDuplicatedString.d.ts +2 -0
  155. package/build/executor/compressor/utils/findLongestDuplicatedString.js +30 -0
  156. package/build/executor/compressor/utils/findLongestDuplicatedString.js.map +1 -0
  157. package/build/executor/compressor/utils/getAllIndexes.d.ts +2 -0
  158. package/build/executor/compressor/utils/getAllIndexes.js +12 -0
  159. package/build/executor/compressor/utils/getAllIndexes.js.map +1 -0
  160. package/build/executor/compressor/utils/getByteForAddress.d.ts +2 -0
  161. package/build/executor/compressor/utils/getByteForAddress.js +14 -0
  162. package/build/executor/compressor/utils/getByteForAddress.js.map +1 -0
  163. package/build/executor/compressor/utils/intTo2Bytes.d.ts +2 -0
  164. package/build/executor/compressor/utils/intTo2Bytes.js +14 -0
  165. package/build/executor/compressor/utils/intTo2Bytes.js.map +1 -0
  166. package/build/executor/compressor/utils/intTo3Bytes.d.ts +2 -0
  167. package/build/executor/compressor/utils/intTo3Bytes.js +18 -0
  168. package/build/executor/compressor/utils/intTo3Bytes.js.map +1 -0
  169. package/build/executor/compressor/utils/intToByte.d.ts +2 -0
  170. package/build/executor/compressor/utils/intToByte.js +10 -0
  171. package/build/executor/compressor/utils/intToByte.js.map +1 -0
  172. package/build/types.d.ts +1 -0
  173. package/package.json +1 -1
  174. package/src/dex/aave-v3/aave-v3-e2e.test.ts +4 -9
  175. package/src/dex/aave-v3/aave-v3.ts +5 -0
  176. package/src/dex/aave-v3-stata/aave-v3-stata.ts +1 -0
  177. package/src/dex/angle-staked-stable/angle-staked-stable.ts +8 -0
  178. package/src/dex/compound/compound.ts +5 -0
  179. package/src/dex/etherfi.ts +5 -0
  180. package/src/dex/idle-dao/idle-dao.ts +1 -0
  181. package/src/dex/paraswap-limit-orders/paraswap-limit-orders-e2e.test.ts +152 -68
  182. package/src/dex/paraswap-limit-orders/paraswap-limit-orders.ts +3 -0
  183. package/src/dex/simple-exchange.ts +5 -5
  184. package/src/dex/spark/spark-e2e.test.ts +9 -1
  185. package/src/dex/spark/spark.ts +5 -0
  186. package/src/executor/Executor01BytecodeBuilder.ts +3 -1
  187. package/src/executor/Executor02BytecodeBuilder.ts +3 -1
  188. package/src/executor/Executor03BytecodeBuilder.ts +2 -0
  189. package/src/executor/ExecutorBytecodeBuilder.ts +2 -0
  190. package/src/executor/executor01-bytecode-builder-e2e.test.ts +25 -0
  191. package/src/executor/executor02-bytecode-builder-e2e.test.ts +29 -0
  192. package/src/types.ts +1 -0
  193. package/tests/constants-e2e.ts +14 -14
  194. package/tests/utils-e2e.ts +1 -1
  195. package/.vscode/tasks.json +0 -15
  196. package/build/abi/uniswap-v3/AlienBaseV3Router.abi.json +0 -52
  197. package/build/dex/aave-v2/tokens-avalanche.json +0 -44
  198. package/build/dex/aave-v2/tokens-mainnet.json +0 -188
  199. package/build/dex/aave-v2/tokens-polygon.json +0 -44
  200. package/build/dex/maker-psm/scripts/gem.abi.json +0 -136
  201. package/build/dex/maker-psm/scripts/validate-state.js +0 -185
  202. package/build/dex/maker-psm/scripts/validate-state.js.map +0 -1
  203. package/build/dex/maker-psm/scripts/vat.abi.json +0 -243
  204. package/build/dex/solidly-v3/scripts/check-event-pool-event.js +0 -53
  205. package/build/dex/solidly-v3/scripts/check-event-pool-event.js.map +0 -1
  206. package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.d.ts +0 -17
  207. package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js +0 -64
  208. package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js.map +0 -1
  209. package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.d.ts +0 -17
  210. package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js +0 -79
  211. package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js.map +0 -1
  212. /package/build/dex/{solidly-v3/scripts/check-event-pool-event.d.ts → sdai/scripts/validate-state.d.ts} +0 -0
  213. /package/build/{dex/maker-psm/scripts/validate-state.d.ts → executor/compressor/fetchSaved.d.ts} +0 -0
@@ -91,6 +91,14 @@ export const Tokens: {
91
91
  address: '0x8f8221aFbB33998d8584A2B05749bA73c37a938a',
92
92
  decimals: 18,
93
93
  },
94
+ eETH: {
95
+ address: '0x35fA164735182de50811E8e2E824cFb9B6118ac2',
96
+ decimals: 18,
97
+ },
98
+ weETH: {
99
+ address: '0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee',
100
+ decimals: 18,
101
+ },
94
102
  AMPL: {
95
103
  address: '0xd46ba6d942050d489dbd938a2c909a5d5039a161',
96
104
  decimals: 9,
@@ -483,14 +491,6 @@ export const Tokens: {
483
491
  address: '0x83f20f44975d03b1b09e64809b757c47f942beea',
484
492
  decimals: 18,
485
493
  },
486
- eETH: {
487
- address: '0x35fa164735182de50811e8e2e824cfb9b6118ac2',
488
- decimals: 18,
489
- },
490
- weETH: {
491
- address: '0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee',
492
- decimals: 18,
493
- },
494
494
  stataUSDT: {
495
495
  address: '0x862c57d48becb45583aeba3f489696d22466ca1b',
496
496
  decimals: 6,
@@ -1543,7 +1543,7 @@ export const Holders: {
1543
1543
  USDD: '0xf89d7b9c864f589bbf53a82105107622b35eaa40',
1544
1544
  alETH: '0x500a4f1280a0b63f47862d658b6c335cc939aaed',
1545
1545
  SHIBA: '0x73af3bcf944a6559933396c1577b257e2054d935',
1546
- aEthWETH: '0xfEA3F5b06D41Cb1526b9cAf8be63c5b37C475f23',
1546
+ aEthWETH: '0x931433324E6B0b5B04E3460ef3fb3f78dda3c721',
1547
1547
  dUSDC: '0x2FC2F705110A7F46Ce85F701d7217EF1018f01A3',
1548
1548
  PSP: '0xE5E5440a1CE69C5cf67BFFA74d185e57c31b43E5',
1549
1549
  EUROC: '0x64AE5802620398143FC7113037769175F74825Ea',
@@ -1678,7 +1678,7 @@ export const Holders: {
1678
1678
  BETS: '0x8cc2284c90d05578633418f9cde104f402375a65',
1679
1679
  HATCHY: '0x14ec295ec8def851ec6e2959df872dd24e422631',
1680
1680
  USDCe: '0x3a2434c698f8d79af1f5a9e43013157ca8b11a66',
1681
- USDC: '0x0d0707963952f2fba59dd06f2b425ace40b492fe',
1681
+ USDC: '0x187b6Ab771482CCFEE7cD2C35176080631082368',
1682
1682
  USDTe: '0x84d34f4f83a87596cd3fb6887cff8f17bf5a7b83',
1683
1683
  WETHe: '0x9bdB521a97E95177BF252C253E256A60C3e14447',
1684
1684
  POPS: '0x5268c2331658cb0b2858cfa9db27d8f22f5434bc',
@@ -1741,8 +1741,8 @@ export const Holders: {
1741
1741
  EURA: '0x6dd7b830896b56812aa667bdd14b71c8b3252f8e',
1742
1742
  stEUR: '0xE588611e7A2392507879E3be80531654b85C16aA',
1743
1743
  USDA: '0xa86ff337db9107b54862d30d1a598f8be847b05e',
1744
- stUSD: '0xa9ddd91249dfdd450e81e1c56ab60e1a62651701',
1745
- stataUSDT: '0x403D37c861fb54b8F37a3A1870aBce335954840B',
1744
+ stUSD: '0xBa511aAd739358b2F34285f9E2d5344017b7DcaD',
1745
+ stataUSDT: '0xc5042f9d9a18e95547864438455c8f05b4987399',
1746
1746
  aaveUSDT: '0xAfa788fab589fe61C23DF76905558f4734444D67',
1747
1747
  crvUSD: '0x9755e99bdb99495d3d31d953785d993c6df8552e',
1748
1748
  },
@@ -1764,9 +1764,9 @@ export const Holders: {
1764
1764
  rETH: '0x4c2e69e58b14de9afedfb94319519ce34e087283',
1765
1765
  WBTC: '0xb9c8f0d3254007ee4b98970b94544e473cd610ec',
1766
1766
  frxETH: '0x4d4edf8291d169f975b99914b6ab3326abb45938',
1767
- EURA: '0xC18dAC166eDa9538933258d21A272C1775C19c73',
1767
+ EURA: '0x9A760aa1Fe631fD9aC0Aee0965736121c7c132cc',
1768
1768
  stEUR: '0xA9DdD91249DFdd450E81E1c56Ab60E1A62651701',
1769
- USDA: '0xC18dAC166eDa9538933258d21A272C1775C19c73',
1769
+ USDA: '0x7dFf12833a6f0e88f610E79E11E9506848cCF187',
1770
1770
  stUSD: '0xC98b0729695A25152B8D5b6B95709070605A7F60',
1771
1771
  crvUSD: '0x528e7aF33043Da06ca3DD407626a71DbBD3173D6',
1772
1772
  LUSD: '0xf0a9abb11958a071e168f2ee5bcbacf1abbde9cf',
@@ -475,7 +475,7 @@ export async function testE2E(
475
475
  ? new APIParaswapSDK(network, dexKeys, '')
476
476
  : new LocalParaswapSDK(network, dexKeys, '', limitOrderProvider);
477
477
 
478
- if (paraswap.initializePricing) await paraswap.initializePricing();
478
+ await paraswap.initializePricing?.();
479
479
 
480
480
  if (sleepMs) {
481
481
  await sleep(sleepMs);
@@ -1,15 +0,0 @@
1
- {
2
- "version": "2.0.0",
3
- "tasks": [
4
- {
5
- "label": "tsc: build - tsconfig.json",
6
- "type": "typescript",
7
- "tsconfig": "tsconfig.json",
8
- "problemMatcher": ["$tsc"],
9
- "group": {
10
- "kind": "build",
11
- "isDefault": true
12
- }
13
- }
14
- ]
15
- }
@@ -1,52 +0,0 @@
1
- [
2
- {
3
- "inputs": [
4
- {
5
- "components": [
6
- { "internalType": "bytes", "name": "path", "type": "bytes" },
7
- { "internalType": "address", "name": "recipient", "type": "address" },
8
- { "internalType": "uint256", "name": "amountIn", "type": "uint256" },
9
- {
10
- "internalType": "uint256",
11
- "name": "amountOutMinimum",
12
- "type": "uint256"
13
- }
14
- ],
15
- "internalType": "struct ISwapRouter.ExactInputParams",
16
- "name": "params",
17
- "type": "tuple"
18
- }
19
- ],
20
- "name": "exactInput",
21
- "outputs": [
22
- { "internalType": "uint256", "name": "amountOut", "type": "uint256" }
23
- ],
24
- "stateMutability": "payable",
25
- "type": "function"
26
- },
27
- {
28
- "inputs": [
29
- {
30
- "components": [
31
- { "internalType": "bytes", "name": "path", "type": "bytes" },
32
- { "internalType": "address", "name": "recipient", "type": "address" },
33
- { "internalType": "uint256", "name": "amountOut", "type": "uint256" },
34
- {
35
- "internalType": "uint256",
36
- "name": "amountInMaximum",
37
- "type": "uint256"
38
- }
39
- ],
40
- "internalType": "struct ISwapRouter.ExactOutputParams",
41
- "name": "params",
42
- "type": "tuple"
43
- }
44
- ],
45
- "name": "exactOutput",
46
- "outputs": [
47
- { "internalType": "uint256", "name": "amountIn", "type": "uint256" }
48
- ],
49
- "stateMutability": "payable",
50
- "type": "function"
51
- }
52
- ]
@@ -1,44 +0,0 @@
1
- [
2
- {
3
- "aSymbol": "avWETH",
4
- "aAddress": "0x53f7c5869a859f0aec3d334ee8b4cf01e3492f21",
5
- "address": "0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab",
6
- "decimals": 18
7
- },
8
- {
9
- "aSymbol": "avDAI",
10
- "aAddress": "0x47afa96cdc9fab46904a55a6ad4bf6660b53c38a",
11
- "address": "0xd586e7f844cea2f87f50152665bcbc2c279d8d70",
12
- "decimals": 18
13
- },
14
- {
15
- "aSymbol": "avUSDT",
16
- "aAddress": "0x532e6537fea298397212f09a61e03311686f548e",
17
- "address": "0xc7198437980c041c805a1edcba50c1ce5db95118",
18
- "decimals": 6
19
- },
20
- {
21
- "aSymbol": "avUSDC",
22
- "aAddress": "0x46a51127c3ce23fb7ab1de06226147f446e4a857",
23
- "address": "0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664",
24
- "decimals": 6
25
- },
26
- {
27
- "aSymbol": "avAAVE",
28
- "aAddress": "0xd45b7c061016102f9fa220502908f2c0f1add1d7",
29
- "address": "0x63a72806098bd3d9520cc43356dd78afe5d386d9",
30
- "decimals": 18
31
- },
32
- {
33
- "aSymbol": "avWBTC",
34
- "aAddress": "0x686bef2417b6dc32c50a3cbfbcc3bb60e1e9a15d",
35
- "address": "0x50b7545627a5162f82a992c33b87adc75187b218",
36
- "decimals": 8
37
- },
38
- {
39
- "aSymbol": "avWAVAX",
40
- "aAddress": "0xdfe521292ece2a4f44242efbcd66bc594ca9714b",
41
- "address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7",
42
- "decimals": 18
43
- }
44
- ]
@@ -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
- ]