@cartesi/devnet 1.6.0

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 (76) hide show
  1. package/LICENSE +202 -0
  2. package/build/anvil_state.json +1 -0
  3. package/deployments/localhost/.chainId +1 -0
  4. package/deployments/localhost/AuthorityFactory.json +177 -0
  5. package/deployments/localhost/AuthorityHistoryPairFactory.json +276 -0
  6. package/deployments/localhost/Bitmask.json +44 -0
  7. package/deployments/localhost/CartesiDAppFactory.json +231 -0
  8. package/deployments/localhost/CartesiMathV2.json +213 -0
  9. package/deployments/localhost/DAppAddressRelay.json +102 -0
  10. package/deployments/localhost/ERC1155BatchPortal.json +133 -0
  11. package/deployments/localhost/ERC1155SinglePortal.json +132 -0
  12. package/deployments/localhost/ERC20Portal.json +120 -0
  13. package/deployments/localhost/ERC721Portal.json +126 -0
  14. package/deployments/localhost/EtherPortal.json +121 -0
  15. package/deployments/localhost/HistoryFactory.json +177 -0
  16. package/deployments/localhost/InputBox.json +207 -0
  17. package/deployments/localhost/MerkleV2.json +217 -0
  18. package/deployments/localhost/SelfHostedApplicationFactory.json +226 -0
  19. package/deployments/localhost/TestMultiToken.json +829 -0
  20. package/deployments/localhost/TestNFT.json +891 -0
  21. package/deployments/localhost/TestToken.json +1079 -0
  22. package/deployments/localhost/UnrolledCordic.json +54 -0
  23. package/dist/deploy/01_token.js +15 -0
  24. package/dist/deploy/02_nft.js +15 -0
  25. package/dist/deploy/03_multitoken.js +15 -0
  26. package/dist/src/tasks/deploy-anvil.d.ts +6 -0
  27. package/dist/src/tasks/deploy-anvil.d.ts.map +1 -0
  28. package/dist/src/tasks/deploy-anvil.js +38 -0
  29. package/export/abi/localhost.json +3205 -0
  30. package/export/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json +128 -0
  31. package/export/artifacts/@openzeppelin/contracts/access/manager/AccessManaged.sol/AccessManaged.json +137 -0
  32. package/export/artifacts/@openzeppelin/contracts/access/manager/AuthorityUtils.sol/AuthorityUtils.json +32 -0
  33. package/export/artifacts/@openzeppelin/contracts/access/manager/IAccessManaged.sol/IAccessManaged.json +133 -0
  34. package/export/artifacts/@openzeppelin/contracts/access/manager/IAccessManager.sol/IAccessManager.json +1251 -0
  35. package/export/artifacts/@openzeppelin/contracts/access/manager/IAuthority.sol/IAuthority.json +60 -0
  36. package/export/artifacts/@openzeppelin/contracts/interfaces/IERC4906.sol/IERC4906.json +401 -0
  37. package/export/artifacts/@openzeppelin/contracts/interfaces/IERC5267.sol/IERC5267.json +84 -0
  38. package/export/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.json +190 -0
  39. package/export/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.json +165 -0
  40. package/export/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.json +197 -0
  41. package/export/artifacts/@openzeppelin/contracts/token/ERC1155/ERC1155.sol/ERC1155.json +553 -0
  42. package/export/artifacts/@openzeppelin/contracts/token/ERC1155/IERC1155.sol/IERC1155.json +362 -0
  43. package/export/artifacts/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol/IERC1155Receiver.json +156 -0
  44. package/export/artifacts/@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol/IERC1155MetadataURI.json +385 -0
  45. package/export/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json +436 -0
  46. package/export/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json +242 -0
  47. package/export/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol/ERC20Burnable.json +472 -0
  48. package/export/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol/ERC20Pausable.json +502 -0
  49. package/export/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol/ERC20Permit.json +695 -0
  50. package/export/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json +293 -0
  51. package/export/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol/IERC20Permit.json +114 -0
  52. package/export/artifacts/@openzeppelin/contracts/token/ERC721/ERC721.sol/ERC721.json +595 -0
  53. package/export/artifacts/@openzeppelin/contracts/token/ERC721/IERC721.sol/IERC721.json +363 -0
  54. package/export/artifacts/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol/IERC721Receiver.json +66 -0
  55. package/export/artifacts/@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol/ERC721URIStorage.json +630 -0
  56. package/export/artifacts/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol/IERC721Metadata.json +421 -0
  57. package/export/artifacts/@openzeppelin/contracts/utils/Arrays.sol/Arrays.json +38 -0
  58. package/export/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json +24 -0
  59. package/export/artifacts/@openzeppelin/contracts/utils/Nonces.sol/Nonces.json +73 -0
  60. package/export/artifacts/@openzeppelin/contracts/utils/Pausable.sol/Pausable.json +103 -0
  61. package/export/artifacts/@openzeppelin/contracts/utils/ShortStrings.sol/ShortStrings.json +55 -0
  62. package/export/artifacts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json +40 -0
  63. package/export/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.json +62 -0
  64. package/export/artifacts/@openzeppelin/contracts/utils/cryptography/ECDSA.sol/ECDSA.json +84 -0
  65. package/export/artifacts/@openzeppelin/contracts/utils/cryptography/EIP712.sol/EIP712.json +105 -0
  66. package/export/artifacts/@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol/MessageHashUtils.json +36 -0
  67. package/export/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.json +50 -0
  68. package/export/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.json +50 -0
  69. package/export/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.json +65 -0
  70. package/export/artifacts/@openzeppelin/contracts/utils/math/SafeCast.sol/SafeCast.json +173 -0
  71. package/export/artifacts/@openzeppelin/contracts/utils/math/SignedMath.sol/SignedMath.json +36 -0
  72. package/export/artifacts/@openzeppelin/contracts/utils/types/Time.sol/Time.json +41 -0
  73. package/export/artifacts/contracts/TestMultiToken.sol/TestMultiToken.json +750 -0
  74. package/export/artifacts/contracts/TestNFT.sol/TestNFT.json +779 -0
  75. package/export/artifacts/contracts/TestToken.sol/TestToken.json +963 -0
  76. package/package.json +41 -0
