@towns-protocol/generated 0.0.211 → 0.0.213
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/dev/abis/Channels.abi.json +30 -0
- package/dev/abis/Channels.abi.ts +30 -0
- package/dev/abis/DropFacet.abi.json +36 -0
- package/dev/abis/DropFacet.abi.ts +36 -0
- package/dev/abis/MembershipFacet.abi.json +5 -0
- package/dev/abis/MembershipFacet.abi.ts +5 -0
- package/dev/abis/Roles.abi.json +5 -0
- package/dev/abis/Roles.abi.ts +5 -0
- package/dev/typings/Architect.ts +513 -0
- package/dev/typings/Channels.ts +1003 -0
- package/dev/typings/DropFacet.ts +687 -0
- package/dev/typings/EntitlementsManager.ts +612 -0
- package/dev/typings/IDropFacet.ts +11 -3
- package/dev/typings/MockLegacyArchitect.ts +402 -0
- package/dev/typings/NodeRegistry.ts +470 -0
- package/dev/typings/OperatorRegistry.ts +345 -0
- package/dev/typings/Roles.ts +984 -0
- package/dev/typings/StreamRegistry.ts +737 -0
- package/dev/typings/WalletLink.ts +975 -0
- package/dev/typings/factories/Architect__factory.ts +406 -0
- package/dev/typings/factories/Channels__factory.ts +1037 -0
- package/dev/typings/factories/DropFacet__factory.ts +816 -0
- package/dev/typings/factories/EntitlementsManager__factory.ts +688 -0
- package/dev/typings/factories/IChannel__factory.ts +25 -0
- package/dev/typings/factories/IDropFacet__factory.ts +15 -0
- package/dev/typings/factories/IRoles__factory.ts +5 -0
- package/dev/typings/factories/MembershipFacet__factory.ts +6 -1
- package/dev/typings/factories/MockLegacyArchitect__factory.ts +433 -0
- package/dev/typings/factories/NodeRegistry__factory.ts +335 -0
- package/dev/typings/factories/OperatorRegistry__factory.ts +254 -0
- package/dev/typings/factories/Roles__factory.ts +998 -0
- package/dev/typings/factories/SpaceOwner__factory.ts +1 -11
- package/dev/typings/factories/StreamRegistry__factory.ts +604 -0
- package/dev/typings/factories/WalletLink__factory.ts +899 -0
- package/dev/typings/factories/index.ts +10 -0
- package/dev/typings/index.ts +20 -0
- package/package.json +2 -2
|
@@ -768,6 +768,31 @@
|
|
|
768
768
|
}
|
|
769
769
|
]
|
|
770
770
|
},
|
|
771
|
+
{
|
|
772
|
+
"type": "error",
|
|
773
|
+
"name": "ChannelService__ChannelAlreadyExists",
|
|
774
|
+
"inputs": []
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"type": "error",
|
|
778
|
+
"name": "ChannelService__ChannelDisabled",
|
|
779
|
+
"inputs": []
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"type": "error",
|
|
783
|
+
"name": "ChannelService__ChannelDoesNotExist",
|
|
784
|
+
"inputs": []
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"type": "error",
|
|
788
|
+
"name": "ChannelService__RoleAlreadyExists",
|
|
789
|
+
"inputs": []
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"type": "error",
|
|
793
|
+
"name": "ChannelService__RoleDoesNotExist",
|
|
794
|
+
"inputs": []
|
|
795
|
+
},
|
|
771
796
|
{
|
|
772
797
|
"type": "error",
|
|
773
798
|
"name": "ERC5643__DurationZero",
|
|
@@ -921,6 +946,11 @@
|
|
|
921
946
|
"name": "Roles__RoleDoesNotExist",
|
|
922
947
|
"inputs": []
|
|
923
948
|
},
|
|
949
|
+
{
|
|
950
|
+
"type": "error",
|
|
951
|
+
"name": "Roles__RoleIsImmutable",
|
|
952
|
+
"inputs": []
|
|
953
|
+
},
|
|
924
954
|
{
|
|
925
955
|
"type": "error",
|
|
926
956
|
"name": "TransferCallerNotOwnerNorApproved",
|
package/dev/abis/Channels.abi.ts
CHANGED
|
@@ -768,6 +768,31 @@ export default [
|
|
|
768
768
|
}
|
|
769
769
|
]
|
|
770
770
|
},
|
|
771
|
+
{
|
|
772
|
+
"type": "error",
|
|
773
|
+
"name": "ChannelService__ChannelAlreadyExists",
|
|
774
|
+
"inputs": []
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"type": "error",
|
|
778
|
+
"name": "ChannelService__ChannelDisabled",
|
|
779
|
+
"inputs": []
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"type": "error",
|
|
783
|
+
"name": "ChannelService__ChannelDoesNotExist",
|
|
784
|
+
"inputs": []
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"type": "error",
|
|
788
|
+
"name": "ChannelService__RoleAlreadyExists",
|
|
789
|
+
"inputs": []
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"type": "error",
|
|
793
|
+
"name": "ChannelService__RoleDoesNotExist",
|
|
794
|
+
"inputs": []
|
|
795
|
+
},
|
|
771
796
|
{
|
|
772
797
|
"type": "error",
|
|
773
798
|
"name": "ERC5643__DurationZero",
|
|
@@ -921,6 +946,11 @@ export default [
|
|
|
921
946
|
"name": "Roles__RoleDoesNotExist",
|
|
922
947
|
"inputs": []
|
|
923
948
|
},
|
|
949
|
+
{
|
|
950
|
+
"type": "error",
|
|
951
|
+
"name": "Roles__RoleIsImmutable",
|
|
952
|
+
"inputs": []
|
|
953
|
+
},
|
|
924
954
|
{
|
|
925
955
|
"type": "error",
|
|
926
956
|
"name": "TransferCallerNotOwnerNorApproved",
|
|
@@ -86,6 +86,11 @@
|
|
|
86
86
|
"type": "uint256",
|
|
87
87
|
"internalType": "uint256"
|
|
88
88
|
},
|
|
89
|
+
{
|
|
90
|
+
"name": "points",
|
|
91
|
+
"type": "uint256",
|
|
92
|
+
"internalType": "uint256"
|
|
93
|
+
},
|
|
89
94
|
{
|
|
90
95
|
"name": "proof",
|
|
91
96
|
"type": "bytes32[]",
|
|
@@ -142,6 +147,11 @@
|
|
|
142
147
|
"type": "uint256",
|
|
143
148
|
"internalType": "uint256"
|
|
144
149
|
},
|
|
150
|
+
{
|
|
151
|
+
"name": "points",
|
|
152
|
+
"type": "uint256",
|
|
153
|
+
"internalType": "uint256"
|
|
154
|
+
},
|
|
145
155
|
{
|
|
146
156
|
"name": "proof",
|
|
147
157
|
"type": "bytes32[]",
|
|
@@ -668,6 +678,11 @@
|
|
|
668
678
|
"name": "DropFacet__NoActiveClaimCondition",
|
|
669
679
|
"inputs": []
|
|
670
680
|
},
|
|
681
|
+
{
|
|
682
|
+
"type": "error",
|
|
683
|
+
"name": "DropFacet__PointsMustBeGreaterThanZero",
|
|
684
|
+
"inputs": []
|
|
685
|
+
},
|
|
671
686
|
{
|
|
672
687
|
"type": "error",
|
|
673
688
|
"name": "DropFacet__QuantityMustBeGreaterThanZero",
|
|
@@ -683,6 +698,27 @@
|
|
|
683
698
|
"name": "DropFacet__UnexpectedPenaltyBps",
|
|
684
699
|
"inputs": []
|
|
685
700
|
},
|
|
701
|
+
{
|
|
702
|
+
"type": "error",
|
|
703
|
+
"name": "ERC20InsufficientBalance",
|
|
704
|
+
"inputs": [
|
|
705
|
+
{
|
|
706
|
+
"name": "sender",
|
|
707
|
+
"type": "address",
|
|
708
|
+
"internalType": "address"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"name": "balance",
|
|
712
|
+
"type": "uint256",
|
|
713
|
+
"internalType": "uint256"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"name": "needed",
|
|
717
|
+
"type": "uint256",
|
|
718
|
+
"internalType": "uint256"
|
|
719
|
+
}
|
|
720
|
+
]
|
|
721
|
+
},
|
|
686
722
|
{
|
|
687
723
|
"type": "error",
|
|
688
724
|
"name": "Initializable_InInitializingState",
|
|
@@ -86,6 +86,11 @@ export default [
|
|
|
86
86
|
"type": "uint256",
|
|
87
87
|
"internalType": "uint256"
|
|
88
88
|
},
|
|
89
|
+
{
|
|
90
|
+
"name": "points",
|
|
91
|
+
"type": "uint256",
|
|
92
|
+
"internalType": "uint256"
|
|
93
|
+
},
|
|
89
94
|
{
|
|
90
95
|
"name": "proof",
|
|
91
96
|
"type": "bytes32[]",
|
|
@@ -142,6 +147,11 @@ export default [
|
|
|
142
147
|
"type": "uint256",
|
|
143
148
|
"internalType": "uint256"
|
|
144
149
|
},
|
|
150
|
+
{
|
|
151
|
+
"name": "points",
|
|
152
|
+
"type": "uint256",
|
|
153
|
+
"internalType": "uint256"
|
|
154
|
+
},
|
|
145
155
|
{
|
|
146
156
|
"name": "proof",
|
|
147
157
|
"type": "bytes32[]",
|
|
@@ -668,6 +678,11 @@ export default [
|
|
|
668
678
|
"name": "DropFacet__NoActiveClaimCondition",
|
|
669
679
|
"inputs": []
|
|
670
680
|
},
|
|
681
|
+
{
|
|
682
|
+
"type": "error",
|
|
683
|
+
"name": "DropFacet__PointsMustBeGreaterThanZero",
|
|
684
|
+
"inputs": []
|
|
685
|
+
},
|
|
671
686
|
{
|
|
672
687
|
"type": "error",
|
|
673
688
|
"name": "DropFacet__QuantityMustBeGreaterThanZero",
|
|
@@ -683,6 +698,27 @@ export default [
|
|
|
683
698
|
"name": "DropFacet__UnexpectedPenaltyBps",
|
|
684
699
|
"inputs": []
|
|
685
700
|
},
|
|
701
|
+
{
|
|
702
|
+
"type": "error",
|
|
703
|
+
"name": "ERC20InsufficientBalance",
|
|
704
|
+
"inputs": [
|
|
705
|
+
{
|
|
706
|
+
"name": "sender",
|
|
707
|
+
"type": "address",
|
|
708
|
+
"internalType": "address"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"name": "balance",
|
|
712
|
+
"type": "uint256",
|
|
713
|
+
"internalType": "uint256"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"name": "needed",
|
|
717
|
+
"type": "uint256",
|
|
718
|
+
"internalType": "uint256"
|
|
719
|
+
}
|
|
720
|
+
]
|
|
721
|
+
},
|
|
686
722
|
{
|
|
687
723
|
"type": "error",
|
|
688
724
|
"name": "Initializable_InInitializingState",
|
|
@@ -1451,6 +1451,11 @@
|
|
|
1451
1451
|
"name": "Roles__RoleDoesNotExist",
|
|
1452
1452
|
"inputs": []
|
|
1453
1453
|
},
|
|
1454
|
+
{
|
|
1455
|
+
"type": "error",
|
|
1456
|
+
"name": "Roles__RoleIsImmutable",
|
|
1457
|
+
"inputs": []
|
|
1458
|
+
},
|
|
1454
1459
|
{
|
|
1455
1460
|
"type": "error",
|
|
1456
1461
|
"name": "TransferCallerNotOwnerNorApproved",
|
|
@@ -1451,6 +1451,11 @@ export default [
|
|
|
1451
1451
|
"name": "Roles__RoleDoesNotExist",
|
|
1452
1452
|
"inputs": []
|
|
1453
1453
|
},
|
|
1454
|
+
{
|
|
1455
|
+
"type": "error",
|
|
1456
|
+
"name": "Roles__RoleIsImmutable",
|
|
1457
|
+
"inputs": []
|
|
1458
|
+
},
|
|
1454
1459
|
{
|
|
1455
1460
|
"type": "error",
|
|
1456
1461
|
"name": "TransferCallerNotOwnerNorApproved",
|
package/dev/abis/Roles.abi.json
CHANGED
package/dev/abis/Roles.abi.ts
CHANGED