@zoralabs/protocol-deployments 0.0.4 → 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 +14 -14
- package/CHANGELOG.md +7 -0
- package/addresses/999.json +6 -6
- package/dist/index.cjs +0 -71
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +0 -68
- package/dist/index.js.map +1 -1
- package/dist/package/batchPublish.test.d.ts +6 -6
- package/dist/package/wagmiGenerated.d.ts +0 -201
- package/dist/package/wagmiGenerated.d.ts.map +1 -1
- package/package/wagmiGenerated.ts +0 -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
- package/test/ZoraCreator1155SupplyRoyaltyDeprecation.t.sol +0 -74
package/dist/index.js
CHANGED
|
@@ -1,69 +1,4 @@
|
|
|
1
1
|
// package/wagmiGenerated.ts
|
|
2
|
-
var iImmutableCreate2FactoryABI = [
|
|
3
|
-
{
|
|
4
|
-
stateMutability: "view",
|
|
5
|
-
type: "function",
|
|
6
|
-
inputs: [
|
|
7
|
-
{ name: "salt", internalType: "bytes32", type: "bytes32" },
|
|
8
|
-
{ name: "initCode", internalType: "bytes", type: "bytes" }
|
|
9
|
-
],
|
|
10
|
-
name: "findCreate2Address",
|
|
11
|
-
outputs: [
|
|
12
|
-
{ name: "deploymentAddress", internalType: "address", type: "address" }
|
|
13
|
-
]
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
stateMutability: "view",
|
|
17
|
-
type: "function",
|
|
18
|
-
inputs: [
|
|
19
|
-
{ name: "salt", internalType: "bytes32", type: "bytes32" },
|
|
20
|
-
{ name: "initCodeHash", internalType: "bytes32", type: "bytes32" }
|
|
21
|
-
],
|
|
22
|
-
name: "findCreate2AddressViaHash",
|
|
23
|
-
outputs: [
|
|
24
|
-
{ name: "deploymentAddress", internalType: "address", type: "address" }
|
|
25
|
-
]
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
stateMutability: "view",
|
|
29
|
-
type: "function",
|
|
30
|
-
inputs: [
|
|
31
|
-
{ name: "deploymentAddress", internalType: "address", type: "address" }
|
|
32
|
-
],
|
|
33
|
-
name: "hasBeenDeployed",
|
|
34
|
-
outputs: [{ name: "", internalType: "bool", type: "bool" }]
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
stateMutability: "payable",
|
|
38
|
-
type: "function",
|
|
39
|
-
inputs: [
|
|
40
|
-
{ name: "salt", internalType: "bytes32", type: "bytes32" },
|
|
41
|
-
{ name: "initializationCode", internalType: "bytes", type: "bytes" }
|
|
42
|
-
],
|
|
43
|
-
name: "safeCreate2",
|
|
44
|
-
outputs: [
|
|
45
|
-
{ name: "deploymentAddress", internalType: "address", type: "address" }
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
];
|
|
49
|
-
var iImmutableCreate2FactoryAddress = {
|
|
50
|
-
1: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
51
|
-
5: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
52
|
-
10: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
53
|
-
420: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
54
|
-
424: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
55
|
-
999: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
56
|
-
8453: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
57
|
-
58008: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
58
|
-
84531: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
59
|
-
7777777: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
60
|
-
11155111: "0x0000000000FFe8B47B3e2130213B802212439497",
|
|
61
|
-
999999999: "0x0000000000FFe8B47B3e2130213B802212439497"
|
|
62
|
-
};
|
|
63
|
-
var iImmutableCreate2FactoryConfig = {
|
|
64
|
-
address: iImmutableCreate2FactoryAddress,
|
|
65
|
-
abi: iImmutableCreate2FactoryABI
|
|
66
|
-
};
|
|
67
2
|
var zoraCreator1155FactoryImplABI = [
|
|
68
3
|
{
|
|
69
4
|
stateMutability: "nonpayable",
|
|
@@ -3367,9 +3302,6 @@ var chainConfigs = {
|
|
|
3367
3302
|
};
|
|
3368
3303
|
export {
|
|
3369
3304
|
chainConfigs,
|
|
3370
|
-
iImmutableCreate2FactoryABI,
|
|
3371
|
-
iImmutableCreate2FactoryAddress,
|
|
3372
|
-
iImmutableCreate2FactoryConfig,
|
|
3373
3305
|
zoraCreator1155FactoryImplABI,
|
|
3374
3306
|
zoraCreator1155FactoryImplAddress,
|
|
3375
3307
|
zoraCreator1155FactoryImplConfig,
|