@@ -0,0 +1,3205 @@
1
+ {
2
+ "name": "localhost",
3
+ "chainId": "31337",
4
+ "contracts": {
5
+ "Bitmask": {
6
+ "address": "0xF5B2d8c81cDE4D6238bBf20D3D77DB37df13f735",
7
+ "abi": []
8
+ },
9
+ "CartesiMathV2": {
10
+ "address": "0xB634F716BEd5Dd5A2b9a91C92474C499e50Cb27D",
11
+ "abi": [
12
+ {
13
+ "inputs": [
14
+ {
15
+ "internalType": "uint256",
16
+ "name": "_num",
17
+ "type": "uint256"
18
+ }
19
+ ],
20
+ "name": "clz",
21
+ "outputs": [
22
+ {
23
+ "internalType": "uint256",
24
+ "name": "",
25
+ "type": "uint256"
26
+ }
27
+ ],
28
+ "stateMutability": "pure",
29
+ "type": "function"
30
+ },
31
+ {
32
+ "inputs": [
33
+ {
34
+ "internalType": "uint256",
35
+ "name": "_num",
36
+ "type": "uint256"
37
+ }
38
+ ],
39
+ "name": "ctz",
40
+ "outputs": [
41
+ {
42
+ "internalType": "uint256",
43
+ "name": "",
44
+ "type": "uint256"
45
+ }
46
+ ],
47
+ "stateMutability": "pure",
48
+ "type": "function"
49
+ },
50
+ {
51
+ "inputs": [
52
+ {
53
+ "internalType": "uint256",
54
+ "name": "_num",
55
+ "type": "uint256"
56
+ }
57
+ ],
58
+ "name": "getLog2Floor",
59
+ "outputs": [
60
+ {
61
+ "internalType": "uint8",
62
+ "name": "",
63
+ "type": "uint8"
64
+ }
65
+ ],
66
+ "stateMutability": "pure",
67
+ "type": "function"
68
+ },
69
+ {
70
+ "inputs": [
71
+ {
72
+ "internalType": "uint256",
73
+ "name": "_num",
74
+ "type": "uint256"
75
+ }
76
+ ],
77
+ "name": "getLog2TableTimes1M",
78
+ "outputs": [
79
+ {
80
+ "internalType": "uint256",
81
+ "name": "",
82
+ "type": "uint256"
83
+ }
84
+ ],
85
+ "stateMutability": "pure",
86
+ "type": "function"
87
+ },
88
+ {
89
+ "inputs": [
90
+ {
91
+ "internalType": "uint256",
92
+ "name": "_num",
93
+ "type": "uint256"
94
+ }
95
+ ],
96
+ "name": "isPowerOf2",
97
+ "outputs": [
98
+ {
99
+ "internalType": "bool",
100
+ "name": "",
101
+ "type": "bool"
102
+ }
103
+ ],
104
+ "stateMutability": "pure",
105
+ "type": "function"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "uint256",
111
+ "name": "_num",
112
+ "type": "uint256"
113
+ }
114
+ ],
115
+ "name": "log2ApproxTimes1M",
116
+ "outputs": [
117
+ {
118
+ "internalType": "uint256",
119
+ "name": "",
120
+ "type": "uint256"
121
+ }
122
+ ],
123
+ "stateMutability": "pure",
124
+ "type": "function"
125
+ }
126
+ ]
127
+ },
128
+ "MerkleV2": {
129
+ "address": "0x33436035441927Df1a73FE3AAC5906854632e53d",
130
+ "abi": [
131
+ {
132
+ "inputs": [
133
+ {
134
+ "internalType": "bytes32[]",
135
+ "name": "hashes",
136
+ "type": "bytes32[]"
137
+ }
138
+ ],
139
+ "name": "calculateRootFromPowerOfTwo",
140
+ "outputs": [
141
+ {
142
+ "internalType": "bytes32",
143
+ "name": "",
144
+ "type": "bytes32"
145
+ }
146
+ ],
147
+ "stateMutability": "pure",
148
+ "type": "function"
149
+ },
150
+ {
151
+ "inputs": [
152
+ {
153
+ "internalType": "uint256",
154
+ "name": "_index",
155
+ "type": "uint256"
156
+ }
157
+ ],
158
+ "name": "getEmptyTreeHashAtIndex",
159
+ "outputs": [
160
+ {
161
+ "internalType": "bytes32",
162
+ "name": "",
163
+ "type": "bytes32"
164
+ }
165
+ ],
166
+ "stateMutability": "pure",
167
+ "type": "function"
168
+ },
169
+ {
170
+ "inputs": [
171
+ {
172
+ "internalType": "bytes",
173
+ "name": "_data",
174
+ "type": "bytes"
175
+ },
176
+ {
177
+ "internalType": "uint256",
178
+ "name": "_wordIndex",
179
+ "type": "uint256"
180
+ }
181
+ ],
182
+ "name": "getHashOfWordAtIndex",
183
+ "outputs": [
184
+ {
185
+ "internalType": "bytes32",
186
+ "name": "",
187
+ "type": "bytes32"
188
+ }
189
+ ],
190
+ "stateMutability": "pure",
191
+ "type": "function"
192
+ },
193
+ {
194
+ "inputs": [
195
+ {
196
+ "internalType": "bytes",
197
+ "name": "_data",
198
+ "type": "bytes"
199
+ },
200
+ {
201
+ "internalType": "uint256",
202
+ "name": "_log2Size",
203
+ "type": "uint256"
204
+ }
205
+ ],
206
+ "name": "getMerkleRootFromBytes",
207
+ "outputs": [
208
+ {
209
+ "internalType": "bytes32",
210
+ "name": "",
211
+ "type": "bytes32"
212
+ }
213
+ ],
214
+ "stateMutability": "pure",
215
+ "type": "function"
216
+ },
217
+ {
218
+ "inputs": [
219
+ {
220
+ "internalType": "uint256",
221
+ "name": "_position",
222
+ "type": "uint256"
223
+ },
224
+ {
225
+ "internalType": "uint256",
226
+ "name": "_logSizeOfReplacement",
227
+ "type": "uint256"
228
+ },
229
+ {
230
+ "internalType": "uint256",
231
+ "name": "_logSizeOfFullDrive",
232
+ "type": "uint256"
233
+ },
234
+ {
235
+ "internalType": "bytes32",
236
+ "name": "_replacement",
237
+ "type": "bytes32"
238
+ },
239
+ {
240
+ "internalType": "bytes32[]",
241
+ "name": "siblings",
242
+ "type": "bytes32[]"
243
+ }
244
+ ],
245
+ "name": "getRootAfterReplacementInDrive",
246
+ "outputs": [
247
+ {
248
+ "internalType": "bytes32",
249
+ "name": "",
250
+ "type": "bytes32"
251
+ }
252
+ ],
253
+ "stateMutability": "pure",
254
+ "type": "function"
255
+ }
256
+ ]
257
+ },
258
+ "UnrolledCordic": {
259
+ "address": "0x3F8FdcD1B0F421D817BF58C96b7C91B98100B450",
260
+ "abi": [
261
+ {
262
+ "inputs": [
263
+ {
264
+ "internalType": "uint256",
265
+ "name": "val",
266
+ "type": "uint256"
267
+ }
268
+ ],
269
+ "name": "log2Times1e18",
270
+ "outputs": [
271
+ {
272
+ "internalType": "uint256",
273
+ "name": "",
274
+ "type": "uint256"
275
+ }
276
+ ],
277
+ "stateMutability": "pure",
278
+ "type": "function"
279
+ }
280
+ ]
281
+ },
282
+ "InputBox": {
283
+ "address": "0x59b22D57D4f067708AB0c00552767405926dc768",
284
+ "abi": [
285
+ {
286
+ "inputs": [],
287
+ "name": "InputSizeExceedsLimit",
288
+ "type": "error"
289
+ },
290
+ {
291
+ "anonymous": false,
292
+ "inputs": [
293
+ {
294
+ "indexed": true,
295
+ "internalType": "address",
296
+ "name": "dapp",
297
+ "type": "address"
298
+ },
299
+ {
300
+ "indexed": true,
301
+ "internalType": "uint256",
302
+ "name": "inputIndex",
303
+ "type": "uint256"
304
+ },
305
+ {
306
+ "indexed": false,
307
+ "internalType": "address",
308
+ "name": "sender",
309
+ "type": "address"
310
+ },
311
+ {
312
+ "indexed": false,
313
+ "internalType": "bytes",
314
+ "name": "input",
315
+ "type": "bytes"
316
+ }
317
+ ],
318
+ "name": "InputAdded",
319
+ "type": "event"
320
+ },
321
+ {
322
+ "inputs": [
323
+ {
324
+ "internalType": "address",
325
+ "name": "_dapp",
326
+ "type": "address"
327
+ },
328
+ {
329
+ "internalType": "bytes",
330
+ "name": "_input",
331
+ "type": "bytes"
332
+ }
333
+ ],
334
+ "name": "addInput",
335
+ "outputs": [
336
+ {
337
+ "internalType": "bytes32",
338
+ "name": "",
339
+ "type": "bytes32"
340
+ }
341
+ ],
342
+ "stateMutability": "nonpayable",
343
+ "type": "function"
344
+ },
345
+ {
346
+ "inputs": [
347
+ {
348
+ "internalType": "address",
349
+ "name": "_dapp",
350
+ "type": "address"
351
+ },
352
+ {
353
+ "internalType": "uint256",
354
+ "name": "_index",
355
+ "type": "uint256"
356
+ }
357
+ ],
358
+ "name": "getInputHash",
359
+ "outputs": [
360
+ {
361
+ "internalType": "bytes32",
362
+ "name": "",
363
+ "type": "bytes32"
364
+ }
365
+ ],
366
+ "stateMutability": "view",
367
+ "type": "function"
368
+ },
369
+ {
370
+ "inputs": [
371
+ {
372
+ "internalType": "address",
373
+ "name": "_dapp",
374
+ "type": "address"
375
+ }
376
+ ],
377
+ "name": "getNumberOfInputs",
378
+ "outputs": [
379
+ {
380
+ "internalType": "uint256",
381
+ "name": "",
382
+ "type": "uint256"
383
+ }
384
+ ],
385
+ "stateMutability": "view",
386
+ "type": "function"
387
+ }
388
+ ]
389
+ },
390
+ "EtherPortal": {
391
+ "address": "0xFfdbe43d4c855BF7e0f105c400A50857f53AB044",
392
+ "abi": [
393
+ {
394
+ "inputs": [
395
+ {
396
+ "internalType": "contract IInputBox",
397
+ "name": "_inputBox",
398
+ "type": "address"
399
+ }
400
+ ],
401
+ "stateMutability": "nonpayable",
402
+ "type": "constructor"
403
+ },
404
+ {
405
+ "inputs": [],
406
+ "name": "EtherTransferFailed",
407
+ "type": "error"
408
+ },
409
+ {
410
+ "inputs": [
411
+ {
412
+ "internalType": "address",
413
+ "name": "_dapp",
414
+ "type": "address"
415
+ },
416
+ {
417
+ "internalType": "bytes",
418
+ "name": "_execLayerData",
419
+ "type": "bytes"
420
+ }
421
+ ],
422
+ "name": "depositEther",
423
+ "outputs": [],
424
+ "stateMutability": "payable",
425
+ "type": "function"
426
+ },
427
+ {
428
+ "inputs": [],
429
+ "name": "getInputBox",
430
+ "outputs": [
431
+ {
432
+ "internalType": "contract IInputBox",
433
+ "name": "",
434
+ "type": "address"
435
+ }
436
+ ],
437
+ "stateMutability": "view",
438
+ "type": "function"
439
+ }
440
+ ]
441
+ },
442
+ "ERC20Portal": {
443
+ "address": "0x9C21AEb2093C32DDbC53eEF24B873BDCd1aDa1DB",
444
+ "abi": [
445
+ {
446
+ "inputs": [
447
+ {
448
+ "internalType": "contract IInputBox",
449
+ "name": "_inputBox",
450
+ "type": "address"
451
+ }
452
+ ],
453
+ "stateMutability": "nonpayable",
454
+ "type": "constructor"
455
+ },
456
+ {
457
+ "inputs": [
458
+ {
459
+ "internalType": "contract IERC20",
460
+ "name": "_token",
461
+ "type": "address"
462
+ },
463
+ {
464
+ "internalType": "address",
465
+ "name": "_dapp",
466
+ "type": "address"
467
+ },
468
+ {
469
+ "internalType": "uint256",
470
+ "name": "_amount",
471
+ "type": "uint256"
472
+ },
473
+ {
474
+ "internalType": "bytes",
475
+ "name": "_execLayerData",
476
+ "type": "bytes"
477
+ }
478
+ ],
479
+ "name": "depositERC20Tokens",
480
+ "outputs": [],
481
+ "stateMutability": "nonpayable",
482
+ "type": "function"
483
+ },
484
+ {
485
+ "inputs": [],
486
+ "name": "getInputBox",
487
+ "outputs": [
488
+ {
489
+ "internalType": "contract IInputBox",
490
+ "name": "",
491
+ "type": "address"
492
+ }
493
+ ],
494
+ "stateMutability": "view",
495
+ "type": "function"
496
+ }
497
+ ]
498
+ },
499
+ "ERC721Portal": {
500
+ "address": "0x237F8DD094C0e47f4236f12b4Fa01d6Dae89fb87",
501
+ "abi": [
502
+ {
503
+ "inputs": [
504
+ {
505
+ "internalType": "contract IInputBox",
506
+ "name": "_inputBox",
507
+ "type": "address"
508
+ }
509
+ ],
510
+ "stateMutability": "nonpayable",
511
+ "type": "constructor"
512
+ },
513
+ {
514
+ "inputs": [
515
+ {
516
+ "internalType": "contract IERC721",
517
+ "name": "_token",
518
+ "type": "address"
519
+ },
520
+ {
521
+ "internalType": "address",
522
+ "name": "_dapp",
523
+ "type": "address"
524
+ },
525
+ {
526
+ "internalType": "uint256",
527
+ "name": "_tokenId",
528
+ "type": "uint256"
529
+ },
530
+ {
531
+ "internalType": "bytes",
532
+ "name": "_baseLayerData",
533
+ "type": "bytes"
534
+ },
535
+ {
536
+ "internalType": "bytes",
537
+ "name": "_execLayerData",
538
+ "type": "bytes"
539
+ }
540
+ ],
541
+ "name": "depositERC721Token",
542
+ "outputs": [],
543
+ "stateMutability": "nonpayable",
544
+ "type": "function"
545
+ },
546
+ {
547
+ "inputs": [],
548
+ "name": "getInputBox",
549
+ "outputs": [
550
+ {
551
+ "internalType": "contract IInputBox",
552
+ "name": "",
553
+ "type": "address"
554
+ }
555
+ ],
556
+ "stateMutability": "view",
557
+ "type": "function"
558
+ }
559
+ ]
560
+ },
561
+ "ERC1155SinglePortal": {
562
+ "address": "0x7CFB0193Ca87eB6e48056885E026552c3A941FC4",
563
+ "abi": [
564
+ {
565
+ "inputs": [
566
+ {
567
+ "internalType": "contract IInputBox",
568
+ "name": "_inputBox",
569
+ "type": "address"
570
+ }
571
+ ],
572
+ "stateMutability": "nonpayable",
573
+ "type": "constructor"
574
+ },
575
+ {
576
+ "inputs": [
577
+ {
578
+ "internalType": "contract IERC1155",
579
+ "name": "_token",
580
+ "type": "address"
581
+ },
582
+ {
583
+ "internalType": "address",
584
+ "name": "_dapp",
585
+ "type": "address"
586
+ },
587
+ {
588
+ "internalType": "uint256",
589
+ "name": "_tokenId",
590
+ "type": "uint256"
591
+ },
592
+ {
593
+ "internalType": "uint256",
594
+ "name": "_value",
595
+ "type": "uint256"
596
+ },
597
+ {
598
+ "internalType": "bytes",
599
+ "name": "_baseLayerData",
600
+ "type": "bytes"
601
+ },
602
+ {
603
+ "internalType": "bytes",
604
+ "name": "_execLayerData",
605
+ "type": "bytes"
606
+ }
607
+ ],
608
+ "name": "depositSingleERC1155Token",
609
+ "outputs": [],
610
+ "stateMutability": "nonpayable",
611
+ "type": "function"
612
+ },
613
+ {
614
+ "inputs": [],
615
+ "name": "getInputBox",
616
+ "outputs": [
617
+ {
618
+ "internalType": "contract IInputBox",
619
+ "name": "",
620
+ "type": "address"
621
+ }
622
+ ],
623
+ "stateMutability": "view",
624
+ "type": "function"
625
+ }
626
+ ]
627
+ },
628
+ "ERC1155BatchPortal": {
629
+ "address": "0xedB53860A6B52bbb7561Ad596416ee9965B055Aa",
630
+ "abi": [
631
+ {
632
+ "inputs": [
633
+ {
634
+ "internalType": "contract IInputBox",
635
+ "name": "_inputBox",
636
+ "type": "address"
637
+ }
638
+ ],
639
+ "stateMutability": "nonpayable",
640
+ "type": "constructor"
641
+ },
642
+ {
643
+ "inputs": [
644
+ {
645
+ "internalType": "contract IERC1155",
646
+ "name": "_token",
647
+ "type": "address"
648
+ },
649
+ {
650
+ "internalType": "address",
651
+ "name": "_dapp",
652
+ "type": "address"
653
+ },
654
+ {
655
+ "internalType": "uint256[]",
656
+ "name": "_tokenIds",
657
+ "type": "uint256[]"
658
+ },
659
+ {
660
+ "internalType": "uint256[]",
661
+ "name": "_values",
662
+ "type": "uint256[]"
663
+ },
664
+ {
665
+ "internalType": "bytes",
666
+ "name": "_baseLayerData",
667
+ "type": "bytes"
668
+ },
669
+ {
670
+ "internalType": "bytes",
671
+ "name": "_execLayerData",
672
+ "type": "bytes"
673
+ }
674
+ ],
675
+ "name": "depositBatchERC1155Token",
676
+ "outputs": [],
677
+ "stateMutability": "nonpayable",
678
+ "type": "function"
679
+ },
680
+ {
681
+ "inputs": [],
682
+ "name": "getInputBox",
683
+ "outputs": [
684
+ {
685
+ "internalType": "contract IInputBox",
686
+ "name": "",
687
+ "type": "address"
688
+ }
689
+ ],
690
+ "stateMutability": "view",
691
+ "type": "function"
692
+ }
693
+ ]
694
+ },
695
+ "DAppAddressRelay": {
696
+ "address": "0xF5DE34d6BbC0446E2a45719E718efEbaaE179daE",
697
+ "abi": [
698
+ {
699
+ "inputs": [
700
+ {
701
+ "internalType": "contract IInputBox",
702
+ "name": "_inputBox",
703
+ "type": "address"
704
+ }
705
+ ],
706
+ "stateMutability": "nonpayable",
707
+ "type": "constructor"
708
+ },
709
+ {
710
+ "inputs": [],
711
+ "name": "getInputBox",
712
+ "outputs": [
713
+ {
714
+ "internalType": "contract IInputBox",
715
+ "name": "",
716
+ "type": "address"
717
+ }
718
+ ],
719
+ "stateMutability": "view",
720
+ "type": "function"
721
+ },
722
+ {
723
+ "inputs": [
724
+ {
725
+ "internalType": "address",
726
+ "name": "_dapp",
727
+ "type": "address"
728
+ }
729
+ ],
730
+ "name": "relayDAppAddress",
731
+ "outputs": [],
732
+ "stateMutability": "nonpayable",
733
+ "type": "function"
734
+ }
735
+ ]
736
+ },
737
+ "AuthorityFactory": {
738
+ "address": "0xf26a5b278C25D8D41A136d22Ad719EACEd9c3e63",
739
+ "abi": [
740
+ {
741
+ "anonymous": false,
742
+ "inputs": [
743
+ {
744
+ "indexed": false,
745
+ "internalType": "address",
746
+ "name": "authorityOwner",
747
+ "type": "address"
748
+ },
749
+ {
750
+ "indexed": false,
751
+ "internalType": "contract Authority",
752
+ "name": "authority",
753
+ "type": "address"
754
+ }
755
+ ],
756
+ "name": "AuthorityCreated",
757
+ "type": "event"
758
+ },
759
+ {
760
+ "inputs": [
761
+ {
762
+ "internalType": "address",
763
+ "name": "_authorityOwner",
764
+ "type": "address"
765
+ },
766
+ {
767
+ "internalType": "bytes32",
768
+ "name": "_salt",
769
+ "type": "bytes32"
770
+ }
771
+ ],
772
+ "name": "calculateAuthorityAddress",
773
+ "outputs": [
774
+ {
775
+ "internalType": "address",
776
+ "name": "",
777
+ "type": "address"
778
+ }
779
+ ],
780
+ "stateMutability": "view",
781
+ "type": "function"
782
+ },
783
+ {
784
+ "inputs": [
785
+ {
786
+ "internalType": "address",
787
+ "name": "_authorityOwner",
788
+ "type": "address"
789
+ },
790
+ {
791
+ "internalType": "bytes32",
792
+ "name": "_salt",
793
+ "type": "bytes32"
794
+ }
795
+ ],
796
+ "name": "newAuthority",
797
+ "outputs": [
798
+ {
799
+ "internalType": "contract Authority",
800
+ "name": "",
801
+ "type": "address"
802
+ }
803
+ ],
804
+ "stateMutability": "nonpayable",
805
+ "type": "function"
806
+ },
807
+ {
808
+ "inputs": [
809
+ {
810
+ "internalType": "address",
811
+ "name": "_authorityOwner",
812
+ "type": "address"
813
+ }
814
+ ],
815
+ "name": "newAuthority",
816
+ "outputs": [
817
+ {
818
+ "internalType": "contract Authority",
819
+ "name": "",
820
+ "type": "address"
821
+ }
822
+ ],
823
+ "stateMutability": "nonpayable",
824
+ "type": "function"
825
+ }
826
+ ]
827
+ },
828
+ "HistoryFactory": {
829
+ "address": "0x1f158b5320BBf677FdA89F9a438df99BbE560A26",
830
+ "abi": [
831
+ {
832
+ "anonymous": false,
833
+ "inputs": [
834
+ {
835
+ "indexed": false,
836
+ "internalType": "address",
837
+ "name": "historyOwner",
838
+ "type": "address"
839
+ },
840
+ {
841
+ "indexed": false,
842
+ "internalType": "contract History",
843
+ "name": "history",
844
+ "type": "address"
845
+ }
846
+ ],
847
+ "name": "HistoryCreated",
848
+ "type": "event"
849
+ },
850
+ {
851
+ "inputs": [
852
+ {
853
+ "internalType": "address",
854
+ "name": "_historyOwner",
855
+ "type": "address"
856
+ },
857
+ {
858
+ "internalType": "bytes32",
859
+ "name": "_salt",
860
+ "type": "bytes32"
861
+ }
862
+ ],
863
+ "name": "calculateHistoryAddress",
864
+ "outputs": [
865
+ {
866
+ "internalType": "address",
867
+ "name": "",
868
+ "type": "address"
869
+ }
870
+ ],
871
+ "stateMutability": "view",
872
+ "type": "function"
873
+ },
874
+ {
875
+ "inputs": [
876
+ {
877
+ "internalType": "address",
878
+ "name": "_historyOwner",
879
+ "type": "address"
880
+ },
881
+ {
882
+ "internalType": "bytes32",
883
+ "name": "_salt",
884
+ "type": "bytes32"
885
+ }
886
+ ],
887
+ "name": "newHistory",
888
+ "outputs": [
889
+ {
890
+ "internalType": "contract History",
891
+ "name": "",
892
+ "type": "address"
893
+ }
894
+ ],
895
+ "stateMutability": "nonpayable",
896
+ "type": "function"
897
+ },
898
+ {
899
+ "inputs": [
900
+ {
901
+ "internalType": "address",
902
+ "name": "_historyOwner",
903
+ "type": "address"
904
+ }
905
+ ],
906
+ "name": "newHistory",
907
+ "outputs": [
908
+ {
909
+ "internalType": "contract History",
910
+ "name": "",
911
+ "type": "address"
912
+ }
913
+ ],
914
+ "stateMutability": "nonpayable",
915
+ "type": "function"
916
+ }
917
+ ]
918
+ },
919
+ "AuthorityHistoryPairFactory": {
920
+ "address": "0x3890A047Cf9Af60731E80B2105362BbDCD70142D",
921
+ "abi": [
922
+ {
923
+ "inputs": [
924
+ {
925
+ "internalType": "contract IAuthorityFactory",
926
+ "name": "_authorityFactory",
927
+ "type": "address"
928
+ },
929
+ {
930
+ "internalType": "contract IHistoryFactory",
931
+ "name": "_historyFactory",
932
+ "type": "address"
933
+ }
934
+ ],
935
+ "stateMutability": "nonpayable",
936
+ "type": "constructor"
937
+ },
938
+ {
939
+ "anonymous": false,
940
+ "inputs": [
941
+ {
942
+ "indexed": false,
943
+ "internalType": "contract IAuthorityFactory",
944
+ "name": "authorityFactory",
945
+ "type": "address"
946
+ },
947
+ {
948
+ "indexed": false,
949
+ "internalType": "contract IHistoryFactory",
950
+ "name": "historyFactory",
951
+ "type": "address"
952
+ }
953
+ ],
954
+ "name": "AuthorityHistoryPairFactoryCreated",
955
+ "type": "event"
956
+ },
957
+ {
958
+ "inputs": [
959
+ {
960
+ "internalType": "address",
961
+ "name": "_authorityOwner",
962
+ "type": "address"
963
+ },
964
+ {
965
+ "internalType": "bytes32",
966
+ "name": "_salt",
967
+ "type": "bytes32"
968
+ }
969
+ ],
970
+ "name": "calculateAuthorityHistoryAddressPair",
971
+ "outputs": [
972
+ {
973
+ "internalType": "address",
974
+ "name": "authorityAddress_",
975
+ "type": "address"
976
+ },
977
+ {
978
+ "internalType": "address",
979
+ "name": "historyAddress_",
980
+ "type": "address"
981
+ }
982
+ ],
983
+ "stateMutability": "view",
984
+ "type": "function"
985
+ },
986
+ {
987
+ "inputs": [],
988
+ "name": "getAuthorityFactory",
989
+ "outputs": [
990
+ {
991
+ "internalType": "contract IAuthorityFactory",
992
+ "name": "",
993
+ "type": "address"
994
+ }
995
+ ],
996
+ "stateMutability": "view",
997
+ "type": "function"
998
+ },
999
+ {
1000
+ "inputs": [],
1001
+ "name": "getHistoryFactory",
1002
+ "outputs": [
1003
+ {
1004
+ "internalType": "contract IHistoryFactory",
1005
+ "name": "",
1006
+ "type": "address"
1007
+ }
1008
+ ],
1009
+ "stateMutability": "view",
1010
+ "type": "function"
1011
+ },
1012
+ {
1013
+ "inputs": [
1014
+ {
1015
+ "internalType": "address",
1016
+ "name": "_authorityOwner",
1017
+ "type": "address"
1018
+ }
1019
+ ],
1020
+ "name": "newAuthorityHistoryPair",
1021
+ "outputs": [
1022
+ {
1023
+ "internalType": "contract Authority",
1024
+ "name": "authority_",
1025
+ "type": "address"
1026
+ },
1027
+ {
1028
+ "internalType": "contract History",
1029
+ "name": "history_",
1030
+ "type": "address"
1031
+ }
1032
+ ],
1033
+ "stateMutability": "nonpayable",
1034
+ "type": "function"
1035
+ },
1036
+ {
1037
+ "inputs": [
1038
+ {
1039
+ "internalType": "address",
1040
+ "name": "_authorityOwner",
1041
+ "type": "address"
1042
+ },
1043
+ {
1044
+ "internalType": "bytes32",
1045
+ "name": "_salt",
1046
+ "type": "bytes32"
1047
+ }
1048
+ ],
1049
+ "name": "newAuthorityHistoryPair",
1050
+ "outputs": [
1051
+ {
1052
+ "internalType": "contract Authority",
1053
+ "name": "authority_",
1054
+ "type": "address"
1055
+ },
1056
+ {
1057
+ "internalType": "contract History",
1058
+ "name": "history_",
1059
+ "type": "address"
1060
+ }
1061
+ ],
1062
+ "stateMutability": "nonpayable",
1063
+ "type": "function"
1064
+ }
1065
+ ]
1066
+ },
1067
+ "CartesiDAppFactory": {
1068
+ "address": "0x7122cd1221C20892234186facfE8615e6743Ab02",
1069
+ "abi": [
1070
+ {
1071
+ "anonymous": false,
1072
+ "inputs": [
1073
+ {
1074
+ "indexed": true,
1075
+ "internalType": "contract IConsensus",
1076
+ "name": "consensus",
1077
+ "type": "address"
1078
+ },
1079
+ {
1080
+ "indexed": false,
1081
+ "internalType": "address",
1082
+ "name": "dappOwner",
1083
+ "type": "address"
1084
+ },
1085
+ {
1086
+ "indexed": false,
1087
+ "internalType": "bytes32",
1088
+ "name": "templateHash",
1089
+ "type": "bytes32"
1090
+ },
1091
+ {
1092
+ "indexed": false,
1093
+ "internalType": "contract CartesiDApp",
1094
+ "name": "application",
1095
+ "type": "address"
1096
+ }
1097
+ ],
1098
+ "name": "ApplicationCreated",
1099
+ "type": "event"
1100
+ },
1101
+ {
1102
+ "inputs": [
1103
+ {
1104
+ "internalType": "contract IConsensus",
1105
+ "name": "_consensus",
1106
+ "type": "address"
1107
+ },
1108
+ {
1109
+ "internalType": "address",
1110
+ "name": "_dappOwner",
1111
+ "type": "address"
1112
+ },
1113
+ {
1114
+ "internalType": "bytes32",
1115
+ "name": "_templateHash",
1116
+ "type": "bytes32"
1117
+ },
1118
+ {
1119
+ "internalType": "bytes32",
1120
+ "name": "_salt",
1121
+ "type": "bytes32"
1122
+ }
1123
+ ],
1124
+ "name": "calculateApplicationAddress",
1125
+ "outputs": [
1126
+ {
1127
+ "internalType": "address",
1128
+ "name": "",
1129
+ "type": "address"
1130
+ }
1131
+ ],
1132
+ "stateMutability": "view",
1133
+ "type": "function"
1134
+ },
1135
+ {
1136
+ "inputs": [
1137
+ {
1138
+ "internalType": "contract IConsensus",
1139
+ "name": "_consensus",
1140
+ "type": "address"
1141
+ },
1142
+ {
1143
+ "internalType": "address",
1144
+ "name": "_dappOwner",
1145
+ "type": "address"
1146
+ },
1147
+ {
1148
+ "internalType": "bytes32",
1149
+ "name": "_templateHash",
1150
+ "type": "bytes32"
1151
+ },
1152
+ {
1153
+ "internalType": "bytes32",
1154
+ "name": "_salt",
1155
+ "type": "bytes32"
1156
+ }
1157
+ ],
1158
+ "name": "newApplication",
1159
+ "outputs": [
1160
+ {
1161
+ "internalType": "contract CartesiDApp",
1162
+ "name": "",
1163
+ "type": "address"
1164
+ }
1165
+ ],
1166
+ "stateMutability": "nonpayable",
1167
+ "type": "function"
1168
+ },
1169
+ {
1170
+ "inputs": [
1171
+ {
1172
+ "internalType": "contract IConsensus",
1173
+ "name": "_consensus",
1174
+ "type": "address"
1175
+ },
1176
+ {
1177
+ "internalType": "address",
1178
+ "name": "_dappOwner",
1179
+ "type": "address"
1180
+ },
1181
+ {
1182
+ "internalType": "bytes32",
1183
+ "name": "_templateHash",
1184
+ "type": "bytes32"
1185
+ }
1186
+ ],
1187
+ "name": "newApplication",
1188
+ "outputs": [
1189
+ {
1190
+ "internalType": "contract CartesiDApp",
1191
+ "name": "",
1192
+ "type": "address"
1193
+ }
1194
+ ],
1195
+ "stateMutability": "nonpayable",
1196
+ "type": "function"
1197
+ }
1198
+ ]
1199
+ },
1200
+ "SelfHostedApplicationFactory": {
1201
+ "address": "0x9E32e06Fd23675b2DF8eA8e6b0A25c3DF6a60AbC",
1202
+ "abi": [
1203
+ {
1204
+ "inputs": [
1205
+ {
1206
+ "internalType": "contract IAuthorityHistoryPairFactory",
1207
+ "name": "_authorityHistoryPairFactory",
1208
+ "type": "address"
1209
+ },
1210
+ {
1211
+ "internalType": "contract ICartesiDAppFactory",
1212
+ "name": "_applicationFactory",
1213
+ "type": "address"
1214
+ }
1215
+ ],
1216
+ "stateMutability": "nonpayable",
1217
+ "type": "constructor"
1218
+ },
1219
+ {
1220
+ "inputs": [
1221
+ {
1222
+ "internalType": "address",
1223
+ "name": "_authorityOwner",
1224
+ "type": "address"
1225
+ },
1226
+ {
1227
+ "internalType": "address",
1228
+ "name": "_dappOwner",
1229
+ "type": "address"
1230
+ },
1231
+ {
1232
+ "internalType": "bytes32",
1233
+ "name": "_templateHash",
1234
+ "type": "bytes32"
1235
+ },
1236
+ {
1237
+ "internalType": "bytes32",
1238
+ "name": "_salt",
1239
+ "type": "bytes32"
1240
+ }
1241
+ ],
1242
+ "name": "calculateAddresses",
1243
+ "outputs": [
1244
+ {
1245
+ "internalType": "address",
1246
+ "name": "application_",
1247
+ "type": "address"
1248
+ },
1249
+ {
1250
+ "internalType": "address",
1251
+ "name": "authority_",
1252
+ "type": "address"
1253
+ },
1254
+ {
1255
+ "internalType": "address",
1256
+ "name": "history_",
1257
+ "type": "address"
1258
+ }
1259
+ ],
1260
+ "stateMutability": "view",
1261
+ "type": "function"
1262
+ },
1263
+ {
1264
+ "inputs": [
1265
+ {
1266
+ "internalType": "address",
1267
+ "name": "_authorityOwner",
1268
+ "type": "address"
1269
+ },
1270
+ {
1271
+ "internalType": "address",
1272
+ "name": "_dappOwner",
1273
+ "type": "address"
1274
+ },
1275
+ {
1276
+ "internalType": "bytes32",
1277
+ "name": "_templateHash",
1278
+ "type": "bytes32"
1279
+ },
1280
+ {
1281
+ "internalType": "bytes32",
1282
+ "name": "_salt",
1283
+ "type": "bytes32"
1284
+ }
1285
+ ],
1286
+ "name": "deployContracts",
1287
+ "outputs": [
1288
+ {
1289
+ "internalType": "contract CartesiDApp",
1290
+ "name": "application_",
1291
+ "type": "address"
1292
+ },
1293
+ {
1294
+ "internalType": "contract Authority",
1295
+ "name": "authority_",
1296
+ "type": "address"
1297
+ },
1298
+ {
1299
+ "internalType": "contract History",
1300
+ "name": "history_",
1301
+ "type": "address"
1302
+ }
1303
+ ],
1304
+ "stateMutability": "nonpayable",
1305
+ "type": "function"
1306
+ },
1307
+ {
1308
+ "inputs": [],
1309
+ "name": "getApplicationFactory",
1310
+ "outputs": [
1311
+ {
1312
+ "internalType": "contract ICartesiDAppFactory",
1313
+ "name": "",
1314
+ "type": "address"
1315
+ }
1316
+ ],
1317
+ "stateMutability": "view",
1318
+ "type": "function"
1319
+ },
1320
+ {
1321
+ "inputs": [],
1322
+ "name": "getAuthorityHistoryPairFactory",
1323
+ "outputs": [
1324
+ {
1325
+ "internalType": "contract IAuthorityHistoryPairFactory",
1326
+ "name": "",
1327
+ "type": "address"
1328
+ }
1329
+ ],
1330
+ "stateMutability": "view",
1331
+ "type": "function"
1332
+ }
1333
+ ]
1334
+ },
1335
+ "TestToken": {
1336
+ "address": "0x92C6bcA388E99d6B304f1Af3c3Cd749Ff0b591e2",
1337
+ "abi": [
1338
+ {
1339
+ "inputs": [
1340
+ {
1341
+ "internalType": "address",
1342
+ "name": "initialAuthority",
1343
+ "type": "address"
1344
+ }
1345
+ ],
1346
+ "stateMutability": "nonpayable",
1347
+ "type": "constructor"
1348
+ },
1349
+ {
1350
+ "inputs": [
1351
+ {
1352
+ "internalType": "address",
1353
+ "name": "authority",
1354
+ "type": "address"
1355
+ }
1356
+ ],
1357
+ "name": "AccessManagedInvalidAuthority",
1358
+ "type": "error"
1359
+ },
1360
+ {
1361
+ "inputs": [
1362
+ {
1363
+ "internalType": "address",
1364
+ "name": "caller",
1365
+ "type": "address"
1366
+ },
1367
+ {
1368
+ "internalType": "uint32",
1369
+ "name": "delay",
1370
+ "type": "uint32"
1371
+ }
1372
+ ],
1373
+ "name": "AccessManagedRequiredDelay",
1374
+ "type": "error"
1375
+ },
1376
+ {
1377
+ "inputs": [
1378
+ {
1379
+ "internalType": "address",
1380
+ "name": "caller",
1381
+ "type": "address"
1382
+ }
1383
+ ],
1384
+ "name": "AccessManagedUnauthorized",
1385
+ "type": "error"
1386
+ },
1387
+ {
1388
+ "inputs": [],
1389
+ "name": "ECDSAInvalidSignature",
1390
+ "type": "error"
1391
+ },
1392
+ {
1393
+ "inputs": [
1394
+ {
1395
+ "internalType": "uint256",
1396
+ "name": "length",
1397
+ "type": "uint256"
1398
+ }
1399
+ ],
1400
+ "name": "ECDSAInvalidSignatureLength",
1401
+ "type": "error"
1402
+ },
1403
+ {
1404
+ "inputs": [
1405
+ {
1406
+ "internalType": "bytes32",
1407
+ "name": "s",
1408
+ "type": "bytes32"
1409
+ }
1410
+ ],
1411
+ "name": "ECDSAInvalidSignatureS",
1412
+ "type": "error"
1413
+ },
1414
+ {
1415
+ "inputs": [
1416
+ {
1417
+ "internalType": "address",
1418
+ "name": "spender",
1419
+ "type": "address"
1420
+ },
1421
+ {
1422
+ "internalType": "uint256",
1423
+ "name": "allowance",
1424
+ "type": "uint256"
1425
+ },
1426
+ {
1427
+ "internalType": "uint256",
1428
+ "name": "needed",
1429
+ "type": "uint256"
1430
+ }
1431
+ ],
1432
+ "name": "ERC20InsufficientAllowance",
1433
+ "type": "error"
1434
+ },
1435
+ {
1436
+ "inputs": [
1437
+ {
1438
+ "internalType": "address",
1439
+ "name": "sender",
1440
+ "type": "address"
1441
+ },
1442
+ {
1443
+ "internalType": "uint256",
1444
+ "name": "balance",
1445
+ "type": "uint256"
1446
+ },
1447
+ {
1448
+ "internalType": "uint256",
1449
+ "name": "needed",
1450
+ "type": "uint256"
1451
+ }
1452
+ ],
1453
+ "name": "ERC20InsufficientBalance",
1454
+ "type": "error"
1455
+ },
1456
+ {
1457
+ "inputs": [
1458
+ {
1459
+ "internalType": "address",
1460
+ "name": "approver",
1461
+ "type": "address"
1462
+ }
1463
+ ],
1464
+ "name": "ERC20InvalidApprover",
1465
+ "type": "error"
1466
+ },
1467
+ {
1468
+ "inputs": [
1469
+ {
1470
+ "internalType": "address",
1471
+ "name": "receiver",
1472
+ "type": "address"
1473
+ }
1474
+ ],
1475
+ "name": "ERC20InvalidReceiver",
1476
+ "type": "error"
1477
+ },
1478
+ {
1479
+ "inputs": [
1480
+ {
1481
+ "internalType": "address",
1482
+ "name": "sender",
1483
+ "type": "address"
1484
+ }
1485
+ ],
1486
+ "name": "ERC20InvalidSender",
1487
+ "type": "error"
1488
+ },
1489
+ {
1490
+ "inputs": [
1491
+ {
1492
+ "internalType": "address",
1493
+ "name": "spender",
1494
+ "type": "address"
1495
+ }
1496
+ ],
1497
+ "name": "ERC20InvalidSpender",
1498
+ "type": "error"
1499
+ },
1500
+ {
1501
+ "inputs": [
1502
+ {
1503
+ "internalType": "uint256",
1504
+ "name": "deadline",
1505
+ "type": "uint256"
1506
+ }
1507
+ ],
1508
+ "name": "ERC2612ExpiredSignature",
1509
+ "type": "error"
1510
+ },
1511
+ {
1512
+ "inputs": [
1513
+ {
1514
+ "internalType": "address",
1515
+ "name": "signer",
1516
+ "type": "address"
1517
+ },
1518
+ {
1519
+ "internalType": "address",
1520
+ "name": "owner",
1521
+ "type": "address"
1522
+ }
1523
+ ],
1524
+ "name": "ERC2612InvalidSigner",
1525
+ "type": "error"
1526
+ },
1527
+ {
1528
+ "inputs": [],
1529
+ "name": "EnforcedPause",
1530
+ "type": "error"
1531
+ },
1532
+ {
1533
+ "inputs": [],
1534
+ "name": "ExpectedPause",
1535
+ "type": "error"
1536
+ },
1537
+ {
1538
+ "inputs": [
1539
+ {
1540
+ "internalType": "address",
1541
+ "name": "account",
1542
+ "type": "address"
1543
+ },
1544
+ {
1545
+ "internalType": "uint256",
1546
+ "name": "currentNonce",
1547
+ "type": "uint256"
1548
+ }
1549
+ ],
1550
+ "name": "InvalidAccountNonce",
1551
+ "type": "error"
1552
+ },
1553
+ {
1554
+ "inputs": [],
1555
+ "name": "InvalidShortString",
1556
+ "type": "error"
1557
+ },
1558
+ {
1559
+ "inputs": [
1560
+ {
1561
+ "internalType": "string",
1562
+ "name": "str",
1563
+ "type": "string"
1564
+ }
1565
+ ],
1566
+ "name": "StringTooLong",
1567
+ "type": "error"
1568
+ },
1569
+ {
1570
+ "anonymous": false,
1571
+ "inputs": [
1572
+ {
1573
+ "indexed": true,
1574
+ "internalType": "address",
1575
+ "name": "owner",
1576
+ "type": "address"
1577
+ },
1578
+ {
1579
+ "indexed": true,
1580
+ "internalType": "address",
1581
+ "name": "spender",
1582
+ "type": "address"
1583
+ },
1584
+ {
1585
+ "indexed": false,
1586
+ "internalType": "uint256",
1587
+ "name": "value",
1588
+ "type": "uint256"
1589
+ }
1590
+ ],
1591
+ "name": "Approval",
1592
+ "type": "event"
1593
+ },
1594
+ {
1595
+ "anonymous": false,
1596
+ "inputs": [
1597
+ {
1598
+ "indexed": false,
1599
+ "internalType": "address",
1600
+ "name": "authority",
1601
+ "type": "address"
1602
+ }
1603
+ ],
1604
+ "name": "AuthorityUpdated",
1605
+ "type": "event"
1606
+ },
1607
+ {
1608
+ "anonymous": false,
1609
+ "inputs": [],
1610
+ "name": "EIP712DomainChanged",
1611
+ "type": "event"
1612
+ },
1613
+ {
1614
+ "anonymous": false,
1615
+ "inputs": [
1616
+ {
1617
+ "indexed": false,
1618
+ "internalType": "address",
1619
+ "name": "account",
1620
+ "type": "address"
1621
+ }
1622
+ ],
1623
+ "name": "Paused",
1624
+ "type": "event"
1625
+ },
1626
+ {
1627
+ "anonymous": false,
1628
+ "inputs": [
1629
+ {
1630
+ "indexed": true,
1631
+ "internalType": "address",
1632
+ "name": "from",
1633
+ "type": "address"
1634
+ },
1635
+ {
1636
+ "indexed": true,
1637
+ "internalType": "address",
1638
+ "name": "to",
1639
+ "type": "address"
1640
+ },
1641
+ {
1642
+ "indexed": false,
1643
+ "internalType": "uint256",
1644
+ "name": "value",
1645
+ "type": "uint256"
1646
+ }
1647
+ ],
1648
+ "name": "Transfer",
1649
+ "type": "event"
1650
+ },
1651
+ {
1652
+ "anonymous": false,
1653
+ "inputs": [
1654
+ {
1655
+ "indexed": false,
1656
+ "internalType": "address",
1657
+ "name": "account",
1658
+ "type": "address"
1659
+ }
1660
+ ],
1661
+ "name": "Unpaused",
1662
+ "type": "event"
1663
+ },
1664
+ {
1665
+ "inputs": [],
1666
+ "name": "DOMAIN_SEPARATOR",
1667
+ "outputs": [
1668
+ {
1669
+ "internalType": "bytes32",
1670
+ "name": "",
1671
+ "type": "bytes32"
1672
+ }
1673
+ ],
1674
+ "stateMutability": "view",
1675
+ "type": "function"
1676
+ },
1677
+ {
1678
+ "inputs": [
1679
+ {
1680
+ "internalType": "address",
1681
+ "name": "owner",
1682
+ "type": "address"
1683
+ },
1684
+ {
1685
+ "internalType": "address",
1686
+ "name": "spender",
1687
+ "type": "address"
1688
+ }
1689
+ ],
1690
+ "name": "allowance",
1691
+ "outputs": [
1692
+ {
1693
+ "internalType": "uint256",
1694
+ "name": "",
1695
+ "type": "uint256"
1696
+ }
1697
+ ],
1698
+ "stateMutability": "view",
1699
+ "type": "function"
1700
+ },
1701
+ {
1702
+ "inputs": [
1703
+ {
1704
+ "internalType": "address",
1705
+ "name": "spender",
1706
+ "type": "address"
1707
+ },
1708
+ {
1709
+ "internalType": "uint256",
1710
+ "name": "value",
1711
+ "type": "uint256"
1712
+ }
1713
+ ],
1714
+ "name": "approve",
1715
+ "outputs": [
1716
+ {
1717
+ "internalType": "bool",
1718
+ "name": "",
1719
+ "type": "bool"
1720
+ }
1721
+ ],
1722
+ "stateMutability": "nonpayable",
1723
+ "type": "function"
1724
+ },
1725
+ {
1726
+ "inputs": [],
1727
+ "name": "authority",
1728
+ "outputs": [
1729
+ {
1730
+ "internalType": "address",
1731
+ "name": "",
1732
+ "type": "address"
1733
+ }
1734
+ ],
1735
+ "stateMutability": "view",
1736
+ "type": "function"
1737
+ },
1738
+ {
1739
+ "inputs": [
1740
+ {
1741
+ "internalType": "address",
1742
+ "name": "account",
1743
+ "type": "address"
1744
+ }
1745
+ ],
1746
+ "name": "balanceOf",
1747
+ "outputs": [
1748
+ {
1749
+ "internalType": "uint256",
1750
+ "name": "",
1751
+ "type": "uint256"
1752
+ }
1753
+ ],
1754
+ "stateMutability": "view",
1755
+ "type": "function"
1756
+ },
1757
+ {
1758
+ "inputs": [
1759
+ {
1760
+ "internalType": "uint256",
1761
+ "name": "value",
1762
+ "type": "uint256"
1763
+ }
1764
+ ],
1765
+ "name": "burn",
1766
+ "outputs": [],
1767
+ "stateMutability": "nonpayable",
1768
+ "type": "function"
1769
+ },
1770
+ {
1771
+ "inputs": [
1772
+ {
1773
+ "internalType": "address",
1774
+ "name": "account",
1775
+ "type": "address"
1776
+ },
1777
+ {
1778
+ "internalType": "uint256",
1779
+ "name": "value",
1780
+ "type": "uint256"
1781
+ }
1782
+ ],
1783
+ "name": "burnFrom",
1784
+ "outputs": [],
1785
+ "stateMutability": "nonpayable",
1786
+ "type": "function"
1787
+ },
1788
+ {
1789
+ "inputs": [],
1790
+ "name": "decimals",
1791
+ "outputs": [
1792
+ {
1793
+ "internalType": "uint8",
1794
+ "name": "",
1795
+ "type": "uint8"
1796
+ }
1797
+ ],
1798
+ "stateMutability": "view",
1799
+ "type": "function"
1800
+ },
1801
+ {
1802
+ "inputs": [],
1803
+ "name": "eip712Domain",
1804
+ "outputs": [
1805
+ {
1806
+ "internalType": "bytes1",
1807
+ "name": "fields",
1808
+ "type": "bytes1"
1809
+ },
1810
+ {
1811
+ "internalType": "string",
1812
+ "name": "name",
1813
+ "type": "string"
1814
+ },
1815
+ {
1816
+ "internalType": "string",
1817
+ "name": "version",
1818
+ "type": "string"
1819
+ },
1820
+ {
1821
+ "internalType": "uint256",
1822
+ "name": "chainId",
1823
+ "type": "uint256"
1824
+ },
1825
+ {
1826
+ "internalType": "address",
1827
+ "name": "verifyingContract",
1828
+ "type": "address"
1829
+ },
1830
+ {
1831
+ "internalType": "bytes32",
1832
+ "name": "salt",
1833
+ "type": "bytes32"
1834
+ },
1835
+ {
1836
+ "internalType": "uint256[]",
1837
+ "name": "extensions",
1838
+ "type": "uint256[]"
1839
+ }
1840
+ ],
1841
+ "stateMutability": "view",
1842
+ "type": "function"
1843
+ },
1844
+ {
1845
+ "inputs": [],
1846
+ "name": "isConsumingScheduledOp",
1847
+ "outputs": [
1848
+ {
1849
+ "internalType": "bytes4",
1850
+ "name": "",
1851
+ "type": "bytes4"
1852
+ }
1853
+ ],
1854
+ "stateMutability": "view",
1855
+ "type": "function"
1856
+ },
1857
+ {
1858
+ "inputs": [],
1859
+ "name": "name",
1860
+ "outputs": [
1861
+ {
1862
+ "internalType": "string",
1863
+ "name": "",
1864
+ "type": "string"
1865
+ }
1866
+ ],
1867
+ "stateMutability": "view",
1868
+ "type": "function"
1869
+ },
1870
+ {
1871
+ "inputs": [
1872
+ {
1873
+ "internalType": "address",
1874
+ "name": "owner",
1875
+ "type": "address"
1876
+ }
1877
+ ],
1878
+ "name": "nonces",
1879
+ "outputs": [
1880
+ {
1881
+ "internalType": "uint256",
1882
+ "name": "",
1883
+ "type": "uint256"
1884
+ }
1885
+ ],
1886
+ "stateMutability": "view",
1887
+ "type": "function"
1888
+ },
1889
+ {
1890
+ "inputs": [],
1891
+ "name": "pause",
1892
+ "outputs": [],
1893
+ "stateMutability": "nonpayable",
1894
+ "type": "function"
1895
+ },
1896
+ {
1897
+ "inputs": [],
1898
+ "name": "paused",
1899
+ "outputs": [
1900
+ {
1901
+ "internalType": "bool",
1902
+ "name": "",
1903
+ "type": "bool"
1904
+ }
1905
+ ],
1906
+ "stateMutability": "view",
1907
+ "type": "function"
1908
+ },
1909
+ {
1910
+ "inputs": [
1911
+ {
1912
+ "internalType": "address",
1913
+ "name": "owner",
1914
+ "type": "address"
1915
+ },
1916
+ {
1917
+ "internalType": "address",
1918
+ "name": "spender",
1919
+ "type": "address"
1920
+ },
1921
+ {
1922
+ "internalType": "uint256",
1923
+ "name": "value",
1924
+ "type": "uint256"
1925
+ },
1926
+ {
1927
+ "internalType": "uint256",
1928
+ "name": "deadline",
1929
+ "type": "uint256"
1930
+ },
1931
+ {
1932
+ "internalType": "uint8",
1933
+ "name": "v",
1934
+ "type": "uint8"
1935
+ },
1936
+ {
1937
+ "internalType": "bytes32",
1938
+ "name": "r",
1939
+ "type": "bytes32"
1940
+ },
1941
+ {
1942
+ "internalType": "bytes32",
1943
+ "name": "s",
1944
+ "type": "bytes32"
1945
+ }
1946
+ ],
1947
+ "name": "permit",
1948
+ "outputs": [],
1949
+ "stateMutability": "nonpayable",
1950
+ "type": "function"
1951
+ },
1952
+ {
1953
+ "inputs": [
1954
+ {
1955
+ "internalType": "address",
1956
+ "name": "newAuthority",
1957
+ "type": "address"
1958
+ }
1959
+ ],
1960
+ "name": "setAuthority",
1961
+ "outputs": [],
1962
+ "stateMutability": "nonpayable",
1963
+ "type": "function"
1964
+ },
1965
+ {
1966
+ "inputs": [],
1967
+ "name": "symbol",
1968
+ "outputs": [
1969
+ {
1970
+ "internalType": "string",
1971
+ "name": "",
1972
+ "type": "string"
1973
+ }
1974
+ ],
1975
+ "stateMutability": "view",
1976
+ "type": "function"
1977
+ },
1978
+ {
1979
+ "inputs": [],
1980
+ "name": "totalSupply",
1981
+ "outputs": [
1982
+ {
1983
+ "internalType": "uint256",
1984
+ "name": "",
1985
+ "type": "uint256"
1986
+ }
1987
+ ],
1988
+ "stateMutability": "view",
1989
+ "type": "function"
1990
+ },
1991
+ {
1992
+ "inputs": [
1993
+ {
1994
+ "internalType": "address",
1995
+ "name": "to",
1996
+ "type": "address"
1997
+ },
1998
+ {
1999
+ "internalType": "uint256",
2000
+ "name": "value",
2001
+ "type": "uint256"
2002
+ }
2003
+ ],
2004
+ "name": "transfer",
2005
+ "outputs": [
2006
+ {
2007
+ "internalType": "bool",
2008
+ "name": "",
2009
+ "type": "bool"
2010
+ }
2011
+ ],
2012
+ "stateMutability": "nonpayable",
2013
+ "type": "function"
2014
+ },
2015
+ {
2016
+ "inputs": [
2017
+ {
2018
+ "internalType": "address",
2019
+ "name": "from",
2020
+ "type": "address"
2021
+ },
2022
+ {
2023
+ "internalType": "address",
2024
+ "name": "to",
2025
+ "type": "address"
2026
+ },
2027
+ {
2028
+ "internalType": "uint256",
2029
+ "name": "value",
2030
+ "type": "uint256"
2031
+ }
2032
+ ],
2033
+ "name": "transferFrom",
2034
+ "outputs": [
2035
+ {
2036
+ "internalType": "bool",
2037
+ "name": "",
2038
+ "type": "bool"
2039
+ }
2040
+ ],
2041
+ "stateMutability": "nonpayable",
2042
+ "type": "function"
2043
+ },
2044
+ {
2045
+ "inputs": [],
2046
+ "name": "unpause",
2047
+ "outputs": [],
2048
+ "stateMutability": "nonpayable",
2049
+ "type": "function"
2050
+ }
2051
+ ]
2052
+ },
2053
+ "TestNFT": {
2054
+ "address": "0xc6582A9b48F211Fa8c2B5b16CB615eC39bcA653B",
2055
+ "abi": [
2056
+ {
2057
+ "inputs": [
2058
+ {
2059
+ "internalType": "address",
2060
+ "name": "initialOwner",
2061
+ "type": "address"
2062
+ }
2063
+ ],
2064
+ "stateMutability": "nonpayable",
2065
+ "type": "constructor"
2066
+ },
2067
+ {
2068
+ "inputs": [
2069
+ {
2070
+ "internalType": "address",
2071
+ "name": "sender",
2072
+ "type": "address"
2073
+ },
2074
+ {
2075
+ "internalType": "uint256",
2076
+ "name": "tokenId",
2077
+ "type": "uint256"
2078
+ },
2079
+ {
2080
+ "internalType": "address",
2081
+ "name": "owner",
2082
+ "type": "address"
2083
+ }
2084
+ ],
2085
+ "name": "ERC721IncorrectOwner",
2086
+ "type": "error"
2087
+ },
2088
+ {
2089
+ "inputs": [
2090
+ {
2091
+ "internalType": "address",
2092
+ "name": "operator",
2093
+ "type": "address"
2094
+ },
2095
+ {
2096
+ "internalType": "uint256",
2097
+ "name": "tokenId",
2098
+ "type": "uint256"
2099
+ }
2100
+ ],
2101
+ "name": "ERC721InsufficientApproval",
2102
+ "type": "error"
2103
+ },
2104
+ {
2105
+ "inputs": [
2106
+ {
2107
+ "internalType": "address",
2108
+ "name": "approver",
2109
+ "type": "address"
2110
+ }
2111
+ ],
2112
+ "name": "ERC721InvalidApprover",
2113
+ "type": "error"
2114
+ },
2115
+ {
2116
+ "inputs": [
2117
+ {
2118
+ "internalType": "address",
2119
+ "name": "operator",
2120
+ "type": "address"
2121
+ }
2122
+ ],
2123
+ "name": "ERC721InvalidOperator",
2124
+ "type": "error"
2125
+ },
2126
+ {
2127
+ "inputs": [
2128
+ {
2129
+ "internalType": "address",
2130
+ "name": "owner",
2131
+ "type": "address"
2132
+ }
2133
+ ],
2134
+ "name": "ERC721InvalidOwner",
2135
+ "type": "error"
2136
+ },
2137
+ {
2138
+ "inputs": [
2139
+ {
2140
+ "internalType": "address",
2141
+ "name": "receiver",
2142
+ "type": "address"
2143
+ }
2144
+ ],
2145
+ "name": "ERC721InvalidReceiver",
2146
+ "type": "error"
2147
+ },
2148
+ {
2149
+ "inputs": [
2150
+ {
2151
+ "internalType": "address",
2152
+ "name": "sender",
2153
+ "type": "address"
2154
+ }
2155
+ ],
2156
+ "name": "ERC721InvalidSender",
2157
+ "type": "error"
2158
+ },
2159
+ {
2160
+ "inputs": [
2161
+ {
2162
+ "internalType": "uint256",
2163
+ "name": "tokenId",
2164
+ "type": "uint256"
2165
+ }
2166
+ ],
2167
+ "name": "ERC721NonexistentToken",
2168
+ "type": "error"
2169
+ },
2170
+ {
2171
+ "inputs": [
2172
+ {
2173
+ "internalType": "address",
2174
+ "name": "owner",
2175
+ "type": "address"
2176
+ }
2177
+ ],
2178
+ "name": "OwnableInvalidOwner",
2179
+ "type": "error"
2180
+ },
2181
+ {
2182
+ "inputs": [
2183
+ {
2184
+ "internalType": "address",
2185
+ "name": "account",
2186
+ "type": "address"
2187
+ }
2188
+ ],
2189
+ "name": "OwnableUnauthorizedAccount",
2190
+ "type": "error"
2191
+ },
2192
+ {
2193
+ "anonymous": false,
2194
+ "inputs": [
2195
+ {
2196
+ "indexed": true,
2197
+ "internalType": "address",
2198
+ "name": "owner",
2199
+ "type": "address"
2200
+ },
2201
+ {
2202
+ "indexed": true,
2203
+ "internalType": "address",
2204
+ "name": "approved",
2205
+ "type": "address"
2206
+ },
2207
+ {
2208
+ "indexed": true,
2209
+ "internalType": "uint256",
2210
+ "name": "tokenId",
2211
+ "type": "uint256"
2212
+ }
2213
+ ],
2214
+ "name": "Approval",
2215
+ "type": "event"
2216
+ },
2217
+ {
2218
+ "anonymous": false,
2219
+ "inputs": [
2220
+ {
2221
+ "indexed": true,
2222
+ "internalType": "address",
2223
+ "name": "owner",
2224
+ "type": "address"
2225
+ },
2226
+ {
2227
+ "indexed": true,
2228
+ "internalType": "address",
2229
+ "name": "operator",
2230
+ "type": "address"
2231
+ },
2232
+ {
2233
+ "indexed": false,
2234
+ "internalType": "bool",
2235
+ "name": "approved",
2236
+ "type": "bool"
2237
+ }
2238
+ ],
2239
+ "name": "ApprovalForAll",
2240
+ "type": "event"
2241
+ },
2242
+ {
2243
+ "anonymous": false,
2244
+ "inputs": [
2245
+ {
2246
+ "indexed": false,
2247
+ "internalType": "uint256",
2248
+ "name": "_fromTokenId",
2249
+ "type": "uint256"
2250
+ },
2251
+ {
2252
+ "indexed": false,
2253
+ "internalType": "uint256",
2254
+ "name": "_toTokenId",
2255
+ "type": "uint256"
2256
+ }
2257
+ ],
2258
+ "name": "BatchMetadataUpdate",
2259
+ "type": "event"
2260
+ },
2261
+ {
2262
+ "anonymous": false,
2263
+ "inputs": [
2264
+ {
2265
+ "indexed": false,
2266
+ "internalType": "uint256",
2267
+ "name": "_tokenId",
2268
+ "type": "uint256"
2269
+ }
2270
+ ],
2271
+ "name": "MetadataUpdate",
2272
+ "type": "event"
2273
+ },
2274
+ {
2275
+ "anonymous": false,
2276
+ "inputs": [
2277
+ {
2278
+ "indexed": true,
2279
+ "internalType": "address",
2280
+ "name": "previousOwner",
2281
+ "type": "address"
2282
+ },
2283
+ {
2284
+ "indexed": true,
2285
+ "internalType": "address",
2286
+ "name": "newOwner",
2287
+ "type": "address"
2288
+ }
2289
+ ],
2290
+ "name": "OwnershipTransferred",
2291
+ "type": "event"
2292
+ },
2293
+ {
2294
+ "anonymous": false,
2295
+ "inputs": [
2296
+ {
2297
+ "indexed": true,
2298
+ "internalType": "address",
2299
+ "name": "from",
2300
+ "type": "address"
2301
+ },
2302
+ {
2303
+ "indexed": true,
2304
+ "internalType": "address",
2305
+ "name": "to",
2306
+ "type": "address"
2307
+ },
2308
+ {
2309
+ "indexed": true,
2310
+ "internalType": "uint256",
2311
+ "name": "tokenId",
2312
+ "type": "uint256"
2313
+ }
2314
+ ],
2315
+ "name": "Transfer",
2316
+ "type": "event"
2317
+ },
2318
+ {
2319
+ "inputs": [
2320
+ {
2321
+ "internalType": "address",
2322
+ "name": "to",
2323
+ "type": "address"
2324
+ },
2325
+ {
2326
+ "internalType": "uint256",
2327
+ "name": "tokenId",
2328
+ "type": "uint256"
2329
+ }
2330
+ ],
2331
+ "name": "approve",
2332
+ "outputs": [],
2333
+ "stateMutability": "nonpayable",
2334
+ "type": "function"
2335
+ },
2336
+ {
2337
+ "inputs": [
2338
+ {
2339
+ "internalType": "address",
2340
+ "name": "owner",
2341
+ "type": "address"
2342
+ }
2343
+ ],
2344
+ "name": "balanceOf",
2345
+ "outputs": [
2346
+ {
2347
+ "internalType": "uint256",
2348
+ "name": "",
2349
+ "type": "uint256"
2350
+ }
2351
+ ],
2352
+ "stateMutability": "view",
2353
+ "type": "function"
2354
+ },
2355
+ {
2356
+ "inputs": [
2357
+ {
2358
+ "internalType": "uint256",
2359
+ "name": "tokenId",
2360
+ "type": "uint256"
2361
+ }
2362
+ ],
2363
+ "name": "getApproved",
2364
+ "outputs": [
2365
+ {
2366
+ "internalType": "address",
2367
+ "name": "",
2368
+ "type": "address"
2369
+ }
2370
+ ],
2371
+ "stateMutability": "view",
2372
+ "type": "function"
2373
+ },
2374
+ {
2375
+ "inputs": [
2376
+ {
2377
+ "internalType": "address",
2378
+ "name": "owner",
2379
+ "type": "address"
2380
+ },
2381
+ {
2382
+ "internalType": "address",
2383
+ "name": "operator",
2384
+ "type": "address"
2385
+ }
2386
+ ],
2387
+ "name": "isApprovedForAll",
2388
+ "outputs": [
2389
+ {
2390
+ "internalType": "bool",
2391
+ "name": "",
2392
+ "type": "bool"
2393
+ }
2394
+ ],
2395
+ "stateMutability": "view",
2396
+ "type": "function"
2397
+ },
2398
+ {
2399
+ "inputs": [],
2400
+ "name": "name",
2401
+ "outputs": [
2402
+ {
2403
+ "internalType": "string",
2404
+ "name": "",
2405
+ "type": "string"
2406
+ }
2407
+ ],
2408
+ "stateMutability": "view",
2409
+ "type": "function"
2410
+ },
2411
+ {
2412
+ "inputs": [],
2413
+ "name": "owner",
2414
+ "outputs": [
2415
+ {
2416
+ "internalType": "address",
2417
+ "name": "",
2418
+ "type": "address"
2419
+ }
2420
+ ],
2421
+ "stateMutability": "view",
2422
+ "type": "function"
2423
+ },
2424
+ {
2425
+ "inputs": [
2426
+ {
2427
+ "internalType": "uint256",
2428
+ "name": "tokenId",
2429
+ "type": "uint256"
2430
+ }
2431
+ ],
2432
+ "name": "ownerOf",
2433
+ "outputs": [
2434
+ {
2435
+ "internalType": "address",
2436
+ "name": "",
2437
+ "type": "address"
2438
+ }
2439
+ ],
2440
+ "stateMutability": "view",
2441
+ "type": "function"
2442
+ },
2443
+ {
2444
+ "inputs": [],
2445
+ "name": "renounceOwnership",
2446
+ "outputs": [],
2447
+ "stateMutability": "nonpayable",
2448
+ "type": "function"
2449
+ },
2450
+ {
2451
+ "inputs": [
2452
+ {
2453
+ "internalType": "address",
2454
+ "name": "to",
2455
+ "type": "address"
2456
+ },
2457
+ {
2458
+ "internalType": "uint256",
2459
+ "name": "tokenId",
2460
+ "type": "uint256"
2461
+ },
2462
+ {
2463
+ "internalType": "string",
2464
+ "name": "uri",
2465
+ "type": "string"
2466
+ }
2467
+ ],
2468
+ "name": "safeMint",
2469
+ "outputs": [],
2470
+ "stateMutability": "nonpayable",
2471
+ "type": "function"
2472
+ },
2473
+ {
2474
+ "inputs": [
2475
+ {
2476
+ "internalType": "address",
2477
+ "name": "from",
2478
+ "type": "address"
2479
+ },
2480
+ {
2481
+ "internalType": "address",
2482
+ "name": "to",
2483
+ "type": "address"
2484
+ },
2485
+ {
2486
+ "internalType": "uint256",
2487
+ "name": "tokenId",
2488
+ "type": "uint256"
2489
+ }
2490
+ ],
2491
+ "name": "safeTransferFrom",
2492
+ "outputs": [],
2493
+ "stateMutability": "nonpayable",
2494
+ "type": "function"
2495
+ },
2496
+ {
2497
+ "inputs": [
2498
+ {
2499
+ "internalType": "address",
2500
+ "name": "from",
2501
+ "type": "address"
2502
+ },
2503
+ {
2504
+ "internalType": "address",
2505
+ "name": "to",
2506
+ "type": "address"
2507
+ },
2508
+ {
2509
+ "internalType": "uint256",
2510
+ "name": "tokenId",
2511
+ "type": "uint256"
2512
+ },
2513
+ {
2514
+ "internalType": "bytes",
2515
+ "name": "data",
2516
+ "type": "bytes"
2517
+ }
2518
+ ],
2519
+ "name": "safeTransferFrom",
2520
+ "outputs": [],
2521
+ "stateMutability": "nonpayable",
2522
+ "type": "function"
2523
+ },
2524
+ {
2525
+ "inputs": [
2526
+ {
2527
+ "internalType": "address",
2528
+ "name": "operator",
2529
+ "type": "address"
2530
+ },
2531
+ {
2532
+ "internalType": "bool",
2533
+ "name": "approved",
2534
+ "type": "bool"
2535
+ }
2536
+ ],
2537
+ "name": "setApprovalForAll",
2538
+ "outputs": [],
2539
+ "stateMutability": "nonpayable",
2540
+ "type": "function"
2541
+ },
2542
+ {
2543
+ "inputs": [
2544
+ {
2545
+ "internalType": "bytes4",
2546
+ "name": "interfaceId",
2547
+ "type": "bytes4"
2548
+ }
2549
+ ],
2550
+ "name": "supportsInterface",
2551
+ "outputs": [
2552
+ {
2553
+ "internalType": "bool",
2554
+ "name": "",
2555
+ "type": "bool"
2556
+ }
2557
+ ],
2558
+ "stateMutability": "view",
2559
+ "type": "function"
2560
+ },
2561
+ {
2562
+ "inputs": [],
2563
+ "name": "symbol",
2564
+ "outputs": [
2565
+ {
2566
+ "internalType": "string",
2567
+ "name": "",
2568
+ "type": "string"
2569
+ }
2570
+ ],
2571
+ "stateMutability": "view",
2572
+ "type": "function"
2573
+ },
2574
+ {
2575
+ "inputs": [
2576
+ {
2577
+ "internalType": "uint256",
2578
+ "name": "tokenId",
2579
+ "type": "uint256"
2580
+ }
2581
+ ],
2582
+ "name": "tokenURI",
2583
+ "outputs": [
2584
+ {
2585
+ "internalType": "string",
2586
+ "name": "",
2587
+ "type": "string"
2588
+ }
2589
+ ],
2590
+ "stateMutability": "view",
2591
+ "type": "function"
2592
+ },
2593
+ {
2594
+ "inputs": [
2595
+ {
2596
+ "internalType": "address",
2597
+ "name": "from",
2598
+ "type": "address"
2599
+ },
2600
+ {
2601
+ "internalType": "address",
2602
+ "name": "to",
2603
+ "type": "address"
2604
+ },
2605
+ {
2606
+ "internalType": "uint256",
2607
+ "name": "tokenId",
2608
+ "type": "uint256"
2609
+ }
2610
+ ],
2611
+ "name": "transferFrom",
2612
+ "outputs": [],
2613
+ "stateMutability": "nonpayable",
2614
+ "type": "function"
2615
+ },
2616
+ {
2617
+ "inputs": [
2618
+ {
2619
+ "internalType": "address",
2620
+ "name": "newOwner",
2621
+ "type": "address"
2622
+ }
2623
+ ],
2624
+ "name": "transferOwnership",
2625
+ "outputs": [],
2626
+ "stateMutability": "nonpayable",
2627
+ "type": "function"
2628
+ }
2629
+ ]
2630
+ },
2631
+ "TestMultiToken": {
2632
+ "address": "0x04d724738873CB6a86328D2EbAEb2079D715e61e",
2633
+ "abi": [
2634
+ {
2635
+ "inputs": [
2636
+ {
2637
+ "internalType": "address",
2638
+ "name": "initialOwner",
2639
+ "type": "address"
2640
+ }
2641
+ ],
2642
+ "stateMutability": "nonpayable",
2643
+ "type": "constructor"
2644
+ },
2645
+ {
2646
+ "inputs": [
2647
+ {
2648
+ "internalType": "address",
2649
+ "name": "sender",
2650
+ "type": "address"
2651
+ },
2652
+ {
2653
+ "internalType": "uint256",
2654
+ "name": "balance",
2655
+ "type": "uint256"
2656
+ },
2657
+ {
2658
+ "internalType": "uint256",
2659
+ "name": "needed",
2660
+ "type": "uint256"
2661
+ },
2662
+ {
2663
+ "internalType": "uint256",
2664
+ "name": "tokenId",
2665
+ "type": "uint256"
2666
+ }
2667
+ ],
2668
+ "name": "ERC1155InsufficientBalance",
2669
+ "type": "error"
2670
+ },
2671
+ {
2672
+ "inputs": [
2673
+ {
2674
+ "internalType": "address",
2675
+ "name": "approver",
2676
+ "type": "address"
2677
+ }
2678
+ ],
2679
+ "name": "ERC1155InvalidApprover",
2680
+ "type": "error"
2681
+ },
2682
+ {
2683
+ "inputs": [
2684
+ {
2685
+ "internalType": "uint256",
2686
+ "name": "idsLength",
2687
+ "type": "uint256"
2688
+ },
2689
+ {
2690
+ "internalType": "uint256",
2691
+ "name": "valuesLength",
2692
+ "type": "uint256"
2693
+ }
2694
+ ],
2695
+ "name": "ERC1155InvalidArrayLength",
2696
+ "type": "error"
2697
+ },
2698
+ {
2699
+ "inputs": [
2700
+ {
2701
+ "internalType": "address",
2702
+ "name": "operator",
2703
+ "type": "address"
2704
+ }
2705
+ ],
2706
+ "name": "ERC1155InvalidOperator",
2707
+ "type": "error"
2708
+ },
2709
+ {
2710
+ "inputs": [
2711
+ {
2712
+ "internalType": "address",
2713
+ "name": "receiver",
2714
+ "type": "address"
2715
+ }
2716
+ ],
2717
+ "name": "ERC1155InvalidReceiver",
2718
+ "type": "error"
2719
+ },
2720
+ {
2721
+ "inputs": [
2722
+ {
2723
+ "internalType": "address",
2724
+ "name": "sender",
2725
+ "type": "address"
2726
+ }
2727
+ ],
2728
+ "name": "ERC1155InvalidSender",
2729
+ "type": "error"
2730
+ },
2731
+ {
2732
+ "inputs": [
2733
+ {
2734
+ "internalType": "address",
2735
+ "name": "operator",
2736
+ "type": "address"
2737
+ },
2738
+ {
2739
+ "internalType": "address",
2740
+ "name": "owner",
2741
+ "type": "address"
2742
+ }
2743
+ ],
2744
+ "name": "ERC1155MissingApprovalForAll",
2745
+ "type": "error"
2746
+ },
2747
+ {
2748
+ "inputs": [
2749
+ {
2750
+ "internalType": "address",
2751
+ "name": "owner",
2752
+ "type": "address"
2753
+ }
2754
+ ],
2755
+ "name": "OwnableInvalidOwner",
2756
+ "type": "error"
2757
+ },
2758
+ {
2759
+ "inputs": [
2760
+ {
2761
+ "internalType": "address",
2762
+ "name": "account",
2763
+ "type": "address"
2764
+ }
2765
+ ],
2766
+ "name": "OwnableUnauthorizedAccount",
2767
+ "type": "error"
2768
+ },
2769
+ {
2770
+ "anonymous": false,
2771
+ "inputs": [
2772
+ {
2773
+ "indexed": true,
2774
+ "internalType": "address",
2775
+ "name": "account",
2776
+ "type": "address"
2777
+ },
2778
+ {
2779
+ "indexed": true,
2780
+ "internalType": "address",
2781
+ "name": "operator",
2782
+ "type": "address"
2783
+ },
2784
+ {
2785
+ "indexed": false,
2786
+ "internalType": "bool",
2787
+ "name": "approved",
2788
+ "type": "bool"
2789
+ }
2790
+ ],
2791
+ "name": "ApprovalForAll",
2792
+ "type": "event"
2793
+ },
2794
+ {
2795
+ "anonymous": false,
2796
+ "inputs": [
2797
+ {
2798
+ "indexed": true,
2799
+ "internalType": "address",
2800
+ "name": "previousOwner",
2801
+ "type": "address"
2802
+ },
2803
+ {
2804
+ "indexed": true,
2805
+ "internalType": "address",
2806
+ "name": "newOwner",
2807
+ "type": "address"
2808
+ }
2809
+ ],
2810
+ "name": "OwnershipTransferred",
2811
+ "type": "event"
2812
+ },
2813
+ {
2814
+ "anonymous": false,
2815
+ "inputs": [
2816
+ {
2817
+ "indexed": true,
2818
+ "internalType": "address",
2819
+ "name": "operator",
2820
+ "type": "address"
2821
+ },
2822
+ {
2823
+ "indexed": true,
2824
+ "internalType": "address",
2825
+ "name": "from",
2826
+ "type": "address"
2827
+ },
2828
+ {
2829
+ "indexed": true,
2830
+ "internalType": "address",
2831
+ "name": "to",
2832
+ "type": "address"
2833
+ },
2834
+ {
2835
+ "indexed": false,
2836
+ "internalType": "uint256[]",
2837
+ "name": "ids",
2838
+ "type": "uint256[]"
2839
+ },
2840
+ {
2841
+ "indexed": false,
2842
+ "internalType": "uint256[]",
2843
+ "name": "values",
2844
+ "type": "uint256[]"
2845
+ }
2846
+ ],
2847
+ "name": "TransferBatch",
2848
+ "type": "event"
2849
+ },
2850
+ {
2851
+ "anonymous": false,
2852
+ "inputs": [
2853
+ {
2854
+ "indexed": true,
2855
+ "internalType": "address",
2856
+ "name": "operator",
2857
+ "type": "address"
2858
+ },
2859
+ {
2860
+ "indexed": true,
2861
+ "internalType": "address",
2862
+ "name": "from",
2863
+ "type": "address"
2864
+ },
2865
+ {
2866
+ "indexed": true,
2867
+ "internalType": "address",
2868
+ "name": "to",
2869
+ "type": "address"
2870
+ },
2871
+ {
2872
+ "indexed": false,
2873
+ "internalType": "uint256",
2874
+ "name": "id",
2875
+ "type": "uint256"
2876
+ },
2877
+ {
2878
+ "indexed": false,
2879
+ "internalType": "uint256",
2880
+ "name": "value",
2881
+ "type": "uint256"
2882
+ }
2883
+ ],
2884
+ "name": "TransferSingle",
2885
+ "type": "event"
2886
+ },
2887
+ {
2888
+ "anonymous": false,
2889
+ "inputs": [
2890
+ {
2891
+ "indexed": false,
2892
+ "internalType": "string",
2893
+ "name": "value",
2894
+ "type": "string"
2895
+ },
2896
+ {
2897
+ "indexed": true,
2898
+ "internalType": "uint256",
2899
+ "name": "id",
2900
+ "type": "uint256"
2901
+ }
2902
+ ],
2903
+ "name": "URI",
2904
+ "type": "event"
2905
+ },
2906
+ {
2907
+ "inputs": [
2908
+ {
2909
+ "internalType": "address",
2910
+ "name": "account",
2911
+ "type": "address"
2912
+ },
2913
+ {
2914
+ "internalType": "uint256",
2915
+ "name": "id",
2916
+ "type": "uint256"
2917
+ }
2918
+ ],
2919
+ "name": "balanceOf",
2920
+ "outputs": [
2921
+ {
2922
+ "internalType": "uint256",
2923
+ "name": "",
2924
+ "type": "uint256"
2925
+ }
2926
+ ],
2927
+ "stateMutability": "view",
2928
+ "type": "function"
2929
+ },
2930
+ {
2931
+ "inputs": [
2932
+ {
2933
+ "internalType": "address[]",
2934
+ "name": "accounts",
2935
+ "type": "address[]"
2936
+ },
2937
+ {
2938
+ "internalType": "uint256[]",
2939
+ "name": "ids",
2940
+ "type": "uint256[]"
2941
+ }
2942
+ ],
2943
+ "name": "balanceOfBatch",
2944
+ "outputs": [
2945
+ {
2946
+ "internalType": "uint256[]",
2947
+ "name": "",
2948
+ "type": "uint256[]"
2949
+ }
2950
+ ],
2951
+ "stateMutability": "view",
2952
+ "type": "function"
2953
+ },
2954
+ {
2955
+ "inputs": [
2956
+ {
2957
+ "internalType": "address",
2958
+ "name": "account",
2959
+ "type": "address"
2960
+ },
2961
+ {
2962
+ "internalType": "address",
2963
+ "name": "operator",
2964
+ "type": "address"
2965
+ }
2966
+ ],
2967
+ "name": "isApprovedForAll",
2968
+ "outputs": [
2969
+ {
2970
+ "internalType": "bool",
2971
+ "name": "",
2972
+ "type": "bool"
2973
+ }
2974
+ ],
2975
+ "stateMutability": "view",
2976
+ "type": "function"
2977
+ },
2978
+ {
2979
+ "inputs": [
2980
+ {
2981
+ "internalType": "address",
2982
+ "name": "account",
2983
+ "type": "address"
2984
+ },
2985
+ {
2986
+ "internalType": "uint256",
2987
+ "name": "id",
2988
+ "type": "uint256"
2989
+ },
2990
+ {
2991
+ "internalType": "uint256",
2992
+ "name": "amount",
2993
+ "type": "uint256"
2994
+ },
2995
+ {
2996
+ "internalType": "bytes",
2997
+ "name": "data",
2998
+ "type": "bytes"
2999
+ }
3000
+ ],
3001
+ "name": "mint",
3002
+ "outputs": [],
3003
+ "stateMutability": "nonpayable",
3004
+ "type": "function"
3005
+ },
3006
+ {
3007
+ "inputs": [
3008
+ {
3009
+ "internalType": "address",
3010
+ "name": "to",
3011
+ "type": "address"
3012
+ },
3013
+ {
3014
+ "internalType": "uint256[]",
3015
+ "name": "ids",
3016
+ "type": "uint256[]"
3017
+ },
3018
+ {
3019
+ "internalType": "uint256[]",
3020
+ "name": "amounts",
3021
+ "type": "uint256[]"
3022
+ },
3023
+ {
3024
+ "internalType": "bytes",
3025
+ "name": "data",
3026
+ "type": "bytes"
3027
+ }
3028
+ ],
3029
+ "name": "mintBatch",
3030
+ "outputs": [],
3031
+ "stateMutability": "nonpayable",
3032
+ "type": "function"
3033
+ },
3034
+ {
3035
+ "inputs": [],
3036
+ "name": "owner",
3037
+ "outputs": [
3038
+ {
3039
+ "internalType": "address",
3040
+ "name": "",
3041
+ "type": "address"
3042
+ }
3043
+ ],
3044
+ "stateMutability": "view",
3045
+ "type": "function"
3046
+ },
3047
+ {
3048
+ "inputs": [],
3049
+ "name": "renounceOwnership",
3050
+ "outputs": [],
3051
+ "stateMutability": "nonpayable",
3052
+ "type": "function"
3053
+ },
3054
+ {
3055
+ "inputs": [
3056
+ {
3057
+ "internalType": "address",
3058
+ "name": "from",
3059
+ "type": "address"
3060
+ },
3061
+ {
3062
+ "internalType": "address",
3063
+ "name": "to",
3064
+ "type": "address"
3065
+ },
3066
+ {
3067
+ "internalType": "uint256[]",
3068
+ "name": "ids",
3069
+ "type": "uint256[]"
3070
+ },
3071
+ {
3072
+ "internalType": "uint256[]",
3073
+ "name": "values",
3074
+ "type": "uint256[]"
3075
+ },
3076
+ {
3077
+ "internalType": "bytes",
3078
+ "name": "data",
3079
+ "type": "bytes"
3080
+ }
3081
+ ],
3082
+ "name": "safeBatchTransferFrom",
3083
+ "outputs": [],
3084
+ "stateMutability": "nonpayable",
3085
+ "type": "function"
3086
+ },
3087
+ {
3088
+ "inputs": [
3089
+ {
3090
+ "internalType": "address",
3091
+ "name": "from",
3092
+ "type": "address"
3093
+ },
3094
+ {
3095
+ "internalType": "address",
3096
+ "name": "to",
3097
+ "type": "address"
3098
+ },
3099
+ {
3100
+ "internalType": "uint256",
3101
+ "name": "id",
3102
+ "type": "uint256"
3103
+ },
3104
+ {
3105
+ "internalType": "uint256",
3106
+ "name": "value",
3107
+ "type": "uint256"
3108
+ },
3109
+ {
3110
+ "internalType": "bytes",
3111
+ "name": "data",
3112
+ "type": "bytes"
3113
+ }
3114
+ ],
3115
+ "name": "safeTransferFrom",
3116
+ "outputs": [],
3117
+ "stateMutability": "nonpayable",
3118
+ "type": "function"
3119
+ },
3120
+ {
3121
+ "inputs": [
3122
+ {
3123
+ "internalType": "address",
3124
+ "name": "operator",
3125
+ "type": "address"
3126
+ },
3127
+ {
3128
+ "internalType": "bool",
3129
+ "name": "approved",
3130
+ "type": "bool"
3131
+ }
3132
+ ],
3133
+ "name": "setApprovalForAll",
3134
+ "outputs": [],
3135
+ "stateMutability": "nonpayable",
3136
+ "type": "function"
3137
+ },
3138
+ {
3139
+ "inputs": [
3140
+ {
3141
+ "internalType": "string",
3142
+ "name": "newuri",
3143
+ "type": "string"
3144
+ }
3145
+ ],
3146
+ "name": "setURI",
3147
+ "outputs": [],
3148
+ "stateMutability": "nonpayable",
3149
+ "type": "function"
3150
+ },
3151
+ {
3152
+ "inputs": [
3153
+ {
3154
+ "internalType": "bytes4",
3155
+ "name": "interfaceId",
3156
+ "type": "bytes4"
3157
+ }
3158
+ ],
3159
+ "name": "supportsInterface",
3160
+ "outputs": [
3161
+ {
3162
+ "internalType": "bool",
3163
+ "name": "",
3164
+ "type": "bool"
3165
+ }
3166
+ ],
3167
+ "stateMutability": "view",
3168
+ "type": "function"
3169
+ },
3170
+ {
3171
+ "inputs": [
3172
+ {
3173
+ "internalType": "address",
3174
+ "name": "newOwner",
3175
+ "type": "address"
3176
+ }
3177
+ ],
3178
+ "name": "transferOwnership",
3179
+ "outputs": [],
3180
+ "stateMutability": "nonpayable",
3181
+ "type": "function"
3182
+ },
3183
+ {
3184
+ "inputs": [
3185
+ {
3186
+ "internalType": "uint256",
3187
+ "name": "",
3188
+ "type": "uint256"
3189
+ }
3190
+ ],
3191
+ "name": "uri",
3192
+ "outputs": [
3193
+ {
3194
+ "internalType": "string",
3195
+ "name": "",
3196
+ "type": "string"
3197
+ }
3198
+ ],
3199
+ "stateMutability": "view",
3200
+ "type": "function"
3201
+ }
3202
+ ]
3203
+ }
3204
+ }
3205
+ }