@paraswap/dex-lib 3.8.7 → 3.8.8

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 (196) hide show
  1. package/.vscode/launch.json +53 -0
  2. package/.vscode/settings.json +2 -0
  3. package/.vscode/tasks.json +15 -0
  4. package/build/abi/AaveV1_lending_pool.json +27 -0
  5. package/build/abi/maverick-v2/MaverickV2Router.json +778 -0
  6. package/build/abi/platypus/asset.json +490 -0
  7. package/build/abi/platypus/avax-pool.json +820 -0
  8. package/build/abi/platypus/oracle.json +119 -0
  9. package/build/abi/platypus/pool.json +677 -0
  10. package/build/abi/smardex/all/smardex-router.json +648 -0
  11. package/build/abi/smardex/layer-1/smardex-factory.json +242 -0
  12. package/build/abi/smardex/layer-1/smardex-pool.json +506 -0
  13. package/build/abi/smardex/layer-2/smardex-factory.json +185 -0
  14. package/build/abi/smardex/layer-2/smardex-pool.json +578 -0
  15. package/build/abi/swaap-v1/pool.json +1346 -0
  16. package/build/abi/uniswap-v3/AlienBaseV3Router.abi.json +52 -0
  17. package/build/abi/wombat/pool.json +1289 -0
  18. package/build/dex/aave-v1/aave-v1.d.ts +34 -0
  19. package/build/dex/aave-v1/aave-v1.js +181 -0
  20. package/build/dex/aave-v1/aave-v1.js.map +1 -0
  21. package/build/dex/aave-v1/config.d.ts +11 -0
  22. package/build/dex/aave-v1/config.js +20 -0
  23. package/build/dex/aave-v1/config.js.map +1 -0
  24. package/build/dex/aave-v1/tokens-mainnet.json +134 -0
  25. package/build/dex/aave-v1/tokens.d.ts +3 -0
  26. package/build/dex/aave-v1/tokens.js +50 -0
  27. package/build/dex/aave-v1/tokens.js.map +1 -0
  28. package/build/dex/aave-v1/types.d.ts +12 -0
  29. package/build/dex/aave-v1/types.js +3 -0
  30. package/build/dex/aave-v1/types.js.map +1 -0
  31. package/build/dex/aave-v2/tokens-avalanche.json +44 -0
  32. package/build/dex/aave-v2/tokens-mainnet.json +188 -0
  33. package/build/dex/aave-v2/tokens-polygon.json +44 -0
  34. package/build/dex/aave-v3-stata/aave-v3-stata.js +1 -1
  35. package/build/dex/aave-v3-stata/aave-v3-stata.js.map +1 -1
  36. package/build/dex/bProtocol.d.ts +18 -0
  37. package/build/dex/bProtocol.js +39 -0
  38. package/build/dex/bProtocol.js.map +1 -0
  39. package/build/dex/bancor.d.ts +26 -0
  40. package/build/dex/bancor.js +58 -0
  41. package/build/dex/bancor.js.map +1 -0
  42. package/build/dex/compound.d.ts +18 -0
  43. package/build/dex/compound.js +46 -0
  44. package/build/dex/compound.js.map +1 -0
  45. package/build/dex/curve-v2.d.ts +58 -0
  46. package/build/dex/curve-v2.js +180 -0
  47. package/build/dex/curve-v2.js.map +1 -0
  48. package/build/dex/dodo-v1.d.ts +33 -0
  49. package/build/dex/dodo-v1.js +63 -0
  50. package/build/dex/dodo-v1.js.map +1 -0
  51. package/build/dex/lido.d.ts +19 -0
  52. package/build/dex/lido.js +42 -0
  53. package/build/dex/lido.js.map +1 -0
  54. package/build/dex/maker-psm/scripts/gem.abi.json +136 -0
  55. package/build/dex/maker-psm/scripts/validate-state.d.ts +0 -0
  56. package/build/dex/maker-psm/scripts/validate-state.js +185 -0
  57. package/build/dex/maker-psm/scripts/validate-state.js.map +1 -0
  58. package/build/dex/maker-psm/scripts/vat.abi.json +243 -0
  59. package/build/dex/onebit.d.ts +25 -0
  60. package/build/dex/onebit.js +42 -0
  61. package/build/dex/onebit.js.map +1 -0
  62. package/build/dex/platypus/asset.d.ts +14 -0
  63. package/build/dex/platypus/asset.js +97 -0
  64. package/build/dex/platypus/asset.js.map +1 -0
  65. package/build/dex/platypus/config.d.ts +11 -0
  66. package/build/dex/platypus/config.js +69 -0
  67. package/build/dex/platypus/config.js.map +1 -0
  68. package/build/dex/platypus/platypus.d.ts +63 -0
  69. package/build/dex/platypus/platypus.js +487 -0
  70. package/build/dex/platypus/platypus.js.map +1 -0
  71. package/build/dex/platypus/pool-avax.d.ts +8 -0
  72. package/build/dex/platypus/pool-avax.js +54 -0
  73. package/build/dex/platypus/pool-avax.js.map +1 -0
  74. package/build/dex/platypus/pool-base.d.ts +19 -0
  75. package/build/dex/platypus/pool-base.js +86 -0
  76. package/build/dex/platypus/pool-base.js.map +1 -0
  77. package/build/dex/platypus/pool-pure.d.ts +8 -0
  78. package/build/dex/platypus/pool-pure.js +37 -0
  79. package/build/dex/platypus/pool-pure.js.map +1 -0
  80. package/build/dex/platypus/pool-subscriber.d.ts +14 -0
  81. package/build/dex/platypus/pool-subscriber.js +167 -0
  82. package/build/dex/platypus/pool-subscriber.js.map +1 -0
  83. package/build/dex/platypus/pool.d.ts +8 -0
  84. package/build/dex/platypus/pool.js +58 -0
  85. package/build/dex/platypus/pool.js.map +1 -0
  86. package/build/dex/platypus/types.d.ts +92 -0
  87. package/build/dex/platypus/types.js +10 -0
  88. package/build/dex/platypus/types.js.map +1 -0
  89. package/build/dex/quickswap/spiritswap-v3.d.ts +6 -0
  90. package/build/dex/quickswap/spiritswap-v3.js +19 -0
  91. package/build/dex/quickswap/spiritswap-v3.js.map +1 -0
  92. package/build/dex/smardex/config.d.ts +4 -0
  93. package/build/dex/smardex/config.js +64 -0
  94. package/build/dex/smardex/config.js.map +1 -0
  95. package/build/dex/smardex/constants.d.ts +18 -0
  96. package/build/dex/smardex/constants.js +33 -0
  97. package/build/dex/smardex/constants.js.map +1 -0
  98. package/build/dex/smardex/sdk/constants.d.ts +6 -0
  99. package/build/dex/smardex/sdk/constants.js +13 -0
  100. package/build/dex/smardex/sdk/constants.js.map +1 -0
  101. package/build/dex/smardex/sdk/core.d.ts +113 -0
  102. package/build/dex/smardex/sdk/core.js +499 -0
  103. package/build/dex/smardex/sdk/core.js.map +1 -0
  104. package/build/dex/smardex/sdk/errors.d.ts +15 -0
  105. package/build/dex/smardex/sdk/errors.js +22 -0
  106. package/build/dex/smardex/sdk/errors.js.map +1 -0
  107. package/build/dex/smardex/sdk/types.d.ts +62 -0
  108. package/build/dex/smardex/sdk/types.js +3 -0
  109. package/build/dex/smardex/sdk/types.js.map +1 -0
  110. package/build/dex/smardex/sdk/utils.d.ts +44 -0
  111. package/build/dex/smardex/sdk/utils.js +133 -0
  112. package/build/dex/smardex/sdk/utils.js.map +1 -0
  113. package/build/dex/smardex/smardex-event-pool.d.ts +28 -0
  114. package/build/dex/smardex/smardex-event-pool.js +119 -0
  115. package/build/dex/smardex/smardex-event-pool.js.map +1 -0
  116. package/build/dex/smardex/smardex.d.ts +65 -0
  117. package/build/dex/smardex/smardex.js +519 -0
  118. package/build/dex/smardex/smardex.js.map +1 -0
  119. package/build/dex/smardex/types.d.ts +55 -0
  120. package/build/dex/smardex/types.js +3 -0
  121. package/build/dex/smardex/types.js.map +1 -0
  122. package/build/dex/smoothy.d.ts +26 -0
  123. package/build/dex/smoothy.js +48 -0
  124. package/build/dex/smoothy.js.map +1 -0
  125. package/build/dex/solidly/forks-override/cone.d.ts +22 -0
  126. package/build/dex/solidly/forks-override/cone.js +53 -0
  127. package/build/dex/solidly/forks-override/cone.js.map +1 -0
  128. package/build/dex/solidly/forks-override/solisnek.d.ts +8 -0
  129. package/build/dex/solidly/forks-override/solisnek.js +15 -0
  130. package/build/dex/solidly/forks-override/solisnek.js.map +1 -0
  131. package/build/dex/solidly-v3/scripts/check-event-pool-event.d.ts +1 -0
  132. package/build/dex/solidly-v3/scripts/check-event-pool-event.js +53 -0
  133. package/build/dex/solidly-v3/scripts/check-event-pool-event.js.map +1 -0
  134. package/build/dex/stable-pool.d.ts +28 -0
  135. package/build/dex/stable-pool.js +55 -0
  136. package/build/dex/stable-pool.js.map +1 -0
  137. package/build/dex/swaap-v1/config.d.ts +17 -0
  138. package/build/dex/swaap-v1/config.js +56 -0
  139. package/build/dex/swaap-v1/config.js.map +1 -0
  140. package/build/dex/swaap-v1/constants.d.ts +6 -0
  141. package/build/dex/swaap-v1/constants.js +17 -0
  142. package/build/dex/swaap-v1/constants.js.map +1 -0
  143. package/build/dex/swaap-v1/libraries/ChainlinkUtils.d.ts +25 -0
  144. package/build/dex/swaap-v1/libraries/ChainlinkUtils.js +62 -0
  145. package/build/dex/swaap-v1/libraries/ChainlinkUtils.js.map +1 -0
  146. package/build/dex/swaap-v1/libraries/Const.d.ts +18 -0
  147. package/build/dex/swaap-v1/libraries/Const.js +26 -0
  148. package/build/dex/swaap-v1/libraries/Const.js.map +1 -0
  149. package/build/dex/swaap-v1/libraries/GeometricBrownianMotion.d.ts +77 -0
  150. package/build/dex/swaap-v1/libraries/GeometricBrownianMotion.js +316 -0
  151. package/build/dex/swaap-v1/libraries/GeometricBrownianMotion.js.map +1 -0
  152. package/build/dex/swaap-v1/libraries/LogExpMath.d.ts +75 -0
  153. package/build/dex/swaap-v1/libraries/LogExpMath.js +418 -0
  154. package/build/dex/swaap-v1/libraries/LogExpMath.js.map +1 -0
  155. package/build/dex/swaap-v1/libraries/MathMMM.d.ts +185 -0
  156. package/build/dex/swaap-v1/libraries/MathMMM.js +453 -0
  157. package/build/dex/swaap-v1/libraries/MathMMM.js.map +1 -0
  158. package/build/dex/swaap-v1/libraries/Num.d.ts +31 -0
  159. package/build/dex/swaap-v1/libraries/Num.js +167 -0
  160. package/build/dex/swaap-v1/libraries/Num.js.map +1 -0
  161. package/build/dex/swaap-v1/libraries/PoolQuotations.d.ts +23 -0
  162. package/build/dex/swaap-v1/libraries/PoolQuotations.js +131 -0
  163. package/build/dex/swaap-v1/libraries/PoolQuotations.js.map +1 -0
  164. package/build/dex/swaap-v1/libraries/Struct.d.ts +56 -0
  165. package/build/dex/swaap-v1/libraries/Struct.js +3 -0
  166. package/build/dex/swaap-v1/libraries/Struct.js.map +1 -0
  167. package/build/dex/swaap-v1/swaap-v1-pool.d.ts +45 -0
  168. package/build/dex/swaap-v1/swaap-v1-pool.js +656 -0
  169. package/build/dex/swaap-v1/swaap-v1-pool.js.map +1 -0
  170. package/build/dex/swaap-v1/swaap-v1.d.ts +62 -0
  171. package/build/dex/swaap-v1/swaap-v1.js +383 -0
  172. package/build/dex/swaap-v1/swaap-v1.js.map +1 -0
  173. package/build/dex/swaap-v1/types.d.ts +106 -0
  174. package/build/dex/swaap-v1/types.js +9 -0
  175. package/build/dex/swaap-v1/types.js.map +1 -0
  176. package/build/dex/trader-joe-v2.1.d.ts +43 -0
  177. package/build/dex/trader-joe-v2.1.js +79 -0
  178. package/build/dex/trader-joe-v2.1.js.map +1 -0
  179. package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.d.ts +17 -0
  180. package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js +64 -0
  181. package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js.map +1 -0
  182. package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.d.ts +17 -0
  183. package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js +79 -0
  184. package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js.map +1 -0
  185. package/config.ts +1946 -0
  186. package/package.json +1 -1
  187. package/src/dex/aave-v3-stata/aave-v3-stata.ts +1 -1
  188. package/src/dex/dexs.txt +58 -0
  189. package/.idea/aws.xml +0 -17
  190. package/.idea/codeStyles/Project.xml +0 -19
  191. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  192. package/.idea/misc.xml +0 -6
  193. package/.idea/modules.xml +0 -8
  194. package/.idea/paraswap-dex-lib.iml +0 -9
  195. package/.idea/prettier.xml +0 -7
  196. package/.idea/vcs.xml +0 -6
