@argonprotocol/testing 1.4.3-dev.836d58f7 → 1.4.3-dev.84ec7257
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/lib/ethereum-contracts/ArgonToken.json +671 -0
- package/lib/ethereum-contracts/ArgonotToken.json +671 -0
- package/lib/ethereum-contracts/MintingGateway.json +566 -0
- package/lib/ethereum-contracts/ProxyAdmin.json +135 -0
- package/lib/ethereum-contracts/TransparentUpgradeableProxy.json +131 -0
- package/lib/index.cjs +520 -17
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +96 -3
- package/lib/index.d.ts +96 -3
- package/lib/index.js +519 -17
- package/lib/index.js.map +1 -1
- package/package.json +5 -6
|
@@ -0,0 +1,566 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh3-artifact-1",
|
|
3
|
+
"contractName": "MintingGateway",
|
|
4
|
+
"sourceName": "contracts/MintingGateway.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "argonTokenAddress",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "address",
|
|
15
|
+
"name": "argonotTokenAddress",
|
|
16
|
+
"type": "address"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"stateMutability": "nonpayable",
|
|
20
|
+
"type": "constructor"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [],
|
|
24
|
+
"name": "ArrayLengthMismatch",
|
|
25
|
+
"type": "error"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [],
|
|
29
|
+
"name": "EnforcedPause",
|
|
30
|
+
"type": "error"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [],
|
|
34
|
+
"name": "ExpectedPause",
|
|
35
|
+
"type": "error"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"inputs": [],
|
|
39
|
+
"name": "InvalidInitialization",
|
|
40
|
+
"type": "error"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"inputs": [
|
|
44
|
+
{
|
|
45
|
+
"internalType": "address",
|
|
46
|
+
"name": "caller",
|
|
47
|
+
"type": "address"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"name": "NotGuardianOrOwner",
|
|
51
|
+
"type": "error"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"inputs": [],
|
|
55
|
+
"name": "NotInitializing",
|
|
56
|
+
"type": "error"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"inputs": [
|
|
60
|
+
{
|
|
61
|
+
"internalType": "address",
|
|
62
|
+
"name": "owner",
|
|
63
|
+
"type": "address"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"name": "OwnableInvalidOwner",
|
|
67
|
+
"type": "error"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"inputs": [
|
|
71
|
+
{
|
|
72
|
+
"internalType": "address",
|
|
73
|
+
"name": "account",
|
|
74
|
+
"type": "address"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"name": "OwnableUnauthorizedAccount",
|
|
78
|
+
"type": "error"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"inputs": [
|
|
82
|
+
{
|
|
83
|
+
"internalType": "address",
|
|
84
|
+
"name": "token",
|
|
85
|
+
"type": "address"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"name": "UnsupportedToken",
|
|
89
|
+
"type": "error"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"inputs": [],
|
|
93
|
+
"name": "ZeroAdminSafe",
|
|
94
|
+
"type": "error"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"inputs": [],
|
|
98
|
+
"name": "ZeroAmount",
|
|
99
|
+
"type": "error"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"inputs": [],
|
|
103
|
+
"name": "ZeroGuardian",
|
|
104
|
+
"type": "error"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"inputs": [
|
|
108
|
+
{
|
|
109
|
+
"internalType": "uint256",
|
|
110
|
+
"name": "index",
|
|
111
|
+
"type": "uint256"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"name": "ZeroRecipient",
|
|
115
|
+
"type": "error"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"anonymous": false,
|
|
119
|
+
"inputs": [
|
|
120
|
+
{
|
|
121
|
+
"indexed": true,
|
|
122
|
+
"internalType": "address",
|
|
123
|
+
"name": "token",
|
|
124
|
+
"type": "address"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"indexed": false,
|
|
128
|
+
"internalType": "uint256",
|
|
129
|
+
"name": "recipientCount",
|
|
130
|
+
"type": "uint256"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"indexed": false,
|
|
134
|
+
"internalType": "uint64",
|
|
135
|
+
"name": "totalAmount",
|
|
136
|
+
"type": "uint64"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"name": "AdminMintBatch",
|
|
140
|
+
"type": "event"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"anonymous": false,
|
|
144
|
+
"inputs": [
|
|
145
|
+
{
|
|
146
|
+
"indexed": true,
|
|
147
|
+
"internalType": "address",
|
|
148
|
+
"name": "from",
|
|
149
|
+
"type": "address"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"indexed": true,
|
|
153
|
+
"internalType": "address",
|
|
154
|
+
"name": "token",
|
|
155
|
+
"type": "address"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"indexed": false,
|
|
159
|
+
"internalType": "uint256",
|
|
160
|
+
"name": "amountBaseUnits",
|
|
161
|
+
"type": "uint256"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"indexed": false,
|
|
165
|
+
"internalType": "bytes32",
|
|
166
|
+
"name": "argonDestination",
|
|
167
|
+
"type": "bytes32"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"indexed": false,
|
|
171
|
+
"internalType": "uint64",
|
|
172
|
+
"name": "accountNonce",
|
|
173
|
+
"type": "uint64"
|
|
174
|
+
}
|
|
175
|
+
],
|
|
176
|
+
"name": "BurnForTransfer",
|
|
177
|
+
"type": "event"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"anonymous": false,
|
|
181
|
+
"inputs": [
|
|
182
|
+
{
|
|
183
|
+
"indexed": true,
|
|
184
|
+
"internalType": "address",
|
|
185
|
+
"name": "previousGuardian",
|
|
186
|
+
"type": "address"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"indexed": true,
|
|
190
|
+
"internalType": "address",
|
|
191
|
+
"name": "newGuardian",
|
|
192
|
+
"type": "address"
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
"name": "GuardianUpdated",
|
|
196
|
+
"type": "event"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"anonymous": false,
|
|
200
|
+
"inputs": [
|
|
201
|
+
{
|
|
202
|
+
"indexed": false,
|
|
203
|
+
"internalType": "uint64",
|
|
204
|
+
"name": "version",
|
|
205
|
+
"type": "uint64"
|
|
206
|
+
}
|
|
207
|
+
],
|
|
208
|
+
"name": "Initialized",
|
|
209
|
+
"type": "event"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"anonymous": false,
|
|
213
|
+
"inputs": [
|
|
214
|
+
{
|
|
215
|
+
"indexed": true,
|
|
216
|
+
"internalType": "address",
|
|
217
|
+
"name": "previousOwner",
|
|
218
|
+
"type": "address"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"indexed": true,
|
|
222
|
+
"internalType": "address",
|
|
223
|
+
"name": "newOwner",
|
|
224
|
+
"type": "address"
|
|
225
|
+
}
|
|
226
|
+
],
|
|
227
|
+
"name": "OwnershipTransferred",
|
|
228
|
+
"type": "event"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"anonymous": false,
|
|
232
|
+
"inputs": [
|
|
233
|
+
{
|
|
234
|
+
"indexed": false,
|
|
235
|
+
"internalType": "address",
|
|
236
|
+
"name": "account",
|
|
237
|
+
"type": "address"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"name": "Paused",
|
|
241
|
+
"type": "event"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"anonymous": false,
|
|
245
|
+
"inputs": [
|
|
246
|
+
{
|
|
247
|
+
"indexed": false,
|
|
248
|
+
"internalType": "address",
|
|
249
|
+
"name": "account",
|
|
250
|
+
"type": "address"
|
|
251
|
+
}
|
|
252
|
+
],
|
|
253
|
+
"name": "Unpaused",
|
|
254
|
+
"type": "event"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"inputs": [],
|
|
258
|
+
"name": "RUNTIME_DECIMALS",
|
|
259
|
+
"outputs": [
|
|
260
|
+
{
|
|
261
|
+
"internalType": "uint8",
|
|
262
|
+
"name": "",
|
|
263
|
+
"type": "uint8"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"stateMutability": "view",
|
|
267
|
+
"type": "function"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"inputs": [],
|
|
271
|
+
"name": "RUNTIME_TO_ERC20_SCALE",
|
|
272
|
+
"outputs": [
|
|
273
|
+
{
|
|
274
|
+
"internalType": "uint256",
|
|
275
|
+
"name": "",
|
|
276
|
+
"type": "uint256"
|
|
277
|
+
}
|
|
278
|
+
],
|
|
279
|
+
"stateMutability": "view",
|
|
280
|
+
"type": "function"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"inputs": [],
|
|
284
|
+
"name": "TOKEN_DECIMALS",
|
|
285
|
+
"outputs": [
|
|
286
|
+
{
|
|
287
|
+
"internalType": "uint8",
|
|
288
|
+
"name": "",
|
|
289
|
+
"type": "uint8"
|
|
290
|
+
}
|
|
291
|
+
],
|
|
292
|
+
"stateMutability": "view",
|
|
293
|
+
"type": "function"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"inputs": [
|
|
297
|
+
{
|
|
298
|
+
"internalType": "address",
|
|
299
|
+
"name": "account",
|
|
300
|
+
"type": "address"
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"name": "accountNonces",
|
|
304
|
+
"outputs": [
|
|
305
|
+
{
|
|
306
|
+
"internalType": "uint64",
|
|
307
|
+
"name": "nonce",
|
|
308
|
+
"type": "uint64"
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
"stateMutability": "view",
|
|
312
|
+
"type": "function"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"inputs": [
|
|
316
|
+
{
|
|
317
|
+
"internalType": "address",
|
|
318
|
+
"name": "token",
|
|
319
|
+
"type": "address"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"internalType": "address[]",
|
|
323
|
+
"name": "recipients",
|
|
324
|
+
"type": "address[]"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"internalType": "uint64[]",
|
|
328
|
+
"name": "amounts",
|
|
329
|
+
"type": "uint64[]"
|
|
330
|
+
}
|
|
331
|
+
],
|
|
332
|
+
"name": "adminMintBatch",
|
|
333
|
+
"outputs": [],
|
|
334
|
+
"stateMutability": "nonpayable",
|
|
335
|
+
"type": "function"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"inputs": [],
|
|
339
|
+
"name": "argonToken",
|
|
340
|
+
"outputs": [
|
|
341
|
+
{
|
|
342
|
+
"internalType": "address",
|
|
343
|
+
"name": "",
|
|
344
|
+
"type": "address"
|
|
345
|
+
}
|
|
346
|
+
],
|
|
347
|
+
"stateMutability": "view",
|
|
348
|
+
"type": "function"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"inputs": [],
|
|
352
|
+
"name": "argonotToken",
|
|
353
|
+
"outputs": [
|
|
354
|
+
{
|
|
355
|
+
"internalType": "address",
|
|
356
|
+
"name": "",
|
|
357
|
+
"type": "address"
|
|
358
|
+
}
|
|
359
|
+
],
|
|
360
|
+
"stateMutability": "view",
|
|
361
|
+
"type": "function"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"inputs": [
|
|
365
|
+
{
|
|
366
|
+
"internalType": "address",
|
|
367
|
+
"name": "token",
|
|
368
|
+
"type": "address"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"internalType": "uint64",
|
|
372
|
+
"name": "amount",
|
|
373
|
+
"type": "uint64"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"internalType": "bytes32",
|
|
377
|
+
"name": "argonDestination",
|
|
378
|
+
"type": "bytes32"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"internalType": "uint256",
|
|
382
|
+
"name": "deadline",
|
|
383
|
+
"type": "uint256"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"internalType": "uint8",
|
|
387
|
+
"name": "v",
|
|
388
|
+
"type": "uint8"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"internalType": "bytes32",
|
|
392
|
+
"name": "r",
|
|
393
|
+
"type": "bytes32"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"internalType": "bytes32",
|
|
397
|
+
"name": "s",
|
|
398
|
+
"type": "bytes32"
|
|
399
|
+
}
|
|
400
|
+
],
|
|
401
|
+
"name": "burnForTransfer",
|
|
402
|
+
"outputs": [],
|
|
403
|
+
"stateMutability": "nonpayable",
|
|
404
|
+
"type": "function"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"inputs": [],
|
|
408
|
+
"name": "guardian",
|
|
409
|
+
"outputs": [
|
|
410
|
+
{
|
|
411
|
+
"internalType": "address",
|
|
412
|
+
"name": "",
|
|
413
|
+
"type": "address"
|
|
414
|
+
}
|
|
415
|
+
],
|
|
416
|
+
"stateMutability": "view",
|
|
417
|
+
"type": "function"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"inputs": [
|
|
421
|
+
{
|
|
422
|
+
"internalType": "address",
|
|
423
|
+
"name": "adminSafe",
|
|
424
|
+
"type": "address"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"internalType": "address",
|
|
428
|
+
"name": "guardianAddress",
|
|
429
|
+
"type": "address"
|
|
430
|
+
}
|
|
431
|
+
],
|
|
432
|
+
"name": "initialize",
|
|
433
|
+
"outputs": [],
|
|
434
|
+
"stateMutability": "nonpayable",
|
|
435
|
+
"type": "function"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"inputs": [],
|
|
439
|
+
"name": "owner",
|
|
440
|
+
"outputs": [
|
|
441
|
+
{
|
|
442
|
+
"internalType": "address",
|
|
443
|
+
"name": "",
|
|
444
|
+
"type": "address"
|
|
445
|
+
}
|
|
446
|
+
],
|
|
447
|
+
"stateMutability": "view",
|
|
448
|
+
"type": "function"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"inputs": [],
|
|
452
|
+
"name": "pause",
|
|
453
|
+
"outputs": [],
|
|
454
|
+
"stateMutability": "nonpayable",
|
|
455
|
+
"type": "function"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"inputs": [],
|
|
459
|
+
"name": "paused",
|
|
460
|
+
"outputs": [
|
|
461
|
+
{
|
|
462
|
+
"internalType": "bool",
|
|
463
|
+
"name": "",
|
|
464
|
+
"type": "bool"
|
|
465
|
+
}
|
|
466
|
+
],
|
|
467
|
+
"stateMutability": "view",
|
|
468
|
+
"type": "function"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"inputs": [],
|
|
472
|
+
"name": "renounceOwnership",
|
|
473
|
+
"outputs": [],
|
|
474
|
+
"stateMutability": "nonpayable",
|
|
475
|
+
"type": "function"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"inputs": [
|
|
479
|
+
{
|
|
480
|
+
"internalType": "address",
|
|
481
|
+
"name": "guardianAddress",
|
|
482
|
+
"type": "address"
|
|
483
|
+
}
|
|
484
|
+
],
|
|
485
|
+
"name": "setGuardian",
|
|
486
|
+
"outputs": [],
|
|
487
|
+
"stateMutability": "nonpayable",
|
|
488
|
+
"type": "function"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"inputs": [
|
|
492
|
+
{
|
|
493
|
+
"internalType": "uint64",
|
|
494
|
+
"name": "amount",
|
|
495
|
+
"type": "uint64"
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"name": "toTokenAmount",
|
|
499
|
+
"outputs": [
|
|
500
|
+
{
|
|
501
|
+
"internalType": "uint256",
|
|
502
|
+
"name": "",
|
|
503
|
+
"type": "uint256"
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
"stateMutability": "pure",
|
|
507
|
+
"type": "function"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"inputs": [
|
|
511
|
+
{
|
|
512
|
+
"internalType": "address",
|
|
513
|
+
"name": "newOwner",
|
|
514
|
+
"type": "address"
|
|
515
|
+
}
|
|
516
|
+
],
|
|
517
|
+
"name": "transferOwnership",
|
|
518
|
+
"outputs": [],
|
|
519
|
+
"stateMutability": "nonpayable",
|
|
520
|
+
"type": "function"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"inputs": [],
|
|
524
|
+
"name": "unpause",
|
|
525
|
+
"outputs": [],
|
|
526
|
+
"stateMutability": "nonpayable",
|
|
527
|
+
"type": "function"
|
|
528
|
+
}
|
|
529
|
+
],
|
|
530
|
+
"bytecode": "0x60c060405234801561000f575f80fd5b5060405162001236380380620012368339810160408190526100309161011f565b6001600160a01b03808316608052811660a05261004b610052565b5050610150565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100a25760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101015780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b80516001600160a01b038116811461011a575f80fd5b919050565b5f8060408385031215610130575f80fd5b61013983610104565b915061014760208401610104565b90509250929050565b60805160a0516110a86200018e5f395f818161011a01528181610a4c0152610ade01525f818161024e01528181610a1b0152610aa101526110a85ff3fe608060405234801561000f575f80fd5b5060043610610111575f3560e01c8063627c14fd1161009e578063898f90071161006e578063898f9007146102785780638a0dac4a1461028b5780638da5cb5b1461029e578063beabb591146102a6578063f2fde38b146102ae575f80fd5b8063627c14fd1461022e578063715018a61461024157806383a4d591146102495780638456cb5914610270575f80fd5b8063485cc955116100e4578063485cc95514610189578063580f6da21461019c57806359b23872146101dc5780635b7f415c146101f25780635c975abb1461020c575f80fd5b80631e07f89e1461011557806329edd626146101595780633f4ba83a1461016e578063452a932014610176575b5f80fd5b61013c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b61016c610167366004610d6b565b6102c1565b005b61016c61049c565b60015461013c906001600160a01b031681565b61016c610197366004610de5565b6104ae565b6101c46101aa366004610e16565b5f602081905290815260409020546001600160401b031681565b6040516001600160401b039091168152602001610150565b6101e4610617565b604051908152602001610150565b6101fa601281565b60405160ff9091168152602001610150565b5f805160206110538339815191525460ff166040519015158152602001610150565b6101e461023c366004610e4c565b610631565b61016c610662565b61013c7f000000000000000000000000000000000000000000000000000000000000000081565b61016c610673565b61016c610286366004610e65565b6106cf565b61016c610299366004610e16565b61089a565b61013c61091a565b6101fa600681565b61016c6102bc366004610e16565b610948565b6102c9610985565b6102d16109b7565b6102da856109e7565b8281146102fa5760405163512509d360e11b815260040160405180910390fd5b5f805b84811015610447575f86868381811061031857610318610ed2565b905060200201602081019061032d9190610e16565b90505f85858481811061034257610342610ed2565b90506020020160208101906103579190610e4c565b90506001600160a01b03821661038857604051633bca2f5160e21b8152600481018490526024015b60405180910390fd5b806001600160401b03165f036103b157604051631f2a200560e01b815260040160405180910390fd5b886001600160a01b03166340c10f19836103ca84610631565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044015f604051808303815f87803b15801561040d575f80fd5b505af115801561041f573d5f803e3d5ffd5b50505050808461042f9190610efa565b935050506001816104409190610f21565b90506102fd565b50604080518581526001600160401b03831660208201526001600160a01b038816917f950f6b497c32619db486d54ecd62cf109101bb541791eeee5d71dafdd8ac7603910160405180910390a2505050505050565b6104a4610985565b6104ac610b3c565b565b5f6104b7610b9b565b805490915060ff600160401b82041615906001600160401b03165f811580156104dd5750825b90505f826001600160401b031660011480156104f85750303b155b905081158015610506575080155b156105245760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561054e57845460ff60401b1916600160401b1785555b6001600160a01b038716610575576040516314030c0360e11b815260040160405180910390fd5b6001600160a01b03861661059c5760405163a91f6a8960e01b815260040160405180910390fd5b6105a587610bc3565b6105ad610bd4565b600180546001600160a01b0319166001600160a01b038816179055831561060e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b61062360066012610f34565b61062e90600a61102d565b81565b5f61063e60066012610f34565b61064990600a61102d565b61065c906001600160401b03841661103b565b92915050565b61066a610985565b6104ac5f610bdc565b6001546001600160a01b031633148015906106a7575061069161091a565b6001600160a01b0316336001600160a01b031614155b156106c75760405163354de03160e21b815233600482015260240161037f565b6104ac610c4c565b6106d76109b7565b6106e0876109e7565b856001600160401b03165f0361070957604051631f2a200560e01b815260040160405180910390fd5b5f61071387610631565b60405163d505accf60e01b8152336004820152306024820152604481018290526064810187905260ff8616608482015260a4810185905260c481018490529091506001600160a01b0389169063d505accf9060e4015f604051808303815f87803b15801561077f575f80fd5b505af1158015610791573d5f803e3d5ffd5b505060405163079cc67960e41b8152336004820152602481018490526001600160a01b038b1692506379cc679091506044015f604051808303815f87803b1580156107da575f80fd5b505af11580156107ec573d5f803e3d5ffd5b5050335f9081526020819052604081205490925061081591506001600160401b03166001610efa565b335f8181526020818152604091829020805467ffffffffffffffff19166001600160401b038681169182179092558351918e1682529181018c9052918201529192506001600160a01b038b16917f805e16cfddeedbafc2c9e510cc99d489152ee3d1179eb6a6ca444404a493af4b9060600160405180910390a3505050505050505050565b6108a2610985565b6001600160a01b0381166108c95760405163a91f6a8960e01b815260040160405180910390fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f064d28d3d3071c5cbc271a261c10c2f0f0d9e319390397101aa0eb23c6bad909905f90a35050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b610950610985565b6001600160a01b03811661097957604051631e4fbdf760e01b81525f600482015260240161037f565b61098281610bdc565b50565b3361098e61091a565b6001600160a01b0316146104ac5760405163118cdaa760e01b815233600482015260240161037f565b5f805160206110538339815191525460ff16156104ac5760405163d93c066560e01b815260040160405180910390fd5b6001600160a01b038116610a1957604051635f8b555b60e11b81526001600160a01b038216600482015260240161037f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161580610a7657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b15610a9f57604051635f8b555b60e11b81526001600160a01b038216600482015260240161037f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614158015610b1357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b1561098257604051635f8b555b60e11b81526001600160a01b038216600482015260240161037f565b610b44610c94565b5f80516020611053833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061065c565b610bcb610cc3565b61098281610ce8565b6104ac610cc3565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b610c546109b7565b5f80516020611053833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833610b7d565b5f805160206110538339815191525460ff166104ac57604051638dfc202b60e01b815260040160405180910390fd5b610ccb610cf0565b6104ac57604051631afcd79f60e31b815260040160405180910390fd5b610950610cc3565b5f610cf9610b9b565b54600160401b900460ff16919050565b80356001600160a01b0381168114610d1f575f80fd5b919050565b5f8083601f840112610d34575f80fd5b5081356001600160401b03811115610d4a575f80fd5b6020830191508360208260051b8501011115610d64575f80fd5b9250929050565b5f805f805f60608688031215610d7f575f80fd5b610d8886610d09565b945060208601356001600160401b0380821115610da3575f80fd5b610daf89838a01610d24565b90965094506040880135915080821115610dc7575f80fd5b50610dd488828901610d24565b969995985093965092949392505050565b5f8060408385031215610df6575f80fd5b610dff83610d09565b9150610e0d60208401610d09565b90509250929050565b5f60208284031215610e26575f80fd5b610e2f82610d09565b9392505050565b80356001600160401b0381168114610d1f575f80fd5b5f60208284031215610e5c575f80fd5b610e2f82610e36565b5f805f805f805f60e0888a031215610e7b575f80fd5b610e8488610d09565b9650610e9260208901610e36565b95506040880135945060608801359350608088013560ff81168114610eb5575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b6001600160401b03818116838216019080821115610f1a57610f1a610ee6565b5092915050565b8082018082111561065c5761065c610ee6565b60ff828116828216039081111561065c5761065c610ee6565b600181815b80851115610f8757815f1904821115610f6d57610f6d610ee6565b80851615610f7a57918102915b93841c9390800290610f52565b509250929050565b5f82610f9d5750600161065c565b81610fa957505f61065c565b8160018114610fbf5760028114610fc957610fe5565b600191505061065c565b60ff841115610fda57610fda610ee6565b50506001821b61065c565b5060208310610133831016604e8410600b8410161715611008575081810a61065c565b6110128383610f4d565b805f190482111561102557611025610ee6565b029392505050565b5f610e2f60ff841683610f8f565b808202811582820484141761065c5761065c610ee656fecd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a26469706673582212205706ba0a8a4ef10440f51dbe9d5111552b0685f4f16d3cfc1dc0e7d8ba76f2cf64736f6c63430008180033",
|
|
531
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610111575f3560e01c8063627c14fd1161009e578063898f90071161006e578063898f9007146102785780638a0dac4a1461028b5780638da5cb5b1461029e578063beabb591146102a6578063f2fde38b146102ae575f80fd5b8063627c14fd1461022e578063715018a61461024157806383a4d591146102495780638456cb5914610270575f80fd5b8063485cc955116100e4578063485cc95514610189578063580f6da21461019c57806359b23872146101dc5780635b7f415c146101f25780635c975abb1461020c575f80fd5b80631e07f89e1461011557806329edd626146101595780633f4ba83a1461016e578063452a932014610176575b5f80fd5b61013c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b61016c610167366004610d6b565b6102c1565b005b61016c61049c565b60015461013c906001600160a01b031681565b61016c610197366004610de5565b6104ae565b6101c46101aa366004610e16565b5f602081905290815260409020546001600160401b031681565b6040516001600160401b039091168152602001610150565b6101e4610617565b604051908152602001610150565b6101fa601281565b60405160ff9091168152602001610150565b5f805160206110538339815191525460ff166040519015158152602001610150565b6101e461023c366004610e4c565b610631565b61016c610662565b61013c7f000000000000000000000000000000000000000000000000000000000000000081565b61016c610673565b61016c610286366004610e65565b6106cf565b61016c610299366004610e16565b61089a565b61013c61091a565b6101fa600681565b61016c6102bc366004610e16565b610948565b6102c9610985565b6102d16109b7565b6102da856109e7565b8281146102fa5760405163512509d360e11b815260040160405180910390fd5b5f805b84811015610447575f86868381811061031857610318610ed2565b905060200201602081019061032d9190610e16565b90505f85858481811061034257610342610ed2565b90506020020160208101906103579190610e4c565b90506001600160a01b03821661038857604051633bca2f5160e21b8152600481018490526024015b60405180910390fd5b806001600160401b03165f036103b157604051631f2a200560e01b815260040160405180910390fd5b886001600160a01b03166340c10f19836103ca84610631565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044015f604051808303815f87803b15801561040d575f80fd5b505af115801561041f573d5f803e3d5ffd5b50505050808461042f9190610efa565b935050506001816104409190610f21565b90506102fd565b50604080518581526001600160401b03831660208201526001600160a01b038816917f950f6b497c32619db486d54ecd62cf109101bb541791eeee5d71dafdd8ac7603910160405180910390a2505050505050565b6104a4610985565b6104ac610b3c565b565b5f6104b7610b9b565b805490915060ff600160401b82041615906001600160401b03165f811580156104dd5750825b90505f826001600160401b031660011480156104f85750303b155b905081158015610506575080155b156105245760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561054e57845460ff60401b1916600160401b1785555b6001600160a01b038716610575576040516314030c0360e11b815260040160405180910390fd5b6001600160a01b03861661059c5760405163a91f6a8960e01b815260040160405180910390fd5b6105a587610bc3565b6105ad610bd4565b600180546001600160a01b0319166001600160a01b038816179055831561060e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b61062360066012610f34565b61062e90600a61102d565b81565b5f61063e60066012610f34565b61064990600a61102d565b61065c906001600160401b03841661103b565b92915050565b61066a610985565b6104ac5f610bdc565b6001546001600160a01b031633148015906106a7575061069161091a565b6001600160a01b0316336001600160a01b031614155b156106c75760405163354de03160e21b815233600482015260240161037f565b6104ac610c4c565b6106d76109b7565b6106e0876109e7565b856001600160401b03165f0361070957604051631f2a200560e01b815260040160405180910390fd5b5f61071387610631565b60405163d505accf60e01b8152336004820152306024820152604481018290526064810187905260ff8616608482015260a4810185905260c481018490529091506001600160a01b0389169063d505accf9060e4015f604051808303815f87803b15801561077f575f80fd5b505af1158015610791573d5f803e3d5ffd5b505060405163079cc67960e41b8152336004820152602481018490526001600160a01b038b1692506379cc679091506044015f604051808303815f87803b1580156107da575f80fd5b505af11580156107ec573d5f803e3d5ffd5b5050335f9081526020819052604081205490925061081591506001600160401b03166001610efa565b335f8181526020818152604091829020805467ffffffffffffffff19166001600160401b038681169182179092558351918e1682529181018c9052918201529192506001600160a01b038b16917f805e16cfddeedbafc2c9e510cc99d489152ee3d1179eb6a6ca444404a493af4b9060600160405180910390a3505050505050505050565b6108a2610985565b6001600160a01b0381166108c95760405163a91f6a8960e01b815260040160405180910390fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f064d28d3d3071c5cbc271a261c10c2f0f0d9e319390397101aa0eb23c6bad909905f90a35050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b610950610985565b6001600160a01b03811661097957604051631e4fbdf760e01b81525f600482015260240161037f565b61098281610bdc565b50565b3361098e61091a565b6001600160a01b0316146104ac5760405163118cdaa760e01b815233600482015260240161037f565b5f805160206110538339815191525460ff16156104ac5760405163d93c066560e01b815260040160405180910390fd5b6001600160a01b038116610a1957604051635f8b555b60e11b81526001600160a01b038216600482015260240161037f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161580610a7657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b15610a9f57604051635f8b555b60e11b81526001600160a01b038216600482015260240161037f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614158015610b1357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b1561098257604051635f8b555b60e11b81526001600160a01b038216600482015260240161037f565b610b44610c94565b5f80516020611053833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061065c565b610bcb610cc3565b61098281610ce8565b6104ac610cc3565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b610c546109b7565b5f80516020611053833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833610b7d565b5f805160206110538339815191525460ff166104ac57604051638dfc202b60e01b815260040160405180910390fd5b610ccb610cf0565b6104ac57604051631afcd79f60e31b815260040160405180910390fd5b610950610cc3565b5f610cf9610b9b565b54600160401b900460ff16919050565b80356001600160a01b0381168114610d1f575f80fd5b919050565b5f8083601f840112610d34575f80fd5b5081356001600160401b03811115610d4a575f80fd5b6020830191508360208260051b8501011115610d64575f80fd5b9250929050565b5f805f805f60608688031215610d7f575f80fd5b610d8886610d09565b945060208601356001600160401b0380821115610da3575f80fd5b610daf89838a01610d24565b90965094506040880135915080821115610dc7575f80fd5b50610dd488828901610d24565b969995985093965092949392505050565b5f8060408385031215610df6575f80fd5b610dff83610d09565b9150610e0d60208401610d09565b90509250929050565b5f60208284031215610e26575f80fd5b610e2f82610d09565b9392505050565b80356001600160401b0381168114610d1f575f80fd5b5f60208284031215610e5c575f80fd5b610e2f82610e36565b5f805f805f805f60e0888a031215610e7b575f80fd5b610e8488610d09565b9650610e9260208901610e36565b95506040880135945060608801359350608088013560ff81168114610eb5575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b6001600160401b03818116838216019080821115610f1a57610f1a610ee6565b5092915050565b8082018082111561065c5761065c610ee6565b60ff828116828216039081111561065c5761065c610ee6565b600181815b80851115610f8757815f1904821115610f6d57610f6d610ee6565b80851615610f7a57918102915b93841c9390800290610f52565b509250929050565b5f82610f9d5750600161065c565b81610fa957505f61065c565b8160018114610fbf5760028114610fc957610fe5565b600191505061065c565b60ff841115610fda57610fda610ee6565b50506001821b61065c565b5060208310610133831016604e8410600b8410161715611008575081810a61065c565b6110128383610f4d565b805f190482111561102557611025610ee6565b029392505050565b5f610e2f60ff841683610f8f565b808202811582820484141761065c5761065c610ee656fecd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a26469706673582212205706ba0a8a4ef10440f51dbe9d5111552b0685f4f16d3cfc1dc0e7d8ba76f2cf64736f6c63430008180033",
|
|
532
|
+
"linkReferences": {},
|
|
533
|
+
"deployedLinkReferences": {},
|
|
534
|
+
"immutableReferences": {
|
|
535
|
+
"10382": [
|
|
536
|
+
{
|
|
537
|
+
"length": 32,
|
|
538
|
+
"start": 590
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"length": 32,
|
|
542
|
+
"start": 2587
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"length": 32,
|
|
546
|
+
"start": 2721
|
|
547
|
+
}
|
|
548
|
+
],
|
|
549
|
+
"10384": [
|
|
550
|
+
{
|
|
551
|
+
"length": 32,
|
|
552
|
+
"start": 282
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"length": 32,
|
|
556
|
+
"start": 2636
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"length": 32,
|
|
560
|
+
"start": 2782
|
|
561
|
+
}
|
|
562
|
+
]
|
|
563
|
+
},
|
|
564
|
+
"inputSourceName": "project/contracts/MintingGateway.sol",
|
|
565
|
+
"buildInfoId": "solc-0_8_24-742457c4e062511661c28bb777a85c3958878637"
|
|
566
|
+
}
|