@paraswap/dex-lib 4.8.25 → 4.8.26

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 (236) hide show
  1. package/build/abi/BProtocol.json +1155 -0
  2. package/build/abi/Jarvis.json +1172 -0
  3. package/build/abi/MStableAsset.json +1545 -0
  4. package/build/abi/OneInchLp.json +1304 -0
  5. package/build/abi/Onebit.json +736 -0
  6. package/build/abi/Shell.json +1294 -0
  7. package/build/abi/TraderJoeV2Router.json +50 -0
  8. package/build/abi/idle-dao/idle-cdo-factory.json +38 -0
  9. package/build/abi/idle-dao/idle-cdo.json +1245 -0
  10. package/build/abi/infusion/InfusionFactory.json +147 -0
  11. package/build/abi/infusion/InfusionPair.json +658 -0
  12. package/build/abi/infusion/InfusionRouter.json +442 -0
  13. package/build/abi/maker-psm/pot.json +322 -0
  14. package/build/abi/maker-psm/psm.json +243 -0
  15. package/build/abi/maker-psm/vat.json +363 -0
  16. package/build/abi/nomiswap-v2/nomiswap-v2-pool.json +773 -0
  17. package/build/abi/quick-perps/fast-price-events.json +70 -0
  18. package/build/abi/quick-perps/fast-price-feed.json +741 -0
  19. package/build/abi/quick-perps/reader.json +313 -0
  20. package/build/abi/quick-perps/vault-price-feed.json +323 -0
  21. package/build/abi/quick-perps/vault.json +1953 -0
  22. package/build/abi/uniswap-v2/excalibur-pool.json +881 -0
  23. package/build/abi/uniswap-v2/mdex-factory.json +759 -0
  24. package/build/abi/wUSDM.json +757 -0
  25. package/build/abi/zrx.v2.json +1967 -0
  26. package/build/abi/zrx.v3.json +3454 -0
  27. package/build/abi/zrx.v4.json +2193 -0
  28. package/build/config.js +12 -12
  29. package/build/dex/OneInchLp.d.ts +24 -0
  30. package/build/dex/OneInchLp.js +43 -0
  31. package/build/dex/OneInchLp.js.map +1 -0
  32. package/build/dex/bProtocol/bProtocol.d.ts +15 -0
  33. package/build/dex/bProtocol/bProtocol.js +56 -0
  34. package/build/dex/bProtocol/bProtocol.js.map +1 -0
  35. package/build/dex/bProtocol/types.d.ts +11 -0
  36. package/build/dex/bProtocol/types.js +8 -0
  37. package/build/dex/bProtocol/types.js.map +1 -0
  38. package/build/dex/ekubo/pools/base-pool.d.ts +47 -0
  39. package/build/dex/ekubo/pools/base-pool.js +184 -0
  40. package/build/dex/ekubo/pools/base-pool.js.map +1 -0
  41. package/build/dex/ekubo/pools/iface.d.ts +46 -0
  42. package/build/dex/ekubo/pools/iface.js +75 -0
  43. package/build/dex/ekubo/pools/iface.js.map +1 -0
  44. package/build/dex/ekubo/pools/math/price.d.ts +7 -0
  45. package/build/dex/ekubo/pools/math/price.js +112 -0
  46. package/build/dex/ekubo/pools/math/price.js.map +1 -0
  47. package/build/dex/ekubo/pools/oracle-pool.d.ts +10 -0
  48. package/build/dex/ekubo/pools/oracle-pool.js +19 -0
  49. package/build/dex/ekubo/pools/oracle-pool.js.map +1 -0
  50. package/build/dex/ekubo/pools/pool-utils.d.ts +44 -0
  51. package/build/dex/ekubo/pools/pool-utils.js +240 -0
  52. package/build/dex/ekubo/pools/pool-utils.js.map +1 -0
  53. package/build/dex/ekubo-v3/ekubo-v3.js +1 -0
  54. package/build/dex/ekubo-v3/ekubo-v3.js.map +1 -1
  55. package/build/dex/idle-dao/config.d.ts +5 -0
  56. package/build/dex/idle-dao/config.js +24 -0
  57. package/build/dex/idle-dao/config.js.map +1 -0
  58. package/build/dex/idle-dao/idle-dao.d.ts +42 -0
  59. package/build/dex/idle-dao/idle-dao.js +279 -0
  60. package/build/dex/idle-dao/idle-dao.js.map +1 -0
  61. package/build/dex/idle-dao/token_list.d.ts +4 -0
  62. package/build/dex/idle-dao/token_list.js +289 -0
  63. package/build/dex/idle-dao/token_list.js.map +1 -0
  64. package/build/dex/idle-dao/tokens.d.ts +9 -0
  65. package/build/dex/idle-dao/tokens.js +68 -0
  66. package/build/dex/idle-dao/tokens.js.map +1 -0
  67. package/build/dex/idle-dao/types.d.ts +35 -0
  68. package/build/dex/idle-dao/types.js +11 -0
  69. package/build/dex/idle-dao/types.js.map +1 -0
  70. package/build/dex/idle-dao/utils.d.ts +8 -0
  71. package/build/dex/idle-dao/utils.js +149 -0
  72. package/build/dex/idle-dao/utils.js.map +1 -0
  73. package/build/dex/infusion/config.d.ts +3 -0
  74. package/build/dex/infusion/config.js +20 -0
  75. package/build/dex/infusion/config.js.map +1 -0
  76. package/build/dex/infusion/infusion-stable-pool.d.ts +4 -0
  77. package/build/dex/infusion/infusion-stable-pool.js +74 -0
  78. package/build/dex/infusion/infusion-stable-pool.js.map +1 -0
  79. package/build/dex/infusion/infusion.d.ts +51 -0
  80. package/build/dex/infusion/infusion.js +500 -0
  81. package/build/dex/infusion/infusion.js.map +1 -0
  82. package/build/dex/infusion/types.d.ts +45 -0
  83. package/build/dex/infusion/types.js +3 -0
  84. package/build/dex/infusion/types.js.map +1 -0
  85. package/build/dex/infusion/utils/isStablePair.d.ts +2 -0
  86. package/build/dex/infusion/utils/isStablePair.js +18 -0
  87. package/build/dex/infusion/utils/isStablePair.js.map +1 -0
  88. package/build/dex/jarvis.d.ts +56 -0
  89. package/build/dex/jarvis.js +163 -0
  90. package/build/dex/jarvis.js.map +1 -0
  91. package/build/dex/mStable.d.ts +44 -0
  92. package/build/dex/mStable.js +75 -0
  93. package/build/dex/mStable.js.map +1 -0
  94. package/build/dex/maker-psm/config.d.ts +11 -0
  95. package/build/dex/maker-psm/config.js +53 -0
  96. package/build/dex/maker-psm/config.js.map +1 -0
  97. package/build/dex/maker-psm/maker-psm.d.ts +103 -0
  98. package/build/dex/maker-psm/maker-psm.js +493 -0
  99. package/build/dex/maker-psm/maker-psm.js.map +1 -0
  100. package/build/dex/maker-psm/types.d.ts +39 -0
  101. package/build/dex/maker-psm/types.js +3 -0
  102. package/build/dex/maker-psm/types.js.map +1 -0
  103. package/build/dex/onebit/onebit.d.ts +16 -0
  104. package/build/dex/onebit/onebit.js +61 -0
  105. package/build/dex/onebit/onebit.js.map +1 -0
  106. package/build/dex/onebit/types.d.ts +14 -0
  107. package/build/dex/onebit/types.js +8 -0
  108. package/build/dex/onebit/types.js.map +1 -0
  109. package/build/dex/quick-perps/config.d.ts +11 -0
  110. package/build/dex/quick-perps/config.js +27 -0
  111. package/build/dex/quick-perps/config.js.map +1 -0
  112. package/build/dex/quick-perps/fast-price-feed.d.ts +26 -0
  113. package/build/dex/quick-perps/fast-price-feed.js +184 -0
  114. package/build/dex/quick-perps/fast-price-feed.js.map +1 -0
  115. package/build/dex/quick-perps/pool.d.ts +21 -0
  116. package/build/dex/quick-perps/pool.js +229 -0
  117. package/build/dex/quick-perps/pool.js.map +1 -0
  118. package/build/dex/quick-perps/quick-perps.d.ts +53 -0
  119. package/build/dex/quick-perps/quick-perps.js +247 -0
  120. package/build/dex/quick-perps/quick-perps.js.map +1 -0
  121. package/build/dex/quick-perps/types.d.ts +98 -0
  122. package/build/dex/quick-perps/types.js +3 -0
  123. package/build/dex/quick-perps/types.js.map +1 -0
  124. package/build/dex/quick-perps/usdq.d.ts +15 -0
  125. package/build/dex/quick-perps/usdq.js +62 -0
  126. package/build/dex/quick-perps/usdq.js.map +1 -0
  127. package/build/dex/quick-perps/vault-price-feed.d.ts +43 -0
  128. package/build/dex/quick-perps/vault-price-feed.js +203 -0
  129. package/build/dex/quick-perps/vault-price-feed.js.map +1 -0
  130. package/build/dex/quick-perps/vault-utils.d.ts +8 -0
  131. package/build/dex/quick-perps/vault-utils.js +42 -0
  132. package/build/dex/quick-perps/vault-utils.js.map +1 -0
  133. package/build/dex/quick-perps/vault.d.ts +46 -0
  134. package/build/dex/quick-perps/vault.js +182 -0
  135. package/build/dex/quick-perps/vault.js.map +1 -0
  136. package/build/dex/se-vlr/config.d.ts +3 -0
  137. package/build/dex/se-vlr/config.js +24 -0
  138. package/build/dex/se-vlr/config.js.map +1 -0
  139. package/build/dex/se-vlr/se-vlr-pool.d.ts +39 -0
  140. package/build/dex/se-vlr/se-vlr-pool.js +70 -0
  141. package/build/dex/se-vlr/se-vlr-pool.js.map +1 -0
  142. package/build/dex/se-vlr/se-vlr.d.ts +35 -0
  143. package/build/dex/se-vlr/se-vlr.js +131 -0
  144. package/build/dex/se-vlr/se-vlr.js.map +1 -0
  145. package/build/dex/se-vlr/types.d.ts +6 -0
  146. package/build/dex/se-vlr/types.js +3 -0
  147. package/build/dex/se-vlr/types.js.map +1 -0
  148. package/build/dex/shell.d.ts +25 -0
  149. package/build/dex/shell.js +41 -0
  150. package/build/dex/shell.js.map +1 -0
  151. package/build/dex/solidly/forks-override/aerodrome.d.ts +14 -0
  152. package/build/dex/solidly/forks-override/aerodrome.js +46 -0
  153. package/build/dex/solidly/forks-override/aerodrome.js.map +1 -0
  154. package/build/dex/solidly/forks-override/chronos.d.ts +23 -0
  155. package/build/dex/solidly/forks-override/chronos.js +141 -0
  156. package/build/dex/solidly/forks-override/chronos.js.map +1 -0
  157. package/build/dex/solidly/forks-override/usdfi.d.ts +8 -0
  158. package/build/dex/solidly/forks-override/usdfi.js +15 -0
  159. package/build/dex/solidly/forks-override/usdfi.js.map +1 -0
  160. package/build/dex/solidly/forks-override/velocimeter.d.ts +23 -0
  161. package/build/dex/solidly/forks-override/velocimeter.js +77 -0
  162. package/build/dex/solidly/forks-override/velocimeter.js.map +1 -0
  163. package/build/dex/trader-joe-v2.d.ts +40 -0
  164. package/build/dex/trader-joe-v2.js +74 -0
  165. package/build/dex/trader-joe-v2.js.map +1 -0
  166. package/build/dex/uniswap-v2/dfyn.d.ts +19 -0
  167. package/build/dex/uniswap-v2/dfyn.js +61 -0
  168. package/build/dex/uniswap-v2/dfyn.js.map +1 -0
  169. package/build/dex/uniswap-v2/excalibur.d.ts +24 -0
  170. package/build/dex/uniswap-v2/excalibur.js +47 -0
  171. package/build/dex/uniswap-v2/excalibur.js.map +1 -0
  172. package/build/dex/uniswap-v2/mdex.d.ts +24 -0
  173. package/build/dex/uniswap-v2/mdex.js +50 -0
  174. package/build/dex/uniswap-v2/mdex.js.map +1 -0
  175. package/build/dex/uniswap-v2/nomiswap-v2.d.ts +24 -0
  176. package/build/dex/uniswap-v2/nomiswap-v2.js +57 -0
  177. package/build/dex/uniswap-v2/nomiswap-v2.js.map +1 -0
  178. package/build/dex/uniswap-v3/uniswap-v3-new.d.ts +94 -0
  179. package/build/dex/uniswap-v3/uniswap-v3-new.js +923 -0
  180. package/build/dex/uniswap-v3/uniswap-v3-new.js.map +1 -0
  181. package/build/dex/uniswap-v4/contract-math/Position.d.ts +3 -0
  182. package/build/dex/uniswap-v4/contract-math/Position.js +10 -0
  183. package/build/dex/uniswap-v4/contract-math/Position.js.map +1 -0
  184. package/build/dex/usual-bond/config.d.ts +3 -0
  185. package/build/dex/usual-bond/config.js +13 -0
  186. package/build/dex/usual-bond/config.js.map +1 -0
  187. package/build/dex/usual-bond/types.d.ts +7 -0
  188. package/build/dex/usual-bond/types.js +3 -0
  189. package/build/dex/usual-bond/types.js.map +1 -0
  190. package/build/dex/usual-bond/usual-bond.d.ts +35 -0
  191. package/build/dex/usual-bond/usual-bond.js +176 -0
  192. package/build/dex/usual-bond/usual-bond.js.map +1 -0
  193. package/build/dex/wusdm/config.d.ts +3 -0
  194. package/build/dex/wusdm/config.js +43 -0
  195. package/build/dex/wusdm/config.js.map +1 -0
  196. package/build/dex/wusdm/constants.d.ts +2 -0
  197. package/build/dex/wusdm/constants.js +6 -0
  198. package/build/dex/wusdm/constants.js.map +1 -0
  199. package/build/dex/wusdm/types.d.ts +18 -0
  200. package/build/dex/wusdm/types.js +11 -0
  201. package/build/dex/wusdm/types.js.map +1 -0
  202. package/build/dex/wusdm/wusdm-pool.d.ts +21 -0
  203. package/build/dex/wusdm/wusdm-pool.js +74 -0
  204. package/build/dex/wusdm/wusdm-pool.js.map +1 -0
  205. package/build/dex/wusdm/wusdm.d.ts +46 -0
  206. package/build/dex/wusdm/wusdm.js +243 -0
  207. package/build/dex/wusdm/wusdm.js.map +1 -0
  208. package/build/dex/zerox/config.d.ts +2 -0
  209. package/build/dex/zerox/config.js +33 -0
  210. package/build/dex/zerox/config.js.map +1 -0
  211. package/build/dex/zerox/index.d.ts +22 -0
  212. package/build/dex/zerox/index.js +225 -0
  213. package/build/dex/zerox/index.js.map +1 -0
  214. package/build/dex/zerox/order.d.ts +88 -0
  215. package/build/dex/zerox/order.js +53 -0
  216. package/build/dex/zerox/order.js.map +1 -0
  217. package/build/dex/zerox/types.d.ts +73 -0
  218. package/build/dex/zerox/types.js +21 -0
  219. package/build/dex/zerox/types.js.map +1 -0
  220. package/build/executor/Executor03BytecodeBuilder.d.ts +15 -0
  221. package/build/executor/Executor03BytecodeBuilder.js +67 -6
  222. package/build/executor/Executor03BytecodeBuilder.js.map +1 -1
  223. package/build/types.d.ts +1 -0
  224. package/package.json +1 -1
  225. package/build/dex/uniswap-v4/api-go/compare-pricing.d.ts +0 -1
  226. package/build/dex/uniswap-v4/api-go/compare-pricing.js +0 -187
  227. package/build/dex/uniswap-v4/api-go/compare-pricing.js.map +0 -1
  228. package/build/dex/uniswap-v4/api-go/compare-states.d.ts +0 -1
  229. package/build/dex/uniswap-v4/api-go/compare-states.js +0 -149
  230. package/build/dex/uniswap-v4/api-go/compare-states.js.map +0 -1
  231. package/build/dex/uniswap-v4/api-go/fetch-pool-key.d.ts +0 -0
  232. package/build/dex/uniswap-v4/api-go/fetch-pool-key.js +0 -140
  233. package/build/dex/uniswap-v4/api-go/fetch-pool-key.js.map +0 -1
  234. package/build/tenderly-simulation.d.ts +0 -221
  235. package/build/tenderly-simulation.js +0 -517
  236. package/build/tenderly-simulation.js.map +0 -1
