@zoralabs/comments-contracts 0.0.1

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 (140) hide show
  1. package/.env.example +11 -0
  2. package/.turbo/turbo-build.log +60 -0
  3. package/LICENSE +21 -0
  4. package/README.md +70 -0
  5. package/_imagine/Enjoy.sol +41 -0
  6. package/abis/AccessControlUpgradeable.json +250 -0
  7. package/abis/Address.json +29 -0
  8. package/abis/Comments.json +62 -0
  9. package/abis/CommentsDeployerBase.json +15 -0
  10. package/abis/CommentsImpl.json +1750 -0
  11. package/abis/CommentsPermitTest.json +847 -0
  12. package/abis/CommentsTest.json +986 -0
  13. package/abis/CommentsTestBase.json +577 -0
  14. package/abis/Comments_mintAndCommentTest.json +690 -0
  15. package/abis/ContextUpgradeable.json +25 -0
  16. package/abis/ContractVersionBase.json +15 -0
  17. package/abis/Create2.json +28 -0
  18. package/abis/DeployImpl.json +22 -0
  19. package/abis/DeployNonDeterministic.json +22 -0
  20. package/abis/DeployScript.json +22 -0
  21. package/abis/DeterministicDeployerAndCaller.json +315 -0
  22. package/abis/DeterministicUUPSProxyDeployer.json +167 -0
  23. package/abis/ECDSA.json +29 -0
  24. package/abis/EIP712.json +67 -0
  25. package/abis/EIP712UpgradeableWithChainId.json +25 -0
  26. package/abis/ERC1155.json +416 -0
  27. package/abis/ERC1155Holder.json +99 -0
  28. package/abis/ERC165.json +21 -0
  29. package/abis/ERC165Upgradeable.json +44 -0
  30. package/abis/ERC1967Proxy.json +67 -0
  31. package/abis/ERC1967Utils.json +85 -0
  32. package/abis/GenerateDeterministicParams.json +22 -0
  33. package/abis/IAccessControl.json +195 -0
  34. package/abis/IBeacon.json +15 -0
  35. package/abis/IComments.json +654 -0
  36. package/abis/IContractMetadata.json +28 -0
  37. package/abis/IERC1155.json +295 -0
  38. package/abis/IERC1155Errors.json +104 -0
  39. package/abis/IERC1155MetadataURI.json +314 -0
  40. package/abis/IERC1155Receiver.json +99 -0
  41. package/abis/IERC1271.json +26 -0
  42. package/abis/IERC165.json +21 -0
  43. package/abis/IERC1822Proxiable.json +15 -0
  44. package/abis/IERC20.json +224 -0
  45. package/abis/IERC20Errors.json +88 -0
  46. package/abis/IERC5267.json +51 -0
  47. package/abis/IERC721.json +287 -0
  48. package/abis/IERC721Enumerable.json +343 -0
  49. package/abis/IERC721Errors.json +105 -0
  50. package/abis/IERC721Metadata.json +332 -0
  51. package/abis/IERC721TokenReceiver.json +36 -0
  52. package/abis/IHasContractName.json +15 -0
  53. package/abis/IImmutableCreate2Factory.json +93 -0
  54. package/abis/IMulticall3.json +440 -0
  55. package/abis/IProtocolRewards.json +342 -0
  56. package/abis/ISafe.json +15 -0
  57. package/abis/ISymbol.json +15 -0
  58. package/abis/IVersionedContract.json +15 -0
  59. package/abis/IZoraCreator1155.json +343 -0
  60. package/abis/ImmutableCreate2FactoryUtils.json +15 -0
  61. package/abis/Initializable.json +25 -0
  62. package/abis/LibString.json +7 -0
  63. package/abis/Math.json +7 -0
  64. package/abis/Mock1155.json +547 -0
  65. package/abis/MockERC20.json +322 -0
  66. package/abis/MockERC721.json +350 -0
  67. package/abis/MockMinter.json +64 -0
  68. package/abis/OwnableUpgradeable.json +99 -0
  69. package/abis/ProtocolRewards.json +494 -0
  70. package/abis/Proxy.json +6 -0
  71. package/abis/ProxyDeployerScript.json +15 -0
  72. package/abis/ProxyShim.json +112 -0
  73. package/abis/Script.json +15 -0
  74. package/abis/ShortStrings.json +18 -0
  75. package/abis/StdAssertions.json +379 -0
  76. package/abis/StdInvariant.json +180 -0
  77. package/abis/Strings.json +18 -0
  78. package/abis/Test.json +570 -0
  79. package/abis/UUPSUpgradeable.json +130 -0
  80. package/abis/UnorderedNoncesUpgradeable.json +42 -0
  81. package/abis/Vm.json +8627 -0
  82. package/abis/VmSafe.json +7297 -0
  83. package/abis/stdError.json +119 -0
  84. package/abis/stdStorageSafe.json +52 -0
  85. package/addresses/999999999.json +4 -0
  86. package/deterministicConfig/comments.json +8 -0
  87. package/dist/index.cjs +935 -0
  88. package/dist/index.cjs.map +1 -0
  89. package/dist/index.d.ts +2 -0
  90. package/dist/index.d.ts.map +1 -0
  91. package/dist/index.js +908 -0
  92. package/dist/index.js.map +1 -0
  93. package/dist/types.d.ts +4 -0
  94. package/dist/types.d.ts.map +1 -0
  95. package/dist/wagmiGenerated.d.ts +1354 -0
  96. package/dist/wagmiGenerated.d.ts.map +1 -0
  97. package/foundry.toml +24 -0
  98. package/package/index.ts +4 -0
  99. package/package/types.ts +5 -0
  100. package/package/wagmiGenerated.ts +907 -0
  101. package/package.json +62 -0
  102. package/remappings.txt +8 -0
  103. package/script/CommentsDeployerBase.sol +60 -0
  104. package/script/Deploy.s.sol +66 -0
  105. package/script/DeployImpl.s.sol +26 -0
  106. package/script/DeployNonDeterministic.s.sol +43 -0
  107. package/script/GenerateDeterministicParams.s.sol +55 -0
  108. package/script/bundle-abis.ts +109 -0
  109. package/script/storage-check.sh +57 -0
  110. package/script/update-contract-version.ts +63 -0
  111. package/scripts/abis.ts +3 -0
  112. package/scripts/backfillComments.ts +176 -0
  113. package/scripts/generateCommentsTestData.ts +247 -0
  114. package/scripts/getCommentsAddresses.ts +10 -0
  115. package/scripts/queries.ts +73 -0
  116. package/scripts/queryAndSaveComments.ts +48 -0
  117. package/scripts/queryQuantityOfComments.ts +53 -0
  118. package/scripts/signDeployAndCall.ts +51 -0
  119. package/scripts/turnkey.ts +36 -0
  120. package/scripts/utils.ts +127 -0
  121. package/scripts/writeComments.ts +198 -0
  122. package/slither.config.json +7 -0
  123. package/src/CommentsImpl.sol +552 -0
  124. package/src/deployments/CommentsDeployment.sol +14 -0
  125. package/src/interfaces/IComments.sol +156 -0
  126. package/src/interfaces/IZoraCreator1155.sol +12 -0
  127. package/src/proxy/Comments.sol +43 -0
  128. package/src/utils/EIP712UpgradeableWithChainId.sol +36 -0
  129. package/src/version/ContractVersionBase.sol +14 -0
  130. package/test/Comments.t.sol +482 -0
  131. package/test/CommentsTestBase.sol +86 -0
  132. package/test/Comments_mintAndComment.t.sol +101 -0
  133. package/test/Comments_permit.t.sol +397 -0
  134. package/test/mocks/Mock1155.sol +50 -0
  135. package/test/mocks/MockMinter.sol +29 -0
  136. package/test/mocks/ProtocolRewards.sol +1497 -0
  137. package/tsconfig.build.json +10 -0
  138. package/tsconfig.json +9 -0
  139. package/tsup.config.ts +11 -0
  140. package/wagmi.config.ts +14 -0
