@zoralabs/protocol-deployments 0.0.3 → 0.0.5-prerelease.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.
- package/.turbo/turbo-build.log +13 -13
- package/CHANGELOG.md +13 -0
- package/addresses/7777777.json +3 -3
- package/addresses/999.json +6 -6
- package/dist/index.cjs +76 -71
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +76 -68
- package/dist/index.js.map +1 -1
- package/dist/package/batchPublish.test.d.ts +16 -16
- package/dist/package/wagmiGenerated.d.ts +312 -201
- package/dist/package/wagmiGenerated.d.ts.map +1 -1
- package/package/wagmiGenerated.ts +76 -105
- package/package.json +2 -3
- package/script/CalculateDeterministicParams.s.sol +3 -3
- package/script/DeployMintersAndImplementations.s.sol +3 -3
- package/script/DeployNew1155Impl.s.sol +25 -0
- package/script/DeployNewImplementation.s.sol +3 -3
- package/script/DeployPreminterImpl.s.sol +3 -3
- package/script/DeployProxiesToNewChain.s.sol +4 -4
- package/script/DeployUpgradeGate.s.sol +5 -5
- package/script/Simulate1155Upgrade.s.sol +37 -0
- package/script/Upgrade.s.sol +3 -3
- package/script/UpgradePreminter.s.sol +3 -3
- package/src/DeploymentConfig.sol +124 -0
- package/src/DeploymentTestingUtils.sol +56 -0
- package/src/DeterministicDeployerScript.sol +253 -0
- package/src/DeterministicProxyDeployer.sol +139 -0
- package/src/IImmutableCreate2Factory.sol +59 -0
- package/src/ZoraDeployerBase.sol +144 -0
- package/src/ZoraDeployerUtils.sol +199 -0
- package/test/NewFactoryProxyDeployer.t.sol +4 -4
- package/test/ZoraCreator1155Factory_Fork.t.sol +1 -3
- package/test/ZoraCreator1155PremintExecutorForkTest.t.sol +1 -1
- package/wagmi.config.ts +1 -7
|
@@ -1,204 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
3
|
-
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
4
|
-
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
5
|
-
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
6
|
-
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
7
|
-
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
8
|
-
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
9
|
-
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
10
|
-
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
11
|
-
*/
|
|
12
|
-
export declare const iImmutableCreate2FactoryABI: readonly [{
|
|
13
|
-
readonly stateMutability: "view";
|
|
14
|
-
readonly type: "function";
|
|
15
|
-
readonly inputs: readonly [{
|
|
16
|
-
readonly name: "salt";
|
|
17
|
-
readonly internalType: "bytes32";
|
|
18
|
-
readonly type: "bytes32";
|
|
19
|
-
}, {
|
|
20
|
-
readonly name: "initCode";
|
|
21
|
-
readonly internalType: "bytes";
|
|
22
|
-
readonly type: "bytes";
|
|
23
|
-
}];
|
|
24
|
-
readonly name: "findCreate2Address";
|
|
25
|
-
readonly outputs: readonly [{
|
|
26
|
-
readonly name: "deploymentAddress";
|
|
27
|
-
readonly internalType: "address";
|
|
28
|
-
readonly type: "address";
|
|
29
|
-
}];
|
|
30
|
-
}, {
|
|
31
|
-
readonly stateMutability: "view";
|
|
32
|
-
readonly type: "function";
|
|
33
|
-
readonly inputs: readonly [{
|
|
34
|
-
readonly name: "salt";
|
|
35
|
-
readonly internalType: "bytes32";
|
|
36
|
-
readonly type: "bytes32";
|
|
37
|
-
}, {
|
|
38
|
-
readonly name: "initCodeHash";
|
|
39
|
-
readonly internalType: "bytes32";
|
|
40
|
-
readonly type: "bytes32";
|
|
41
|
-
}];
|
|
42
|
-
readonly name: "findCreate2AddressViaHash";
|
|
43
|
-
readonly outputs: readonly [{
|
|
44
|
-
readonly name: "deploymentAddress";
|
|
45
|
-
readonly internalType: "address";
|
|
46
|
-
readonly type: "address";
|
|
47
|
-
}];
|
|
48
|
-
}, {
|
|
49
|
-
readonly stateMutability: "view";
|
|
50
|
-
readonly type: "function";
|
|
51
|
-
readonly inputs: readonly [{
|
|
52
|
-
readonly name: "deploymentAddress";
|
|
53
|
-
readonly internalType: "address";
|
|
54
|
-
readonly type: "address";
|
|
55
|
-
}];
|
|
56
|
-
readonly name: "hasBeenDeployed";
|
|
57
|
-
readonly outputs: readonly [{
|
|
58
|
-
readonly name: "";
|
|
59
|
-
readonly internalType: "bool";
|
|
60
|
-
readonly type: "bool";
|
|
61
|
-
}];
|
|
62
|
-
}, {
|
|
63
|
-
readonly stateMutability: "payable";
|
|
64
|
-
readonly type: "function";
|
|
65
|
-
readonly inputs: readonly [{
|
|
66
|
-
readonly name: "salt";
|
|
67
|
-
readonly internalType: "bytes32";
|
|
68
|
-
readonly type: "bytes32";
|
|
69
|
-
}, {
|
|
70
|
-
readonly name: "initializationCode";
|
|
71
|
-
readonly internalType: "bytes";
|
|
72
|
-
readonly type: "bytes";
|
|
73
|
-
}];
|
|
74
|
-
readonly name: "safeCreate2";
|
|
75
|
-
readonly outputs: readonly [{
|
|
76
|
-
readonly name: "deploymentAddress";
|
|
77
|
-
readonly internalType: "address";
|
|
78
|
-
readonly type: "address";
|
|
79
|
-
}];
|
|
80
|
-
}];
|
|
81
|
-
/**
|
|
82
|
-
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
83
|
-
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
84
|
-
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
85
|
-
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
86
|
-
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
87
|
-
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
88
|
-
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
89
|
-
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
90
|
-
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
91
|
-
*/
|
|
92
|
-
export declare const iImmutableCreate2FactoryAddress: {
|
|
93
|
-
readonly 1: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
94
|
-
readonly 5: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
95
|
-
readonly 10: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
96
|
-
readonly 420: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
97
|
-
readonly 424: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
98
|
-
readonly 999: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
99
|
-
readonly 8453: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
100
|
-
readonly 58008: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
101
|
-
readonly 84531: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
102
|
-
readonly 7777777: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
103
|
-
readonly 11155111: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
104
|
-
readonly 999999999: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
105
|
-
};
|
|
106
|
-
/**
|
|
107
|
-
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
108
|
-
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
109
|
-
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
110
|
-
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
111
|
-
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
112
|
-
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
113
|
-
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
114
|
-
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
115
|
-
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
|
|
116
|
-
*/
|
|
117
|
-
export declare const iImmutableCreate2FactoryConfig: {
|
|
118
|
-
readonly address: {
|
|
119
|
-
readonly 1: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
120
|
-
readonly 5: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
121
|
-
readonly 10: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
122
|
-
readonly 420: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
123
|
-
readonly 424: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
124
|
-
readonly 999: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
125
|
-
readonly 8453: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
126
|
-
readonly 58008: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
127
|
-
readonly 84531: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
128
|
-
readonly 7777777: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
129
|
-
readonly 11155111: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
130
|
-
readonly 999999999: "0x0000000000FFe8B47B3e2130213B802212439497";
|
|
131
|
-
};
|
|
132
|
-
readonly abi: readonly [{
|
|
133
|
-
readonly stateMutability: "view";
|
|
134
|
-
readonly type: "function";
|
|
135
|
-
readonly inputs: readonly [{
|
|
136
|
-
readonly name: "salt";
|
|
137
|
-
readonly internalType: "bytes32";
|
|
138
|
-
readonly type: "bytes32";
|
|
139
|
-
}, {
|
|
140
|
-
readonly name: "initCode";
|
|
141
|
-
readonly internalType: "bytes";
|
|
142
|
-
readonly type: "bytes";
|
|
143
|
-
}];
|
|
144
|
-
readonly name: "findCreate2Address";
|
|
145
|
-
readonly outputs: readonly [{
|
|
146
|
-
readonly name: "deploymentAddress";
|
|
147
|
-
readonly internalType: "address";
|
|
148
|
-
readonly type: "address";
|
|
149
|
-
}];
|
|
150
|
-
}, {
|
|
151
|
-
readonly stateMutability: "view";
|
|
152
|
-
readonly type: "function";
|
|
153
|
-
readonly inputs: readonly [{
|
|
154
|
-
readonly name: "salt";
|
|
155
|
-
readonly internalType: "bytes32";
|
|
156
|
-
readonly type: "bytes32";
|
|
157
|
-
}, {
|
|
158
|
-
readonly name: "initCodeHash";
|
|
159
|
-
readonly internalType: "bytes32";
|
|
160
|
-
readonly type: "bytes32";
|
|
161
|
-
}];
|
|
162
|
-
readonly name: "findCreate2AddressViaHash";
|
|
163
|
-
readonly outputs: readonly [{
|
|
164
|
-
readonly name: "deploymentAddress";
|
|
165
|
-
readonly internalType: "address";
|
|
166
|
-
readonly type: "address";
|
|
167
|
-
}];
|
|
168
|
-
}, {
|
|
169
|
-
readonly stateMutability: "view";
|
|
170
|
-
readonly type: "function";
|
|
171
|
-
readonly inputs: readonly [{
|
|
172
|
-
readonly name: "deploymentAddress";
|
|
173
|
-
readonly internalType: "address";
|
|
174
|
-
readonly type: "address";
|
|
175
|
-
}];
|
|
176
|
-
readonly name: "hasBeenDeployed";
|
|
177
|
-
readonly outputs: readonly [{
|
|
178
|
-
readonly name: "";
|
|
179
|
-
readonly internalType: "bool";
|
|
180
|
-
readonly type: "bool";
|
|
181
|
-
}];
|
|
182
|
-
}, {
|
|
183
|
-
readonly stateMutability: "payable";
|
|
184
|
-
readonly type: "function";
|
|
185
|
-
readonly inputs: readonly [{
|
|
186
|
-
readonly name: "salt";
|
|
187
|
-
readonly internalType: "bytes32";
|
|
188
|
-
readonly type: "bytes32";
|
|
189
|
-
}, {
|
|
190
|
-
readonly name: "initializationCode";
|
|
191
|
-
readonly internalType: "bytes";
|
|
192
|
-
readonly type: "bytes";
|
|
193
|
-
}];
|
|
194
|
-
readonly name: "safeCreate2";
|
|
195
|
-
readonly outputs: readonly [{
|
|
196
|
-
readonly name: "deploymentAddress";
|
|
197
|
-
readonly internalType: "address";
|
|
198
|
-
readonly type: "address";
|
|
199
|
-
}];
|
|
200
|
-
}];
|
|
201
|
-
};
|
|
202
1
|
/**
|
|
203
2
|
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
204
3
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -1386,6 +1185,10 @@ export declare const zoraCreator1155ImplABI: readonly [{
|
|
|
1386
1185
|
readonly type: "error";
|
|
1387
1186
|
readonly inputs: readonly [];
|
|
1388
1187
|
readonly name: "Call_TokenIdMismatch";
|
|
1188
|
+
}, {
|
|
1189
|
+
readonly type: "error";
|
|
1190
|
+
readonly inputs: readonly [];
|
|
1191
|
+
readonly name: "CallerNotZoraCreator1155";
|
|
1389
1192
|
}, {
|
|
1390
1193
|
readonly type: "error";
|
|
1391
1194
|
readonly inputs: readonly [{
|
|
@@ -1522,6 +1325,22 @@ export declare const zoraCreator1155ImplABI: readonly [{
|
|
|
1522
1325
|
readonly type: "error";
|
|
1523
1326
|
readonly inputs: readonly [];
|
|
1524
1327
|
readonly name: "INVALID_ETH_AMOUNT";
|
|
1328
|
+
}, {
|
|
1329
|
+
readonly type: "error";
|
|
1330
|
+
readonly inputs: readonly [{
|
|
1331
|
+
readonly name: "mintTo";
|
|
1332
|
+
readonly internalType: "address";
|
|
1333
|
+
readonly type: "address";
|
|
1334
|
+
}, {
|
|
1335
|
+
readonly name: "merkleProof";
|
|
1336
|
+
readonly internalType: "bytes32[]";
|
|
1337
|
+
readonly type: "bytes32[]";
|
|
1338
|
+
}, {
|
|
1339
|
+
readonly name: "merkleRoot";
|
|
1340
|
+
readonly internalType: "bytes32";
|
|
1341
|
+
readonly type: "bytes32";
|
|
1342
|
+
}];
|
|
1343
|
+
readonly name: "InvalidMerkleProof";
|
|
1525
1344
|
}, {
|
|
1526
1345
|
readonly type: "error";
|
|
1527
1346
|
readonly inputs: readonly [];
|
|
@@ -1546,6 +1365,14 @@ export declare const zoraCreator1155ImplABI: readonly [{
|
|
|
1546
1365
|
readonly type: "error";
|
|
1547
1366
|
readonly inputs: readonly [];
|
|
1548
1367
|
readonly name: "Mint_ValueTransferFail";
|
|
1368
|
+
}, {
|
|
1369
|
+
readonly type: "error";
|
|
1370
|
+
readonly inputs: readonly [];
|
|
1371
|
+
readonly name: "MinterContractAlreadyExists";
|
|
1372
|
+
}, {
|
|
1373
|
+
readonly type: "error";
|
|
1374
|
+
readonly inputs: readonly [];
|
|
1375
|
+
readonly name: "MinterContractDoesNotExist";
|
|
1549
1376
|
}, {
|
|
1550
1377
|
readonly type: "error";
|
|
1551
1378
|
readonly inputs: readonly [];
|
|
@@ -1594,6 +1421,14 @@ export declare const zoraCreator1155ImplABI: readonly [{
|
|
|
1594
1421
|
readonly type: "error";
|
|
1595
1422
|
readonly inputs: readonly [];
|
|
1596
1423
|
readonly name: "Renderer_NotValidRendererContract";
|
|
1424
|
+
}, {
|
|
1425
|
+
readonly type: "error";
|
|
1426
|
+
readonly inputs: readonly [];
|
|
1427
|
+
readonly name: "SaleEnded";
|
|
1428
|
+
}, {
|
|
1429
|
+
readonly type: "error";
|
|
1430
|
+
readonly inputs: readonly [];
|
|
1431
|
+
readonly name: "SaleHasNotStarted";
|
|
1597
1432
|
}, {
|
|
1598
1433
|
readonly type: "error";
|
|
1599
1434
|
readonly inputs: readonly [{
|
|
@@ -1618,6 +1453,22 @@ export declare const zoraCreator1155ImplABI: readonly [{
|
|
|
1618
1453
|
readonly type: "error";
|
|
1619
1454
|
readonly inputs: readonly [];
|
|
1620
1455
|
readonly name: "UUPS_UPGRADEABLE_MUST_NOT_BE_CALLED_THROUGH_DELEGATECALL";
|
|
1456
|
+
}, {
|
|
1457
|
+
readonly type: "error";
|
|
1458
|
+
readonly inputs: readonly [{
|
|
1459
|
+
readonly name: "user";
|
|
1460
|
+
readonly internalType: "address";
|
|
1461
|
+
readonly type: "address";
|
|
1462
|
+
}, {
|
|
1463
|
+
readonly name: "limit";
|
|
1464
|
+
readonly internalType: "uint256";
|
|
1465
|
+
readonly type: "uint256";
|
|
1466
|
+
}, {
|
|
1467
|
+
readonly name: "requestedAmount";
|
|
1468
|
+
readonly internalType: "uint256";
|
|
1469
|
+
readonly type: "uint256";
|
|
1470
|
+
}];
|
|
1471
|
+
readonly name: "UserExceedsMintLimit";
|
|
1621
1472
|
}, {
|
|
1622
1473
|
readonly type: "error";
|
|
1623
1474
|
readonly inputs: readonly [{
|
|
@@ -1634,6 +1485,10 @@ export declare const zoraCreator1155ImplABI: readonly [{
|
|
|
1634
1485
|
readonly type: "uint256";
|
|
1635
1486
|
}];
|
|
1636
1487
|
readonly name: "UserMissingRoleForToken";
|
|
1488
|
+
}, {
|
|
1489
|
+
readonly type: "error";
|
|
1490
|
+
readonly inputs: readonly [];
|
|
1491
|
+
readonly name: "WrongValueSent";
|
|
1637
1492
|
}, {
|
|
1638
1493
|
readonly type: "event";
|
|
1639
1494
|
readonly anonymous: false;
|
|
@@ -3272,6 +3127,10 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
3272
3127
|
readonly type: "error";
|
|
3273
3128
|
readonly inputs: readonly [];
|
|
3274
3129
|
readonly name: "Call_TokenIdMismatch";
|
|
3130
|
+
}, {
|
|
3131
|
+
readonly type: "error";
|
|
3132
|
+
readonly inputs: readonly [];
|
|
3133
|
+
readonly name: "CallerNotZoraCreator1155";
|
|
3275
3134
|
}, {
|
|
3276
3135
|
readonly type: "error";
|
|
3277
3136
|
readonly inputs: readonly [{
|
|
@@ -3352,6 +3211,26 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
3352
3211
|
readonly type: "error";
|
|
3353
3212
|
readonly inputs: readonly [];
|
|
3354
3213
|
readonly name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING";
|
|
3214
|
+
}, {
|
|
3215
|
+
readonly type: "error";
|
|
3216
|
+
readonly inputs: readonly [{
|
|
3217
|
+
readonly name: "mintTo";
|
|
3218
|
+
readonly internalType: "address";
|
|
3219
|
+
readonly type: "address";
|
|
3220
|
+
}, {
|
|
3221
|
+
readonly name: "merkleProof";
|
|
3222
|
+
readonly internalType: "bytes32[]";
|
|
3223
|
+
readonly type: "bytes32[]";
|
|
3224
|
+
}, {
|
|
3225
|
+
readonly name: "merkleRoot";
|
|
3226
|
+
readonly internalType: "bytes32";
|
|
3227
|
+
readonly type: "bytes32";
|
|
3228
|
+
}];
|
|
3229
|
+
readonly name: "InvalidMerkleProof";
|
|
3230
|
+
}, {
|
|
3231
|
+
readonly type: "error";
|
|
3232
|
+
readonly inputs: readonly [];
|
|
3233
|
+
readonly name: "InvalidMintSchedule";
|
|
3355
3234
|
}, {
|
|
3356
3235
|
readonly type: "error";
|
|
3357
3236
|
readonly inputs: readonly [];
|
|
@@ -3372,6 +3251,14 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
3372
3251
|
readonly type: "error";
|
|
3373
3252
|
readonly inputs: readonly [];
|
|
3374
3253
|
readonly name: "Mint_ValueTransferFail";
|
|
3254
|
+
}, {
|
|
3255
|
+
readonly type: "error";
|
|
3256
|
+
readonly inputs: readonly [];
|
|
3257
|
+
readonly name: "MinterContractAlreadyExists";
|
|
3258
|
+
}, {
|
|
3259
|
+
readonly type: "error";
|
|
3260
|
+
readonly inputs: readonly [];
|
|
3261
|
+
readonly name: "MinterContractDoesNotExist";
|
|
3375
3262
|
}, {
|
|
3376
3263
|
readonly type: "error";
|
|
3377
3264
|
readonly inputs: readonly [];
|
|
@@ -3412,6 +3299,14 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
3412
3299
|
readonly type: "error";
|
|
3413
3300
|
readonly inputs: readonly [];
|
|
3414
3301
|
readonly name: "Renderer_NotValidRendererContract";
|
|
3302
|
+
}, {
|
|
3303
|
+
readonly type: "error";
|
|
3304
|
+
readonly inputs: readonly [];
|
|
3305
|
+
readonly name: "SaleEnded";
|
|
3306
|
+
}, {
|
|
3307
|
+
readonly type: "error";
|
|
3308
|
+
readonly inputs: readonly [];
|
|
3309
|
+
readonly name: "SaleHasNotStarted";
|
|
3415
3310
|
}, {
|
|
3416
3311
|
readonly type: "error";
|
|
3417
3312
|
readonly inputs: readonly [{
|
|
@@ -3448,6 +3343,22 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
3448
3343
|
readonly type: "string";
|
|
3449
3344
|
}];
|
|
3450
3345
|
readonly name: "UpgradeToMismatchedContractName";
|
|
3346
|
+
}, {
|
|
3347
|
+
readonly type: "error";
|
|
3348
|
+
readonly inputs: readonly [{
|
|
3349
|
+
readonly name: "user";
|
|
3350
|
+
readonly internalType: "address";
|
|
3351
|
+
readonly type: "address";
|
|
3352
|
+
}, {
|
|
3353
|
+
readonly name: "limit";
|
|
3354
|
+
readonly internalType: "uint256";
|
|
3355
|
+
readonly type: "uint256";
|
|
3356
|
+
}, {
|
|
3357
|
+
readonly name: "requestedAmount";
|
|
3358
|
+
readonly internalType: "uint256";
|
|
3359
|
+
readonly type: "uint256";
|
|
3360
|
+
}];
|
|
3361
|
+
readonly name: "UserExceedsMintLimit";
|
|
3451
3362
|
}, {
|
|
3452
3363
|
readonly type: "error";
|
|
3453
3364
|
readonly inputs: readonly [{
|
|
@@ -3464,6 +3375,10 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
3464
3375
|
readonly type: "uint256";
|
|
3465
3376
|
}];
|
|
3466
3377
|
readonly name: "UserMissingRoleForToken";
|
|
3378
|
+
}, {
|
|
3379
|
+
readonly type: "error";
|
|
3380
|
+
readonly inputs: readonly [];
|
|
3381
|
+
readonly name: "WrongValueSent";
|
|
3467
3382
|
}, {
|
|
3468
3383
|
readonly type: "event";
|
|
3469
3384
|
readonly anonymous: false;
|
|
@@ -4190,6 +4105,10 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
4190
4105
|
readonly type: "error";
|
|
4191
4106
|
readonly inputs: readonly [];
|
|
4192
4107
|
readonly name: "Call_TokenIdMismatch";
|
|
4108
|
+
}, {
|
|
4109
|
+
readonly type: "error";
|
|
4110
|
+
readonly inputs: readonly [];
|
|
4111
|
+
readonly name: "CallerNotZoraCreator1155";
|
|
4193
4112
|
}, {
|
|
4194
4113
|
readonly type: "error";
|
|
4195
4114
|
readonly inputs: readonly [{
|
|
@@ -4270,6 +4189,26 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
4270
4189
|
readonly type: "error";
|
|
4271
4190
|
readonly inputs: readonly [];
|
|
4272
4191
|
readonly name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING";
|
|
4192
|
+
}, {
|
|
4193
|
+
readonly type: "error";
|
|
4194
|
+
readonly inputs: readonly [{
|
|
4195
|
+
readonly name: "mintTo";
|
|
4196
|
+
readonly internalType: "address";
|
|
4197
|
+
readonly type: "address";
|
|
4198
|
+
}, {
|
|
4199
|
+
readonly name: "merkleProof";
|
|
4200
|
+
readonly internalType: "bytes32[]";
|
|
4201
|
+
readonly type: "bytes32[]";
|
|
4202
|
+
}, {
|
|
4203
|
+
readonly name: "merkleRoot";
|
|
4204
|
+
readonly internalType: "bytes32";
|
|
4205
|
+
readonly type: "bytes32";
|
|
4206
|
+
}];
|
|
4207
|
+
readonly name: "InvalidMerkleProof";
|
|
4208
|
+
}, {
|
|
4209
|
+
readonly type: "error";
|
|
4210
|
+
readonly inputs: readonly [];
|
|
4211
|
+
readonly name: "InvalidMintSchedule";
|
|
4273
4212
|
}, {
|
|
4274
4213
|
readonly type: "error";
|
|
4275
4214
|
readonly inputs: readonly [];
|
|
@@ -4290,6 +4229,14 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
4290
4229
|
readonly type: "error";
|
|
4291
4230
|
readonly inputs: readonly [];
|
|
4292
4231
|
readonly name: "Mint_ValueTransferFail";
|
|
4232
|
+
}, {
|
|
4233
|
+
readonly type: "error";
|
|
4234
|
+
readonly inputs: readonly [];
|
|
4235
|
+
readonly name: "MinterContractAlreadyExists";
|
|
4236
|
+
}, {
|
|
4237
|
+
readonly type: "error";
|
|
4238
|
+
readonly inputs: readonly [];
|
|
4239
|
+
readonly name: "MinterContractDoesNotExist";
|
|
4293
4240
|
}, {
|
|
4294
4241
|
readonly type: "error";
|
|
4295
4242
|
readonly inputs: readonly [];
|
|
@@ -4330,6 +4277,14 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
4330
4277
|
readonly type: "error";
|
|
4331
4278
|
readonly inputs: readonly [];
|
|
4332
4279
|
readonly name: "Renderer_NotValidRendererContract";
|
|
4280
|
+
}, {
|
|
4281
|
+
readonly type: "error";
|
|
4282
|
+
readonly inputs: readonly [];
|
|
4283
|
+
readonly name: "SaleEnded";
|
|
4284
|
+
}, {
|
|
4285
|
+
readonly type: "error";
|
|
4286
|
+
readonly inputs: readonly [];
|
|
4287
|
+
readonly name: "SaleHasNotStarted";
|
|
4333
4288
|
}, {
|
|
4334
4289
|
readonly type: "error";
|
|
4335
4290
|
readonly inputs: readonly [{
|
|
@@ -4366,6 +4321,22 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
4366
4321
|
readonly type: "string";
|
|
4367
4322
|
}];
|
|
4368
4323
|
readonly name: "UpgradeToMismatchedContractName";
|
|
4324
|
+
}, {
|
|
4325
|
+
readonly type: "error";
|
|
4326
|
+
readonly inputs: readonly [{
|
|
4327
|
+
readonly name: "user";
|
|
4328
|
+
readonly internalType: "address";
|
|
4329
|
+
readonly type: "address";
|
|
4330
|
+
}, {
|
|
4331
|
+
readonly name: "limit";
|
|
4332
|
+
readonly internalType: "uint256";
|
|
4333
|
+
readonly type: "uint256";
|
|
4334
|
+
}, {
|
|
4335
|
+
readonly name: "requestedAmount";
|
|
4336
|
+
readonly internalType: "uint256";
|
|
4337
|
+
readonly type: "uint256";
|
|
4338
|
+
}];
|
|
4339
|
+
readonly name: "UserExceedsMintLimit";
|
|
4369
4340
|
}, {
|
|
4370
4341
|
readonly type: "error";
|
|
4371
4342
|
readonly inputs: readonly [{
|
|
@@ -4382,6 +4353,10 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
4382
4353
|
readonly type: "uint256";
|
|
4383
4354
|
}];
|
|
4384
4355
|
readonly name: "UserMissingRoleForToken";
|
|
4356
|
+
}, {
|
|
4357
|
+
readonly type: "error";
|
|
4358
|
+
readonly inputs: readonly [];
|
|
4359
|
+
readonly name: "WrongValueSent";
|
|
4385
4360
|
}, {
|
|
4386
4361
|
readonly type: "event";
|
|
4387
4362
|
readonly anonymous: false;
|
|
@@ -5038,6 +5013,34 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
5038
5013
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7)
|
|
5039
5014
|
*/
|
|
5040
5015
|
export declare const zoraCreatorFixedPriceSaleStrategyABI: readonly [{
|
|
5016
|
+
readonly type: "error";
|
|
5017
|
+
readonly inputs: readonly [];
|
|
5018
|
+
readonly name: "CallerNotZoraCreator1155";
|
|
5019
|
+
}, {
|
|
5020
|
+
readonly type: "error";
|
|
5021
|
+
readonly inputs: readonly [{
|
|
5022
|
+
readonly name: "mintTo";
|
|
5023
|
+
readonly internalType: "address";
|
|
5024
|
+
readonly type: "address";
|
|
5025
|
+
}, {
|
|
5026
|
+
readonly name: "merkleProof";
|
|
5027
|
+
readonly internalType: "bytes32[]";
|
|
5028
|
+
readonly type: "bytes32[]";
|
|
5029
|
+
}, {
|
|
5030
|
+
readonly name: "merkleRoot";
|
|
5031
|
+
readonly internalType: "bytes32";
|
|
5032
|
+
readonly type: "bytes32";
|
|
5033
|
+
}];
|
|
5034
|
+
readonly name: "InvalidMerkleProof";
|
|
5035
|
+
}, {
|
|
5036
|
+
readonly type: "error";
|
|
5037
|
+
readonly inputs: readonly [];
|
|
5038
|
+
readonly name: "MinterContractAlreadyExists";
|
|
5039
|
+
}, {
|
|
5040
|
+
readonly type: "error";
|
|
5041
|
+
readonly inputs: readonly [];
|
|
5042
|
+
readonly name: "MinterContractDoesNotExist";
|
|
5043
|
+
}, {
|
|
5041
5044
|
readonly type: "error";
|
|
5042
5045
|
readonly inputs: readonly [];
|
|
5043
5046
|
readonly name: "SaleEnded";
|
|
@@ -5387,6 +5390,34 @@ export declare const zoraCreatorFixedPriceSaleStrategyConfig: {
|
|
|
5387
5390
|
readonly 999999999: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A";
|
|
5388
5391
|
};
|
|
5389
5392
|
readonly abi: readonly [{
|
|
5393
|
+
readonly type: "error";
|
|
5394
|
+
readonly inputs: readonly [];
|
|
5395
|
+
readonly name: "CallerNotZoraCreator1155";
|
|
5396
|
+
}, {
|
|
5397
|
+
readonly type: "error";
|
|
5398
|
+
readonly inputs: readonly [{
|
|
5399
|
+
readonly name: "mintTo";
|
|
5400
|
+
readonly internalType: "address";
|
|
5401
|
+
readonly type: "address";
|
|
5402
|
+
}, {
|
|
5403
|
+
readonly name: "merkleProof";
|
|
5404
|
+
readonly internalType: "bytes32[]";
|
|
5405
|
+
readonly type: "bytes32[]";
|
|
5406
|
+
}, {
|
|
5407
|
+
readonly name: "merkleRoot";
|
|
5408
|
+
readonly internalType: "bytes32";
|
|
5409
|
+
readonly type: "bytes32";
|
|
5410
|
+
}];
|
|
5411
|
+
readonly name: "InvalidMerkleProof";
|
|
5412
|
+
}, {
|
|
5413
|
+
readonly type: "error";
|
|
5414
|
+
readonly inputs: readonly [];
|
|
5415
|
+
readonly name: "MinterContractAlreadyExists";
|
|
5416
|
+
}, {
|
|
5417
|
+
readonly type: "error";
|
|
5418
|
+
readonly inputs: readonly [];
|
|
5419
|
+
readonly name: "MinterContractDoesNotExist";
|
|
5420
|
+
}, {
|
|
5390
5421
|
readonly type: "error";
|
|
5391
5422
|
readonly inputs: readonly [];
|
|
5392
5423
|
readonly name: "SaleEnded";
|
|
@@ -5697,6 +5728,10 @@ export declare const zoraCreatorFixedPriceSaleStrategyConfig: {
|
|
|
5697
5728
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC)
|
|
5698
5729
|
*/
|
|
5699
5730
|
export declare const zoraCreatorMerkleMinterStrategyABI: readonly [{
|
|
5731
|
+
readonly type: "error";
|
|
5732
|
+
readonly inputs: readonly [];
|
|
5733
|
+
readonly name: "CallerNotZoraCreator1155";
|
|
5734
|
+
}, {
|
|
5700
5735
|
readonly type: "error";
|
|
5701
5736
|
readonly inputs: readonly [{
|
|
5702
5737
|
readonly name: "mintTo";
|
|
@@ -5716,6 +5751,14 @@ export declare const zoraCreatorMerkleMinterStrategyABI: readonly [{
|
|
|
5716
5751
|
readonly type: "error";
|
|
5717
5752
|
readonly inputs: readonly [];
|
|
5718
5753
|
readonly name: "MerkleClaimsExceeded";
|
|
5754
|
+
}, {
|
|
5755
|
+
readonly type: "error";
|
|
5756
|
+
readonly inputs: readonly [];
|
|
5757
|
+
readonly name: "MinterContractAlreadyExists";
|
|
5758
|
+
}, {
|
|
5759
|
+
readonly type: "error";
|
|
5760
|
+
readonly inputs: readonly [];
|
|
5761
|
+
readonly name: "MinterContractDoesNotExist";
|
|
5719
5762
|
}, {
|
|
5720
5763
|
readonly type: "error";
|
|
5721
5764
|
readonly inputs: readonly [];
|
|
@@ -6054,6 +6097,10 @@ export declare const zoraCreatorMerkleMinterStrategyConfig: {
|
|
|
6054
6097
|
readonly 999999999: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c";
|
|
6055
6098
|
};
|
|
6056
6099
|
readonly abi: readonly [{
|
|
6100
|
+
readonly type: "error";
|
|
6101
|
+
readonly inputs: readonly [];
|
|
6102
|
+
readonly name: "CallerNotZoraCreator1155";
|
|
6103
|
+
}, {
|
|
6057
6104
|
readonly type: "error";
|
|
6058
6105
|
readonly inputs: readonly [{
|
|
6059
6106
|
readonly name: "mintTo";
|
|
@@ -6073,6 +6120,14 @@ export declare const zoraCreatorMerkleMinterStrategyConfig: {
|
|
|
6073
6120
|
readonly type: "error";
|
|
6074
6121
|
readonly inputs: readonly [];
|
|
6075
6122
|
readonly name: "MerkleClaimsExceeded";
|
|
6123
|
+
}, {
|
|
6124
|
+
readonly type: "error";
|
|
6125
|
+
readonly inputs: readonly [];
|
|
6126
|
+
readonly name: "MinterContractAlreadyExists";
|
|
6127
|
+
}, {
|
|
6128
|
+
readonly type: "error";
|
|
6129
|
+
readonly inputs: readonly [];
|
|
6130
|
+
readonly name: "MinterContractDoesNotExist";
|
|
6076
6131
|
}, {
|
|
6077
6132
|
readonly type: "error";
|
|
6078
6133
|
readonly inputs: readonly [];
|
|
@@ -6379,6 +6434,22 @@ export declare const zoraCreatorRedeemMinterFactoryABI: readonly [{
|
|
|
6379
6434
|
readonly type: "error";
|
|
6380
6435
|
readonly inputs: readonly [];
|
|
6381
6436
|
readonly name: "CallerNotZoraCreator1155";
|
|
6437
|
+
}, {
|
|
6438
|
+
readonly type: "error";
|
|
6439
|
+
readonly inputs: readonly [{
|
|
6440
|
+
readonly name: "mintTo";
|
|
6441
|
+
readonly internalType: "address";
|
|
6442
|
+
readonly type: "address";
|
|
6443
|
+
}, {
|
|
6444
|
+
readonly name: "merkleProof";
|
|
6445
|
+
readonly internalType: "bytes32[]";
|
|
6446
|
+
readonly type: "bytes32[]";
|
|
6447
|
+
}, {
|
|
6448
|
+
readonly name: "merkleRoot";
|
|
6449
|
+
readonly internalType: "bytes32";
|
|
6450
|
+
readonly type: "bytes32";
|
|
6451
|
+
}];
|
|
6452
|
+
readonly name: "InvalidMerkleProof";
|
|
6382
6453
|
}, {
|
|
6383
6454
|
readonly type: "error";
|
|
6384
6455
|
readonly inputs: readonly [];
|
|
@@ -6387,6 +6458,18 @@ export declare const zoraCreatorRedeemMinterFactoryABI: readonly [{
|
|
|
6387
6458
|
readonly type: "error";
|
|
6388
6459
|
readonly inputs: readonly [];
|
|
6389
6460
|
readonly name: "MinterContractDoesNotExist";
|
|
6461
|
+
}, {
|
|
6462
|
+
readonly type: "error";
|
|
6463
|
+
readonly inputs: readonly [];
|
|
6464
|
+
readonly name: "SaleEnded";
|
|
6465
|
+
}, {
|
|
6466
|
+
readonly type: "error";
|
|
6467
|
+
readonly inputs: readonly [];
|
|
6468
|
+
readonly name: "SaleHasNotStarted";
|
|
6469
|
+
}, {
|
|
6470
|
+
readonly type: "error";
|
|
6471
|
+
readonly inputs: readonly [];
|
|
6472
|
+
readonly name: "WrongValueSent";
|
|
6390
6473
|
}, {
|
|
6391
6474
|
readonly type: "event";
|
|
6392
6475
|
readonly anonymous: false;
|
|
@@ -6622,6 +6705,22 @@ export declare const zoraCreatorRedeemMinterFactoryConfig: {
|
|
|
6622
6705
|
readonly type: "error";
|
|
6623
6706
|
readonly inputs: readonly [];
|
|
6624
6707
|
readonly name: "CallerNotZoraCreator1155";
|
|
6708
|
+
}, {
|
|
6709
|
+
readonly type: "error";
|
|
6710
|
+
readonly inputs: readonly [{
|
|
6711
|
+
readonly name: "mintTo";
|
|
6712
|
+
readonly internalType: "address";
|
|
6713
|
+
readonly type: "address";
|
|
6714
|
+
}, {
|
|
6715
|
+
readonly name: "merkleProof";
|
|
6716
|
+
readonly internalType: "bytes32[]";
|
|
6717
|
+
readonly type: "bytes32[]";
|
|
6718
|
+
}, {
|
|
6719
|
+
readonly name: "merkleRoot";
|
|
6720
|
+
readonly internalType: "bytes32";
|
|
6721
|
+
readonly type: "bytes32";
|
|
6722
|
+
}];
|
|
6723
|
+
readonly name: "InvalidMerkleProof";
|
|
6625
6724
|
}, {
|
|
6626
6725
|
readonly type: "error";
|
|
6627
6726
|
readonly inputs: readonly [];
|
|
@@ -6630,6 +6729,18 @@ export declare const zoraCreatorRedeemMinterFactoryConfig: {
|
|
|
6630
6729
|
readonly type: "error";
|
|
6631
6730
|
readonly inputs: readonly [];
|
|
6632
6731
|
readonly name: "MinterContractDoesNotExist";
|
|
6732
|
+
}, {
|
|
6733
|
+
readonly type: "error";
|
|
6734
|
+
readonly inputs: readonly [];
|
|
6735
|
+
readonly name: "SaleEnded";
|
|
6736
|
+
}, {
|
|
6737
|
+
readonly type: "error";
|
|
6738
|
+
readonly inputs: readonly [];
|
|
6739
|
+
readonly name: "SaleHasNotStarted";
|
|
6740
|
+
}, {
|
|
6741
|
+
readonly type: "error";
|
|
6742
|
+
readonly inputs: readonly [];
|
|
6743
|
+
readonly name: "WrongValueSent";
|
|
6633
6744
|
}, {
|
|
6634
6745
|
readonly type: "event";
|
|
6635
6746
|
readonly anonymous: false;
|