@@ -0,0 +1,490 @@
1
+ [
2
+ {
3
+ "anonymous": false,
4
+ "inputs": [
5
+ {
6
+ "indexed": true,
7
+ "internalType": "address",
8
+ "name": "owner",
9
+ "type": "address"
10
+ },
11
+ {
12
+ "indexed": true,
13
+ "internalType": "address",
14
+ "name": "spender",
15
+ "type": "address"
16
+ },
17
+ {
18
+ "indexed": false,
19
+ "internalType": "uint256",
20
+ "name": "value",
21
+ "type": "uint256"
22
+ }
23
+ ],
24
+ "name": "Approval",
25
+ "type": "event"
26
+ },
27
+ {
28
+ "anonymous": false,
29
+ "inputs": [
30
+ {
31
+ "indexed": false,
32
+ "internalType": "uint256",
33
+ "name": "previousCashPosition",
34
+ "type": "uint256"
35
+ },
36
+ {
37
+ "indexed": false,
38
+ "internalType": "uint256",
39
+ "name": "cashBeingAdded",
40
+ "type": "uint256"
41
+ }
42
+ ],
43
+ "name": "CashAdded",
44
+ "type": "event"
45
+ },
46
+ {
47
+ "anonymous": false,
48
+ "inputs": [
49
+ {
50
+ "indexed": false,
51
+ "internalType": "uint256",
52
+ "name": "previousCashPosition",
53
+ "type": "uint256"
54
+ },
55
+ {
56
+ "indexed": false,
57
+ "internalType": "uint256",
58
+ "name": "cashBeingRemoved",
59
+ "type": "uint256"
60
+ }
61
+ ],
62
+ "name": "CashRemoved",
63
+ "type": "event"
64
+ },
65
+ {
66
+ "anonymous": false,
67
+ "inputs": [
68
+ {
69
+ "indexed": false,
70
+ "internalType": "uint256",
71
+ "name": "previousLiabilityPosition",
72
+ "type": "uint256"
73
+ },
74
+ {
75
+ "indexed": false,
76
+ "internalType": "uint256",
77
+ "name": "liabilityBeingAdded",
78
+ "type": "uint256"
79
+ }
80
+ ],
81
+ "name": "LiabilityAdded",
82
+ "type": "event"
83
+ },
84
+ {
85
+ "anonymous": false,
86
+ "inputs": [
87
+ {
88
+ "indexed": false,
89
+ "internalType": "uint256",
90
+ "name": "previousLiabilityPosition",
91
+ "type": "uint256"
92
+ },
93
+ {
94
+ "indexed": false,
95
+ "internalType": "uint256",
96
+ "name": "liabilityBeingRemoved",
97
+ "type": "uint256"
98
+ }
99
+ ],
100
+ "name": "LiabilityRemoved",
101
+ "type": "event"
102
+ },
103
+ {
104
+ "anonymous": false,
105
+ "inputs": [
106
+ {
107
+ "indexed": false,
108
+ "internalType": "uint256",
109
+ "name": "previousMaxSupply",
110
+ "type": "uint256"
111
+ },
112
+ {
113
+ "indexed": false,
114
+ "internalType": "uint256",
115
+ "name": "newMaxSupply",
116
+ "type": "uint256"
117
+ }
118
+ ],
119
+ "name": "MaxSupplyUpdated",
120
+ "type": "event"
121
+ },
122
+ {
123
+ "anonymous": false,
124
+ "inputs": [
125
+ {
126
+ "indexed": true,
127
+ "internalType": "address",
128
+ "name": "previousOwner",
129
+ "type": "address"
130
+ },
131
+ {
132
+ "indexed": true,
133
+ "internalType": "address",
134
+ "name": "newOwner",
135
+ "type": "address"
136
+ }
137
+ ],
138
+ "name": "OwnershipTransferred",
139
+ "type": "event"
140
+ },
141
+ {
142
+ "anonymous": false,
143
+ "inputs": [
144
+ {
145
+ "indexed": true,
146
+ "internalType": "address",
147
+ "name": "previousPool",
148
+ "type": "address"
149
+ },
150
+ {
151
+ "indexed": true,
152
+ "internalType": "address",
153
+ "name": "newPool",
154
+ "type": "address"
155
+ }
156
+ ],
157
+ "name": "PoolUpdated",
158
+ "type": "event"
159
+ },
160
+ {
161
+ "anonymous": false,
162
+ "inputs": [
163
+ {
164
+ "indexed": true,
165
+ "internalType": "address",
166
+ "name": "from",
167
+ "type": "address"
168
+ },
169
+ {
170
+ "indexed": true,
171
+ "internalType": "address",
172
+ "name": "to",
173
+ "type": "address"
174
+ },
175
+ {
176
+ "indexed": false,
177
+ "internalType": "uint256",
178
+ "name": "value",
179
+ "type": "uint256"
180
+ }
181
+ ],
182
+ "name": "Transfer",
183
+ "type": "event"
184
+ },
185
+ {
186
+ "inputs": [],
187
+ "name": "_name",
188
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
189
+ "stateMutability": "view",
190
+ "type": "function"
191
+ },
192
+ {
193
+ "inputs": [],
194
+ "name": "_symbol",
195
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
196
+ "stateMutability": "view",
197
+ "type": "function"
198
+ },
199
+ {
200
+ "inputs": [
201
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
202
+ ],
203
+ "name": "addCash",
204
+ "outputs": [],
205
+ "stateMutability": "nonpayable",
206
+ "type": "function"
207
+ },
208
+ {
209
+ "inputs": [
210
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
211
+ ],
212
+ "name": "addLiability",
213
+ "outputs": [],
214
+ "stateMutability": "nonpayable",
215
+ "type": "function"
216
+ },
217
+ {
218
+ "inputs": [],
219
+ "name": "aggregateAccount",
220
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
221
+ "stateMutability": "view",
222
+ "type": "function"
223
+ },
224
+ {
225
+ "inputs": [
226
+ { "internalType": "address", "name": "owner", "type": "address" },
227
+ { "internalType": "address", "name": "spender", "type": "address" }
228
+ ],
229
+ "name": "allowance",
230
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
231
+ "stateMutability": "view",
232
+ "type": "function"
233
+ },
234
+ {
235
+ "inputs": [
236
+ { "internalType": "address", "name": "spender", "type": "address" },
237
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
238
+ ],
239
+ "name": "approve",
240
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
241
+ "stateMutability": "nonpayable",
242
+ "type": "function"
243
+ },
244
+ {
245
+ "inputs": [
246
+ { "internalType": "address", "name": "account", "type": "address" }
247
+ ],
248
+ "name": "balanceOf",
249
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
250
+ "stateMutability": "view",
251
+ "type": "function"
252
+ },
253
+ {
254
+ "inputs": [
255
+ { "internalType": "address", "name": "to", "type": "address" },
256
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
257
+ ],
258
+ "name": "burn",
259
+ "outputs": [],
260
+ "stateMutability": "nonpayable",
261
+ "type": "function"
262
+ },
263
+ {
264
+ "inputs": [],
265
+ "name": "cash",
266
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
267
+ "stateMutability": "view",
268
+ "type": "function"
269
+ },
270
+ {
271
+ "inputs": [],
272
+ "name": "decimals",
273
+ "outputs": [{ "internalType": "uint8", "name": "", "type": "uint8" }],
274
+ "stateMutability": "view",
275
+ "type": "function"
276
+ },
277
+ {
278
+ "inputs": [
279
+ { "internalType": "address", "name": "spender", "type": "address" },
280
+ {
281
+ "internalType": "uint256",
282
+ "name": "subtractedValue",
283
+ "type": "uint256"
284
+ }
285
+ ],
286
+ "name": "decreaseAllowance",
287
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
288
+ "stateMutability": "nonpayable",
289
+ "type": "function"
290
+ },
291
+ {
292
+ "inputs": [
293
+ { "internalType": "address", "name": "spender", "type": "address" },
294
+ { "internalType": "uint256", "name": "addedValue", "type": "uint256" }
295
+ ],
296
+ "name": "increaseAllowance",
297
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
298
+ "stateMutability": "nonpayable",
299
+ "type": "function"
300
+ },
301
+ {
302
+ "inputs": [
303
+ {
304
+ "internalType": "address",
305
+ "name": "underlyingToken_",
306
+ "type": "address"
307
+ },
308
+ { "internalType": "string", "name": "name_", "type": "string" },
309
+ { "internalType": "string", "name": "symbol_", "type": "string" },
310
+ {
311
+ "internalType": "address",
312
+ "name": "aggregateAccount_",
313
+ "type": "address"
314
+ }
315
+ ],
316
+ "name": "initialize",
317
+ "outputs": [],
318
+ "stateMutability": "nonpayable",
319
+ "type": "function"
320
+ },
321
+ {
322
+ "inputs": [],
323
+ "name": "liability",
324
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
325
+ "stateMutability": "view",
326
+ "type": "function"
327
+ },
328
+ {
329
+ "inputs": [],
330
+ "name": "maxSupply",
331
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
332
+ "stateMutability": "view",
333
+ "type": "function"
334
+ },
335
+ {
336
+ "inputs": [
337
+ { "internalType": "address", "name": "to", "type": "address" },
338
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
339
+ ],
340
+ "name": "mint",
341
+ "outputs": [],
342
+ "stateMutability": "nonpayable",
343
+ "type": "function"
344
+ },
345
+ {
346
+ "inputs": [],
347
+ "name": "name",
348
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
349
+ "stateMutability": "view",
350
+ "type": "function"
351
+ },
352
+ {
353
+ "inputs": [],
354
+ "name": "owner",
355
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
356
+ "stateMutability": "view",
357
+ "type": "function"
358
+ },
359
+ {
360
+ "inputs": [],
361
+ "name": "pool",
362
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
363
+ "stateMutability": "view",
364
+ "type": "function"
365
+ },
366
+ {
367
+ "inputs": [
368
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
369
+ ],
370
+ "name": "removeCash",
371
+ "outputs": [],
372
+ "stateMutability": "nonpayable",
373
+ "type": "function"
374
+ },
375
+ {
376
+ "inputs": [
377
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
378
+ ],
379
+ "name": "removeLiability",
380
+ "outputs": [],
381
+ "stateMutability": "nonpayable",
382
+ "type": "function"
383
+ },
384
+ {
385
+ "inputs": [],
386
+ "name": "renounceOwnership",
387
+ "outputs": [],
388
+ "stateMutability": "nonpayable",
389
+ "type": "function"
390
+ },
391
+ {
392
+ "inputs": [
393
+ {
394
+ "internalType": "address",
395
+ "name": "aggregateAccount_",
396
+ "type": "address"
397
+ }
398
+ ],
399
+ "name": "setAggregateAccount",
400
+ "outputs": [],
401
+ "stateMutability": "nonpayable",
402
+ "type": "function"
403
+ },
404
+ {
405
+ "inputs": [
406
+ { "internalType": "uint256", "name": "maxSupply_", "type": "uint256" }
407
+ ],
408
+ "name": "setMaxSupply",
409
+ "outputs": [],
410
+ "stateMutability": "nonpayable",
411
+ "type": "function"
412
+ },
413
+ {
414
+ "inputs": [
415
+ { "internalType": "address", "name": "pool_", "type": "address" }
416
+ ],
417
+ "name": "setPool",
418
+ "outputs": [],
419
+ "stateMutability": "nonpayable",
420
+ "type": "function"
421
+ },
422
+ {
423
+ "inputs": [],
424
+ "name": "symbol",
425
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
426
+ "stateMutability": "view",
427
+ "type": "function"
428
+ },
429
+ {
430
+ "inputs": [],
431
+ "name": "totalSupply",
432
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
433
+ "stateMutability": "view",
434
+ "type": "function"
435
+ },
436
+ {
437
+ "inputs": [
438
+ { "internalType": "address", "name": "recipient", "type": "address" },
439
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
440
+ ],
441
+ "name": "transfer",
442
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
443
+ "stateMutability": "nonpayable",
444
+ "type": "function"
445
+ },
446
+ {
447
+ "inputs": [
448
+ { "internalType": "address", "name": "sender", "type": "address" },
449
+ { "internalType": "address", "name": "recipient", "type": "address" },
450
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
451
+ ],
452
+ "name": "transferFrom",
453
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
454
+ "stateMutability": "nonpayable",
455
+ "type": "function"
456
+ },
457
+ {
458
+ "inputs": [
459
+ { "internalType": "address", "name": "newOwner", "type": "address" }
460
+ ],
461
+ "name": "transferOwnership",
462
+ "outputs": [],
463
+ "stateMutability": "nonpayable",
464
+ "type": "function"
465
+ },
466
+ {
467
+ "inputs": [
468
+ { "internalType": "address", "name": "to", "type": "address" },
469
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
470
+ ],
471
+ "name": "transferUnderlyingToken",
472
+ "outputs": [],
473
+ "stateMutability": "nonpayable",
474
+ "type": "function"
475
+ },
476
+ {
477
+ "inputs": [],
478
+ "name": "underlyingToken",
479
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
480
+ "stateMutability": "view",
481
+ "type": "function"
482
+ },
483
+ {
484
+ "inputs": [],
485
+ "name": "underlyingTokenBalance",
486
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
487
+ "stateMutability": "view",
488
+ "type": "function"
489
+ }
490
+ ]