@paraswap/dex-lib 3.8.20-lite-psm → 3.8.20-lite-psm.2

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.
@@ -0,0 +1,333 @@
1
+ [
2
+ {
3
+ "inputs": [
4
+ { "internalType": "uint256", "name": "chainId_", "type": "uint256" }
5
+ ],
6
+ "payable": false,
7
+ "stateMutability": "nonpayable",
8
+ "type": "constructor"
9
+ },
10
+ {
11
+ "anonymous": false,
12
+ "inputs": [
13
+ {
14
+ "indexed": true,
15
+ "internalType": "address",
16
+ "name": "src",
17
+ "type": "address"
18
+ },
19
+ {
20
+ "indexed": true,
21
+ "internalType": "address",
22
+ "name": "guy",
23
+ "type": "address"
24
+ },
25
+ {
26
+ "indexed": false,
27
+ "internalType": "uint256",
28
+ "name": "wad",
29
+ "type": "uint256"
30
+ }
31
+ ],
32
+ "name": "Approval",
33
+ "type": "event"
34
+ },
35
+ {
36
+ "anonymous": true,
37
+ "inputs": [
38
+ {
39
+ "indexed": true,
40
+ "internalType": "bytes4",
41
+ "name": "sig",
42
+ "type": "bytes4"
43
+ },
44
+ {
45
+ "indexed": true,
46
+ "internalType": "address",
47
+ "name": "usr",
48
+ "type": "address"
49
+ },
50
+ {
51
+ "indexed": true,
52
+ "internalType": "bytes32",
53
+ "name": "arg1",
54
+ "type": "bytes32"
55
+ },
56
+ {
57
+ "indexed": true,
58
+ "internalType": "bytes32",
59
+ "name": "arg2",
60
+ "type": "bytes32"
61
+ },
62
+ {
63
+ "indexed": false,
64
+ "internalType": "bytes",
65
+ "name": "data",
66
+ "type": "bytes"
67
+ }
68
+ ],
69
+ "name": "LogNote",
70
+ "type": "event"
71
+ },
72
+ {
73
+ "anonymous": false,
74
+ "inputs": [
75
+ {
76
+ "indexed": true,
77
+ "internalType": "address",
78
+ "name": "src",
79
+ "type": "address"
80
+ },
81
+ {
82
+ "indexed": true,
83
+ "internalType": "address",
84
+ "name": "dst",
85
+ "type": "address"
86
+ },
87
+ {
88
+ "indexed": false,
89
+ "internalType": "uint256",
90
+ "name": "wad",
91
+ "type": "uint256"
92
+ }
93
+ ],
94
+ "name": "Transfer",
95
+ "type": "event"
96
+ },
97
+ {
98
+ "constant": true,
99
+ "inputs": [],
100
+ "name": "DOMAIN_SEPARATOR",
101
+ "outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
102
+ "payable": false,
103
+ "stateMutability": "view",
104
+ "type": "function"
105
+ },
106
+ {
107
+ "constant": true,
108
+ "inputs": [],
109
+ "name": "PERMIT_TYPEHASH",
110
+ "outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
111
+ "payable": false,
112
+ "stateMutability": "view",
113
+ "type": "function"
114
+ },
115
+ {
116
+ "constant": true,
117
+ "inputs": [
118
+ { "internalType": "address", "name": "", "type": "address" },
119
+ { "internalType": "address", "name": "", "type": "address" }
120
+ ],
121
+ "name": "allowance",
122
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
123
+ "payable": false,
124
+ "stateMutability": "view",
125
+ "type": "function"
126
+ },
127
+ {
128
+ "constant": false,
129
+ "inputs": [
130
+ { "internalType": "address", "name": "usr", "type": "address" },
131
+ { "internalType": "uint256", "name": "wad", "type": "uint256" }
132
+ ],
133
+ "name": "approve",
134
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
135
+ "payable": false,
136
+ "stateMutability": "nonpayable",
137
+ "type": "function"
138
+ },
139
+ {
140
+ "constant": true,
141
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
142
+ "name": "balanceOf",
143
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
144
+ "payable": false,
145
+ "stateMutability": "view",
146
+ "type": "function"
147
+ },
148
+ {
149
+ "constant": false,
150
+ "inputs": [
151
+ { "internalType": "address", "name": "usr", "type": "address" },
152
+ { "internalType": "uint256", "name": "wad", "type": "uint256" }
153
+ ],
154
+ "name": "burn",
155
+ "outputs": [],
156
+ "payable": false,
157
+ "stateMutability": "nonpayable",
158
+ "type": "function"
159
+ },
160
+ {
161
+ "constant": true,
162
+ "inputs": [],
163
+ "name": "decimals",
164
+ "outputs": [{ "internalType": "uint8", "name": "", "type": "uint8" }],
165
+ "payable": false,
166
+ "stateMutability": "view",
167
+ "type": "function"
168
+ },
169
+ {
170
+ "constant": false,
171
+ "inputs": [{ "internalType": "address", "name": "guy", "type": "address" }],
172
+ "name": "deny",
173
+ "outputs": [],
174
+ "payable": false,
175
+ "stateMutability": "nonpayable",
176
+ "type": "function"
177
+ },
178
+ {
179
+ "constant": false,
180
+ "inputs": [
181
+ { "internalType": "address", "name": "usr", "type": "address" },
182
+ { "internalType": "uint256", "name": "wad", "type": "uint256" }
183
+ ],
184
+ "name": "mint",
185
+ "outputs": [],
186
+ "payable": false,
187
+ "stateMutability": "nonpayable",
188
+ "type": "function"
189
+ },
190
+ {
191
+ "constant": false,
192
+ "inputs": [
193
+ { "internalType": "address", "name": "src", "type": "address" },
194
+ { "internalType": "address", "name": "dst", "type": "address" },
195
+ { "internalType": "uint256", "name": "wad", "type": "uint256" }
196
+ ],
197
+ "name": "move",
198
+ "outputs": [],
199
+ "payable": false,
200
+ "stateMutability": "nonpayable",
201
+ "type": "function"
202
+ },
203
+ {
204
+ "constant": true,
205
+ "inputs": [],
206
+ "name": "name",
207
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
208
+ "payable": false,
209
+ "stateMutability": "view",
210
+ "type": "function"
211
+ },
212
+ {
213
+ "constant": true,
214
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
215
+ "name": "nonces",
216
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
217
+ "payable": false,
218
+ "stateMutability": "view",
219
+ "type": "function"
220
+ },
221
+ {
222
+ "constant": false,
223
+ "inputs": [
224
+ { "internalType": "address", "name": "holder", "type": "address" },
225
+ { "internalType": "address", "name": "spender", "type": "address" },
226
+ { "internalType": "uint256", "name": "nonce", "type": "uint256" },
227
+ { "internalType": "uint256", "name": "expiry", "type": "uint256" },
228
+ { "internalType": "bool", "name": "allowed", "type": "bool" },
229
+ { "internalType": "uint8", "name": "v", "type": "uint8" },
230
+ { "internalType": "bytes32", "name": "r", "type": "bytes32" },
231
+ { "internalType": "bytes32", "name": "s", "type": "bytes32" }
232
+ ],
233
+ "name": "permit",
234
+ "outputs": [],
235
+ "payable": false,
236
+ "stateMutability": "nonpayable",
237
+ "type": "function"
238
+ },
239
+ {
240
+ "constant": false,
241
+ "inputs": [
242
+ { "internalType": "address", "name": "usr", "type": "address" },
243
+ { "internalType": "uint256", "name": "wad", "type": "uint256" }
244
+ ],
245
+ "name": "pull",
246
+ "outputs": [],
247
+ "payable": false,
248
+ "stateMutability": "nonpayable",
249
+ "type": "function"
250
+ },
251
+ {
252
+ "constant": false,
253
+ "inputs": [
254
+ { "internalType": "address", "name": "usr", "type": "address" },
255
+ { "internalType": "uint256", "name": "wad", "type": "uint256" }
256
+ ],
257
+ "name": "push",
258
+ "outputs": [],
259
+ "payable": false,
260
+ "stateMutability": "nonpayable",
261
+ "type": "function"
262
+ },
263
+ {
264
+ "constant": false,
265
+ "inputs": [{ "internalType": "address", "name": "guy", "type": "address" }],
266
+ "name": "rely",
267
+ "outputs": [],
268
+ "payable": false,
269
+ "stateMutability": "nonpayable",
270
+ "type": "function"
271
+ },
272
+ {
273
+ "constant": true,
274
+ "inputs": [],
275
+ "name": "symbol",
276
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
277
+ "payable": false,
278
+ "stateMutability": "view",
279
+ "type": "function"
280
+ },
281
+ {
282
+ "constant": true,
283
+ "inputs": [],
284
+ "name": "totalSupply",
285
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
286
+ "payable": false,
287
+ "stateMutability": "view",
288
+ "type": "function"
289
+ },
290
+ {
291
+ "constant": false,
292
+ "inputs": [
293
+ { "internalType": "address", "name": "dst", "type": "address" },
294
+ { "internalType": "uint256", "name": "wad", "type": "uint256" }
295
+ ],
296
+ "name": "transfer",
297
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
298
+ "payable": false,
299
+ "stateMutability": "nonpayable",
300
+ "type": "function"
301
+ },
302
+ {
303
+ "constant": false,
304
+ "inputs": [
305
+ { "internalType": "address", "name": "src", "type": "address" },
306
+ { "internalType": "address", "name": "dst", "type": "address" },
307
+ { "internalType": "uint256", "name": "wad", "type": "uint256" }
308
+ ],
309
+ "name": "transferFrom",
310
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
311
+ "payable": false,
312
+ "stateMutability": "nonpayable",
313
+ "type": "function"
314
+ },
315
+ {
316
+ "constant": true,
317
+ "inputs": [],
318
+ "name": "version",
319
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
320
+ "payable": false,
321
+ "stateMutability": "view",
322
+ "type": "function"
323
+ },
324
+ {
325
+ "constant": true,
326
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
327
+ "name": "wards",
328
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
329
+ "payable": false,
330
+ "stateMutability": "view",
331
+ "type": "function"
332
+ }
333
+ ]