@zoralabs/protocol-deployments 0.0.12 → 0.0.14-MINT.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 +17 -18
- package/CHANGELOG.md +19 -0
- package/README.md +2 -8
- package/dist/{package/chainConfigs.d.ts → chainConfigs.d.ts} +4 -3
- package/dist/chainConfigs.d.ts.map +1 -0
- package/dist/deployment.d.ts.map +1 -0
- package/dist/index.cjs +88 -57
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +84 -53
- package/dist/index.js.map +1 -1
- package/dist/{package/wagmiGenerated.d.ts → wagmiGenerated.d.ts} +118 -44
- package/dist/{package/wagmiGenerated.d.ts.map → wagmiGenerated.d.ts.map} +1 -1
- package/package.json +10 -22
- package/{script → scripts}/bundle-chainConfigs.mjs +9 -7
- package/src/chainConfigs.ts +62 -0
- package/{package → src}/wagmiGenerated.ts +72 -36
- package/tsconfig.json +1 -1
- package/tsup.config.ts +5 -5
- package/wagmi.config.ts +31 -9
- package/.env.anvil +0 -2
- package/addresses/1.json +0 -13
- package/addresses/10.json +0 -13
- package/addresses/11155111.json +0 -13
- package/addresses/420.json +0 -13
- package/addresses/424.json +0 -11
- package/addresses/5.json +0 -14
- package/addresses/58008.json +0 -11
- package/addresses/7777777.json +0 -13
- package/addresses/8453.json +0 -13
- package/addresses/84531.json +0 -14
- package/addresses/999.json +0 -13
- package/addresses/999999999.json +0 -14
- package/chainConfigs/1.json +0 -5
- package/chainConfigs/10.json +0 -5
- package/chainConfigs/11155111.json +0 -5
- package/chainConfigs/420.json +0 -5
- package/chainConfigs/424.json +0 -5
- package/chainConfigs/5.json +0 -5
- package/chainConfigs/58008.json +0 -4
- package/chainConfigs/7777777.json +0 -5
- package/chainConfigs/8453.json +0 -5
- package/chainConfigs/84531.json +0 -5
- package/chainConfigs/999.json +0 -5
- package/chainConfigs/999999999.json +0 -5
- package/deterministicConfig/factoryProxy/params.json +0 -10
- package/deterministicConfig/factoryProxy/signatures.json +0 -14
- package/deterministicConfig/premintExecutorProxy/params.json +0 -10
- package/deterministicConfig/premintExecutorProxy/signatures.json +0 -12
- package/deterministicConfig/upgradeGate/params.json +0 -7
- package/deterministicConfig/upgradeGate/signatures.json +0 -14
- package/dist/package/batchPublish.test.d.ts +0 -452
- package/dist/package/batchPublish.test.d.ts.map +0 -1
- package/dist/package/chainConfigs.d.ts.map +0 -1
- package/dist/package/deployment.d.ts.map +0 -1
- package/dist/package/index.d.ts.map +0 -1
- package/dist/script/copy-deployed-contracts.d.ts +0 -2
- package/dist/script/copy-deployed-contracts.d.ts.map +0 -1
- package/dist/script/signDeploymentTransactions.d.ts +0 -2
- package/dist/script/signDeploymentTransactions.d.ts.map +0 -1
- package/foundry.toml +0 -41
- package/package/batchPublish.test.ts +0 -327
- package/remappings.txt +0 -9
- package/script/CalculateDeterministicParams.s.sol +0 -84
- package/script/DeployMintersAndImplementations.s.sol +0 -29
- package/script/DeployNew1155Impl.s.sol +0 -24
- package/script/DeployNewImplementation.s.sol +0 -26
- package/script/DeployPreminterImpl.s.sol +0 -23
- package/script/DeployProxiesToNewChain.s.sol +0 -50
- package/script/DeployTestContracts.s.sol +0 -35
- package/script/DeployUpgradeGate.s.sol +0 -27
- package/script/Upgrade.s.sol +0 -83
- package/script/UpgradePreminter.s.sol +0 -34
- package/script/copy-deployed-contracts.ts +0 -86
- package/script/signDeploymentTransactions.ts +0 -302
- package/src/DeploymentConfig.sol +0 -124
- package/src/DeploymentTestingUtils.sol +0 -166
- package/src/DeterministicDeployerScript.sol +0 -249
- package/src/DeterministicProxyDeployer.sol +0 -139
- package/src/IImmutableCreate2Factory.sol +0 -59
- package/src/Zora1155PremintFixtures.sol +0 -75
- package/src/ZoraDeployerBase.sol +0 -144
- package/src/ZoraDeployerUtils.sol +0 -212
- package/test/NewFactoryProxyDeployer.t.sol +0 -127
- package/test/UpgradesTest.t.sol +0 -222
- package/test/ZoraCreator1155Factory_Fork.t.sol +0 -149
- package/test/ZoraCreator1155PremintExecutorForkTest.t.sol +0 -205
- /package/dist/{package/deployment.d.ts → deployment.d.ts} +0 -0
- /package/dist/{package/index.d.ts → index.d.ts} +0 -0
- /package/{package → src}/deployment.ts +0 -0
- /package/{package → src}/index.ts +0 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export const chainConfigs = {
|
|
2
|
+
[1]: {
|
|
3
|
+
FACTORY_OWNER: "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
|
|
4
|
+
MINT_FEE_RECIPIENT: "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0",
|
|
5
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
6
|
+
},
|
|
7
|
+
[10]: {
|
|
8
|
+
FACTORY_OWNER: "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
|
|
9
|
+
MINT_FEE_RECIPIENT: "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
|
|
10
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
11
|
+
},
|
|
12
|
+
[11155111]: {
|
|
13
|
+
FACTORY_OWNER: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
14
|
+
MINT_FEE_RECIPIENT: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
15
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
16
|
+
},
|
|
17
|
+
[420]: {
|
|
18
|
+
FACTORY_OWNER: "0xbb45052B2260707655Dfd916a416264f5981192c",
|
|
19
|
+
MINT_FEE_RECIPIENT: "0x5dEe21327CD7CD6725C2578DA1c3E5bb2D2D34b2",
|
|
20
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
21
|
+
},
|
|
22
|
+
[42161]: {
|
|
23
|
+
FACTORY_OWNER: "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03",
|
|
24
|
+
MINT_FEE_RECIPIENT: "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94",
|
|
25
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
26
|
+
},
|
|
27
|
+
[421614]: {
|
|
28
|
+
FACTORY_OWNER: "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
|
|
29
|
+
MINT_FEE_RECIPIENT: "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
|
|
30
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
31
|
+
},
|
|
32
|
+
[5]: {
|
|
33
|
+
FACTORY_OWNER: "0xDC498668B5e6CC518fD58A2ADBF614Fd3A13D3a0",
|
|
34
|
+
MINT_FEE_RECIPIENT: "0x9444390c01Dd5b7249E53FAc31290F7dFF53450D",
|
|
35
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
36
|
+
},
|
|
37
|
+
[7777777]: {
|
|
38
|
+
FACTORY_OWNER: "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
|
|
39
|
+
MINT_FEE_RECIPIENT: "0xEcfc2ee50409E459c554a2b0376F882Ce916D853",
|
|
40
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
41
|
+
},
|
|
42
|
+
[8453]: {
|
|
43
|
+
FACTORY_OWNER: "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
|
|
44
|
+
MINT_FEE_RECIPIENT: "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6",
|
|
45
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
46
|
+
},
|
|
47
|
+
[84531]: {
|
|
48
|
+
FACTORY_OWNER: "0x02539E813cA450C2c7334e885423f4A899a063Fe",
|
|
49
|
+
MINT_FEE_RECIPIENT: "0x02539E813cA450C2c7334e885423f4A899a063Fe",
|
|
50
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
51
|
+
},
|
|
52
|
+
[999]: {
|
|
53
|
+
FACTORY_OWNER: "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
54
|
+
MINT_FEE_RECIPIENT: "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
55
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
56
|
+
},
|
|
57
|
+
[999999999]: {
|
|
58
|
+
FACTORY_OWNER: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
59
|
+
MINT_FEE_RECIPIENT: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
60
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B",
|
|
61
|
+
},
|
|
62
|
+
};
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
8
8
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
9
9
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
10
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x6E742921602a5195f6439c8b8b827E85902E1B2D)
|
|
11
10
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
12
11
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
13
|
-
* - [__View Contract on
|
|
12
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
14
13
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
14
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
15
15
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
16
16
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
17
17
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -495,11 +495,11 @@ export const zoraCreator1155FactoryImplABI = [
|
|
|
495
495
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
496
496
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
497
497
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
498
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x6E742921602a5195f6439c8b8b827E85902E1B2D)
|
|
499
498
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
500
499
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
501
|
-
* - [__View Contract on
|
|
500
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
502
501
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
502
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
503
503
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
504
504
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
505
505
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -509,11 +509,11 @@ export const zoraCreator1155FactoryImplAddress = {
|
|
|
509
509
|
5: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
510
510
|
10: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
511
511
|
420: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
512
|
-
424: "0x6E742921602a5195f6439c8b8b827E85902E1B2D",
|
|
513
512
|
999: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
514
513
|
8453: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
515
|
-
|
|
514
|
+
42161: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
516
515
|
84531: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
516
|
+
421614: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
517
517
|
7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
518
518
|
11155111: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
519
519
|
999999999: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
@@ -524,11 +524,11 @@ export const zoraCreator1155FactoryImplAddress = {
|
|
|
524
524
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
525
525
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
526
526
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
527
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x6E742921602a5195f6439c8b8b827E85902E1B2D)
|
|
528
527
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
529
528
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
530
|
-
* - [__View Contract on
|
|
529
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
531
530
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
531
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
532
532
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
533
533
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
534
534
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -550,6 +550,7 @@ export const zoraCreator1155ImplABI = [
|
|
|
550
550
|
{ name: "_mintFeeRecipient", internalType: "address", type: "address" },
|
|
551
551
|
{ name: "_upgradeGate", internalType: "address", type: "address" },
|
|
552
552
|
{ name: "_protocolRewards", internalType: "address", type: "address" },
|
|
553
|
+
{ name: "_mintsAdmin", internalType: "address", type: "address" },
|
|
553
554
|
],
|
|
554
555
|
},
|
|
555
556
|
{ stateMutability: "payable", type: "receive" },
|
|
@@ -698,7 +699,7 @@ export const zoraCreator1155ImplABI = [
|
|
|
698
699
|
{
|
|
699
700
|
stateMutability: "pure",
|
|
700
701
|
type: "function",
|
|
701
|
-
inputs: [{ name: "
|
|
702
|
+
inputs: [{ name: "totalReward", internalType: "uint256", type: "uint256" }],
|
|
702
703
|
name: "computeFreeMintRewards",
|
|
703
704
|
outputs: [
|
|
704
705
|
{
|
|
@@ -730,7 +731,7 @@ export const zoraCreator1155ImplABI = [
|
|
|
730
731
|
{
|
|
731
732
|
stateMutability: "pure",
|
|
732
733
|
type: "function",
|
|
733
|
-
inputs: [{ name: "
|
|
734
|
+
inputs: [{ name: "totalReward", internalType: "uint256", type: "uint256" }],
|
|
734
735
|
name: "computePaidMintRewards",
|
|
735
736
|
outputs: [
|
|
736
737
|
{
|
|
@@ -762,7 +763,20 @@ export const zoraCreator1155ImplABI = [
|
|
|
762
763
|
{
|
|
763
764
|
stateMutability: "pure",
|
|
764
765
|
type: "function",
|
|
765
|
-
inputs: [
|
|
766
|
+
inputs: [
|
|
767
|
+
{ name: "totalReward", internalType: "uint256", type: "uint256" },
|
|
768
|
+
{ name: "rewardPct", internalType: "uint256", type: "uint256" },
|
|
769
|
+
],
|
|
770
|
+
name: "computeRewardsPct",
|
|
771
|
+
outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
stateMutability: "pure",
|
|
775
|
+
type: "function",
|
|
776
|
+
inputs: [
|
|
777
|
+
{ name: "mintPrice", internalType: "uint256", type: "uint256" },
|
|
778
|
+
{ name: "quantity", internalType: "uint256", type: "uint256" },
|
|
779
|
+
],
|
|
766
780
|
name: "computeTotalReward",
|
|
767
781
|
outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
|
|
768
782
|
},
|
|
@@ -995,7 +1009,7 @@ export const zoraCreator1155ImplABI = [
|
|
|
995
1009
|
outputs: [],
|
|
996
1010
|
},
|
|
997
1011
|
{
|
|
998
|
-
stateMutability: "
|
|
1012
|
+
stateMutability: "view",
|
|
999
1013
|
type: "function",
|
|
1000
1014
|
inputs: [],
|
|
1001
1015
|
name: "mintFee",
|
|
@@ -1035,6 +1049,19 @@ export const zoraCreator1155ImplABI = [
|
|
|
1035
1049
|
name: "nextTokenId",
|
|
1036
1050
|
outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
|
|
1037
1051
|
},
|
|
1052
|
+
{
|
|
1053
|
+
stateMutability: "pure",
|
|
1054
|
+
type: "function",
|
|
1055
|
+
inputs: [
|
|
1056
|
+
{ name: "", internalType: "address", type: "address" },
|
|
1057
|
+
{ name: "", internalType: "address", type: "address" },
|
|
1058
|
+
{ name: "", internalType: "uint256", type: "uint256" },
|
|
1059
|
+
{ name: "", internalType: "uint256", type: "uint256" },
|
|
1060
|
+
{ name: "", internalType: "bytes", type: "bytes" },
|
|
1061
|
+
],
|
|
1062
|
+
name: "onERC1155Received",
|
|
1063
|
+
outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }],
|
|
1064
|
+
},
|
|
1038
1065
|
{
|
|
1039
1066
|
stateMutability: "view",
|
|
1040
1067
|
type: "function",
|
|
@@ -1943,7 +1970,9 @@ export const zoraCreator1155ImplABI = [
|
|
|
1943
1970
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
1944
1971
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
1945
1972
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
1973
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
1946
1974
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
1975
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
1947
1976
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
1948
1977
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
1949
1978
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -2742,6 +2771,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
2742
2771
|
inputs: [],
|
|
2743
2772
|
name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED",
|
|
2744
2773
|
},
|
|
2774
|
+
{ type: "error", inputs: [], name: "INITIALIZABLE_CONTRACT_IS_INITIALIZING" },
|
|
2745
2775
|
{
|
|
2746
2776
|
type: "error",
|
|
2747
2777
|
inputs: [],
|
|
@@ -2841,7 +2871,9 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
2841
2871
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2842
2872
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2843
2873
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2874
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2844
2875
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2876
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2845
2877
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2846
2878
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2847
2879
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -2853,7 +2885,9 @@ export const zoraCreator1155PremintExecutorImplAddress = {
|
|
|
2853
2885
|
420: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
2854
2886
|
999: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
2855
2887
|
8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
2888
|
+
42161: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
2856
2889
|
84531: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
2890
|
+
421614: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
2857
2891
|
7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
2858
2892
|
11155111: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
2859
2893
|
999999999: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
@@ -2866,7 +2900,9 @@ export const zoraCreator1155PremintExecutorImplAddress = {
|
|
|
2866
2900
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2867
2901
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2868
2902
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2903
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2869
2904
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2905
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2870
2906
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2871
2907
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
2872
2908
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -2885,11 +2921,11 @@ export const zoraCreator1155PremintExecutorImplConfig = {
|
|
|
2885
2921
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
2886
2922
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x3678862f04290E565cCA2EF163BAeb92Bb76790C)
|
|
2887
2923
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
2888
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3)
|
|
2889
2924
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
2890
2925
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
2891
|
-
* - [__View Contract on
|
|
2926
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
|
|
2892
2927
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
2928
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
|
|
2893
2929
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
2894
2930
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
|
|
2895
2931
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A)
|
|
@@ -3132,11 +3168,11 @@ export const zoraCreatorFixedPriceSaleStrategyABI = [
|
|
|
3132
3168
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3133
3169
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x3678862f04290E565cCA2EF163BAeb92Bb76790C)
|
|
3134
3170
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3135
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3)
|
|
3136
3171
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3137
3172
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3138
|
-
* - [__View Contract on
|
|
3173
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
|
|
3139
3174
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3175
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
|
|
3140
3176
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3141
3177
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
|
|
3142
3178
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A)
|
|
@@ -3146,11 +3182,11 @@ export const zoraCreatorFixedPriceSaleStrategyAddress = {
|
|
|
3146
3182
|
5: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
3147
3183
|
10: "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
|
|
3148
3184
|
420: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
3149
|
-
424: "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3",
|
|
3150
3185
|
999: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
3151
3186
|
8453: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
3152
|
-
|
|
3187
|
+
42161: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
3153
3188
|
84531: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
3189
|
+
421614: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
3154
3190
|
7777777: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
3155
3191
|
11155111: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
3156
3192
|
999999999: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A",
|
|
@@ -3161,11 +3197,11 @@ export const zoraCreatorFixedPriceSaleStrategyAddress = {
|
|
|
3161
3197
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3162
3198
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x3678862f04290E565cCA2EF163BAeb92Bb76790C)
|
|
3163
3199
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3164
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3)
|
|
3165
3200
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3166
3201
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3167
|
-
* - [__View Contract on
|
|
3202
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
|
|
3168
3203
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3204
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
|
|
3169
3205
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
|
|
3170
3206
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
|
|
3171
3207
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A)
|
|
@@ -3184,11 +3220,11 @@ export const zoraCreatorFixedPriceSaleStrategyConfig = {
|
|
|
3184
3220
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3185
3221
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8)
|
|
3186
3222
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3187
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x314E552b55DFbDfD4d76623E1D45E5056723998B)
|
|
3188
3223
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3189
3224
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3190
|
-
* - [__View Contract on
|
|
3225
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
|
|
3191
3226
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3227
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
|
|
3192
3228
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3193
3229
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
|
|
3194
3230
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x5e5fD4b758076BAD940db0284b711A67E8a3B88c)
|
|
@@ -3398,11 +3434,11 @@ export const zoraCreatorMerkleMinterStrategyABI = [
|
|
|
3398
3434
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3399
3435
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8)
|
|
3400
3436
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3401
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x314E552b55DFbDfD4d76623E1D45E5056723998B)
|
|
3402
3437
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3403
3438
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3404
|
-
* - [__View Contract on
|
|
3439
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
|
|
3405
3440
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3441
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
|
|
3406
3442
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3407
3443
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
|
|
3408
3444
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x5e5fD4b758076BAD940db0284b711A67E8a3B88c)
|
|
@@ -3412,11 +3448,11 @@ export const zoraCreatorMerkleMinterStrategyAddress = {
|
|
|
3412
3448
|
5: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
3413
3449
|
10: "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
|
|
3414
3450
|
420: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
3415
|
-
424: "0x314E552b55DFbDfD4d76623E1D45E5056723998B",
|
|
3416
3451
|
999: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
3417
3452
|
8453: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
3418
|
-
|
|
3453
|
+
42161: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
3419
3454
|
84531: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
3455
|
+
421614: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
3420
3456
|
7777777: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
3421
3457
|
11155111: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
3422
3458
|
999999999: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c",
|
|
@@ -3427,11 +3463,11 @@ export const zoraCreatorMerkleMinterStrategyAddress = {
|
|
|
3427
3463
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3428
3464
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8)
|
|
3429
3465
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3430
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x314E552b55DFbDfD4d76623E1D45E5056723998B)
|
|
3431
3466
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3432
3467
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3433
|
-
* - [__View Contract on
|
|
3468
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
|
|
3434
3469
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3470
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
|
|
3435
3471
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
|
|
3436
3472
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
|
|
3437
3473
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x5e5fD4b758076BAD940db0284b711A67E8a3B88c)
|
|
@@ -3450,11 +3486,11 @@ export const zoraCreatorMerkleMinterStrategyConfig = {
|
|
|
3450
3486
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3451
3487
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2)
|
|
3452
3488
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3453
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xC6899816663891D7493939d74d83cb7f2BBcBB16)
|
|
3454
3489
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3455
3490
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3456
|
-
* - [__View Contract on
|
|
3491
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
|
|
3457
3492
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3493
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
|
|
3458
3494
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3459
3495
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
|
|
3460
3496
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6)
|
|
@@ -3613,11 +3649,11 @@ export const zoraCreatorRedeemMinterFactoryABI = [
|
|
|
3613
3649
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3614
3650
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2)
|
|
3615
3651
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3616
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xC6899816663891D7493939d74d83cb7f2BBcBB16)
|
|
3617
3652
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3618
3653
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3619
|
-
* - [__View Contract on
|
|
3654
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
|
|
3620
3655
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3656
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
|
|
3621
3657
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3622
3658
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
|
|
3623
3659
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6)
|
|
@@ -3627,11 +3663,11 @@ export const zoraCreatorRedeemMinterFactoryAddress = {
|
|
|
3627
3663
|
5: "0x78964965cF77850224513a367f899435C5B69174",
|
|
3628
3664
|
10: "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
|
|
3629
3665
|
420: "0x78964965cF77850224513a367f899435C5B69174",
|
|
3630
|
-
424: "0xC6899816663891D7493939d74d83cb7f2BBcBB16",
|
|
3631
3666
|
999: "0x78964965cF77850224513a367f899435C5B69174",
|
|
3632
3667
|
8453: "0x78964965cF77850224513a367f899435C5B69174",
|
|
3633
|
-
|
|
3668
|
+
42161: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
3634
3669
|
84531: "0x78964965cF77850224513a367f899435C5B69174",
|
|
3670
|
+
421614: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
3635
3671
|
7777777: "0x78964965cF77850224513a367f899435C5B69174",
|
|
3636
3672
|
11155111: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
3637
3673
|
999999999: "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6",
|
|
@@ -3642,11 +3678,11 @@ export const zoraCreatorRedeemMinterFactoryAddress = {
|
|
|
3642
3678
|
* - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3643
3679
|
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2)
|
|
3644
3680
|
* - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3645
|
-
* - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xC6899816663891D7493939d74d83cb7f2BBcBB16)
|
|
3646
3681
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3647
3682
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3648
|
-
* - [__View Contract on
|
|
3683
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
|
|
3649
3684
|
* - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3685
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
|
|
3650
3686
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
|
|
3651
3687
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
|
|
3652
3688
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6)
|
package/tsconfig.json
CHANGED
package/tsup.config.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { defineConfig } from
|
|
1
|
+
import { defineConfig } from "tsup";
|
|
2
2
|
|
|
3
3
|
export default defineConfig({
|
|
4
|
-
entry: [
|
|
4
|
+
entry: ["src/index.ts"],
|
|
5
5
|
sourcemap: true,
|
|
6
6
|
clean: true,
|
|
7
7
|
dts: false,
|
|
8
|
-
format: [
|
|
9
|
-
onSuccess:
|
|
10
|
-
})
|
|
8
|
+
format: ["cjs", "esm"],
|
|
9
|
+
onSuccess: "tsc --emitDeclarationOnly --declaration --declarationMap",
|
|
10
|
+
});
|
package/wagmi.config.ts
CHANGED
|
@@ -14,10 +14,10 @@ type Addresses = {
|
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
-
const
|
|
17
|
+
const get1155Addresses = () => {
|
|
18
18
|
const addresses: Addresses = {};
|
|
19
19
|
|
|
20
|
-
const addressesFiles = readdirSync("
|
|
20
|
+
const addressesFiles = readdirSync("../1155-deployments/addresses");
|
|
21
21
|
|
|
22
22
|
const addAddress = ({
|
|
23
23
|
contractName,
|
|
@@ -43,7 +43,7 @@ const getAddresses = () => {
|
|
|
43
43
|
|
|
44
44
|
for (const addressesFile of addressesFiles) {
|
|
45
45
|
const jsonAddress = JSON.parse(
|
|
46
|
-
readFileSync(
|
|
46
|
+
readFileSync(`../1155-deployments/addresses/${addressesFile}`, "utf-8"),
|
|
47
47
|
) as {
|
|
48
48
|
FIXED_PRICE_SALE_STRATEGY: Address;
|
|
49
49
|
MERKLE_MINT_SALE_STRATEGY: Address;
|
|
@@ -91,14 +91,36 @@ const getAddresses = () => {
|
|
|
91
91
|
return addresses;
|
|
92
92
|
};
|
|
93
93
|
|
|
94
|
+
const getMintsAddresses = () => {
|
|
95
|
+
const addressesFiles = readdirSync("../mints-deployments/addresses");
|
|
96
|
+
|
|
97
|
+
const chainIds = addressesFiles.map((x) => Number(x.split(".")[0]));
|
|
98
|
+
|
|
99
|
+
const mintsProxyConfig = JSON.parse(
|
|
100
|
+
readFileSync(
|
|
101
|
+
"../mints-deployments/deterministicConfig/mintsProxy/params.json",
|
|
102
|
+
"utf-8",
|
|
103
|
+
),
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
const mintsProxyAddress =
|
|
107
|
+
mintsProxyConfig.expectedTransparentProxyAddress as Address;
|
|
108
|
+
|
|
109
|
+
return Object.fromEntries(
|
|
110
|
+
chainIds.map((chainId) => [chainId, mintsProxyAddress]),
|
|
111
|
+
);
|
|
112
|
+
};
|
|
113
|
+
|
|
94
114
|
export default defineConfig({
|
|
95
|
-
out: "
|
|
115
|
+
out: "src/wagmiGenerated.ts",
|
|
96
116
|
contracts: [
|
|
97
|
-
...Object.entries(
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
117
|
+
...Object.entries(get1155Addresses()).map(
|
|
118
|
+
([contractName, addressConfig]) => ({
|
|
119
|
+
abi: addressConfig.abi,
|
|
120
|
+
address: addressConfig.address,
|
|
121
|
+
name: contractName,
|
|
122
|
+
}),
|
|
123
|
+
),
|
|
102
124
|
{
|
|
103
125
|
abi: abis.zoraCreator1155ImplABI,
|
|
104
126
|
name: "ZoraCreator1155Impl",
|
package/.env.anvil
DELETED
package/addresses/1.json
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"CONTRACT_1155_IMPL": "0x32006e298C19818CD5e8000E26439691f0ac2128",
|
|
3
|
-
"CONTRACT_1155_IMPL_VERSION": "2.7.0",
|
|
4
|
-
"FACTORY_IMPL": "0xD662FB0fB00261C039441EF49Dbab154d7c533bD",
|
|
5
|
-
"FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
6
|
-
"FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
7
|
-
"MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
8
|
-
"PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
9
|
-
"PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
10
|
-
"REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
|
|
11
|
-
"UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
12
|
-
"timestamp": 1704400466
|
|
13
|
-
}
|
package/addresses/10.json
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"CONTRACT_1155_IMPL": "0xECfbCf718E17B6e76A675dDB936a9249C69DD2aA",
|
|
3
|
-
"CONTRACT_1155_IMPL_VERSION": "2.7.0",
|
|
4
|
-
"FACTORY_IMPL": "0x32006e298C19818CD5e8000E26439691f0ac2128",
|
|
5
|
-
"FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
6
|
-
"FIXED_PRICE_SALE_STRATEGY": "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
|
|
7
|
-
"MERKLE_MINT_SALE_STRATEGY": "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
|
|
8
|
-
"PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
9
|
-
"PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
10
|
-
"REDEEM_MINTER_FACTORY": "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
|
|
11
|
-
"UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
12
|
-
"timestamp": 1704396387
|
|
13
|
-
}
|
package/addresses/11155111.json
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"CONTRACT_1155_IMPL": "0x437A762fc2a8f898Aa7a2575Be21c41753DC4797",
|
|
3
|
-
"CONTRACT_1155_IMPL_VERSION": "2.7.0",
|
|
4
|
-
"FACTORY_IMPL": "0xF82286760a953D2Bad7D6F2F0da458Ac20f955D3",
|
|
5
|
-
"FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
6
|
-
"FIXED_PRICE_SALE_STRATEGY": "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
7
|
-
"MERKLE_MINT_SALE_STRATEGY": "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
8
|
-
"PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
9
|
-
"PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
10
|
-
"REDEEM_MINTER_FACTORY": "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
11
|
-
"UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
12
|
-
"timestamp": 1704336497
|
|
13
|
-
}
|
package/addresses/420.json
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"CONTRACT_1155_IMPL": "0xC7598f8eAA1455f5b2B3f206A9af55B2BA248e3E",
|
|
3
|
-
"CONTRACT_1155_IMPL_VERSION": "2.7.0",
|
|
4
|
-
"FACTORY_IMPL": "0xCf0B4Acab081169D12b729c3Bd1c6E7bbAB820Da",
|
|
5
|
-
"FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
6
|
-
"FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
7
|
-
"MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
8
|
-
"PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
9
|
-
"PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
10
|
-
"REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
|
|
11
|
-
"UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
12
|
-
"timestamp": 1704496741
|
|
13
|
-
}
|
package/addresses/424.json
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"CONTRACT_1155_IMPL": "0xa718BD919eeA529ac75EEf2cf33363AF211f09f4",
|
|
3
|
-
"CONTRACT_1155_IMPL_VERSION": "1.3.2",
|
|
4
|
-
"FACTORY_IMPL": "0xD66B730aA3B4921356Fc56907D22e65CA9F4ff58",
|
|
5
|
-
"FACTORY_PROXY": "0x6E742921602a5195f6439c8b8b827E85902E1B2D",
|
|
6
|
-
"FIXED_PRICE_SALE_STRATEGY": "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3",
|
|
7
|
-
"MERKLE_MINT_SALE_STRATEGY": "0x314E552b55DFbDfD4d76623E1D45E5056723998B",
|
|
8
|
-
"REDEEM_MINTER_FACTORY": "0xC6899816663891D7493939d74d83cb7f2BBcBB16",
|
|
9
|
-
"timestamp": 1689917328,
|
|
10
|
-
"commit": "ed1d937"
|
|
11
|
-
}
|
package/addresses/5.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"CONTRACT_1155_IMPL": "0xa5f8577cCA2eE9d5577E76385dB1Af51517c76bb",
|
|
3
|
-
"CONTRACT_1155_IMPL_VERSION": "2.7.0",
|
|
4
|
-
"FACTORY_IMPL": "0xd74AB2EE2117C647f19de0D44FE56c56953Bd05d",
|
|
5
|
-
"FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
6
|
-
"FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
7
|
-
"MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
8
|
-
"PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
9
|
-
"PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
10
|
-
"REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
|
|
11
|
-
"UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
12
|
-
"timestamp": 1703007708,
|
|
13
|
-
"commit": "bdf6682"
|
|
14
|
-
}
|
package/addresses/58008.json
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"CONTRACT_1155_IMPL": "0xa718BD919eeA529ac75EEf2cf33363AF211f09f4",
|
|
3
|
-
"CONTRACT_1155_IMPL_VERSION": "1.3.2",
|
|
4
|
-
"FACTORY_IMPL": "0xD66B730aA3B4921356Fc56907D22e65CA9F4ff58",
|
|
5
|
-
"FACTORY_PROXY": "0x6E742921602a5195f6439c8b8b827E85902E1B2D",
|
|
6
|
-
"FIXED_PRICE_SALE_STRATEGY": "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3",
|
|
7
|
-
"MERKLE_MINT_SALE_STRATEGY": "0x314E552b55DFbDfD4d76623E1D45E5056723998B",
|
|
8
|
-
"REDEEM_MINTER_FACTORY": "0xC6899816663891D7493939d74d83cb7f2BBcBB16",
|
|
9
|
-
"timestamp": 1689888263,
|
|
10
|
-
"commit": "cc3b55a"
|
|
11
|
-
}
|