@argonprotocol/testing 1.4.3-dev.cd7db477 → 1.4.3-dev.d84b1cb0
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 +419 -0
- package/lib/ethereum-contracts/ArgonotToken.json +419 -0
- package/lib/ethereum-contracts/MintingGateway.json +538 -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,538 @@
|
|
|
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": "uint256",
|
|
135
|
+
"name": "totalAmountBaseUnits",
|
|
136
|
+
"type": "uint256"
|
|
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": "uint256[]",
|
|
328
|
+
"name": "amountsBaseUnits",
|
|
329
|
+
"type": "uint256[]"
|
|
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": "uint256",
|
|
372
|
+
"name": "amountBaseUnits",
|
|
373
|
+
"type": "uint256"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"internalType": "bytes32",
|
|
377
|
+
"name": "argonDestination",
|
|
378
|
+
"type": "bytes32"
|
|
379
|
+
}
|
|
380
|
+
],
|
|
381
|
+
"name": "burnForTransfer",
|
|
382
|
+
"outputs": [],
|
|
383
|
+
"stateMutability": "nonpayable",
|
|
384
|
+
"type": "function"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"inputs": [],
|
|
388
|
+
"name": "guardian",
|
|
389
|
+
"outputs": [
|
|
390
|
+
{
|
|
391
|
+
"internalType": "address",
|
|
392
|
+
"name": "",
|
|
393
|
+
"type": "address"
|
|
394
|
+
}
|
|
395
|
+
],
|
|
396
|
+
"stateMutability": "view",
|
|
397
|
+
"type": "function"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"inputs": [
|
|
401
|
+
{
|
|
402
|
+
"internalType": "address",
|
|
403
|
+
"name": "adminSafe",
|
|
404
|
+
"type": "address"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"internalType": "address",
|
|
408
|
+
"name": "guardianAddress",
|
|
409
|
+
"type": "address"
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
"name": "initialize",
|
|
413
|
+
"outputs": [],
|
|
414
|
+
"stateMutability": "nonpayable",
|
|
415
|
+
"type": "function"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"inputs": [],
|
|
419
|
+
"name": "owner",
|
|
420
|
+
"outputs": [
|
|
421
|
+
{
|
|
422
|
+
"internalType": "address",
|
|
423
|
+
"name": "",
|
|
424
|
+
"type": "address"
|
|
425
|
+
}
|
|
426
|
+
],
|
|
427
|
+
"stateMutability": "view",
|
|
428
|
+
"type": "function"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"inputs": [],
|
|
432
|
+
"name": "pause",
|
|
433
|
+
"outputs": [],
|
|
434
|
+
"stateMutability": "nonpayable",
|
|
435
|
+
"type": "function"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"inputs": [],
|
|
439
|
+
"name": "paused",
|
|
440
|
+
"outputs": [
|
|
441
|
+
{
|
|
442
|
+
"internalType": "bool",
|
|
443
|
+
"name": "",
|
|
444
|
+
"type": "bool"
|
|
445
|
+
}
|
|
446
|
+
],
|
|
447
|
+
"stateMutability": "view",
|
|
448
|
+
"type": "function"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"inputs": [],
|
|
452
|
+
"name": "renounceOwnership",
|
|
453
|
+
"outputs": [],
|
|
454
|
+
"stateMutability": "nonpayable",
|
|
455
|
+
"type": "function"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"inputs": [
|
|
459
|
+
{
|
|
460
|
+
"internalType": "address",
|
|
461
|
+
"name": "guardianAddress",
|
|
462
|
+
"type": "address"
|
|
463
|
+
}
|
|
464
|
+
],
|
|
465
|
+
"name": "setGuardian",
|
|
466
|
+
"outputs": [],
|
|
467
|
+
"stateMutability": "nonpayable",
|
|
468
|
+
"type": "function"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"inputs": [
|
|
472
|
+
{
|
|
473
|
+
"internalType": "uint256",
|
|
474
|
+
"name": "amountBaseUnits",
|
|
475
|
+
"type": "uint256"
|
|
476
|
+
}
|
|
477
|
+
],
|
|
478
|
+
"name": "toTokenAmount",
|
|
479
|
+
"outputs": [
|
|
480
|
+
{
|
|
481
|
+
"internalType": "uint256",
|
|
482
|
+
"name": "",
|
|
483
|
+
"type": "uint256"
|
|
484
|
+
}
|
|
485
|
+
],
|
|
486
|
+
"stateMutability": "pure",
|
|
487
|
+
"type": "function"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"inputs": [
|
|
491
|
+
{
|
|
492
|
+
"internalType": "address",
|
|
493
|
+
"name": "newOwner",
|
|
494
|
+
"type": "address"
|
|
495
|
+
}
|
|
496
|
+
],
|
|
497
|
+
"name": "transferOwnership",
|
|
498
|
+
"outputs": [],
|
|
499
|
+
"stateMutability": "nonpayable",
|
|
500
|
+
"type": "function"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"inputs": [],
|
|
504
|
+
"name": "unpause",
|
|
505
|
+
"outputs": [],
|
|
506
|
+
"stateMutability": "nonpayable",
|
|
507
|
+
"type": "function"
|
|
508
|
+
}
|
|
509
|
+
],
|
|
510
|
+
"bytecode": "0x60c060405234801561001057600080fd5b506040516110c13803806110c183398101604081905261002f9161011f565b6001600160a01b03808316608052811660a05261004a610051565b5050610152565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100a15760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101005780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b80516001600160a01b038116811461011a57600080fd5b919050565b6000806040838503121561013257600080fd5b61013b83610103565b915061014960208401610103565b90509250929050565b60805160a051610f3c610185600039600081816101460152610ab40152600081816102580152610a770152610f3c6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780638a0dac4a116100715780638a0dac4a146102825780638da5cb5b14610295578063beabb5911461029d578063c9bb2de7146102a5578063f2fde38b146102b857600080fd5b8063715018a6146102385780637a2660401461024057806383a4d591146102535780638456cb591461027a57600080fd5b8063485cc955116100e9578063485cc9551461019d578063580f6da2146101b057806359b23872146101f35780635b7f415c146101fb5780635c975abb1461021557600080fd5b8063174e4ea61461011b5780631e07f89e146101415780633f4ba83a14610180578063452a93201461018a575b600080fd5b61012e610129366004610bd2565b6102cb565b6040519081526020015b60405180910390f35b6101687f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610138565b6101886102f4565b005b600154610168906001600160a01b031681565b6101886101ab366004610c07565b610306565b6101da6101be366004610c3a565b60006020819052908152604090205467ffffffffffffffff1681565b60405167ffffffffffffffff9091168152602001610138565b61012e610474565b610203601281565b60405160ff9091168152602001610138565b600080516020610ee78339815191525460ff166040519015158152602001610138565b61018861048e565b61018861024e366004610c5c565b6104a0565b6101687f000000000000000000000000000000000000000000000000000000000000000081565b6101886105ef565b610188610290366004610c3a565b610650565b6101686106d1565b610203600681565b6101886102b3366004610cdb565b6106ff565b6101886102c6366004610c3a565b6108c1565b60006102d960066012610d72565b6102e490600a610e6f565b6102ee9083610e7e565b92915050565b6102fc6108ff565b610304610931565b565b6000610310610991565b805490915060ff600160401b820416159067ffffffffffffffff166000811580156103385750825b905060008267ffffffffffffffff1660011480156103555750303b155b905081158015610363575080155b156103815760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156103ab57845460ff60401b1916600160401b1785555b6001600160a01b0387166103d2576040516314030c0360e11b815260040160405180910390fd5b6001600160a01b0386166103f95760405163a91f6a8960e01b815260040160405180910390fd5b610402876109ba565b61040a6109cb565b600180546001600160a01b0319166001600160a01b038816179055831561046b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b61048060066012610d72565b61048b90600a610e6f565b81565b6104966108ff565b61030460006109d3565b6104a8610a44565b6104b183610a75565b816000036104d257604051631f2a200560e01b815260040160405180910390fd5b826001600160a01b03166379cc6790336104eb856102cb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561053157600080fd5b505af1158015610545573d6000803e3d6000fd5b505033600090815260208190526040812054909250610570915067ffffffffffffffff166001610e95565b3360008181526020818152604091829020805467ffffffffffffffff861667ffffffffffffffff19909116811790915582518881529182018790528183015290519293506001600160a01b038716927f805e16cfddeedbafc2c9e510cc99d489152ee3d1179eb6a6ca444404a493af4b9181900360600190a350505050565b6001546001600160a01b03163314801590610623575061060d6106d1565b6001600160a01b0316336001600160a01b031614155b156106485760405163354de03160e21b81523360048201526024015b60405180910390fd5b610304610b12565b6106586108ff565b6001600160a01b03811661067f5760405163a91f6a8960e01b815260040160405180910390fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f064d28d3d3071c5cbc271a261c10c2f0f0d9e319390397101aa0eb23c6bad90990600090a35050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6107076108ff565b61070f610a44565b61071885610a75565b8281146107385760405163512509d360e11b815260040160405180910390fd5b6000805b8481101561087457600086868381811061075857610758610ebd565b905060200201602081019061076d9190610c3a565b9050600085858481811061078357610783610ebd565b60200291909101359150506001600160a01b0382166107b857604051633bca2f5160e21b81526004810184905260240161063f565b806000036107d957604051631f2a200560e01b815260040160405180910390fd5b886001600160a01b03166340c10f19836107f2846102cb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561083857600080fd5b505af115801561084c573d6000803e3d6000fd5b50505050808461085c9190610ed3565b9350505060018161086d9190610ed3565b905061073c565b5060408051858152602081018390526001600160a01b038816917fb5791f4c0829e9abbbdf2a5da78d8f7a8d1890cfb8fd057bcbb0d5cf1309ce1a910160405180910390a2505050505050565b6108c96108ff565b6001600160a01b0381166108f357604051631e4fbdf760e01b81526000600482015260240161063f565b6108fc816109d3565b50565b336109086106d1565b6001600160a01b0316146103045760405163118cdaa760e01b815233600482015260240161063f565b610939610b5b565b600080516020610ee7833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b6000807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006102ee565b6109c2610b8b565b6108fc81610bb0565b610304610b8b565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b600080516020610ee78339815191525460ff16156103045760405163d93c066560e01b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614158015610ae957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b156108fc57604051635f8b555b60e11b81526001600160a01b038216600482015260240161063f565b610b1a610a44565b600080516020610ee7833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833610973565b600080516020610ee78339815191525460ff1661030457604051638dfc202b60e01b815260040160405180910390fd5b610b93610bb8565b61030457604051631afcd79f60e31b815260040160405180910390fd5b6108c9610b8b565b6000610bc2610991565b54600160401b900460ff16919050565b600060208284031215610be457600080fd5b5035919050565b80356001600160a01b0381168114610c0257600080fd5b919050565b60008060408385031215610c1a57600080fd5b610c2383610beb565b9150610c3160208401610beb565b90509250929050565b600060208284031215610c4c57600080fd5b610c5582610beb565b9392505050565b600080600060608486031215610c7157600080fd5b610c7a84610beb565b95602085013595506040909401359392505050565b60008083601f840112610ca157600080fd5b50813567ffffffffffffffff811115610cb957600080fd5b6020830191508360208260051b8501011115610cd457600080fd5b9250929050565b600080600080600060608688031215610cf357600080fd5b610cfc86610beb565b9450602086013567ffffffffffffffff80821115610d1957600080fd5b610d2589838a01610c8f565b90965094506040880135915080821115610d3e57600080fd5b50610d4b88828901610c8f565b969995985093965092949392505050565b634e487b7160e01b600052601160045260246000fd5b60ff82811682821603908111156102ee576102ee610d5c565b600181815b80851115610dc6578160001904821115610dac57610dac610d5c565b80851615610db957918102915b93841c9390800290610d90565b509250929050565b600082610ddd575060016102ee565b81610dea575060006102ee565b8160018114610e005760028114610e0a57610e26565b60019150506102ee565b60ff841115610e1b57610e1b610d5c565b50506001821b6102ee565b5060208310610133831016604e8410600b8410161715610e49575081810a6102ee565b610e538383610d8b565b8060001904821115610e6757610e67610d5c565b029392505050565b6000610c5560ff841683610dce565b80820281158282048414176102ee576102ee610d5c565b67ffffffffffffffff818116838216019080821115610eb657610eb6610d5c565b5092915050565b634e487b7160e01b600052603260045260246000fd5b808201808211156102ee576102ee610d5c56fecd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a2646970667358221220c9b6c5df781f566a70eec22a57a76b3a89e7a0dfd58c0f8d4d63c818b79c6da164736f6c63430008180033",
|
|
511
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780638a0dac4a116100715780638a0dac4a146102825780638da5cb5b14610295578063beabb5911461029d578063c9bb2de7146102a5578063f2fde38b146102b857600080fd5b8063715018a6146102385780637a2660401461024057806383a4d591146102535780638456cb591461027a57600080fd5b8063485cc955116100e9578063485cc9551461019d578063580f6da2146101b057806359b23872146101f35780635b7f415c146101fb5780635c975abb1461021557600080fd5b8063174e4ea61461011b5780631e07f89e146101415780633f4ba83a14610180578063452a93201461018a575b600080fd5b61012e610129366004610bd2565b6102cb565b6040519081526020015b60405180910390f35b6101687f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610138565b6101886102f4565b005b600154610168906001600160a01b031681565b6101886101ab366004610c07565b610306565b6101da6101be366004610c3a565b60006020819052908152604090205467ffffffffffffffff1681565b60405167ffffffffffffffff9091168152602001610138565b61012e610474565b610203601281565b60405160ff9091168152602001610138565b600080516020610ee78339815191525460ff166040519015158152602001610138565b61018861048e565b61018861024e366004610c5c565b6104a0565b6101687f000000000000000000000000000000000000000000000000000000000000000081565b6101886105ef565b610188610290366004610c3a565b610650565b6101686106d1565b610203600681565b6101886102b3366004610cdb565b6106ff565b6101886102c6366004610c3a565b6108c1565b60006102d960066012610d72565b6102e490600a610e6f565b6102ee9083610e7e565b92915050565b6102fc6108ff565b610304610931565b565b6000610310610991565b805490915060ff600160401b820416159067ffffffffffffffff166000811580156103385750825b905060008267ffffffffffffffff1660011480156103555750303b155b905081158015610363575080155b156103815760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156103ab57845460ff60401b1916600160401b1785555b6001600160a01b0387166103d2576040516314030c0360e11b815260040160405180910390fd5b6001600160a01b0386166103f95760405163a91f6a8960e01b815260040160405180910390fd5b610402876109ba565b61040a6109cb565b600180546001600160a01b0319166001600160a01b038816179055831561046b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b61048060066012610d72565b61048b90600a610e6f565b81565b6104966108ff565b61030460006109d3565b6104a8610a44565b6104b183610a75565b816000036104d257604051631f2a200560e01b815260040160405180910390fd5b826001600160a01b03166379cc6790336104eb856102cb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561053157600080fd5b505af1158015610545573d6000803e3d6000fd5b505033600090815260208190526040812054909250610570915067ffffffffffffffff166001610e95565b3360008181526020818152604091829020805467ffffffffffffffff861667ffffffffffffffff19909116811790915582518881529182018790528183015290519293506001600160a01b038716927f805e16cfddeedbafc2c9e510cc99d489152ee3d1179eb6a6ca444404a493af4b9181900360600190a350505050565b6001546001600160a01b03163314801590610623575061060d6106d1565b6001600160a01b0316336001600160a01b031614155b156106485760405163354de03160e21b81523360048201526024015b60405180910390fd5b610304610b12565b6106586108ff565b6001600160a01b03811661067f5760405163a91f6a8960e01b815260040160405180910390fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f064d28d3d3071c5cbc271a261c10c2f0f0d9e319390397101aa0eb23c6bad90990600090a35050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6107076108ff565b61070f610a44565b61071885610a75565b8281146107385760405163512509d360e11b815260040160405180910390fd5b6000805b8481101561087457600086868381811061075857610758610ebd565b905060200201602081019061076d9190610c3a565b9050600085858481811061078357610783610ebd565b60200291909101359150506001600160a01b0382166107b857604051633bca2f5160e21b81526004810184905260240161063f565b806000036107d957604051631f2a200560e01b815260040160405180910390fd5b886001600160a01b03166340c10f19836107f2846102cb565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561083857600080fd5b505af115801561084c573d6000803e3d6000fd5b50505050808461085c9190610ed3565b9350505060018161086d9190610ed3565b905061073c565b5060408051858152602081018390526001600160a01b038816917fb5791f4c0829e9abbbdf2a5da78d8f7a8d1890cfb8fd057bcbb0d5cf1309ce1a910160405180910390a2505050505050565b6108c96108ff565b6001600160a01b0381166108f357604051631e4fbdf760e01b81526000600482015260240161063f565b6108fc816109d3565b50565b336109086106d1565b6001600160a01b0316146103045760405163118cdaa760e01b815233600482015260240161063f565b610939610b5b565b600080516020610ee7833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b6000807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006102ee565b6109c2610b8b565b6108fc81610bb0565b610304610b8b565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b600080516020610ee78339815191525460ff16156103045760405163d93c066560e01b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614158015610ae957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b156108fc57604051635f8b555b60e11b81526001600160a01b038216600482015260240161063f565b610b1a610a44565b600080516020610ee7833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833610973565b600080516020610ee78339815191525460ff1661030457604051638dfc202b60e01b815260040160405180910390fd5b610b93610bb8565b61030457604051631afcd79f60e31b815260040160405180910390fd5b6108c9610b8b565b6000610bc2610991565b54600160401b900460ff16919050565b600060208284031215610be457600080fd5b5035919050565b80356001600160a01b0381168114610c0257600080fd5b919050565b60008060408385031215610c1a57600080fd5b610c2383610beb565b9150610c3160208401610beb565b90509250929050565b600060208284031215610c4c57600080fd5b610c5582610beb565b9392505050565b600080600060608486031215610c7157600080fd5b610c7a84610beb565b95602085013595506040909401359392505050565b60008083601f840112610ca157600080fd5b50813567ffffffffffffffff811115610cb957600080fd5b6020830191508360208260051b8501011115610cd457600080fd5b9250929050565b600080600080600060608688031215610cf357600080fd5b610cfc86610beb565b9450602086013567ffffffffffffffff80821115610d1957600080fd5b610d2589838a01610c8f565b90965094506040880135915080821115610d3e57600080fd5b50610d4b88828901610c8f565b969995985093965092949392505050565b634e487b7160e01b600052601160045260246000fd5b60ff82811682821603908111156102ee576102ee610d5c565b600181815b80851115610dc6578160001904821115610dac57610dac610d5c565b80851615610db957918102915b93841c9390800290610d90565b509250929050565b600082610ddd575060016102ee565b81610dea575060006102ee565b8160018114610e005760028114610e0a57610e26565b60019150506102ee565b60ff841115610e1b57610e1b610d5c565b50506001821b6102ee565b5060208310610133831016604e8410600b8410161715610e49575081810a6102ee565b610e538383610d8b565b8060001904821115610e6757610e67610d5c565b029392505050565b6000610c5560ff841683610dce565b80820281158282048414176102ee576102ee610d5c565b67ffffffffffffffff818116838216019080821115610eb657610eb6610d5c565b5092915050565b634e487b7160e01b600052603260045260246000fd5b808201808211156102ee576102ee610d5c56fecd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a2646970667358221220c9b6c5df781f566a70eec22a57a76b3a89e7a0dfd58c0f8d4d63c818b79c6da164736f6c63430008180033",
|
|
512
|
+
"linkReferences": {},
|
|
513
|
+
"deployedLinkReferences": {},
|
|
514
|
+
"immutableReferences": {
|
|
515
|
+
"3085": [
|
|
516
|
+
{
|
|
517
|
+
"length": 32,
|
|
518
|
+
"start": 600
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"length": 32,
|
|
522
|
+
"start": 2679
|
|
523
|
+
}
|
|
524
|
+
],
|
|
525
|
+
"3087": [
|
|
526
|
+
{
|
|
527
|
+
"length": 32,
|
|
528
|
+
"start": 326
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"length": 32,
|
|
532
|
+
"start": 2740
|
|
533
|
+
}
|
|
534
|
+
]
|
|
535
|
+
},
|
|
536
|
+
"inputSourceName": "project/contracts/MintingGateway.sol",
|
|
537
|
+
"buildInfoId": "solc-0_8_24-c1abbf3880b0cf6b80fd72b19706058829075e56"
|
|
538
|
+
}
|