@@ -0,0 +1,363 @@
1
+ [
2
+ {
3
+ "inputs": [],
4
+ "payable": false,
5
+ "stateMutability": "nonpayable",
6
+ "type": "constructor"
7
+ },
8
+ {
9
+ "anonymous": true,
10
+ "inputs": [
11
+ {
12
+ "indexed": true,
13
+ "internalType": "bytes4",
14
+ "name": "sig",
15
+ "type": "bytes4"
16
+ },
17
+ {
18
+ "indexed": true,
19
+ "internalType": "bytes32",
20
+ "name": "arg1",
21
+ "type": "bytes32"
22
+ },
23
+ {
24
+ "indexed": true,
25
+ "internalType": "bytes32",
26
+ "name": "arg2",
27
+ "type": "bytes32"
28
+ },
29
+ {
30
+ "indexed": true,
31
+ "internalType": "bytes32",
32
+ "name": "arg3",
33
+ "type": "bytes32"
34
+ },
35
+ {
36
+ "indexed": false,
37
+ "internalType": "bytes",
38
+ "name": "data",
39
+ "type": "bytes"
40
+ }
41
+ ],
42
+ "name": "LogNote",
43
+ "type": "event"
44
+ },
45
+ {
46
+ "constant": true,
47
+ "inputs": [],
48
+ "name": "Line",
49
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
50
+ "payable": false,
51
+ "stateMutability": "view",
52
+ "type": "function"
53
+ },
54
+ {
55
+ "constant": false,
56
+ "inputs": [],
57
+ "name": "cage",
58
+ "outputs": [],
59
+ "payable": false,
60
+ "stateMutability": "nonpayable",
61
+ "type": "function"
62
+ },
63
+ {
64
+ "constant": true,
65
+ "inputs": [
66
+ { "internalType": "address", "name": "", "type": "address" },
67
+ { "internalType": "address", "name": "", "type": "address" }
68
+ ],
69
+ "name": "can",
70
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
71
+ "payable": false,
72
+ "stateMutability": "view",
73
+ "type": "function"
74
+ },
75
+ {
76
+ "constant": true,
77
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
78
+ "name": "dai",
79
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
80
+ "payable": false,
81
+ "stateMutability": "view",
82
+ "type": "function"
83
+ },
84
+ {
85
+ "constant": true,
86
+ "inputs": [],
87
+ "name": "debt",
88
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
89
+ "payable": false,
90
+ "stateMutability": "view",
91
+ "type": "function"
92
+ },
93
+ {
94
+ "constant": false,
95
+ "inputs": [{ "internalType": "address", "name": "usr", "type": "address" }],
96
+ "name": "deny",
97
+ "outputs": [],
98
+ "payable": false,
99
+ "stateMutability": "nonpayable",
100
+ "type": "function"
101
+ },
102
+ {
103
+ "constant": false,
104
+ "inputs": [
105
+ { "internalType": "bytes32", "name": "ilk", "type": "bytes32" },
106
+ { "internalType": "bytes32", "name": "what", "type": "bytes32" },
107
+ { "internalType": "uint256", "name": "data", "type": "uint256" }
108
+ ],
109
+ "name": "file",
110
+ "outputs": [],
111
+ "payable": false,
112
+ "stateMutability": "nonpayable",
113
+ "type": "function"
114
+ },
115
+ {
116
+ "constant": false,
117
+ "inputs": [
118
+ { "internalType": "bytes32", "name": "what", "type": "bytes32" },
119
+ { "internalType": "uint256", "name": "data", "type": "uint256" }
120
+ ],
121
+ "name": "file",
122
+ "outputs": [],
123
+ "payable": false,
124
+ "stateMutability": "nonpayable",
125
+ "type": "function"
126
+ },
127
+ {
128
+ "constant": false,
129
+ "inputs": [
130
+ { "internalType": "bytes32", "name": "ilk", "type": "bytes32" },
131
+ { "internalType": "address", "name": "src", "type": "address" },
132
+ { "internalType": "address", "name": "dst", "type": "address" },
133
+ { "internalType": "uint256", "name": "wad", "type": "uint256" }
134
+ ],
135
+ "name": "flux",
136
+ "outputs": [],
137
+ "payable": false,
138
+ "stateMutability": "nonpayable",
139
+ "type": "function"
140
+ },
141
+ {
142
+ "constant": false,
143
+ "inputs": [
144
+ { "internalType": "bytes32", "name": "i", "type": "bytes32" },
145
+ { "internalType": "address", "name": "u", "type": "address" },
146
+ { "internalType": "int256", "name": "rate", "type": "int256" }
147
+ ],
148
+ "name": "fold",
149
+ "outputs": [],
150
+ "payable": false,
151
+ "stateMutability": "nonpayable",
152
+ "type": "function"
153
+ },
154
+ {
155
+ "constant": false,
156
+ "inputs": [
157
+ { "internalType": "bytes32", "name": "ilk", "type": "bytes32" },
158
+ { "internalType": "address", "name": "src", "type": "address" },
159
+ { "internalType": "address", "name": "dst", "type": "address" },
160
+ { "internalType": "int256", "name": "dink", "type": "int256" },
161
+ { "internalType": "int256", "name": "dart", "type": "int256" }
162
+ ],
163
+ "name": "fork",
164
+ "outputs": [],
165
+ "payable": false,
166
+ "stateMutability": "nonpayable",
167
+ "type": "function"
168
+ },
169
+ {
170
+ "constant": false,
171
+ "inputs": [
172
+ { "internalType": "bytes32", "name": "i", "type": "bytes32" },
173
+ { "internalType": "address", "name": "u", "type": "address" },
174
+ { "internalType": "address", "name": "v", "type": "address" },
175
+ { "internalType": "address", "name": "w", "type": "address" },
176
+ { "internalType": "int256", "name": "dink", "type": "int256" },
177
+ { "internalType": "int256", "name": "dart", "type": "int256" }
178
+ ],
179
+ "name": "frob",
180
+ "outputs": [],
181
+ "payable": false,
182
+ "stateMutability": "nonpayable",
183
+ "type": "function"
184
+ },
185
+ {
186
+ "constant": true,
187
+ "inputs": [
188
+ { "internalType": "bytes32", "name": "", "type": "bytes32" },
189
+ { "internalType": "address", "name": "", "type": "address" }
190
+ ],
191
+ "name": "gem",
192
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
193
+ "payable": false,
194
+ "stateMutability": "view",
195
+ "type": "function"
196
+ },
197
+ {
198
+ "constant": false,
199
+ "inputs": [
200
+ { "internalType": "bytes32", "name": "i", "type": "bytes32" },
201
+ { "internalType": "address", "name": "u", "type": "address" },
202
+ { "internalType": "address", "name": "v", "type": "address" },
203
+ { "internalType": "address", "name": "w", "type": "address" },
204
+ { "internalType": "int256", "name": "dink", "type": "int256" },
205
+ { "internalType": "int256", "name": "dart", "type": "int256" }
206
+ ],
207
+ "name": "grab",
208
+ "outputs": [],
209
+ "payable": false,
210
+ "stateMutability": "nonpayable",
211
+ "type": "function"
212
+ },
213
+ {
214
+ "constant": false,
215
+ "inputs": [{ "internalType": "uint256", "name": "rad", "type": "uint256" }],
216
+ "name": "heal",
217
+ "outputs": [],
218
+ "payable": false,
219
+ "stateMutability": "nonpayable",
220
+ "type": "function"
221
+ },
222
+ {
223
+ "constant": false,
224
+ "inputs": [{ "internalType": "address", "name": "usr", "type": "address" }],
225
+ "name": "hope",
226
+ "outputs": [],
227
+ "payable": false,
228
+ "stateMutability": "nonpayable",
229
+ "type": "function"
230
+ },
231
+ {
232
+ "constant": true,
233
+ "inputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
234
+ "name": "ilks",
235
+ "outputs": [
236
+ { "internalType": "uint256", "name": "Art", "type": "uint256" },
237
+ { "internalType": "uint256", "name": "rate", "type": "uint256" },
238
+ { "internalType": "uint256", "name": "spot", "type": "uint256" },
239
+ { "internalType": "uint256", "name": "line", "type": "uint256" },
240
+ { "internalType": "uint256", "name": "dust", "type": "uint256" }
241
+ ],
242
+ "payable": false,
243
+ "stateMutability": "view",
244
+ "type": "function"
245
+ },
246
+ {
247
+ "constant": false,
248
+ "inputs": [{ "internalType": "bytes32", "name": "ilk", "type": "bytes32" }],
249
+ "name": "init",
250
+ "outputs": [],
251
+ "payable": false,
252
+ "stateMutability": "nonpayable",
253
+ "type": "function"
254
+ },
255
+ {
256
+ "constant": true,
257
+ "inputs": [],
258
+ "name": "live",
259
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
260
+ "payable": false,
261
+ "stateMutability": "view",
262
+ "type": "function"
263
+ },
264
+ {
265
+ "constant": false,
266
+ "inputs": [
267
+ { "internalType": "address", "name": "src", "type": "address" },
268
+ { "internalType": "address", "name": "dst", "type": "address" },
269
+ { "internalType": "uint256", "name": "rad", "type": "uint256" }
270
+ ],
271
+ "name": "move",
272
+ "outputs": [],
273
+ "payable": false,
274
+ "stateMutability": "nonpayable",
275
+ "type": "function"
276
+ },
277
+ {
278
+ "constant": false,
279
+ "inputs": [{ "internalType": "address", "name": "usr", "type": "address" }],
280
+ "name": "nope",
281
+ "outputs": [],
282
+ "payable": false,
283
+ "stateMutability": "nonpayable",
284
+ "type": "function"
285
+ },
286
+ {
287
+ "constant": false,
288
+ "inputs": [{ "internalType": "address", "name": "usr", "type": "address" }],
289
+ "name": "rely",
290
+ "outputs": [],
291
+ "payable": false,
292
+ "stateMutability": "nonpayable",
293
+ "type": "function"
294
+ },
295
+ {
296
+ "constant": true,
297
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
298
+ "name": "sin",
299
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
300
+ "payable": false,
301
+ "stateMutability": "view",
302
+ "type": "function"
303
+ },
304
+ {
305
+ "constant": false,
306
+ "inputs": [
307
+ { "internalType": "bytes32", "name": "ilk", "type": "bytes32" },
308
+ { "internalType": "address", "name": "usr", "type": "address" },
309
+ { "internalType": "int256", "name": "wad", "type": "int256" }
310
+ ],
311
+ "name": "slip",
312
+ "outputs": [],
313
+ "payable": false,
314
+ "stateMutability": "nonpayable",
315
+ "type": "function"
316
+ },
317
+ {
318
+ "constant": false,
319
+ "inputs": [
320
+ { "internalType": "address", "name": "u", "type": "address" },
321
+ { "internalType": "address", "name": "v", "type": "address" },
322
+ { "internalType": "uint256", "name": "rad", "type": "uint256" }
323
+ ],
324
+ "name": "suck",
325
+ "outputs": [],
326
+ "payable": false,
327
+ "stateMutability": "nonpayable",
328
+ "type": "function"
329
+ },
330
+ {
331
+ "constant": true,
332
+ "inputs": [
333
+ { "internalType": "bytes32", "name": "", "type": "bytes32" },
334
+ { "internalType": "address", "name": "", "type": "address" }
335
+ ],
336
+ "name": "urns",
337
+ "outputs": [
338
+ { "internalType": "uint256", "name": "ink", "type": "uint256" },
339
+ { "internalType": "uint256", "name": "art", "type": "uint256" }
340
+ ],
341
+ "payable": false,
342
+ "stateMutability": "view",
343
+ "type": "function"
344
+ },
345
+ {
346
+ "constant": true,
347
+ "inputs": [],
348
+ "name": "vice",
349
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
350
+ "payable": false,
351
+ "stateMutability": "view",
352
+ "type": "function"
353
+ },
354
+ {
355
+ "constant": true,
356
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
357
+ "name": "wards",
358
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
359
+ "payable": false,
360
+ "stateMutability": "view",
361
+ "type": "function"
362
+ }
363
+ ]