@@ -0,0 +1,15 @@
1
+ [
2
+ {
3
+ "type": "function",
4
+ "name": "contractVersion",
5
+ "inputs": [],
6
+ "outputs": [
7
+ {
8
+ "name": "",
9
+ "type": "string",
10
+ "internalType": "string"
11
+ }
12
+ ],
13
+ "stateMutability": "pure"
14
+ }
15
+ ]
@@ -0,0 +1,28 @@
1
+ [
2
+ {
3
+ "type": "error",
4
+ "name": "Create2EmptyBytecode",
5
+ "inputs": []
6
+ },
7
+ {
8
+ "type": "error",
9
+ "name": "Create2FailedDeployment",
10
+ "inputs": []
11
+ },
12
+ {
13
+ "type": "error",
14
+ "name": "Create2InsufficientBalance",
15
+ "inputs": [
16
+ {
17
+ "name": "balance",
18
+ "type": "uint256",
19
+ "internalType": "uint256"
20
+ },
21
+ {
22
+ "name": "needed",
23
+ "type": "uint256",
24
+ "internalType": "uint256"
25
+ }
26
+ ]
27
+ }
28
+ ]
@@ -0,0 +1,22 @@
1
+ [
2
+ {
3
+ "type": "function",
4
+ "name": "IS_SCRIPT",
5
+ "inputs": [],
6
+ "outputs": [
7
+ {
8
+ "name": "",
9
+ "type": "bool",
10
+ "internalType": "bool"
11
+ }
12
+ ],
13
+ "stateMutability": "view"
14
+ },
15
+ {
16
+ "type": "function",
17
+ "name": "run",
18
+ "inputs": [],
19
+ "outputs": [],
20
+ "stateMutability": "nonpayable"
21
+ }
22
+ ]
@@ -0,0 +1,22 @@
1
+ [
2
+ {
3
+ "type": "function",
4
+ "name": "IS_SCRIPT",
5
+ "inputs": [],
6
+ "outputs": [
7
+ {
8
+ "name": "",
9
+ "type": "bool",
10
+ "internalType": "bool"
11
+ }
12
+ ],
13
+ "stateMutability": "view"
14
+ },
15
+ {
16
+ "type": "function",
17
+ "name": "run",
18
+ "inputs": [],
19
+ "outputs": [],
20
+ "stateMutability": "nonpayable"
21
+ }
22
+ ]
@@ -0,0 +1,22 @@
1
+ [
2
+ {
3
+ "type": "function",
4
+ "name": "IS_SCRIPT",
5
+ "inputs": [],
6
+ "outputs": [
7
+ {
8
+ "name": "",
9
+ "type": "bool",
10
+ "internalType": "bool"
11
+ }
12
+ ],
13
+ "stateMutability": "view"
14
+ },
15
+ {
16
+ "type": "function",
17
+ "name": "run",
18
+ "inputs": [],
19
+ "outputs": [],
20
+ "stateMutability": "nonpayable"
21
+ }
22
+ ]
@@ -0,0 +1,315 @@
1
+ [
2
+ {
3
+ "type": "constructor",
4
+ "inputs": [],
5
+ "stateMutability": "nonpayable"
6
+ },
7
+ {
8
+ "type": "function",
9
+ "name": "eip712Domain",
10
+ "inputs": [],
11
+ "outputs": [
12
+ {
13
+ "name": "fields",
14
+ "type": "bytes1",
15
+ "internalType": "bytes1"
16
+ },
17
+ {
18
+ "name": "name",
19
+ "type": "string",
20
+ "internalType": "string"
21
+ },
22
+ {
23
+ "name": "version",
24
+ "type": "string",
25
+ "internalType": "string"
26
+ },
27
+ {
28
+ "name": "chainId",
29
+ "type": "uint256",
30
+ "internalType": "uint256"
31
+ },
32
+ {
33
+ "name": "verifyingContract",
34
+ "type": "address",
35
+ "internalType": "address"
36
+ },
37
+ {
38
+ "name": "salt",
39
+ "type": "bytes32",
40
+ "internalType": "bytes32"
41
+ },
42
+ {
43
+ "name": "extensions",
44
+ "type": "uint256[]",
45
+ "internalType": "uint256[]"
46
+ }
47
+ ],
48
+ "stateMutability": "view"
49
+ },
50
+ {
51
+ "type": "function",
52
+ "name": "hashDigest",
53
+ "inputs": [
54
+ {
55
+ "name": "salt",
56
+ "type": "bytes32",
57
+ "internalType": "bytes32"
58
+ },
59
+ {
60
+ "name": "code",
61
+ "type": "bytes",
62
+ "internalType": "bytes"
63
+ },
64
+ {
65
+ "name": "postCreateCall",
66
+ "type": "bytes",
67
+ "internalType": "bytes"
68
+ }
69
+ ],
70
+ "outputs": [
71
+ {
72
+ "name": "",
73
+ "type": "bytes32",
74
+ "internalType": "bytes32"
75
+ }
76
+ ],
77
+ "stateMutability": "view"
78
+ },
79
+ {
80
+ "type": "function",
81
+ "name": "permitSafeCreate2AndCall",
82
+ "inputs": [
83
+ {
84
+ "name": "signature",
85
+ "type": "bytes",
86
+ "internalType": "bytes"
87
+ },
88
+ {
89
+ "name": "salt",
90
+ "type": "bytes32",
91
+ "internalType": "bytes32"
92
+ },
93
+ {
94
+ "name": "code",
95
+ "type": "bytes",
96
+ "internalType": "bytes"
97
+ },
98
+ {
99
+ "name": "postCreateCall",
100
+ "type": "bytes",
101
+ "internalType": "bytes"
102
+ },
103
+ {
104
+ "name": "_expectedAddress",
105
+ "type": "address",
106
+ "internalType": "address"
107
+ }
108
+ ],
109
+ "outputs": [
110
+ {
111
+ "name": "",
112
+ "type": "address",
113
+ "internalType": "address"
114
+ }
115
+ ],
116
+ "stateMutability": "payable"
117
+ },
118
+ {
119
+ "type": "function",
120
+ "name": "proxyConstructorArgs",
121
+ "inputs": [],
122
+ "outputs": [
123
+ {
124
+ "name": "",
125
+ "type": "bytes",
126
+ "internalType": "bytes"
127
+ }
128
+ ],
129
+ "stateMutability": "view"
130
+ },
131
+ {
132
+ "type": "function",
133
+ "name": "proxyCreationCode",
134
+ "inputs": [
135
+ {
136
+ "name": "proxyCode",
137
+ "type": "bytes",
138
+ "internalType": "bytes"
139
+ }
140
+ ],
141
+ "outputs": [
142
+ {
143
+ "name": "",
144
+ "type": "bytes",
145
+ "internalType": "bytes"
146
+ }
147
+ ],
148
+ "stateMutability": "view"
149
+ },
150
+ {
151
+ "type": "function",
152
+ "name": "proxyShim",
153
+ "inputs": [],
154
+ "outputs": [
155
+ {
156
+ "name": "",
157
+ "type": "address",
158
+ "internalType": "contract ProxyShim"
159
+ }
160
+ ],
161
+ "stateMutability": "view"
162
+ },
163
+ {
164
+ "type": "function",
165
+ "name": "safeCreate2AndCall",
166
+ "inputs": [
167
+ {
168
+ "name": "salt",
169
+ "type": "bytes32",
170
+ "internalType": "bytes32"
171
+ },
172
+ {
173
+ "name": "code",
174
+ "type": "bytes",
175
+ "internalType": "bytes"
176
+ },
177
+ {
178
+ "name": "postCreateCall",
179
+ "type": "bytes",
180
+ "internalType": "bytes"
181
+ },
182
+ {
183
+ "name": "_expectedAddress",
184
+ "type": "address",
185
+ "internalType": "address"
186
+ }
187
+ ],
188
+ "outputs": [
189
+ {
190
+ "name": "",
191
+ "type": "address",
192
+ "internalType": "address"
193
+ }
194
+ ],
195
+ "stateMutability": "payable"
196
+ },
197
+ {
198
+ "type": "event",
199
+ "name": "EIP712DomainChanged",
200
+ "inputs": [],
201
+ "anonymous": false
202
+ },
203
+ {
204
+ "type": "error",
205
+ "name": "CallFailed",
206
+ "inputs": [
207
+ {
208
+ "name": "returnData",
209
+ "type": "bytes",
210
+ "internalType": "bytes"
211
+ }
212
+ ]
213
+ },
214
+ {
215
+ "type": "error",
216
+ "name": "Create2EmptyBytecode",
217
+ "inputs": []
218
+ },
219
+ {
220
+ "type": "error",
221
+ "name": "Create2FailedDeployment",
222
+ "inputs": []
223
+ },
224
+ {
225
+ "type": "error",
226
+ "name": "Create2InsufficientBalance",
227
+ "inputs": [
228
+ {
229
+ "name": "balance",
230
+ "type": "uint256",
231
+ "internalType": "uint256"
232
+ },
233
+ {
234
+ "name": "needed",
235
+ "type": "uint256",
236
+ "internalType": "uint256"
237
+ }
238
+ ]
239
+ },
240
+ {
241
+ "type": "error",
242
+ "name": "ECDSAInvalidSignature",
243
+ "inputs": []
244
+ },
245
+ {
246
+ "type": "error",
247
+ "name": "ECDSAInvalidSignatureLength",
248
+ "inputs": [
249
+ {
250
+ "name": "length",
251
+ "type": "uint256",
252
+ "internalType": "uint256"
253
+ }
254
+ ]
255
+ },
256
+ {
257
+ "type": "error",
258
+ "name": "ECDSAInvalidSignatureS",
259
+ "inputs": [
260
+ {
261
+ "name": "s",
262
+ "type": "bytes32",
263
+ "internalType": "bytes32"
264
+ }
265
+ ]
266
+ },
267
+ {
268
+ "type": "error",
269
+ "name": "FactoryProxyAddressMismatch",
270
+ "inputs": [
271
+ {
272
+ "name": "expected",
273
+ "type": "address",
274
+ "internalType": "address"
275
+ },
276
+ {
277
+ "name": "actual",
278
+ "type": "address",
279
+ "internalType": "address"
280
+ }
281
+ ]
282
+ },
283
+ {
284
+ "type": "error",
285
+ "name": "InvalidSalt",
286
+ "inputs": [
287
+ {
288
+ "name": "signer",
289
+ "type": "address",
290
+ "internalType": "address"
291
+ },
292
+ {
293
+ "name": "salt",
294
+ "type": "bytes32",
295
+ "internalType": "bytes32"
296
+ }
297
+ ]
298
+ },
299
+ {
300
+ "type": "error",
301
+ "name": "InvalidShortString",
302
+ "inputs": []
303
+ },
304
+ {
305
+ "type": "error",
306
+ "name": "StringTooLong",
307
+ "inputs": [
308
+ {
309
+ "name": "str",
310
+ "type": "string",
311
+ "internalType": "string"
312
+ }
313
+ ]
314
+ }
315
+ ]
@@ -0,0 +1,167 @@
1
+ [
2
+ {
3
+ "type": "constructor",
4
+ "inputs": [],
5
+ "stateMutability": "nonpayable"
6
+ },
7
+ {
8
+ "type": "function",
9
+ "name": "expectedProxyAddress",
10
+ "inputs": [
11
+ {
12
+ "name": "proxySalt",
13
+ "type": "bytes32",
14
+ "internalType": "bytes32"
15
+ },
16
+ {
17
+ "name": "proxyCode",
18
+ "type": "bytes",
19
+ "internalType": "bytes"
20
+ }
21
+ ],
22
+ "outputs": [
23
+ {
24
+ "name": "",
25
+ "type": "address",
26
+ "internalType": "address"
27
+ }
28
+ ],
29
+ "stateMutability": "view"
30
+ },
31
+ {
32
+ "type": "function",
33
+ "name": "proxyConstructorArgs",
34
+ "inputs": [],
35
+ "outputs": [
36
+ {
37
+ "name": "",
38
+ "type": "bytes",
39
+ "internalType": "bytes"
40
+ }
41
+ ],
42
+ "stateMutability": "view"
43
+ },
44
+ {
45
+ "type": "function",
46
+ "name": "proxyCreationCode",
47
+ "inputs": [
48
+ {
49
+ "name": "transparentProxyCode",
50
+ "type": "bytes",
51
+ "internalType": "bytes"
52
+ }
53
+ ],
54
+ "outputs": [
55
+ {
56
+ "name": "",
57
+ "type": "bytes",
58
+ "internalType": "bytes"
59
+ }
60
+ ],
61
+ "stateMutability": "view"
62
+ },
63
+ {
64
+ "type": "function",
65
+ "name": "proxyShimAddress",
66
+ "inputs": [],
67
+ "outputs": [
68
+ {
69
+ "name": "",
70
+ "type": "address",
71
+ "internalType": "address"
72
+ }
73
+ ],
74
+ "stateMutability": "view"
75
+ },
76
+ {
77
+ "type": "function",
78
+ "name": "safeCreate2AndUpgradeToAndCall",
79
+ "inputs": [
80
+ {
81
+ "name": "proxySalt",
82
+ "type": "bytes32",
83
+ "internalType": "bytes32"
84
+ },
85
+ {
86
+ "name": "proxyCode",
87
+ "type": "bytes",
88
+ "internalType": "bytes"
89
+ },
90
+ {
91
+ "name": "initialImplementation",
92
+ "type": "address",
93
+ "internalType": "address"
94
+ },
95
+ {
96
+ "name": "postUpgradeCall",
97
+ "type": "bytes",
98
+ "internalType": "bytes"
99
+ },
100
+ {
101
+ "name": "_expectedAddress",
102
+ "type": "address",
103
+ "internalType": "address"
104
+ }
105
+ ],
106
+ "outputs": [],
107
+ "stateMutability": "payable"
108
+ },
109
+ {
110
+ "type": "error",
111
+ "name": "Create2EmptyBytecode",
112
+ "inputs": []
113
+ },
114
+ {
115
+ "type": "error",
116
+ "name": "Create2FailedDeployment",
117
+ "inputs": []
118
+ },
119
+ {
120
+ "type": "error",
121
+ "name": "Create2InsufficientBalance",
122
+ "inputs": [
123
+ {
124
+ "name": "balance",
125
+ "type": "uint256",
126
+ "internalType": "uint256"
127
+ },
128
+ {
129
+ "name": "needed",
130
+ "type": "uint256",
131
+ "internalType": "uint256"
132
+ }
133
+ ]
134
+ },
135
+ {
136
+ "type": "error",
137
+ "name": "FactoryProxyAddressMismatch",
138
+ "inputs": [
139
+ {
140
+ "name": "expected",
141
+ "type": "address",
142
+ "internalType": "address"
143
+ },
144
+ {
145
+ "name": "actual",
146
+ "type": "address",
147
+ "internalType": "address"
148
+ }
149
+ ]
150
+ },
151
+ {
152
+ "type": "error",
153
+ "name": "InvalidSalt",
154
+ "inputs": [
155
+ {
156
+ "name": "signer",
157
+ "type": "address",
158
+ "internalType": "address"
159
+ },
160
+ {
161
+ "name": "salt",
162
+ "type": "bytes32",
163
+ "internalType": "bytes32"
164
+ }
165
+ ]
166
+ }
167
+ ]
@@ -0,0 +1,29 @@
1
+ [
2
+ {
3
+ "type": "error",
4
+ "name": "ECDSAInvalidSignature",
5
+ "inputs": []
6
+ },
7
+ {
8
+ "type": "error",
9
+ "name": "ECDSAInvalidSignatureLength",
10
+ "inputs": [
11
+ {
12
+ "name": "length",
13
+ "type": "uint256",
14
+ "internalType": "uint256"
15
+ }
16
+ ]
17
+ },
18
+ {
19
+ "type": "error",
20
+ "name": "ECDSAInvalidSignatureS",
21
+ "inputs": [
22
+ {
23
+ "name": "s",
24
+ "type": "bytes32",
25
+ "internalType": "bytes32"
26
+ }
27
+ ]
28
+ }
29
+ ]
@@ -0,0 +1,67 @@
1
+ [
2
+ {
3
+ "type": "function",
4
+ "name": "eip712Domain",
5
+ "inputs": [],
6
+ "outputs": [
7
+ {
8
+ "name": "fields",
9
+ "type": "bytes1",
10
+ "internalType": "bytes1"
11
+ },
12
+ {
13
+ "name": "name",
14
+ "type": "string",
15
+ "internalType": "string"
16
+ },
17
+ {
18
+ "name": "version",
19
+ "type": "string",
20
+ "internalType": "string"
21
+ },
22
+ {
23
+ "name": "chainId",
24
+ "type": "uint256",
25
+ "internalType": "uint256"
26
+ },
27
+ {
28
+ "name": "verifyingContract",
29
+ "type": "address",
30
+ "internalType": "address"
31
+ },
32
+ {
33
+ "name": "salt",
34
+ "type": "bytes32",
35
+ "internalType": "bytes32"
36
+ },
37
+ {
38
+ "name": "extensions",
39
+ "type": "uint256[]",
40
+ "internalType": "uint256[]"
41
+ }
42
+ ],
43
+ "stateMutability": "view"
44
+ },
45
+ {
46
+ "type": "event",
47
+ "name": "EIP712DomainChanged",
48
+ "inputs": [],
49
+ "anonymous": false
50
+ },
51
+ {
52
+ "type": "error",
53
+ "name": "InvalidShortString",
54
+ "inputs": []
55
+ },
56
+ {
57
+ "type": "error",
58
+ "name": "StringTooLong",
59
+ "inputs": [
60
+ {
61
+ "name": "str",
62
+ "type": "string",
63
+ "internalType": "string"
64
+ }
65
+ ]
66
+ }
67
+ ]