@towns-protocol/generated 0.0.268 → 0.0.277
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/config/deployments.json +1 -0
- package/deployments/omega/base/addresses/appRegistry.json +3 -0
- package/dev/abis/Channels.abi.json +13 -280
- package/dev/abis/Channels.abi.ts +13 -280
- package/dev/abis/DropFacet.abi.json +25 -0
- package/dev/abis/DropFacet.abi.ts +25 -0
- package/dev/abis/EntitlementsManager.abi.json +0 -283
- package/dev/abis/EntitlementsManager.abi.ts +0 -283
- package/dev/abis/ICreateSpace.abi.json +29 -0
- package/dev/abis/ICreateSpace.abi.ts +29 -0
- package/dev/abis/ICreateSpaceBase.abi.json +7 -0
- package/dev/abis/ICreateSpaceBase.abi.ts +7 -0
- package/dev/abis/ISwapFacet.abi.json +10 -0
- package/dev/abis/ISwapFacet.abi.ts +10 -0
- package/dev/abis/ISwapFacetBase.abi.json +5 -0
- package/dev/abis/ISwapFacetBase.abi.ts +5 -0
- package/dev/abis/ISwapRouter.abi.json +5 -0
- package/dev/abis/ISwapRouter.abi.ts +5 -0
- package/dev/abis/ISwapRouterBase.abi.json +5 -0
- package/dev/abis/ISwapRouterBase.abi.ts +5 -0
- package/dev/abis/MembershipFacet.abi.json +0 -117
- package/dev/abis/MembershipFacet.abi.ts +0 -117
- package/dev/abis/PrepayFacet.abi.json +0 -288
- package/dev/abis/PrepayFacet.abi.ts +0 -288
- package/dev/abis/Roles.abi.json +13 -280
- package/dev/abis/Roles.abi.ts +13 -280
- package/dev/typings/Channels.ts +0 -169
- package/dev/typings/DropFacet.ts +25 -0
- package/dev/typings/EntitlementsManager.ts +0 -170
- package/dev/typings/ICreateSpace.ts +48 -8
- package/dev/typings/MembershipFacet.ts +0 -65
- package/dev/typings/PrepayFacet.ts +0 -169
- package/dev/typings/Roles.ts +0 -169
- package/dev/typings/factories/Channels__factory.ts +14 -281
- package/dev/typings/factories/DropFacet__factory.ts +26 -1
- package/dev/typings/factories/EntitlementsManager__factory.ts +1 -284
- package/dev/typings/factories/ICreateSpace__factory.ts +29 -0
- package/dev/typings/factories/ISwapFacet__factory.ts +10 -0
- package/dev/typings/factories/ISwapRouter__factory.ts +5 -0
- package/dev/typings/factories/MembershipFacet__factory.ts +1 -118
- package/dev/typings/factories/MockERC721A__factory.ts +1 -1
- package/dev/typings/factories/PrepayFacet__factory.ts +0 -288
- package/dev/typings/factories/Roles__factory.ts +14 -281
- package/dev/typings/factories/SpaceOwner__factory.ts +1 -1
- package/dev/typings/factories/WalletLink__factory.ts +1 -1
- package/package.json +2 -2
package/config/deployments.json
CHANGED
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
"base": {
|
|
76
76
|
"chainId": 8453,
|
|
77
77
|
"addresses": {
|
|
78
|
+
"appRegistry": "0xB3173F2a02855F07A0C4BfB26D3D87c323fe42BE",
|
|
78
79
|
"baseRegistry": "0x7c0422b31401C936172C897802CF0373B35B7698",
|
|
79
80
|
"riverAirdrop": "0xe55fEE191604cdBeb874F87A28Ca89aED401C303",
|
|
80
81
|
"space": "0x34f35E1ECA9C00791bF8121A01c20977d8bEB11C",
|
|
@@ -224,75 +224,6 @@
|
|
|
224
224
|
"outputs": [],
|
|
225
225
|
"stateMutability": "nonpayable"
|
|
226
226
|
},
|
|
227
|
-
{
|
|
228
|
-
"type": "event",
|
|
229
|
-
"name": "Approval",
|
|
230
|
-
"inputs": [
|
|
231
|
-
{
|
|
232
|
-
"name": "owner",
|
|
233
|
-
"type": "address",
|
|
234
|
-
"indexed": true,
|
|
235
|
-
"internalType": "address"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"name": "approved",
|
|
239
|
-
"type": "address",
|
|
240
|
-
"indexed": true,
|
|
241
|
-
"internalType": "address"
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"name": "tokenId",
|
|
245
|
-
"type": "uint256",
|
|
246
|
-
"indexed": true,
|
|
247
|
-
"internalType": "uint256"
|
|
248
|
-
}
|
|
249
|
-
],
|
|
250
|
-
"anonymous": false
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"type": "event",
|
|
254
|
-
"name": "ApprovalForAll",
|
|
255
|
-
"inputs": [
|
|
256
|
-
{
|
|
257
|
-
"name": "owner",
|
|
258
|
-
"type": "address",
|
|
259
|
-
"indexed": true,
|
|
260
|
-
"internalType": "address"
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"name": "operator",
|
|
264
|
-
"type": "address",
|
|
265
|
-
"indexed": true,
|
|
266
|
-
"internalType": "address"
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
"name": "approved",
|
|
270
|
-
"type": "bool",
|
|
271
|
-
"indexed": false,
|
|
272
|
-
"internalType": "bool"
|
|
273
|
-
}
|
|
274
|
-
],
|
|
275
|
-
"anonymous": false
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"type": "event",
|
|
279
|
-
"name": "Banned",
|
|
280
|
-
"inputs": [
|
|
281
|
-
{
|
|
282
|
-
"name": "moderator",
|
|
283
|
-
"type": "address",
|
|
284
|
-
"indexed": true,
|
|
285
|
-
"internalType": "address"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"name": "tokenId",
|
|
289
|
-
"type": "uint256",
|
|
290
|
-
"indexed": true,
|
|
291
|
-
"internalType": "uint256"
|
|
292
|
-
}
|
|
293
|
-
],
|
|
294
|
-
"anonymous": false
|
|
295
|
-
},
|
|
296
227
|
{
|
|
297
228
|
"type": "event",
|
|
298
229
|
"name": "ChannelCreated",
|
|
@@ -400,37 +331,6 @@
|
|
|
400
331
|
],
|
|
401
332
|
"anonymous": false
|
|
402
333
|
},
|
|
403
|
-
{
|
|
404
|
-
"type": "event",
|
|
405
|
-
"name": "ConsecutiveTransfer",
|
|
406
|
-
"inputs": [
|
|
407
|
-
{
|
|
408
|
-
"name": "fromTokenId",
|
|
409
|
-
"type": "uint256",
|
|
410
|
-
"indexed": true,
|
|
411
|
-
"internalType": "uint256"
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"name": "toTokenId",
|
|
415
|
-
"type": "uint256",
|
|
416
|
-
"indexed": false,
|
|
417
|
-
"internalType": "uint256"
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"name": "from",
|
|
421
|
-
"type": "address",
|
|
422
|
-
"indexed": true,
|
|
423
|
-
"internalType": "address"
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"name": "to",
|
|
427
|
-
"type": "address",
|
|
428
|
-
"indexed": true,
|
|
429
|
-
"internalType": "address"
|
|
430
|
-
}
|
|
431
|
-
],
|
|
432
|
-
"anonymous": false
|
|
433
|
-
},
|
|
434
334
|
{
|
|
435
335
|
"type": "event",
|
|
436
336
|
"name": "Initialized",
|
|
@@ -489,19 +389,6 @@
|
|
|
489
389
|
],
|
|
490
390
|
"anonymous": false
|
|
491
391
|
},
|
|
492
|
-
{
|
|
493
|
-
"type": "event",
|
|
494
|
-
"name": "Paused",
|
|
495
|
-
"inputs": [
|
|
496
|
-
{
|
|
497
|
-
"name": "account",
|
|
498
|
-
"type": "address",
|
|
499
|
-
"indexed": false,
|
|
500
|
-
"internalType": "address"
|
|
501
|
-
}
|
|
502
|
-
],
|
|
503
|
-
"anonymous": false
|
|
504
|
-
},
|
|
505
392
|
{
|
|
506
393
|
"type": "event",
|
|
507
394
|
"name": "PermissionsAddedToChannelRole",
|
|
@@ -634,121 +521,6 @@
|
|
|
634
521
|
],
|
|
635
522
|
"anonymous": false
|
|
636
523
|
},
|
|
637
|
-
{
|
|
638
|
-
"type": "event",
|
|
639
|
-
"name": "Transfer",
|
|
640
|
-
"inputs": [
|
|
641
|
-
{
|
|
642
|
-
"name": "from",
|
|
643
|
-
"type": "address",
|
|
644
|
-
"indexed": true,
|
|
645
|
-
"internalType": "address"
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"name": "to",
|
|
649
|
-
"type": "address",
|
|
650
|
-
"indexed": true,
|
|
651
|
-
"internalType": "address"
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
"name": "tokenId",
|
|
655
|
-
"type": "uint256",
|
|
656
|
-
"indexed": true,
|
|
657
|
-
"internalType": "uint256"
|
|
658
|
-
}
|
|
659
|
-
],
|
|
660
|
-
"anonymous": false
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"type": "event",
|
|
664
|
-
"name": "Unbanned",
|
|
665
|
-
"inputs": [
|
|
666
|
-
{
|
|
667
|
-
"name": "moderator",
|
|
668
|
-
"type": "address",
|
|
669
|
-
"indexed": true,
|
|
670
|
-
"internalType": "address"
|
|
671
|
-
},
|
|
672
|
-
{
|
|
673
|
-
"name": "tokenId",
|
|
674
|
-
"type": "uint256",
|
|
675
|
-
"indexed": true,
|
|
676
|
-
"internalType": "uint256"
|
|
677
|
-
}
|
|
678
|
-
],
|
|
679
|
-
"anonymous": false
|
|
680
|
-
},
|
|
681
|
-
{
|
|
682
|
-
"type": "event",
|
|
683
|
-
"name": "Unpaused",
|
|
684
|
-
"inputs": [
|
|
685
|
-
{
|
|
686
|
-
"name": "account",
|
|
687
|
-
"type": "address",
|
|
688
|
-
"indexed": false,
|
|
689
|
-
"internalType": "address"
|
|
690
|
-
}
|
|
691
|
-
],
|
|
692
|
-
"anonymous": false
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
"type": "error",
|
|
696
|
-
"name": "ApprovalCallerNotOwnerNorApproved",
|
|
697
|
-
"inputs": []
|
|
698
|
-
},
|
|
699
|
-
{
|
|
700
|
-
"type": "error",
|
|
701
|
-
"name": "ApprovalQueryForNonexistentToken",
|
|
702
|
-
"inputs": []
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"type": "error",
|
|
706
|
-
"name": "BalanceQueryForZeroAddress",
|
|
707
|
-
"inputs": []
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
"type": "error",
|
|
711
|
-
"name": "Banning__AlreadyBanned",
|
|
712
|
-
"inputs": [
|
|
713
|
-
{
|
|
714
|
-
"name": "tokenId",
|
|
715
|
-
"type": "uint256",
|
|
716
|
-
"internalType": "uint256"
|
|
717
|
-
}
|
|
718
|
-
]
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"type": "error",
|
|
722
|
-
"name": "Banning__CannotBanOwner",
|
|
723
|
-
"inputs": []
|
|
724
|
-
},
|
|
725
|
-
{
|
|
726
|
-
"type": "error",
|
|
727
|
-
"name": "Banning__CannotBanSelf",
|
|
728
|
-
"inputs": []
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"type": "error",
|
|
732
|
-
"name": "Banning__InvalidTokenId",
|
|
733
|
-
"inputs": [
|
|
734
|
-
{
|
|
735
|
-
"name": "tokenId",
|
|
736
|
-
"type": "uint256",
|
|
737
|
-
"internalType": "uint256"
|
|
738
|
-
}
|
|
739
|
-
]
|
|
740
|
-
},
|
|
741
|
-
{
|
|
742
|
-
"type": "error",
|
|
743
|
-
"name": "Banning__NotBanned",
|
|
744
|
-
"inputs": [
|
|
745
|
-
{
|
|
746
|
-
"name": "tokenId",
|
|
747
|
-
"type": "uint256",
|
|
748
|
-
"internalType": "uint256"
|
|
749
|
-
}
|
|
750
|
-
]
|
|
751
|
-
},
|
|
752
524
|
{
|
|
753
525
|
"type": "error",
|
|
754
526
|
"name": "ChannelService__ChannelAlreadyExists",
|
|
@@ -809,21 +581,6 @@
|
|
|
809
581
|
"name": "Introspection_NotSupported",
|
|
810
582
|
"inputs": []
|
|
811
583
|
},
|
|
812
|
-
{
|
|
813
|
-
"type": "error",
|
|
814
|
-
"name": "MintERC2309QuantityExceedsLimit",
|
|
815
|
-
"inputs": []
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
"type": "error",
|
|
819
|
-
"name": "MintToZeroAddress",
|
|
820
|
-
"inputs": []
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
"type": "error",
|
|
824
|
-
"name": "MintZeroQuantity",
|
|
825
|
-
"inputs": []
|
|
826
|
-
},
|
|
827
584
|
{
|
|
828
585
|
"type": "error",
|
|
829
586
|
"name": "Ownable__NotOwner",
|
|
@@ -845,21 +602,6 @@
|
|
|
845
602
|
"name": "OwnerQueryForNonexistentToken",
|
|
846
603
|
"inputs": []
|
|
847
604
|
},
|
|
848
|
-
{
|
|
849
|
-
"type": "error",
|
|
850
|
-
"name": "OwnershipNotInitializedForExtraData",
|
|
851
|
-
"inputs": []
|
|
852
|
-
},
|
|
853
|
-
{
|
|
854
|
-
"type": "error",
|
|
855
|
-
"name": "Pausable__NotPaused",
|
|
856
|
-
"inputs": []
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"type": "error",
|
|
860
|
-
"name": "Pausable__Paused",
|
|
861
|
-
"inputs": []
|
|
862
|
-
},
|
|
863
605
|
{
|
|
864
606
|
"type": "error",
|
|
865
607
|
"name": "Roles__EntitlementAlreadyExists",
|
|
@@ -902,27 +644,18 @@
|
|
|
902
644
|
},
|
|
903
645
|
{
|
|
904
646
|
"type": "error",
|
|
905
|
-
"name": "
|
|
906
|
-
"inputs": [
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
{
|
|
919
|
-
"type": "error",
|
|
920
|
-
"name": "TransferToZeroAddress",
|
|
921
|
-
"inputs": []
|
|
922
|
-
},
|
|
923
|
-
{
|
|
924
|
-
"type": "error",
|
|
925
|
-
"name": "URIQueryForNonexistentToken",
|
|
926
|
-
"inputs": []
|
|
647
|
+
"name": "SafeCastOverflowedUintDowncast",
|
|
648
|
+
"inputs": [
|
|
649
|
+
{
|
|
650
|
+
"name": "bits",
|
|
651
|
+
"type": "uint8",
|
|
652
|
+
"internalType": "uint8"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "value",
|
|
656
|
+
"type": "uint256",
|
|
657
|
+
"internalType": "uint256"
|
|
658
|
+
}
|
|
659
|
+
]
|
|
927
660
|
}
|
|
928
661
|
]
|
package/dev/abis/Channels.abi.ts
CHANGED
|
@@ -224,75 +224,6 @@ export default [
|
|
|
224
224
|
"outputs": [],
|
|
225
225
|
"stateMutability": "nonpayable"
|
|
226
226
|
},
|
|
227
|
-
{
|
|
228
|
-
"type": "event",
|
|
229
|
-
"name": "Approval",
|
|
230
|
-
"inputs": [
|
|
231
|
-
{
|
|
232
|
-
"name": "owner",
|
|
233
|
-
"type": "address",
|
|
234
|
-
"indexed": true,
|
|
235
|
-
"internalType": "address"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"name": "approved",
|
|
239
|
-
"type": "address",
|
|
240
|
-
"indexed": true,
|
|
241
|
-
"internalType": "address"
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"name": "tokenId",
|
|
245
|
-
"type": "uint256",
|
|
246
|
-
"indexed": true,
|
|
247
|
-
"internalType": "uint256"
|
|
248
|
-
}
|
|
249
|
-
],
|
|
250
|
-
"anonymous": false
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"type": "event",
|
|
254
|
-
"name": "ApprovalForAll",
|
|
255
|
-
"inputs": [
|
|
256
|
-
{
|
|
257
|
-
"name": "owner",
|
|
258
|
-
"type": "address",
|
|
259
|
-
"indexed": true,
|
|
260
|
-
"internalType": "address"
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"name": "operator",
|
|
264
|
-
"type": "address",
|
|
265
|
-
"indexed": true,
|
|
266
|
-
"internalType": "address"
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
"name": "approved",
|
|
270
|
-
"type": "bool",
|
|
271
|
-
"indexed": false,
|
|
272
|
-
"internalType": "bool"
|
|
273
|
-
}
|
|
274
|
-
],
|
|
275
|
-
"anonymous": false
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"type": "event",
|
|
279
|
-
"name": "Banned",
|
|
280
|
-
"inputs": [
|
|
281
|
-
{
|
|
282
|
-
"name": "moderator",
|
|
283
|
-
"type": "address",
|
|
284
|
-
"indexed": true,
|
|
285
|
-
"internalType": "address"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"name": "tokenId",
|
|
289
|
-
"type": "uint256",
|
|
290
|
-
"indexed": true,
|
|
291
|
-
"internalType": "uint256"
|
|
292
|
-
}
|
|
293
|
-
],
|
|
294
|
-
"anonymous": false
|
|
295
|
-
},
|
|
296
227
|
{
|
|
297
228
|
"type": "event",
|
|
298
229
|
"name": "ChannelCreated",
|
|
@@ -400,37 +331,6 @@ export default [
|
|
|
400
331
|
],
|
|
401
332
|
"anonymous": false
|
|
402
333
|
},
|
|
403
|
-
{
|
|
404
|
-
"type": "event",
|
|
405
|
-
"name": "ConsecutiveTransfer",
|
|
406
|
-
"inputs": [
|
|
407
|
-
{
|
|
408
|
-
"name": "fromTokenId",
|
|
409
|
-
"type": "uint256",
|
|
410
|
-
"indexed": true,
|
|
411
|
-
"internalType": "uint256"
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"name": "toTokenId",
|
|
415
|
-
"type": "uint256",
|
|
416
|
-
"indexed": false,
|
|
417
|
-
"internalType": "uint256"
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"name": "from",
|
|
421
|
-
"type": "address",
|
|
422
|
-
"indexed": true,
|
|
423
|
-
"internalType": "address"
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"name": "to",
|
|
427
|
-
"type": "address",
|
|
428
|
-
"indexed": true,
|
|
429
|
-
"internalType": "address"
|
|
430
|
-
}
|
|
431
|
-
],
|
|
432
|
-
"anonymous": false
|
|
433
|
-
},
|
|
434
334
|
{
|
|
435
335
|
"type": "event",
|
|
436
336
|
"name": "Initialized",
|
|
@@ -489,19 +389,6 @@ export default [
|
|
|
489
389
|
],
|
|
490
390
|
"anonymous": false
|
|
491
391
|
},
|
|
492
|
-
{
|
|
493
|
-
"type": "event",
|
|
494
|
-
"name": "Paused",
|
|
495
|
-
"inputs": [
|
|
496
|
-
{
|
|
497
|
-
"name": "account",
|
|
498
|
-
"type": "address",
|
|
499
|
-
"indexed": false,
|
|
500
|
-
"internalType": "address"
|
|
501
|
-
}
|
|
502
|
-
],
|
|
503
|
-
"anonymous": false
|
|
504
|
-
},
|
|
505
392
|
{
|
|
506
393
|
"type": "event",
|
|
507
394
|
"name": "PermissionsAddedToChannelRole",
|
|
@@ -634,121 +521,6 @@ export default [
|
|
|
634
521
|
],
|
|
635
522
|
"anonymous": false
|
|
636
523
|
},
|
|
637
|
-
{
|
|
638
|
-
"type": "event",
|
|
639
|
-
"name": "Transfer",
|
|
640
|
-
"inputs": [
|
|
641
|
-
{
|
|
642
|
-
"name": "from",
|
|
643
|
-
"type": "address",
|
|
644
|
-
"indexed": true,
|
|
645
|
-
"internalType": "address"
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"name": "to",
|
|
649
|
-
"type": "address",
|
|
650
|
-
"indexed": true,
|
|
651
|
-
"internalType": "address"
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
"name": "tokenId",
|
|
655
|
-
"type": "uint256",
|
|
656
|
-
"indexed": true,
|
|
657
|
-
"internalType": "uint256"
|
|
658
|
-
}
|
|
659
|
-
],
|
|
660
|
-
"anonymous": false
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"type": "event",
|
|
664
|
-
"name": "Unbanned",
|
|
665
|
-
"inputs": [
|
|
666
|
-
{
|
|
667
|
-
"name": "moderator",
|
|
668
|
-
"type": "address",
|
|
669
|
-
"indexed": true,
|
|
670
|
-
"internalType": "address"
|
|
671
|
-
},
|
|
672
|
-
{
|
|
673
|
-
"name": "tokenId",
|
|
674
|
-
"type": "uint256",
|
|
675
|
-
"indexed": true,
|
|
676
|
-
"internalType": "uint256"
|
|
677
|
-
}
|
|
678
|
-
],
|
|
679
|
-
"anonymous": false
|
|
680
|
-
},
|
|
681
|
-
{
|
|
682
|
-
"type": "event",
|
|
683
|
-
"name": "Unpaused",
|
|
684
|
-
"inputs": [
|
|
685
|
-
{
|
|
686
|
-
"name": "account",
|
|
687
|
-
"type": "address",
|
|
688
|
-
"indexed": false,
|
|
689
|
-
"internalType": "address"
|
|
690
|
-
}
|
|
691
|
-
],
|
|
692
|
-
"anonymous": false
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
"type": "error",
|
|
696
|
-
"name": "ApprovalCallerNotOwnerNorApproved",
|
|
697
|
-
"inputs": []
|
|
698
|
-
},
|
|
699
|
-
{
|
|
700
|
-
"type": "error",
|
|
701
|
-
"name": "ApprovalQueryForNonexistentToken",
|
|
702
|
-
"inputs": []
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"type": "error",
|
|
706
|
-
"name": "BalanceQueryForZeroAddress",
|
|
707
|
-
"inputs": []
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
"type": "error",
|
|
711
|
-
"name": "Banning__AlreadyBanned",
|
|
712
|
-
"inputs": [
|
|
713
|
-
{
|
|
714
|
-
"name": "tokenId",
|
|
715
|
-
"type": "uint256",
|
|
716
|
-
"internalType": "uint256"
|
|
717
|
-
}
|
|
718
|
-
]
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"type": "error",
|
|
722
|
-
"name": "Banning__CannotBanOwner",
|
|
723
|
-
"inputs": []
|
|
724
|
-
},
|
|
725
|
-
{
|
|
726
|
-
"type": "error",
|
|
727
|
-
"name": "Banning__CannotBanSelf",
|
|
728
|
-
"inputs": []
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"type": "error",
|
|
732
|
-
"name": "Banning__InvalidTokenId",
|
|
733
|
-
"inputs": [
|
|
734
|
-
{
|
|
735
|
-
"name": "tokenId",
|
|
736
|
-
"type": "uint256",
|
|
737
|
-
"internalType": "uint256"
|
|
738
|
-
}
|
|
739
|
-
]
|
|
740
|
-
},
|
|
741
|
-
{
|
|
742
|
-
"type": "error",
|
|
743
|
-
"name": "Banning__NotBanned",
|
|
744
|
-
"inputs": [
|
|
745
|
-
{
|
|
746
|
-
"name": "tokenId",
|
|
747
|
-
"type": "uint256",
|
|
748
|
-
"internalType": "uint256"
|
|
749
|
-
}
|
|
750
|
-
]
|
|
751
|
-
},
|
|
752
524
|
{
|
|
753
525
|
"type": "error",
|
|
754
526
|
"name": "ChannelService__ChannelAlreadyExists",
|
|
@@ -809,21 +581,6 @@ export default [
|
|
|
809
581
|
"name": "Introspection_NotSupported",
|
|
810
582
|
"inputs": []
|
|
811
583
|
},
|
|
812
|
-
{
|
|
813
|
-
"type": "error",
|
|
814
|
-
"name": "MintERC2309QuantityExceedsLimit",
|
|
815
|
-
"inputs": []
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
"type": "error",
|
|
819
|
-
"name": "MintToZeroAddress",
|
|
820
|
-
"inputs": []
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
"type": "error",
|
|
824
|
-
"name": "MintZeroQuantity",
|
|
825
|
-
"inputs": []
|
|
826
|
-
},
|
|
827
584
|
{
|
|
828
585
|
"type": "error",
|
|
829
586
|
"name": "Ownable__NotOwner",
|
|
@@ -845,21 +602,6 @@ export default [
|
|
|
845
602
|
"name": "OwnerQueryForNonexistentToken",
|
|
846
603
|
"inputs": []
|
|
847
604
|
},
|
|
848
|
-
{
|
|
849
|
-
"type": "error",
|
|
850
|
-
"name": "OwnershipNotInitializedForExtraData",
|
|
851
|
-
"inputs": []
|
|
852
|
-
},
|
|
853
|
-
{
|
|
854
|
-
"type": "error",
|
|
855
|
-
"name": "Pausable__NotPaused",
|
|
856
|
-
"inputs": []
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"type": "error",
|
|
860
|
-
"name": "Pausable__Paused",
|
|
861
|
-
"inputs": []
|
|
862
|
-
},
|
|
863
605
|
{
|
|
864
606
|
"type": "error",
|
|
865
607
|
"name": "Roles__EntitlementAlreadyExists",
|
|
@@ -902,27 +644,18 @@ export default [
|
|
|
902
644
|
},
|
|
903
645
|
{
|
|
904
646
|
"type": "error",
|
|
905
|
-
"name": "
|
|
906
|
-
"inputs": [
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
{
|
|
919
|
-
"type": "error",
|
|
920
|
-
"name": "TransferToZeroAddress",
|
|
921
|
-
"inputs": []
|
|
922
|
-
},
|
|
923
|
-
{
|
|
924
|
-
"type": "error",
|
|
925
|
-
"name": "URIQueryForNonexistentToken",
|
|
926
|
-
"inputs": []
|
|
647
|
+
"name": "SafeCastOverflowedUintDowncast",
|
|
648
|
+
"inputs": [
|
|
649
|
+
{
|
|
650
|
+
"name": "bits",
|
|
651
|
+
"type": "uint8",
|
|
652
|
+
"internalType": "uint8"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "value",
|
|
656
|
+
"type": "uint256",
|
|
657
|
+
"internalType": "uint256"
|
|
658
|
+
}
|
|
659
|
+
]
|
|
927
660
|
}
|
|
928
661
|
] as const
|