@towns-protocol/generated 0.0.267 → 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/dev/abis/Roles.abi.json
CHANGED
|
@@ -359,106 +359,6 @@
|
|
|
359
359
|
"outputs": [],
|
|
360
360
|
"stateMutability": "nonpayable"
|
|
361
361
|
},
|
|
362
|
-
{
|
|
363
|
-
"type": "event",
|
|
364
|
-
"name": "Approval",
|
|
365
|
-
"inputs": [
|
|
366
|
-
{
|
|
367
|
-
"name": "owner",
|
|
368
|
-
"type": "address",
|
|
369
|
-
"indexed": true,
|
|
370
|
-
"internalType": "address"
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"name": "approved",
|
|
374
|
-
"type": "address",
|
|
375
|
-
"indexed": true,
|
|
376
|
-
"internalType": "address"
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
"name": "tokenId",
|
|
380
|
-
"type": "uint256",
|
|
381
|
-
"indexed": true,
|
|
382
|
-
"internalType": "uint256"
|
|
383
|
-
}
|
|
384
|
-
],
|
|
385
|
-
"anonymous": false
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"type": "event",
|
|
389
|
-
"name": "ApprovalForAll",
|
|
390
|
-
"inputs": [
|
|
391
|
-
{
|
|
392
|
-
"name": "owner",
|
|
393
|
-
"type": "address",
|
|
394
|
-
"indexed": true,
|
|
395
|
-
"internalType": "address"
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"name": "operator",
|
|
399
|
-
"type": "address",
|
|
400
|
-
"indexed": true,
|
|
401
|
-
"internalType": "address"
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"name": "approved",
|
|
405
|
-
"type": "bool",
|
|
406
|
-
"indexed": false,
|
|
407
|
-
"internalType": "bool"
|
|
408
|
-
}
|
|
409
|
-
],
|
|
410
|
-
"anonymous": false
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
"type": "event",
|
|
414
|
-
"name": "Banned",
|
|
415
|
-
"inputs": [
|
|
416
|
-
{
|
|
417
|
-
"name": "moderator",
|
|
418
|
-
"type": "address",
|
|
419
|
-
"indexed": true,
|
|
420
|
-
"internalType": "address"
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
"name": "tokenId",
|
|
424
|
-
"type": "uint256",
|
|
425
|
-
"indexed": true,
|
|
426
|
-
"internalType": "uint256"
|
|
427
|
-
}
|
|
428
|
-
],
|
|
429
|
-
"anonymous": false
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"type": "event",
|
|
433
|
-
"name": "ConsecutiveTransfer",
|
|
434
|
-
"inputs": [
|
|
435
|
-
{
|
|
436
|
-
"name": "fromTokenId",
|
|
437
|
-
"type": "uint256",
|
|
438
|
-
"indexed": true,
|
|
439
|
-
"internalType": "uint256"
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"name": "toTokenId",
|
|
443
|
-
"type": "uint256",
|
|
444
|
-
"indexed": false,
|
|
445
|
-
"internalType": "uint256"
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
"name": "from",
|
|
449
|
-
"type": "address",
|
|
450
|
-
"indexed": true,
|
|
451
|
-
"internalType": "address"
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"name": "to",
|
|
455
|
-
"type": "address",
|
|
456
|
-
"indexed": true,
|
|
457
|
-
"internalType": "address"
|
|
458
|
-
}
|
|
459
|
-
],
|
|
460
|
-
"anonymous": false
|
|
461
|
-
},
|
|
462
362
|
{
|
|
463
363
|
"type": "event",
|
|
464
364
|
"name": "OwnershipTransferred",
|
|
@@ -478,19 +378,6 @@
|
|
|
478
378
|
],
|
|
479
379
|
"anonymous": false
|
|
480
380
|
},
|
|
481
|
-
{
|
|
482
|
-
"type": "event",
|
|
483
|
-
"name": "Paused",
|
|
484
|
-
"inputs": [
|
|
485
|
-
{
|
|
486
|
-
"name": "account",
|
|
487
|
-
"type": "address",
|
|
488
|
-
"indexed": false,
|
|
489
|
-
"internalType": "address"
|
|
490
|
-
}
|
|
491
|
-
],
|
|
492
|
-
"anonymous": false
|
|
493
|
-
},
|
|
494
381
|
{
|
|
495
382
|
"type": "event",
|
|
496
383
|
"name": "PermissionsAddedToChannelRole",
|
|
@@ -623,121 +510,6 @@
|
|
|
623
510
|
],
|
|
624
511
|
"anonymous": false
|
|
625
512
|
},
|
|
626
|
-
{
|
|
627
|
-
"type": "event",
|
|
628
|
-
"name": "Transfer",
|
|
629
|
-
"inputs": [
|
|
630
|
-
{
|
|
631
|
-
"name": "from",
|
|
632
|
-
"type": "address",
|
|
633
|
-
"indexed": true,
|
|
634
|
-
"internalType": "address"
|
|
635
|
-
},
|
|
636
|
-
{
|
|
637
|
-
"name": "to",
|
|
638
|
-
"type": "address",
|
|
639
|
-
"indexed": true,
|
|
640
|
-
"internalType": "address"
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"name": "tokenId",
|
|
644
|
-
"type": "uint256",
|
|
645
|
-
"indexed": true,
|
|
646
|
-
"internalType": "uint256"
|
|
647
|
-
}
|
|
648
|
-
],
|
|
649
|
-
"anonymous": false
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"type": "event",
|
|
653
|
-
"name": "Unbanned",
|
|
654
|
-
"inputs": [
|
|
655
|
-
{
|
|
656
|
-
"name": "moderator",
|
|
657
|
-
"type": "address",
|
|
658
|
-
"indexed": true,
|
|
659
|
-
"internalType": "address"
|
|
660
|
-
},
|
|
661
|
-
{
|
|
662
|
-
"name": "tokenId",
|
|
663
|
-
"type": "uint256",
|
|
664
|
-
"indexed": true,
|
|
665
|
-
"internalType": "uint256"
|
|
666
|
-
}
|
|
667
|
-
],
|
|
668
|
-
"anonymous": false
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
"type": "event",
|
|
672
|
-
"name": "Unpaused",
|
|
673
|
-
"inputs": [
|
|
674
|
-
{
|
|
675
|
-
"name": "account",
|
|
676
|
-
"type": "address",
|
|
677
|
-
"indexed": false,
|
|
678
|
-
"internalType": "address"
|
|
679
|
-
}
|
|
680
|
-
],
|
|
681
|
-
"anonymous": false
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
"type": "error",
|
|
685
|
-
"name": "ApprovalCallerNotOwnerNorApproved",
|
|
686
|
-
"inputs": []
|
|
687
|
-
},
|
|
688
|
-
{
|
|
689
|
-
"type": "error",
|
|
690
|
-
"name": "ApprovalQueryForNonexistentToken",
|
|
691
|
-
"inputs": []
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"type": "error",
|
|
695
|
-
"name": "BalanceQueryForZeroAddress",
|
|
696
|
-
"inputs": []
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
"type": "error",
|
|
700
|
-
"name": "Banning__AlreadyBanned",
|
|
701
|
-
"inputs": [
|
|
702
|
-
{
|
|
703
|
-
"name": "tokenId",
|
|
704
|
-
"type": "uint256",
|
|
705
|
-
"internalType": "uint256"
|
|
706
|
-
}
|
|
707
|
-
]
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
"type": "error",
|
|
711
|
-
"name": "Banning__CannotBanOwner",
|
|
712
|
-
"inputs": []
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"type": "error",
|
|
716
|
-
"name": "Banning__CannotBanSelf",
|
|
717
|
-
"inputs": []
|
|
718
|
-
},
|
|
719
|
-
{
|
|
720
|
-
"type": "error",
|
|
721
|
-
"name": "Banning__InvalidTokenId",
|
|
722
|
-
"inputs": [
|
|
723
|
-
{
|
|
724
|
-
"name": "tokenId",
|
|
725
|
-
"type": "uint256",
|
|
726
|
-
"internalType": "uint256"
|
|
727
|
-
}
|
|
728
|
-
]
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"type": "error",
|
|
732
|
-
"name": "Banning__NotBanned",
|
|
733
|
-
"inputs": [
|
|
734
|
-
{
|
|
735
|
-
"name": "tokenId",
|
|
736
|
-
"type": "uint256",
|
|
737
|
-
"internalType": "uint256"
|
|
738
|
-
}
|
|
739
|
-
]
|
|
740
|
-
},
|
|
741
513
|
{
|
|
742
514
|
"type": "error",
|
|
743
515
|
"name": "Entitlement__InvalidValue",
|
|
@@ -773,21 +545,6 @@
|
|
|
773
545
|
"name": "EntitlementsService__InvalidEntitlementInterface",
|
|
774
546
|
"inputs": []
|
|
775
547
|
},
|
|
776
|
-
{
|
|
777
|
-
"type": "error",
|
|
778
|
-
"name": "MintERC2309QuantityExceedsLimit",
|
|
779
|
-
"inputs": []
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"type": "error",
|
|
783
|
-
"name": "MintToZeroAddress",
|
|
784
|
-
"inputs": []
|
|
785
|
-
},
|
|
786
|
-
{
|
|
787
|
-
"type": "error",
|
|
788
|
-
"name": "MintZeroQuantity",
|
|
789
|
-
"inputs": []
|
|
790
|
-
},
|
|
791
548
|
{
|
|
792
549
|
"type": "error",
|
|
793
550
|
"name": "Ownable__NotOwner",
|
|
@@ -809,21 +566,6 @@
|
|
|
809
566
|
"name": "OwnerQueryForNonexistentToken",
|
|
810
567
|
"inputs": []
|
|
811
568
|
},
|
|
812
|
-
{
|
|
813
|
-
"type": "error",
|
|
814
|
-
"name": "OwnershipNotInitializedForExtraData",
|
|
815
|
-
"inputs": []
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
"type": "error",
|
|
819
|
-
"name": "Pausable__NotPaused",
|
|
820
|
-
"inputs": []
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
"type": "error",
|
|
824
|
-
"name": "Pausable__Paused",
|
|
825
|
-
"inputs": []
|
|
826
|
-
},
|
|
827
569
|
{
|
|
828
570
|
"type": "error",
|
|
829
571
|
"name": "Roles__EntitlementAlreadyExists",
|
|
@@ -866,27 +608,18 @@
|
|
|
866
608
|
},
|
|
867
609
|
{
|
|
868
610
|
"type": "error",
|
|
869
|
-
"name": "
|
|
870
|
-
"inputs": [
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
{
|
|
883
|
-
"type": "error",
|
|
884
|
-
"name": "TransferToZeroAddress",
|
|
885
|
-
"inputs": []
|
|
886
|
-
},
|
|
887
|
-
{
|
|
888
|
-
"type": "error",
|
|
889
|
-
"name": "URIQueryForNonexistentToken",
|
|
890
|
-
"inputs": []
|
|
611
|
+
"name": "SafeCastOverflowedUintDowncast",
|
|
612
|
+
"inputs": [
|
|
613
|
+
{
|
|
614
|
+
"name": "bits",
|
|
615
|
+
"type": "uint8",
|
|
616
|
+
"internalType": "uint8"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"name": "value",
|
|
620
|
+
"type": "uint256",
|
|
621
|
+
"internalType": "uint256"
|
|
622
|
+
}
|
|
623
|
+
]
|
|
891
624
|
}
|
|
892
625
|
]
|
package/dev/abis/Roles.abi.ts
CHANGED
|
@@ -359,106 +359,6 @@ export default [
|
|
|
359
359
|
"outputs": [],
|
|
360
360
|
"stateMutability": "nonpayable"
|
|
361
361
|
},
|
|
362
|
-
{
|
|
363
|
-
"type": "event",
|
|
364
|
-
"name": "Approval",
|
|
365
|
-
"inputs": [
|
|
366
|
-
{
|
|
367
|
-
"name": "owner",
|
|
368
|
-
"type": "address",
|
|
369
|
-
"indexed": true,
|
|
370
|
-
"internalType": "address"
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"name": "approved",
|
|
374
|
-
"type": "address",
|
|
375
|
-
"indexed": true,
|
|
376
|
-
"internalType": "address"
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
"name": "tokenId",
|
|
380
|
-
"type": "uint256",
|
|
381
|
-
"indexed": true,
|
|
382
|
-
"internalType": "uint256"
|
|
383
|
-
}
|
|
384
|
-
],
|
|
385
|
-
"anonymous": false
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"type": "event",
|
|
389
|
-
"name": "ApprovalForAll",
|
|
390
|
-
"inputs": [
|
|
391
|
-
{
|
|
392
|
-
"name": "owner",
|
|
393
|
-
"type": "address",
|
|
394
|
-
"indexed": true,
|
|
395
|
-
"internalType": "address"
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"name": "operator",
|
|
399
|
-
"type": "address",
|
|
400
|
-
"indexed": true,
|
|
401
|
-
"internalType": "address"
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"name": "approved",
|
|
405
|
-
"type": "bool",
|
|
406
|
-
"indexed": false,
|
|
407
|
-
"internalType": "bool"
|
|
408
|
-
}
|
|
409
|
-
],
|
|
410
|
-
"anonymous": false
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
"type": "event",
|
|
414
|
-
"name": "Banned",
|
|
415
|
-
"inputs": [
|
|
416
|
-
{
|
|
417
|
-
"name": "moderator",
|
|
418
|
-
"type": "address",
|
|
419
|
-
"indexed": true,
|
|
420
|
-
"internalType": "address"
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
"name": "tokenId",
|
|
424
|
-
"type": "uint256",
|
|
425
|
-
"indexed": true,
|
|
426
|
-
"internalType": "uint256"
|
|
427
|
-
}
|
|
428
|
-
],
|
|
429
|
-
"anonymous": false
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"type": "event",
|
|
433
|
-
"name": "ConsecutiveTransfer",
|
|
434
|
-
"inputs": [
|
|
435
|
-
{
|
|
436
|
-
"name": "fromTokenId",
|
|
437
|
-
"type": "uint256",
|
|
438
|
-
"indexed": true,
|
|
439
|
-
"internalType": "uint256"
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"name": "toTokenId",
|
|
443
|
-
"type": "uint256",
|
|
444
|
-
"indexed": false,
|
|
445
|
-
"internalType": "uint256"
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
"name": "from",
|
|
449
|
-
"type": "address",
|
|
450
|
-
"indexed": true,
|
|
451
|
-
"internalType": "address"
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"name": "to",
|
|
455
|
-
"type": "address",
|
|
456
|
-
"indexed": true,
|
|
457
|
-
"internalType": "address"
|
|
458
|
-
}
|
|
459
|
-
],
|
|
460
|
-
"anonymous": false
|
|
461
|
-
},
|
|
462
362
|
{
|
|
463
363
|
"type": "event",
|
|
464
364
|
"name": "OwnershipTransferred",
|
|
@@ -478,19 +378,6 @@ export default [
|
|
|
478
378
|
],
|
|
479
379
|
"anonymous": false
|
|
480
380
|
},
|
|
481
|
-
{
|
|
482
|
-
"type": "event",
|
|
483
|
-
"name": "Paused",
|
|
484
|
-
"inputs": [
|
|
485
|
-
{
|
|
486
|
-
"name": "account",
|
|
487
|
-
"type": "address",
|
|
488
|
-
"indexed": false,
|
|
489
|
-
"internalType": "address"
|
|
490
|
-
}
|
|
491
|
-
],
|
|
492
|
-
"anonymous": false
|
|
493
|
-
},
|
|
494
381
|
{
|
|
495
382
|
"type": "event",
|
|
496
383
|
"name": "PermissionsAddedToChannelRole",
|
|
@@ -623,121 +510,6 @@ export default [
|
|
|
623
510
|
],
|
|
624
511
|
"anonymous": false
|
|
625
512
|
},
|
|
626
|
-
{
|
|
627
|
-
"type": "event",
|
|
628
|
-
"name": "Transfer",
|
|
629
|
-
"inputs": [
|
|
630
|
-
{
|
|
631
|
-
"name": "from",
|
|
632
|
-
"type": "address",
|
|
633
|
-
"indexed": true,
|
|
634
|
-
"internalType": "address"
|
|
635
|
-
},
|
|
636
|
-
{
|
|
637
|
-
"name": "to",
|
|
638
|
-
"type": "address",
|
|
639
|
-
"indexed": true,
|
|
640
|
-
"internalType": "address"
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"name": "tokenId",
|
|
644
|
-
"type": "uint256",
|
|
645
|
-
"indexed": true,
|
|
646
|
-
"internalType": "uint256"
|
|
647
|
-
}
|
|
648
|
-
],
|
|
649
|
-
"anonymous": false
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"type": "event",
|
|
653
|
-
"name": "Unbanned",
|
|
654
|
-
"inputs": [
|
|
655
|
-
{
|
|
656
|
-
"name": "moderator",
|
|
657
|
-
"type": "address",
|
|
658
|
-
"indexed": true,
|
|
659
|
-
"internalType": "address"
|
|
660
|
-
},
|
|
661
|
-
{
|
|
662
|
-
"name": "tokenId",
|
|
663
|
-
"type": "uint256",
|
|
664
|
-
"indexed": true,
|
|
665
|
-
"internalType": "uint256"
|
|
666
|
-
}
|
|
667
|
-
],
|
|
668
|
-
"anonymous": false
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
"type": "event",
|
|
672
|
-
"name": "Unpaused",
|
|
673
|
-
"inputs": [
|
|
674
|
-
{
|
|
675
|
-
"name": "account",
|
|
676
|
-
"type": "address",
|
|
677
|
-
"indexed": false,
|
|
678
|
-
"internalType": "address"
|
|
679
|
-
}
|
|
680
|
-
],
|
|
681
|
-
"anonymous": false
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
"type": "error",
|
|
685
|
-
"name": "ApprovalCallerNotOwnerNorApproved",
|
|
686
|
-
"inputs": []
|
|
687
|
-
},
|
|
688
|
-
{
|
|
689
|
-
"type": "error",
|
|
690
|
-
"name": "ApprovalQueryForNonexistentToken",
|
|
691
|
-
"inputs": []
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"type": "error",
|
|
695
|
-
"name": "BalanceQueryForZeroAddress",
|
|
696
|
-
"inputs": []
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
"type": "error",
|
|
700
|
-
"name": "Banning__AlreadyBanned",
|
|
701
|
-
"inputs": [
|
|
702
|
-
{
|
|
703
|
-
"name": "tokenId",
|
|
704
|
-
"type": "uint256",
|
|
705
|
-
"internalType": "uint256"
|
|
706
|
-
}
|
|
707
|
-
]
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
"type": "error",
|
|
711
|
-
"name": "Banning__CannotBanOwner",
|
|
712
|
-
"inputs": []
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"type": "error",
|
|
716
|
-
"name": "Banning__CannotBanSelf",
|
|
717
|
-
"inputs": []
|
|
718
|
-
},
|
|
719
|
-
{
|
|
720
|
-
"type": "error",
|
|
721
|
-
"name": "Banning__InvalidTokenId",
|
|
722
|
-
"inputs": [
|
|
723
|
-
{
|
|
724
|
-
"name": "tokenId",
|
|
725
|
-
"type": "uint256",
|
|
726
|
-
"internalType": "uint256"
|
|
727
|
-
}
|
|
728
|
-
]
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"type": "error",
|
|
732
|
-
"name": "Banning__NotBanned",
|
|
733
|
-
"inputs": [
|
|
734
|
-
{
|
|
735
|
-
"name": "tokenId",
|
|
736
|
-
"type": "uint256",
|
|
737
|
-
"internalType": "uint256"
|
|
738
|
-
}
|
|
739
|
-
]
|
|
740
|
-
},
|
|
741
513
|
{
|
|
742
514
|
"type": "error",
|
|
743
515
|
"name": "Entitlement__InvalidValue",
|
|
@@ -773,21 +545,6 @@ export default [
|
|
|
773
545
|
"name": "EntitlementsService__InvalidEntitlementInterface",
|
|
774
546
|
"inputs": []
|
|
775
547
|
},
|
|
776
|
-
{
|
|
777
|
-
"type": "error",
|
|
778
|
-
"name": "MintERC2309QuantityExceedsLimit",
|
|
779
|
-
"inputs": []
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"type": "error",
|
|
783
|
-
"name": "MintToZeroAddress",
|
|
784
|
-
"inputs": []
|
|
785
|
-
},
|
|
786
|
-
{
|
|
787
|
-
"type": "error",
|
|
788
|
-
"name": "MintZeroQuantity",
|
|
789
|
-
"inputs": []
|
|
790
|
-
},
|
|
791
548
|
{
|
|
792
549
|
"type": "error",
|
|
793
550
|
"name": "Ownable__NotOwner",
|
|
@@ -809,21 +566,6 @@ export default [
|
|
|
809
566
|
"name": "OwnerQueryForNonexistentToken",
|
|
810
567
|
"inputs": []
|
|
811
568
|
},
|
|
812
|
-
{
|
|
813
|
-
"type": "error",
|
|
814
|
-
"name": "OwnershipNotInitializedForExtraData",
|
|
815
|
-
"inputs": []
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
"type": "error",
|
|
819
|
-
"name": "Pausable__NotPaused",
|
|
820
|
-
"inputs": []
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
"type": "error",
|
|
824
|
-
"name": "Pausable__Paused",
|
|
825
|
-
"inputs": []
|
|
826
|
-
},
|
|
827
569
|
{
|
|
828
570
|
"type": "error",
|
|
829
571
|
"name": "Roles__EntitlementAlreadyExists",
|
|
@@ -866,27 +608,18 @@ export default [
|
|
|
866
608
|
},
|
|
867
609
|
{
|
|
868
610
|
"type": "error",
|
|
869
|
-
"name": "
|
|
870
|
-
"inputs": [
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
{
|
|
883
|
-
"type": "error",
|
|
884
|
-
"name": "TransferToZeroAddress",
|
|
885
|
-
"inputs": []
|
|
886
|
-
},
|
|
887
|
-
{
|
|
888
|
-
"type": "error",
|
|
889
|
-
"name": "URIQueryForNonexistentToken",
|
|
890
|
-
"inputs": []
|
|
611
|
+
"name": "SafeCastOverflowedUintDowncast",
|
|
612
|
+
"inputs": [
|
|
613
|
+
{
|
|
614
|
+
"name": "bits",
|
|
615
|
+
"type": "uint8",
|
|
616
|
+
"internalType": "uint8"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"name": "value",
|
|
620
|
+
"type": "uint256",
|
|
621
|
+
"internalType": "uint256"
|
|
622
|
+
}
|
|
623
|
+
]
|
|
891
624
|
}
|
|
892
625
|
] as const
|