@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
|
@@ -131,13 +131,13 @@ export declare const walletClientWithAccount: {
|
|
|
131
131
|
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
132
132
|
[x: `string[${string}]`]: undefined;
|
|
133
133
|
[x: `function[${string}]`]: undefined;
|
|
134
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
135
|
-
[x: `bytes[${string}]`]: undefined;
|
|
136
134
|
[x: `address[${string}]`]: undefined;
|
|
137
|
-
[x: `bool[${string}]`]: undefined;
|
|
138
135
|
[x: `uint8[${string}]`]: undefined;
|
|
139
136
|
[x: `uint32[${string}]`]: undefined;
|
|
137
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
138
|
+
[x: `bytes[${string}]`]: undefined;
|
|
140
139
|
[x: `uint256[${string}]`]: undefined;
|
|
140
|
+
[x: `bool[${string}]`]: undefined;
|
|
141
141
|
[x: `uint96[${string}]`]: undefined;
|
|
142
142
|
[x: `uint64[${string}]`]: undefined;
|
|
143
143
|
[x: `bytes4[${string}]`]: undefined;
|
|
@@ -148,18 +148,18 @@ export declare const walletClientWithAccount: {
|
|
|
148
148
|
[x: `bytes5[${string}]`]: undefined;
|
|
149
149
|
[x: `bytes10[${string}]`]: undefined;
|
|
150
150
|
[x: `bytes8[${string}]`]: undefined;
|
|
151
|
-
[x: `
|
|
152
|
-
[x: `
|
|
153
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
151
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
152
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
154
153
|
[x: `bytes18[${string}]`]: undefined;
|
|
154
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
155
155
|
[x: `bytes7[${string}]`]: undefined;
|
|
156
156
|
[x: `bytes9[${string}]`]: undefined;
|
|
157
157
|
[x: `bytes11[${string}]`]: undefined;
|
|
158
158
|
[x: `bytes12[${string}]`]: undefined;
|
|
159
159
|
[x: `bytes13[${string}]`]: undefined;
|
|
160
160
|
[x: `bytes14[${string}]`]: undefined;
|
|
161
|
-
[x: `
|
|
162
|
-
[x: `
|
|
161
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
162
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
163
163
|
[x: `bytes21[${string}]`]: undefined;
|
|
164
164
|
[x: `bytes22[${string}]`]: undefined;
|
|
165
165
|
[x: `bytes23[${string}]`]: undefined;
|
|
@@ -233,13 +233,13 @@ export declare const walletClientWithAccount: {
|
|
|
233
233
|
[x: `uint240[${string}]`]: undefined;
|
|
234
234
|
[x: `uint248[${string}]`]: undefined;
|
|
235
235
|
string?: undefined;
|
|
236
|
-
bytes32?: undefined;
|
|
237
|
-
bytes?: undefined;
|
|
238
236
|
address?: undefined;
|
|
239
|
-
bool?: undefined;
|
|
240
237
|
uint8?: undefined;
|
|
241
238
|
uint32?: undefined;
|
|
239
|
+
bytes32?: undefined;
|
|
240
|
+
bytes?: undefined;
|
|
242
241
|
uint256?: undefined;
|
|
242
|
+
bool?: undefined;
|
|
243
243
|
uint96?: undefined;
|
|
244
244
|
uint64?: undefined;
|
|
245
245
|
bytes4?: undefined;
|
|
@@ -250,18 +250,18 @@ export declare const walletClientWithAccount: {
|
|
|
250
250
|
bytes5?: undefined;
|
|
251
251
|
bytes10?: undefined;
|
|
252
252
|
bytes8?: undefined;
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
bytes16?: undefined;
|
|
253
|
+
bytes19?: undefined;
|
|
254
|
+
bytes20?: undefined;
|
|
256
255
|
bytes18?: undefined;
|
|
256
|
+
bytes16?: undefined;
|
|
257
257
|
bytes7?: undefined;
|
|
258
258
|
bytes9?: undefined;
|
|
259
259
|
bytes11?: undefined;
|
|
260
260
|
bytes12?: undefined;
|
|
261
261
|
bytes13?: undefined;
|
|
262
262
|
bytes14?: undefined;
|
|
263
|
-
|
|
264
|
-
|
|
263
|
+
bytes15?: undefined;
|
|
264
|
+
bytes17?: undefined;
|
|
265
265
|
bytes21?: undefined;
|
|
266
266
|
bytes22?: undefined;
|
|
267
267
|
bytes23?: undefined;
|