@zoralabs/protocol-deployments 0.1.10 → 0.1.12
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 +24 -11
- package/CHANGELOG.md +12 -0
- package/dist/_esm-ZN7ZVJVO.js +4027 -0
- package/dist/_esm-ZN7ZVJVO.js.map +1 -0
- package/dist/ccip-IGMHQQR7.js +15 -0
- package/dist/ccip-IGMHQQR7.js.map +1 -0
- package/dist/chunk-2FDPSBOH.js +118 -0
- package/dist/chunk-2FDPSBOH.js.map +1 -0
- package/dist/chunk-3EJPJMEH.js +44 -0
- package/dist/chunk-3EJPJMEH.js.map +1 -0
- package/dist/chunk-KIPP2F4J.js +3217 -0
- package/dist/chunk-KIPP2F4J.js.map +1 -0
- package/dist/generated/1155.d.ts +2 -2
- package/dist/generated/mints.d.ts +46 -11
- package/dist/generated/mints.d.ts.map +1 -1
- package/dist/generated/wagmi.d.ts +1627 -556
- package/dist/generated/wagmi.d.ts.map +1 -1
- package/dist/index.cjs +2474 -325
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +761 -205
- package/dist/index.js.map +1 -1
- package/dist/secp256k1-R7PEGLZR.js +2222 -0
- package/dist/secp256k1-R7PEGLZR.js.map +1 -0
- package/dist/typedData.d.ts +18 -2
- package/dist/typedData.d.ts.map +1 -1
- package/dist/types.d.ts +41 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +2 -2
- package/src/generated/1155.ts +25 -25
- package/src/generated/mints.ts +48 -30
- package/src/generated/wagmi.ts +696 -145
- package/src/index.ts +1 -0
- package/src/typedData.ts +127 -11
- package/src/types.ts +109 -0
package/src/generated/wagmi.ts
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
12
12
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
13
13
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
14
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/
|
|
14
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
|
|
15
15
|
*/
|
|
16
16
|
export const erc20MinterABI = [
|
|
17
17
|
{
|
|
@@ -21,6 +21,48 @@ export const erc20MinterABI = [
|
|
|
21
21
|
name: 'acceptOwnership',
|
|
22
22
|
outputs: [],
|
|
23
23
|
},
|
|
24
|
+
{
|
|
25
|
+
stateMutability: 'view',
|
|
26
|
+
type: 'function',
|
|
27
|
+
inputs: [
|
|
28
|
+
{
|
|
29
|
+
name: 'config',
|
|
30
|
+
internalType: 'struct IERC20Minter.PremintSalesConfig',
|
|
31
|
+
type: 'tuple',
|
|
32
|
+
components: [
|
|
33
|
+
{ name: 'duration', internalType: 'uint64', type: 'uint64' },
|
|
34
|
+
{
|
|
35
|
+
name: 'maxTokensPerAddress',
|
|
36
|
+
internalType: 'uint64',
|
|
37
|
+
type: 'uint64',
|
|
38
|
+
},
|
|
39
|
+
{ name: 'pricePerToken', internalType: 'uint256', type: 'uint256' },
|
|
40
|
+
{ name: 'fundsRecipient', internalType: 'address', type: 'address' },
|
|
41
|
+
{ name: 'currency', internalType: 'address', type: 'address' },
|
|
42
|
+
],
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
name: 'buildSalesConfigForPremint',
|
|
46
|
+
outputs: [
|
|
47
|
+
{
|
|
48
|
+
name: '',
|
|
49
|
+
internalType: 'struct IERC20Minter.SalesConfig',
|
|
50
|
+
type: 'tuple',
|
|
51
|
+
components: [
|
|
52
|
+
{ name: 'saleStart', internalType: 'uint64', type: 'uint64' },
|
|
53
|
+
{ name: 'saleEnd', internalType: 'uint64', type: 'uint64' },
|
|
54
|
+
{
|
|
55
|
+
name: 'maxTokensPerAddress',
|
|
56
|
+
internalType: 'uint64',
|
|
57
|
+
type: 'uint64',
|
|
58
|
+
},
|
|
59
|
+
{ name: 'pricePerToken', internalType: 'uint256', type: 'uint256' },
|
|
60
|
+
{ name: 'fundsRecipient', internalType: 'address', type: 'address' },
|
|
61
|
+
{ name: 'currency', internalType: 'address', type: 'address' },
|
|
62
|
+
],
|
|
63
|
+
},
|
|
64
|
+
],
|
|
65
|
+
},
|
|
24
66
|
{
|
|
25
67
|
stateMutability: 'nonpayable',
|
|
26
68
|
type: 'function',
|
|
@@ -174,7 +216,7 @@ export const erc20MinterABI = [
|
|
|
174
216
|
internalType: 'address',
|
|
175
217
|
type: 'address',
|
|
176
218
|
},
|
|
177
|
-
{ name: '
|
|
219
|
+
{ name: '_owner', internalType: 'address', type: 'address' },
|
|
178
220
|
{ name: '_rewardPct', internalType: 'uint256', type: 'uint256' },
|
|
179
221
|
{ name: '_ethReward', internalType: 'uint256', type: 'uint256' },
|
|
180
222
|
],
|
|
@@ -340,6 +382,20 @@ export const erc20MinterABI = [
|
|
|
340
382
|
name: 'setERC20MinterConfig',
|
|
341
383
|
outputs: [],
|
|
342
384
|
},
|
|
385
|
+
{
|
|
386
|
+
stateMutability: 'nonpayable',
|
|
387
|
+
type: 'function',
|
|
388
|
+
inputs: [
|
|
389
|
+
{ name: 'tokenId', internalType: 'uint256', type: 'uint256' },
|
|
390
|
+
{
|
|
391
|
+
name: 'encodedPremintSalesConfig',
|
|
392
|
+
internalType: 'bytes',
|
|
393
|
+
type: 'bytes',
|
|
394
|
+
},
|
|
395
|
+
],
|
|
396
|
+
name: 'setPremintSale',
|
|
397
|
+
outputs: [],
|
|
398
|
+
},
|
|
343
399
|
{
|
|
344
400
|
stateMutability: 'nonpayable',
|
|
345
401
|
type: 'function',
|
|
@@ -639,6 +695,14 @@ export const erc20MinterABI = [
|
|
|
639
695
|
name: 'INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING',
|
|
640
696
|
},
|
|
641
697
|
{ type: 'error', inputs: [], name: 'InvalidCurrency' },
|
|
698
|
+
{
|
|
699
|
+
type: 'error',
|
|
700
|
+
inputs: [
|
|
701
|
+
{ name: 'expectedValue', internalType: 'uint256', type: 'uint256' },
|
|
702
|
+
{ name: 'actualValue', internalType: 'uint256', type: 'uint256' },
|
|
703
|
+
],
|
|
704
|
+
name: 'InvalidETHValue',
|
|
705
|
+
},
|
|
642
706
|
{ type: 'error', inputs: [], name: 'InvalidValue' },
|
|
643
707
|
{ type: 'error', inputs: [], name: 'ONLY_OWNER' },
|
|
644
708
|
{ type: 'error', inputs: [], name: 'ONLY_PENDING_OWNER' },
|
|
@@ -668,7 +732,7 @@ export const erc20MinterABI = [
|
|
|
668
732
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
669
733
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
670
734
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
671
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/
|
|
735
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
|
|
672
736
|
*/
|
|
673
737
|
export const erc20MinterAddress = {
|
|
674
738
|
1: '0x777777E8850d8D6d98De2B5f64fae401F96eFF31',
|
|
@@ -680,7 +744,7 @@ export const erc20MinterAddress = {
|
|
|
680
744
|
421614: '0x777777E8850d8D6d98De2B5f64fae401F96eFF31',
|
|
681
745
|
7777777: '0x777777E8850d8D6d98De2B5f64fae401F96eFF31',
|
|
682
746
|
11155111: '0x777777E8850d8D6d98De2B5f64fae401F96eFF31',
|
|
683
|
-
999999999: '
|
|
747
|
+
999999999: '0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2',
|
|
684
748
|
} as const
|
|
685
749
|
|
|
686
750
|
/**
|
|
@@ -692,13 +756,117 @@ export const erc20MinterAddress = {
|
|
|
692
756
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
693
757
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
694
758
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
695
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/
|
|
759
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
|
|
696
760
|
*/
|
|
697
761
|
export const erc20MinterConfig = {
|
|
698
762
|
address: erc20MinterAddress,
|
|
699
763
|
abi: erc20MinterABI,
|
|
700
764
|
} as const
|
|
701
765
|
|
|
766
|
+
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
767
|
+
// IPremintDefinitions
|
|
768
|
+
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
769
|
+
|
|
770
|
+
export const iPremintDefinitionsABI = [
|
|
771
|
+
{
|
|
772
|
+
stateMutability: 'nonpayable',
|
|
773
|
+
type: 'function',
|
|
774
|
+
inputs: [
|
|
775
|
+
{
|
|
776
|
+
name: '',
|
|
777
|
+
internalType: 'struct TokenCreationConfig',
|
|
778
|
+
type: 'tuple',
|
|
779
|
+
components: [
|
|
780
|
+
{ name: 'tokenURI', internalType: 'string', type: 'string' },
|
|
781
|
+
{ name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
|
|
782
|
+
{
|
|
783
|
+
name: 'maxTokensPerAddress',
|
|
784
|
+
internalType: 'uint64',
|
|
785
|
+
type: 'uint64',
|
|
786
|
+
},
|
|
787
|
+
{ name: 'pricePerToken', internalType: 'uint96', type: 'uint96' },
|
|
788
|
+
{ name: 'mintStart', internalType: 'uint64', type: 'uint64' },
|
|
789
|
+
{ name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
|
|
790
|
+
{
|
|
791
|
+
name: 'royaltyMintSchedule',
|
|
792
|
+
internalType: 'uint32',
|
|
793
|
+
type: 'uint32',
|
|
794
|
+
},
|
|
795
|
+
{ name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
|
|
796
|
+
{
|
|
797
|
+
name: 'royaltyRecipient',
|
|
798
|
+
internalType: 'address',
|
|
799
|
+
type: 'address',
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
name: 'fixedPriceMinter',
|
|
803
|
+
internalType: 'address',
|
|
804
|
+
type: 'address',
|
|
805
|
+
},
|
|
806
|
+
],
|
|
807
|
+
},
|
|
808
|
+
],
|
|
809
|
+
name: 'tokenConfigV1Definition',
|
|
810
|
+
outputs: [],
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
stateMutability: 'nonpayable',
|
|
814
|
+
type: 'function',
|
|
815
|
+
inputs: [
|
|
816
|
+
{
|
|
817
|
+
name: '',
|
|
818
|
+
internalType: 'struct TokenCreationConfigV2',
|
|
819
|
+
type: 'tuple',
|
|
820
|
+
components: [
|
|
821
|
+
{ name: 'tokenURI', internalType: 'string', type: 'string' },
|
|
822
|
+
{ name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
|
|
823
|
+
{
|
|
824
|
+
name: 'maxTokensPerAddress',
|
|
825
|
+
internalType: 'uint64',
|
|
826
|
+
type: 'uint64',
|
|
827
|
+
},
|
|
828
|
+
{ name: 'pricePerToken', internalType: 'uint96', type: 'uint96' },
|
|
829
|
+
{ name: 'mintStart', internalType: 'uint64', type: 'uint64' },
|
|
830
|
+
{ name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
|
|
831
|
+
{ name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
|
|
832
|
+
{ name: 'payoutRecipient', internalType: 'address', type: 'address' },
|
|
833
|
+
{
|
|
834
|
+
name: 'fixedPriceMinter',
|
|
835
|
+
internalType: 'address',
|
|
836
|
+
type: 'address',
|
|
837
|
+
},
|
|
838
|
+
{ name: 'createReferral', internalType: 'address', type: 'address' },
|
|
839
|
+
],
|
|
840
|
+
},
|
|
841
|
+
],
|
|
842
|
+
name: 'tokenConfigV2Definition',
|
|
843
|
+
outputs: [],
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
stateMutability: 'nonpayable',
|
|
847
|
+
type: 'function',
|
|
848
|
+
inputs: [
|
|
849
|
+
{
|
|
850
|
+
name: '',
|
|
851
|
+
internalType: 'struct TokenCreationConfigV3',
|
|
852
|
+
type: 'tuple',
|
|
853
|
+
components: [
|
|
854
|
+
{ name: 'tokenURI', internalType: 'string', type: 'string' },
|
|
855
|
+
{ name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
|
|
856
|
+
{ name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
|
|
857
|
+
{ name: 'payoutRecipient', internalType: 'address', type: 'address' },
|
|
858
|
+
{ name: 'createReferral', internalType: 'address', type: 'address' },
|
|
859
|
+
{ name: 'mintStart', internalType: 'uint64', type: 'uint64' },
|
|
860
|
+
{ name: 'minter', internalType: 'address', type: 'address' },
|
|
861
|
+
{ name: 'premintSalesConfig', internalType: 'bytes', type: 'bytes' },
|
|
862
|
+
],
|
|
863
|
+
},
|
|
864
|
+
],
|
|
865
|
+
name: 'tokenConfigV3Definition',
|
|
866
|
+
outputs: [],
|
|
867
|
+
},
|
|
868
|
+
] as const
|
|
869
|
+
|
|
702
870
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
703
871
|
// IUnwrapAndForwardAction
|
|
704
872
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
@@ -722,6 +890,12 @@ export const iUnwrapAndForwardActionABI = [
|
|
|
722
890
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
723
891
|
|
|
724
892
|
/**
|
|
893
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
894
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
895
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
896
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
897
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
898
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
725
899
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
726
900
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
727
901
|
*/
|
|
@@ -814,15 +988,34 @@ export const mintsEthUnwrapperAndCallerABI = [
|
|
|
814
988
|
] as const
|
|
815
989
|
|
|
816
990
|
/**
|
|
991
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
992
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
993
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
994
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
995
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
996
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
817
997
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
818
998
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
819
999
|
*/
|
|
820
1000
|
export const mintsEthUnwrapperAndCallerAddress = {
|
|
1001
|
+
1: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
1002
|
+
10: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
1003
|
+
8453: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
1004
|
+
42161: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
1005
|
+
81457: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
1006
|
+
84532: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
1007
|
+
421614: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
821
1008
|
7777777: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
822
1009
|
999999999: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
823
1010
|
} as const
|
|
824
1011
|
|
|
825
1012
|
/**
|
|
1013
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1014
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1015
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1016
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1017
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1018
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
826
1019
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
827
1020
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
828
1021
|
*/
|
|
@@ -1137,9 +1330,294 @@ export const protocolRewardsAddress = {
|
|
|
1137
1330
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B)
|
|
1138
1331
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B)
|
|
1139
1332
|
*/
|
|
1140
|
-
export const protocolRewardsConfig = {
|
|
1141
|
-
address: protocolRewardsAddress,
|
|
1142
|
-
abi: protocolRewardsABI,
|
|
1333
|
+
export const protocolRewardsConfig = {
|
|
1334
|
+
address: protocolRewardsAddress,
|
|
1335
|
+
abi: protocolRewardsABI,
|
|
1336
|
+
} as const
|
|
1337
|
+
|
|
1338
|
+
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
1339
|
+
// UpgradeGate
|
|
1340
|
+
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
1341
|
+
|
|
1342
|
+
/**
|
|
1343
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1344
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1345
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1346
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1347
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1348
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1349
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1350
|
+
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1351
|
+
*/
|
|
1352
|
+
export const upgradeGateABI = [
|
|
1353
|
+
{ stateMutability: 'nonpayable', type: 'constructor', inputs: [] },
|
|
1354
|
+
{
|
|
1355
|
+
stateMutability: 'nonpayable',
|
|
1356
|
+
type: 'function',
|
|
1357
|
+
inputs: [],
|
|
1358
|
+
name: 'acceptOwnership',
|
|
1359
|
+
outputs: [],
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
stateMutability: 'nonpayable',
|
|
1363
|
+
type: 'function',
|
|
1364
|
+
inputs: [],
|
|
1365
|
+
name: 'cancelOwnershipTransfer',
|
|
1366
|
+
outputs: [],
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
stateMutability: 'pure',
|
|
1370
|
+
type: 'function',
|
|
1371
|
+
inputs: [],
|
|
1372
|
+
name: 'contractName',
|
|
1373
|
+
outputs: [{ name: '', internalType: 'string', type: 'string' }],
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
stateMutability: 'pure',
|
|
1377
|
+
type: 'function',
|
|
1378
|
+
inputs: [],
|
|
1379
|
+
name: 'contractURI',
|
|
1380
|
+
outputs: [{ name: '', internalType: 'string', type: 'string' }],
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
stateMutability: 'nonpayable',
|
|
1384
|
+
type: 'function',
|
|
1385
|
+
inputs: [
|
|
1386
|
+
{ name: '_initialOwner', internalType: 'address', type: 'address' },
|
|
1387
|
+
],
|
|
1388
|
+
name: 'initialize',
|
|
1389
|
+
outputs: [],
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
stateMutability: 'view',
|
|
1393
|
+
type: 'function',
|
|
1394
|
+
inputs: [
|
|
1395
|
+
{ name: '', internalType: 'address', type: 'address' },
|
|
1396
|
+
{ name: '', internalType: 'address', type: 'address' },
|
|
1397
|
+
],
|
|
1398
|
+
name: 'isAllowedUpgrade',
|
|
1399
|
+
outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
stateMutability: 'view',
|
|
1403
|
+
type: 'function',
|
|
1404
|
+
inputs: [
|
|
1405
|
+
{ name: 'baseImpl', internalType: 'address', type: 'address' },
|
|
1406
|
+
{ name: 'upgradeImpl', internalType: 'address', type: 'address' },
|
|
1407
|
+
],
|
|
1408
|
+
name: 'isRegisteredUpgradePath',
|
|
1409
|
+
outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
stateMutability: 'view',
|
|
1413
|
+
type: 'function',
|
|
1414
|
+
inputs: [],
|
|
1415
|
+
name: 'owner',
|
|
1416
|
+
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
stateMutability: 'view',
|
|
1420
|
+
type: 'function',
|
|
1421
|
+
inputs: [],
|
|
1422
|
+
name: 'pendingOwner',
|
|
1423
|
+
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
stateMutability: 'nonpayable',
|
|
1427
|
+
type: 'function',
|
|
1428
|
+
inputs: [
|
|
1429
|
+
{ name: 'baseImpls', internalType: 'address[]', type: 'address[]' },
|
|
1430
|
+
{ name: 'upgradeImpl', internalType: 'address', type: 'address' },
|
|
1431
|
+
],
|
|
1432
|
+
name: 'registerUpgradePath',
|
|
1433
|
+
outputs: [],
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
stateMutability: 'nonpayable',
|
|
1437
|
+
type: 'function',
|
|
1438
|
+
inputs: [
|
|
1439
|
+
{ name: 'baseImpl', internalType: 'address', type: 'address' },
|
|
1440
|
+
{ name: 'upgradeImpl', internalType: 'address', type: 'address' },
|
|
1441
|
+
],
|
|
1442
|
+
name: 'removeUpgradePath',
|
|
1443
|
+
outputs: [],
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
stateMutability: 'nonpayable',
|
|
1447
|
+
type: 'function',
|
|
1448
|
+
inputs: [],
|
|
1449
|
+
name: 'resignOwnership',
|
|
1450
|
+
outputs: [],
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
stateMutability: 'nonpayable',
|
|
1454
|
+
type: 'function',
|
|
1455
|
+
inputs: [{ name: '_newOwner', internalType: 'address', type: 'address' }],
|
|
1456
|
+
name: 'safeTransferOwnership',
|
|
1457
|
+
outputs: [],
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
stateMutability: 'nonpayable',
|
|
1461
|
+
type: 'function',
|
|
1462
|
+
inputs: [{ name: '_newOwner', internalType: 'address', type: 'address' }],
|
|
1463
|
+
name: 'transferOwnership',
|
|
1464
|
+
outputs: [],
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
type: 'event',
|
|
1468
|
+
anonymous: false,
|
|
1469
|
+
inputs: [
|
|
1470
|
+
{ name: 'version', internalType: 'uint8', type: 'uint8', indexed: false },
|
|
1471
|
+
],
|
|
1472
|
+
name: 'Initialized',
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
type: 'event',
|
|
1476
|
+
anonymous: false,
|
|
1477
|
+
inputs: [
|
|
1478
|
+
{
|
|
1479
|
+
name: 'owner',
|
|
1480
|
+
internalType: 'address',
|
|
1481
|
+
type: 'address',
|
|
1482
|
+
indexed: true,
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
name: 'canceledOwner',
|
|
1486
|
+
internalType: 'address',
|
|
1487
|
+
type: 'address',
|
|
1488
|
+
indexed: true,
|
|
1489
|
+
},
|
|
1490
|
+
],
|
|
1491
|
+
name: 'OwnerCanceled',
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
type: 'event',
|
|
1495
|
+
anonymous: false,
|
|
1496
|
+
inputs: [
|
|
1497
|
+
{
|
|
1498
|
+
name: 'owner',
|
|
1499
|
+
internalType: 'address',
|
|
1500
|
+
type: 'address',
|
|
1501
|
+
indexed: true,
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
name: 'pendingOwner',
|
|
1505
|
+
internalType: 'address',
|
|
1506
|
+
type: 'address',
|
|
1507
|
+
indexed: true,
|
|
1508
|
+
},
|
|
1509
|
+
],
|
|
1510
|
+
name: 'OwnerPending',
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
type: 'event',
|
|
1514
|
+
anonymous: false,
|
|
1515
|
+
inputs: [
|
|
1516
|
+
{
|
|
1517
|
+
name: 'prevOwner',
|
|
1518
|
+
internalType: 'address',
|
|
1519
|
+
type: 'address',
|
|
1520
|
+
indexed: true,
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
name: 'newOwner',
|
|
1524
|
+
internalType: 'address',
|
|
1525
|
+
type: 'address',
|
|
1526
|
+
indexed: true,
|
|
1527
|
+
},
|
|
1528
|
+
],
|
|
1529
|
+
name: 'OwnerUpdated',
|
|
1530
|
+
},
|
|
1531
|
+
{ type: 'event', anonymous: false, inputs: [], name: 'UpgradeGateSetup' },
|
|
1532
|
+
{
|
|
1533
|
+
type: 'event',
|
|
1534
|
+
anonymous: false,
|
|
1535
|
+
inputs: [
|
|
1536
|
+
{
|
|
1537
|
+
name: 'baseImpl',
|
|
1538
|
+
internalType: 'address',
|
|
1539
|
+
type: 'address',
|
|
1540
|
+
indexed: true,
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
name: 'upgradeImpl',
|
|
1544
|
+
internalType: 'address',
|
|
1545
|
+
type: 'address',
|
|
1546
|
+
indexed: true,
|
|
1547
|
+
},
|
|
1548
|
+
],
|
|
1549
|
+
name: 'UpgradeRegistered',
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
type: 'event',
|
|
1553
|
+
anonymous: false,
|
|
1554
|
+
inputs: [
|
|
1555
|
+
{
|
|
1556
|
+
name: 'baseImpl',
|
|
1557
|
+
internalType: 'address',
|
|
1558
|
+
type: 'address',
|
|
1559
|
+
indexed: true,
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
name: 'upgradeImpl',
|
|
1563
|
+
internalType: 'address',
|
|
1564
|
+
type: 'address',
|
|
1565
|
+
indexed: true,
|
|
1566
|
+
},
|
|
1567
|
+
],
|
|
1568
|
+
name: 'UpgradeRemoved',
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
type: 'error',
|
|
1572
|
+
inputs: [],
|
|
1573
|
+
name: 'INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED',
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
type: 'error',
|
|
1577
|
+
inputs: [],
|
|
1578
|
+
name: 'INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING',
|
|
1579
|
+
},
|
|
1580
|
+
{ type: 'error', inputs: [], name: 'ONLY_OWNER' },
|
|
1581
|
+
{ type: 'error', inputs: [], name: 'ONLY_PENDING_OWNER' },
|
|
1582
|
+
{ type: 'error', inputs: [], name: 'OWNER_CANNOT_BE_ZERO_ADDRESS' },
|
|
1583
|
+
] as const
|
|
1584
|
+
|
|
1585
|
+
/**
|
|
1586
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1587
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1588
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1589
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1590
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1591
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1592
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1593
|
+
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1594
|
+
*/
|
|
1595
|
+
export const upgradeGateAddress = {
|
|
1596
|
+
1: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1597
|
+
10: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1598
|
+
8453: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1599
|
+
42161: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1600
|
+
81457: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1601
|
+
84532: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1602
|
+
421614: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1603
|
+
7777777: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1604
|
+
11155111: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1605
|
+
168587773: '0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900',
|
|
1606
|
+
} as const
|
|
1607
|
+
|
|
1608
|
+
/**
|
|
1609
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1610
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1611
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1612
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1613
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1614
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1615
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1616
|
+
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
1617
|
+
*/
|
|
1618
|
+
export const upgradeGateConfig = {
|
|
1619
|
+
address: upgradeGateAddress,
|
|
1620
|
+
abi: upgradeGateABI,
|
|
1143
1621
|
} as const
|
|
1144
1622
|
|
|
1145
1623
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
@@ -1152,7 +1630,7 @@ export const protocolRewardsConfig = {
|
|
|
1152
1630
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1153
1631
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1154
1632
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1155
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
1633
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1156
1634
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1157
1635
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1158
1636
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -1313,6 +1791,19 @@ export const zoraCreator1155FactoryImplABI = [
|
|
|
1313
1791
|
name: 'deterministicContractAddress',
|
|
1314
1792
|
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
1315
1793
|
},
|
|
1794
|
+
{
|
|
1795
|
+
stateMutability: 'view',
|
|
1796
|
+
type: 'function',
|
|
1797
|
+
inputs: [
|
|
1798
|
+
{ name: 'msgSender', internalType: 'address', type: 'address' },
|
|
1799
|
+
{ name: 'newContractURI', internalType: 'string', type: 'string' },
|
|
1800
|
+
{ name: 'name', internalType: 'string', type: 'string' },
|
|
1801
|
+
{ name: 'contractAdmin', internalType: 'address', type: 'address' },
|
|
1802
|
+
{ name: 'setupActions', internalType: 'bytes[]', type: 'bytes[]' },
|
|
1803
|
+
],
|
|
1804
|
+
name: 'deterministicContractAddressWithSetupActions',
|
|
1805
|
+
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
1806
|
+
},
|
|
1316
1807
|
{
|
|
1317
1808
|
stateMutability: 'view',
|
|
1318
1809
|
type: 'function',
|
|
@@ -1638,7 +2129,7 @@ export const zoraCreator1155FactoryImplABI = [
|
|
|
1638
2129
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1639
2130
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1640
2131
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1641
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
2132
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1642
2133
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1643
2134
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1644
2135
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -1651,7 +2142,7 @@ export const zoraCreator1155FactoryImplAddress = {
|
|
|
1651
2142
|
8453: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1652
2143
|
42161: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1653
2144
|
81457: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1654
|
-
84532: '
|
|
2145
|
+
84532: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1655
2146
|
421614: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1656
2147
|
7777777: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1657
2148
|
11155111: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
@@ -1665,7 +2156,7 @@ export const zoraCreator1155FactoryImplAddress = {
|
|
|
1665
2156
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1666
2157
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1667
2158
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1668
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
2159
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1669
2160
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1670
2161
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1671
2162
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -3078,6 +3569,7 @@ export const zoraCreator1155ImplABI = [
|
|
|
3078
3569
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3079
3570
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3080
3571
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3572
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3081
3573
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3082
3574
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3083
3575
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -3116,6 +3608,13 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3116
3608
|
name: 'contractName',
|
|
3117
3609
|
outputs: [{ name: '', internalType: 'string', type: 'string' }],
|
|
3118
3610
|
},
|
|
3611
|
+
{
|
|
3612
|
+
stateMutability: 'pure',
|
|
3613
|
+
type: 'function',
|
|
3614
|
+
inputs: [],
|
|
3615
|
+
name: 'contractVersion',
|
|
3616
|
+
outputs: [{ name: '', internalType: 'string', type: 'string' }],
|
|
3617
|
+
},
|
|
3119
3618
|
{
|
|
3120
3619
|
stateMutability: 'view',
|
|
3121
3620
|
type: 'function',
|
|
@@ -3134,6 +3633,29 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3134
3633
|
name: 'getContractAddress',
|
|
3135
3634
|
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
3136
3635
|
},
|
|
3636
|
+
{
|
|
3637
|
+
stateMutability: 'view',
|
|
3638
|
+
type: 'function',
|
|
3639
|
+
inputs: [
|
|
3640
|
+
{
|
|
3641
|
+
name: 'contractConfig',
|
|
3642
|
+
internalType: 'struct ContractWithAdditionalAdminsCreationConfig',
|
|
3643
|
+
type: 'tuple',
|
|
3644
|
+
components: [
|
|
3645
|
+
{ name: 'contractAdmin', internalType: 'address', type: 'address' },
|
|
3646
|
+
{ name: 'contractURI', internalType: 'string', type: 'string' },
|
|
3647
|
+
{ name: 'contractName', internalType: 'string', type: 'string' },
|
|
3648
|
+
{
|
|
3649
|
+
name: 'additionalAdmins',
|
|
3650
|
+
internalType: 'address[]',
|
|
3651
|
+
type: 'address[]',
|
|
3652
|
+
},
|
|
3653
|
+
],
|
|
3654
|
+
},
|
|
3655
|
+
],
|
|
3656
|
+
name: 'getContractWithAdditionalAdminsAddress',
|
|
3657
|
+
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
3658
|
+
},
|
|
3137
3659
|
{
|
|
3138
3660
|
stateMutability: 'view',
|
|
3139
3661
|
type: 'function',
|
|
@@ -3165,6 +3687,26 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3165
3687
|
name: 'isAuthorizedToCreatePremint',
|
|
3166
3688
|
outputs: [{ name: 'isAuthorized', internalType: 'bool', type: 'bool' }],
|
|
3167
3689
|
},
|
|
3690
|
+
{
|
|
3691
|
+
stateMutability: 'view',
|
|
3692
|
+
type: 'function',
|
|
3693
|
+
inputs: [
|
|
3694
|
+
{ name: 'signer', internalType: 'address', type: 'address' },
|
|
3695
|
+
{
|
|
3696
|
+
name: 'premintContractConfigContractAdmin',
|
|
3697
|
+
internalType: 'address',
|
|
3698
|
+
type: 'address',
|
|
3699
|
+
},
|
|
3700
|
+
{ name: 'contractAddress', internalType: 'address', type: 'address' },
|
|
3701
|
+
{
|
|
3702
|
+
name: 'additionalAdmins',
|
|
3703
|
+
internalType: 'address[]',
|
|
3704
|
+
type: 'address[]',
|
|
3705
|
+
},
|
|
3706
|
+
],
|
|
3707
|
+
name: 'isAuthorizedToCreatePremintWithAdditionalAdmins',
|
|
3708
|
+
outputs: [{ name: 'isAuthorized', internalType: 'bool', type: 'bool' }],
|
|
3709
|
+
},
|
|
3168
3710
|
{
|
|
3169
3711
|
stateMutability: 'view',
|
|
3170
3712
|
type: 'function',
|
|
@@ -3255,61 +3797,39 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3255
3797
|
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
3256
3798
|
},
|
|
3257
3799
|
{
|
|
3258
|
-
stateMutability: '
|
|
3800
|
+
stateMutability: 'payable',
|
|
3259
3801
|
type: 'function',
|
|
3260
3802
|
inputs: [
|
|
3261
3803
|
{
|
|
3262
3804
|
name: 'contractConfig',
|
|
3263
|
-
internalType: 'struct
|
|
3805
|
+
internalType: 'struct ContractWithAdditionalAdminsCreationConfig',
|
|
3264
3806
|
type: 'tuple',
|
|
3265
3807
|
components: [
|
|
3266
3808
|
{ name: 'contractAdmin', internalType: 'address', type: 'address' },
|
|
3267
3809
|
{ name: 'contractURI', internalType: 'string', type: 'string' },
|
|
3268
3810
|
{ name: 'contractName', internalType: 'string', type: 'string' },
|
|
3811
|
+
{
|
|
3812
|
+
name: 'additionalAdmins',
|
|
3813
|
+
internalType: 'address[]',
|
|
3814
|
+
type: 'address[]',
|
|
3815
|
+
},
|
|
3269
3816
|
],
|
|
3270
3817
|
},
|
|
3818
|
+
{ name: 'premintCollection', internalType: 'address', type: 'address' },
|
|
3271
3819
|
{
|
|
3272
|
-
name: '
|
|
3273
|
-
internalType: 'struct
|
|
3820
|
+
name: 'encodedPremintConfig',
|
|
3821
|
+
internalType: 'struct PremintConfigEncoded',
|
|
3274
3822
|
type: 'tuple',
|
|
3275
3823
|
components: [
|
|
3276
|
-
{
|
|
3277
|
-
name: 'tokenConfig',
|
|
3278
|
-
internalType: 'struct Erc20TokenCreationConfigV1',
|
|
3279
|
-
type: 'tuple',
|
|
3280
|
-
components: [
|
|
3281
|
-
{ name: 'tokenURI', internalType: 'string', type: 'string' },
|
|
3282
|
-
{ name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
|
|
3283
|
-
{ name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
|
|
3284
|
-
{
|
|
3285
|
-
name: 'payoutRecipient',
|
|
3286
|
-
internalType: 'address',
|
|
3287
|
-
type: 'address',
|
|
3288
|
-
},
|
|
3289
|
-
{
|
|
3290
|
-
name: 'createReferral',
|
|
3291
|
-
internalType: 'address',
|
|
3292
|
-
type: 'address',
|
|
3293
|
-
},
|
|
3294
|
-
{ name: 'erc20Minter', internalType: 'address', type: 'address' },
|
|
3295
|
-
{ name: 'mintStart', internalType: 'uint64', type: 'uint64' },
|
|
3296
|
-
{ name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
|
|
3297
|
-
{
|
|
3298
|
-
name: 'maxTokensPerAddress',
|
|
3299
|
-
internalType: 'uint64',
|
|
3300
|
-
type: 'uint64',
|
|
3301
|
-
},
|
|
3302
|
-
{ name: 'currency', internalType: 'address', type: 'address' },
|
|
3303
|
-
{
|
|
3304
|
-
name: 'pricePerToken',
|
|
3305
|
-
internalType: 'uint256',
|
|
3306
|
-
type: 'uint256',
|
|
3307
|
-
},
|
|
3308
|
-
],
|
|
3309
|
-
},
|
|
3310
3824
|
{ name: 'uid', internalType: 'uint32', type: 'uint32' },
|
|
3311
3825
|
{ name: 'version', internalType: 'uint32', type: 'uint32' },
|
|
3312
3826
|
{ name: 'deleted', internalType: 'bool', type: 'bool' },
|
|
3827
|
+
{ name: 'tokenConfig', internalType: 'bytes', type: 'bytes' },
|
|
3828
|
+
{
|
|
3829
|
+
name: 'premintConfigVersion',
|
|
3830
|
+
internalType: 'bytes32',
|
|
3831
|
+
type: 'bytes32',
|
|
3832
|
+
},
|
|
3313
3833
|
],
|
|
3314
3834
|
},
|
|
3315
3835
|
{ name: 'signature', internalType: 'bytes', type: 'bytes' },
|
|
@@ -3331,10 +3851,10 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3331
3851
|
{ name: 'firstMinter', internalType: 'address', type: 'address' },
|
|
3332
3852
|
{ name: 'signerContract', internalType: 'address', type: 'address' },
|
|
3333
3853
|
],
|
|
3334
|
-
name: '
|
|
3854
|
+
name: 'premint',
|
|
3335
3855
|
outputs: [
|
|
3336
3856
|
{
|
|
3337
|
-
name: '
|
|
3857
|
+
name: 'premintResult',
|
|
3338
3858
|
internalType: 'struct PremintResult',
|
|
3339
3859
|
type: 'tuple',
|
|
3340
3860
|
components: [
|
|
@@ -3435,7 +3955,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3435
3955
|
name: 'premintV1',
|
|
3436
3956
|
outputs: [
|
|
3437
3957
|
{
|
|
3438
|
-
name: '
|
|
3958
|
+
name: '',
|
|
3439
3959
|
internalType: 'struct PremintResult',
|
|
3440
3960
|
type: 'tuple',
|
|
3441
3961
|
components: [
|
|
@@ -3523,97 +4043,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3523
4043
|
name: 'premintV2',
|
|
3524
4044
|
outputs: [
|
|
3525
4045
|
{
|
|
3526
|
-
name: '
|
|
3527
|
-
internalType: 'struct PremintResult',
|
|
3528
|
-
type: 'tuple',
|
|
3529
|
-
components: [
|
|
3530
|
-
{ name: 'contractAddress', internalType: 'address', type: 'address' },
|
|
3531
|
-
{ name: 'tokenId', internalType: 'uint256', type: 'uint256' },
|
|
3532
|
-
{ name: 'createdNewContract', internalType: 'bool', type: 'bool' },
|
|
3533
|
-
],
|
|
3534
|
-
},
|
|
3535
|
-
],
|
|
3536
|
-
},
|
|
3537
|
-
{
|
|
3538
|
-
stateMutability: 'payable',
|
|
3539
|
-
type: 'function',
|
|
3540
|
-
inputs: [
|
|
3541
|
-
{
|
|
3542
|
-
name: 'contractConfig',
|
|
3543
|
-
internalType: 'struct ContractCreationConfig',
|
|
3544
|
-
type: 'tuple',
|
|
3545
|
-
components: [
|
|
3546
|
-
{ name: 'contractAdmin', internalType: 'address', type: 'address' },
|
|
3547
|
-
{ name: 'contractURI', internalType: 'string', type: 'string' },
|
|
3548
|
-
{ name: 'contractName', internalType: 'string', type: 'string' },
|
|
3549
|
-
],
|
|
3550
|
-
},
|
|
3551
|
-
{
|
|
3552
|
-
name: 'premintConfig',
|
|
3553
|
-
internalType: 'struct PremintConfigV2',
|
|
3554
|
-
type: 'tuple',
|
|
3555
|
-
components: [
|
|
3556
|
-
{
|
|
3557
|
-
name: 'tokenConfig',
|
|
3558
|
-
internalType: 'struct TokenCreationConfigV2',
|
|
3559
|
-
type: 'tuple',
|
|
3560
|
-
components: [
|
|
3561
|
-
{ name: 'tokenURI', internalType: 'string', type: 'string' },
|
|
3562
|
-
{ name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
|
|
3563
|
-
{
|
|
3564
|
-
name: 'maxTokensPerAddress',
|
|
3565
|
-
internalType: 'uint64',
|
|
3566
|
-
type: 'uint64',
|
|
3567
|
-
},
|
|
3568
|
-
{ name: 'pricePerToken', internalType: 'uint96', type: 'uint96' },
|
|
3569
|
-
{ name: 'mintStart', internalType: 'uint64', type: 'uint64' },
|
|
3570
|
-
{ name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
|
|
3571
|
-
{ name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
|
|
3572
|
-
{
|
|
3573
|
-
name: 'payoutRecipient',
|
|
3574
|
-
internalType: 'address',
|
|
3575
|
-
type: 'address',
|
|
3576
|
-
},
|
|
3577
|
-
{
|
|
3578
|
-
name: 'fixedPriceMinter',
|
|
3579
|
-
internalType: 'address',
|
|
3580
|
-
type: 'address',
|
|
3581
|
-
},
|
|
3582
|
-
{
|
|
3583
|
-
name: 'createReferral',
|
|
3584
|
-
internalType: 'address',
|
|
3585
|
-
type: 'address',
|
|
3586
|
-
},
|
|
3587
|
-
],
|
|
3588
|
-
},
|
|
3589
|
-
{ name: 'uid', internalType: 'uint32', type: 'uint32' },
|
|
3590
|
-
{ name: 'version', internalType: 'uint32', type: 'uint32' },
|
|
3591
|
-
{ name: 'deleted', internalType: 'bool', type: 'bool' },
|
|
3592
|
-
],
|
|
3593
|
-
},
|
|
3594
|
-
{ name: 'signature', internalType: 'bytes', type: 'bytes' },
|
|
3595
|
-
{ name: 'quantityToMint', internalType: 'uint256', type: 'uint256' },
|
|
3596
|
-
{
|
|
3597
|
-
name: 'mintArguments',
|
|
3598
|
-
internalType: 'struct MintArguments',
|
|
3599
|
-
type: 'tuple',
|
|
3600
|
-
components: [
|
|
3601
|
-
{ name: 'mintRecipient', internalType: 'address', type: 'address' },
|
|
3602
|
-
{ name: 'mintComment', internalType: 'string', type: 'string' },
|
|
3603
|
-
{
|
|
3604
|
-
name: 'mintRewardsRecipients',
|
|
3605
|
-
internalType: 'address[]',
|
|
3606
|
-
type: 'address[]',
|
|
3607
|
-
},
|
|
3608
|
-
],
|
|
3609
|
-
},
|
|
3610
|
-
{ name: 'firstMinter', internalType: 'address', type: 'address' },
|
|
3611
|
-
{ name: 'signerContract', internalType: 'address', type: 'address' },
|
|
3612
|
-
],
|
|
3613
|
-
name: 'premintV2WithSignerContract',
|
|
3614
|
-
outputs: [
|
|
3615
|
-
{
|
|
3616
|
-
name: 'result',
|
|
4046
|
+
name: '',
|
|
3617
4047
|
internalType: 'struct PremintResult',
|
|
3618
4048
|
type: 'tuple',
|
|
3619
4049
|
components: [
|
|
@@ -4111,6 +4541,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
4111
4541
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4112
4542
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4113
4543
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4544
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4114
4545
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4115
4546
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4116
4547
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -4123,6 +4554,7 @@ export const zoraCreator1155PremintExecutorImplAddress = {
|
|
|
4123
4554
|
8453: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4124
4555
|
42161: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4125
4556
|
81457: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4557
|
+
84532: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4126
4558
|
421614: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4127
4559
|
7777777: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4128
4560
|
11155111: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
@@ -4136,6 +4568,7 @@ export const zoraCreator1155PremintExecutorImplAddress = {
|
|
|
4136
4568
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4137
4569
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4138
4570
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4571
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4139
4572
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4140
4573
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4141
4574
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -4913,6 +5346,12 @@ export const zoraCreatorRedeemMinterFactoryConfig = {
|
|
|
4913
5346
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
4914
5347
|
|
|
4915
5348
|
/**
|
|
5349
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5350
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5351
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5352
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5353
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5354
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
4916
5355
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
4917
5356
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
4918
5357
|
*/
|
|
@@ -5680,15 +6119,34 @@ export const zoraMints1155ABI = [
|
|
|
5680
6119
|
] as const
|
|
5681
6120
|
|
|
5682
6121
|
/**
|
|
6122
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6123
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6124
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6125
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6126
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6127
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5683
6128
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5684
6129
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5685
6130
|
*/
|
|
5686
6131
|
export const zoraMints1155Address = {
|
|
6132
|
+
1: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
6133
|
+
10: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
6134
|
+
8453: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
6135
|
+
42161: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
6136
|
+
81457: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
6137
|
+
84532: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
6138
|
+
421614: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
5687
6139
|
7777777: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
5688
6140
|
999999999: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
5689
6141
|
} as const
|
|
5690
6142
|
|
|
5691
6143
|
/**
|
|
6144
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6145
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6146
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6147
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6148
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
6149
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5692
6150
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5693
6151
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5694
6152
|
*/
|
|
@@ -5702,6 +6160,12 @@ export const zoraMints1155Config = {
|
|
|
5702
6160
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
5703
6161
|
|
|
5704
6162
|
/**
|
|
6163
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6164
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6165
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6166
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6167
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6168
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
5705
6169
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
5706
6170
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
5707
6171
|
*/
|
|
@@ -5712,7 +6176,7 @@ export const zoraMintsManagerImplABI = [
|
|
|
5712
6176
|
inputs: [
|
|
5713
6177
|
{
|
|
5714
6178
|
name: '_premintExecutor',
|
|
5715
|
-
internalType: 'contract
|
|
6179
|
+
internalType: 'contract IZoraCreator1155PremintExecutorAllVersions',
|
|
5716
6180
|
type: 'address',
|
|
5717
6181
|
},
|
|
5718
6182
|
],
|
|
@@ -5790,6 +6254,74 @@ export const zoraMintsManagerImplABI = [
|
|
|
5790
6254
|
name: 'collect',
|
|
5791
6255
|
outputs: [],
|
|
5792
6256
|
},
|
|
6257
|
+
{
|
|
6258
|
+
stateMutability: 'payable',
|
|
6259
|
+
type: 'function',
|
|
6260
|
+
inputs: [
|
|
6261
|
+
{
|
|
6262
|
+
name: 'contractConfig',
|
|
6263
|
+
internalType: 'struct ContractWithAdditionalAdminsCreationConfig',
|
|
6264
|
+
type: 'tuple',
|
|
6265
|
+
components: [
|
|
6266
|
+
{ name: 'contractAdmin', internalType: 'address', type: 'address' },
|
|
6267
|
+
{ name: 'contractURI', internalType: 'string', type: 'string' },
|
|
6268
|
+
{ name: 'contractName', internalType: 'string', type: 'string' },
|
|
6269
|
+
{
|
|
6270
|
+
name: 'additionalAdmins',
|
|
6271
|
+
internalType: 'address[]',
|
|
6272
|
+
type: 'address[]',
|
|
6273
|
+
},
|
|
6274
|
+
],
|
|
6275
|
+
},
|
|
6276
|
+
{ name: 'tokenContract', internalType: 'address', type: 'address' },
|
|
6277
|
+
{
|
|
6278
|
+
name: 'premintConfig',
|
|
6279
|
+
internalType: 'struct PremintConfigEncoded',
|
|
6280
|
+
type: 'tuple',
|
|
6281
|
+
components: [
|
|
6282
|
+
{ name: 'uid', internalType: 'uint32', type: 'uint32' },
|
|
6283
|
+
{ name: 'version', internalType: 'uint32', type: 'uint32' },
|
|
6284
|
+
{ name: 'deleted', internalType: 'bool', type: 'bool' },
|
|
6285
|
+
{ name: 'tokenConfig', internalType: 'bytes', type: 'bytes' },
|
|
6286
|
+
{
|
|
6287
|
+
name: 'premintConfigVersion',
|
|
6288
|
+
internalType: 'bytes32',
|
|
6289
|
+
type: 'bytes32',
|
|
6290
|
+
},
|
|
6291
|
+
],
|
|
6292
|
+
},
|
|
6293
|
+
{ name: 'signature', internalType: 'bytes', type: 'bytes' },
|
|
6294
|
+
{
|
|
6295
|
+
name: 'mintArguments',
|
|
6296
|
+
internalType: 'struct MintArguments',
|
|
6297
|
+
type: 'tuple',
|
|
6298
|
+
components: [
|
|
6299
|
+
{ name: 'mintRecipient', internalType: 'address', type: 'address' },
|
|
6300
|
+
{ name: 'mintComment', internalType: 'string', type: 'string' },
|
|
6301
|
+
{
|
|
6302
|
+
name: 'mintRewardsRecipients',
|
|
6303
|
+
internalType: 'address[]',
|
|
6304
|
+
type: 'address[]',
|
|
6305
|
+
},
|
|
6306
|
+
],
|
|
6307
|
+
},
|
|
6308
|
+
{ name: 'firstMinter', internalType: 'address', type: 'address' },
|
|
6309
|
+
{ name: 'signerContract', internalType: 'address', type: 'address' },
|
|
6310
|
+
],
|
|
6311
|
+
name: 'collectPremint',
|
|
6312
|
+
outputs: [
|
|
6313
|
+
{
|
|
6314
|
+
name: 'result',
|
|
6315
|
+
internalType: 'struct PremintResult',
|
|
6316
|
+
type: 'tuple',
|
|
6317
|
+
components: [
|
|
6318
|
+
{ name: 'contractAddress', internalType: 'address', type: 'address' },
|
|
6319
|
+
{ name: 'tokenId', internalType: 'uint256', type: 'uint256' },
|
|
6320
|
+
{ name: 'createdNewContract', internalType: 'bool', type: 'bool' },
|
|
6321
|
+
],
|
|
6322
|
+
},
|
|
6323
|
+
],
|
|
6324
|
+
},
|
|
5793
6325
|
{
|
|
5794
6326
|
stateMutability: 'payable',
|
|
5795
6327
|
type: 'function',
|
|
@@ -6526,15 +7058,34 @@ export const zoraMintsManagerImplABI = [
|
|
|
6526
7058
|
] as const
|
|
6527
7059
|
|
|
6528
7060
|
/**
|
|
7061
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7062
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7063
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7064
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7065
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7066
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6529
7067
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6530
7068
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6531
7069
|
*/
|
|
6532
7070
|
export const zoraMintsManagerImplAddress = {
|
|
7071
|
+
1: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
7072
|
+
10: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
7073
|
+
8453: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
7074
|
+
42161: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
7075
|
+
81457: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
7076
|
+
84532: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
7077
|
+
421614: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
6533
7078
|
7777777: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
6534
7079
|
999999999: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
6535
7080
|
} as const
|
|
6536
7081
|
|
|
6537
7082
|
/**
|
|
7083
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7084
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7085
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7086
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7087
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
7088
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6538
7089
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6539
7090
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6540
7091
|
*/
|