@zoralabs/protocol-deployments 0.1.10 → 0.1.11
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 +6 -0
- package/dist/_esm-UK4OVIHX.js +3537 -0
- package/dist/_esm-UK4OVIHX.js.map +1 -0
- package/dist/ccip-XSYMJLYD.js +15 -0
- package/dist/ccip-XSYMJLYD.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-ANM5XPUU.js +3209 -0
- package/dist/chunk-ANM5XPUU.js.map +1 -0
- package/dist/generated/1155.d.ts +1 -1
- package/dist/generated/mints.d.ts +8 -0
- package/dist/generated/mints.d.ts.map +1 -1
- package/dist/generated/wagmi.d.ts +893 -501
- package/dist/generated/wagmi.d.ts.map +1 -1
- package/dist/index.cjs +2021 -158
- 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 +442 -161
- 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 +39 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/generated/1155.ts +14 -14
- package/src/generated/mints.ts +9 -2
- package/src/generated/wagmi.ts +344 -142
- package/src/index.ts +1 -0
- package/src/typedData.ts +127 -11
- package/src/types.ts +107 -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,7 @@ export const iUnwrapAndForwardActionABI = [
|
|
|
722
890
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
723
891
|
|
|
724
892
|
/**
|
|
893
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
725
894
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
726
895
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
727
896
|
*/
|
|
@@ -814,15 +983,18 @@ export const mintsEthUnwrapperAndCallerABI = [
|
|
|
814
983
|
] as const
|
|
815
984
|
|
|
816
985
|
/**
|
|
986
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
817
987
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
818
988
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
819
989
|
*/
|
|
820
990
|
export const mintsEthUnwrapperAndCallerAddress = {
|
|
991
|
+
84532: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
821
992
|
7777777: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
822
993
|
999999999: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
|
|
823
994
|
} as const
|
|
824
995
|
|
|
825
996
|
/**
|
|
997
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
826
998
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
827
999
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
828
1000
|
*/
|
|
@@ -1152,7 +1324,7 @@ export const protocolRewardsConfig = {
|
|
|
1152
1324
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1153
1325
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1154
1326
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1155
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
1327
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1156
1328
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1157
1329
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1158
1330
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -1313,6 +1485,19 @@ export const zoraCreator1155FactoryImplABI = [
|
|
|
1313
1485
|
name: 'deterministicContractAddress',
|
|
1314
1486
|
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
1315
1487
|
},
|
|
1488
|
+
{
|
|
1489
|
+
stateMutability: 'view',
|
|
1490
|
+
type: 'function',
|
|
1491
|
+
inputs: [
|
|
1492
|
+
{ name: 'msgSender', internalType: 'address', type: 'address' },
|
|
1493
|
+
{ name: 'newContractURI', internalType: 'string', type: 'string' },
|
|
1494
|
+
{ name: 'name', internalType: 'string', type: 'string' },
|
|
1495
|
+
{ name: 'contractAdmin', internalType: 'address', type: 'address' },
|
|
1496
|
+
{ name: 'setupActions', internalType: 'bytes[]', type: 'bytes[]' },
|
|
1497
|
+
],
|
|
1498
|
+
name: 'deterministicContractAddressWithSetupActions',
|
|
1499
|
+
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
1500
|
+
},
|
|
1316
1501
|
{
|
|
1317
1502
|
stateMutability: 'view',
|
|
1318
1503
|
type: 'function',
|
|
@@ -1638,7 +1823,7 @@ export const zoraCreator1155FactoryImplABI = [
|
|
|
1638
1823
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1639
1824
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1640
1825
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1641
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
1826
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1642
1827
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1643
1828
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1644
1829
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -1651,7 +1836,7 @@ export const zoraCreator1155FactoryImplAddress = {
|
|
|
1651
1836
|
8453: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1652
1837
|
42161: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1653
1838
|
81457: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1654
|
-
84532: '
|
|
1839
|
+
84532: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1655
1840
|
421614: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1656
1841
|
7777777: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
1657
1842
|
11155111: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
|
|
@@ -1665,7 +1850,7 @@ export const zoraCreator1155FactoryImplAddress = {
|
|
|
1665
1850
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1666
1851
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1667
1852
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1668
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
1853
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1669
1854
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1670
1855
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
1671
1856
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -3078,6 +3263,7 @@ export const zoraCreator1155ImplABI = [
|
|
|
3078
3263
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3079
3264
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3080
3265
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3266
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3081
3267
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3082
3268
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
3083
3269
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -3116,6 +3302,13 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3116
3302
|
name: 'contractName',
|
|
3117
3303
|
outputs: [{ name: '', internalType: 'string', type: 'string' }],
|
|
3118
3304
|
},
|
|
3305
|
+
{
|
|
3306
|
+
stateMutability: 'pure',
|
|
3307
|
+
type: 'function',
|
|
3308
|
+
inputs: [],
|
|
3309
|
+
name: 'contractVersion',
|
|
3310
|
+
outputs: [{ name: '', internalType: 'string', type: 'string' }],
|
|
3311
|
+
},
|
|
3119
3312
|
{
|
|
3120
3313
|
stateMutability: 'view',
|
|
3121
3314
|
type: 'function',
|
|
@@ -3134,6 +3327,29 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3134
3327
|
name: 'getContractAddress',
|
|
3135
3328
|
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
3136
3329
|
},
|
|
3330
|
+
{
|
|
3331
|
+
stateMutability: 'view',
|
|
3332
|
+
type: 'function',
|
|
3333
|
+
inputs: [
|
|
3334
|
+
{
|
|
3335
|
+
name: 'contractConfig',
|
|
3336
|
+
internalType: 'struct ContractWithAdditionalAdminsCreationConfig',
|
|
3337
|
+
type: 'tuple',
|
|
3338
|
+
components: [
|
|
3339
|
+
{ name: 'contractAdmin', internalType: 'address', type: 'address' },
|
|
3340
|
+
{ name: 'contractURI', internalType: 'string', type: 'string' },
|
|
3341
|
+
{ name: 'contractName', internalType: 'string', type: 'string' },
|
|
3342
|
+
{
|
|
3343
|
+
name: 'additionalAdmins',
|
|
3344
|
+
internalType: 'address[]',
|
|
3345
|
+
type: 'address[]',
|
|
3346
|
+
},
|
|
3347
|
+
],
|
|
3348
|
+
},
|
|
3349
|
+
],
|
|
3350
|
+
name: 'getContractWithAdditionalAdminsAddress',
|
|
3351
|
+
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
3352
|
+
},
|
|
3137
3353
|
{
|
|
3138
3354
|
stateMutability: 'view',
|
|
3139
3355
|
type: 'function',
|
|
@@ -3165,6 +3381,26 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3165
3381
|
name: 'isAuthorizedToCreatePremint',
|
|
3166
3382
|
outputs: [{ name: 'isAuthorized', internalType: 'bool', type: 'bool' }],
|
|
3167
3383
|
},
|
|
3384
|
+
{
|
|
3385
|
+
stateMutability: 'view',
|
|
3386
|
+
type: 'function',
|
|
3387
|
+
inputs: [
|
|
3388
|
+
{ name: 'signer', internalType: 'address', type: 'address' },
|
|
3389
|
+
{
|
|
3390
|
+
name: 'premintContractConfigContractAdmin',
|
|
3391
|
+
internalType: 'address',
|
|
3392
|
+
type: 'address',
|
|
3393
|
+
},
|
|
3394
|
+
{ name: 'contractAddress', internalType: 'address', type: 'address' },
|
|
3395
|
+
{
|
|
3396
|
+
name: 'additionalAdmins',
|
|
3397
|
+
internalType: 'address[]',
|
|
3398
|
+
type: 'address[]',
|
|
3399
|
+
},
|
|
3400
|
+
],
|
|
3401
|
+
name: 'isAuthorizedToCreatePremintWithAdditionalAdmins',
|
|
3402
|
+
outputs: [{ name: 'isAuthorized', internalType: 'bool', type: 'bool' }],
|
|
3403
|
+
},
|
|
3168
3404
|
{
|
|
3169
3405
|
stateMutability: 'view',
|
|
3170
3406
|
type: 'function',
|
|
@@ -3255,61 +3491,39 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3255
3491
|
outputs: [{ name: '', internalType: 'address', type: 'address' }],
|
|
3256
3492
|
},
|
|
3257
3493
|
{
|
|
3258
|
-
stateMutability: '
|
|
3494
|
+
stateMutability: 'payable',
|
|
3259
3495
|
type: 'function',
|
|
3260
3496
|
inputs: [
|
|
3261
3497
|
{
|
|
3262
3498
|
name: 'contractConfig',
|
|
3263
|
-
internalType: 'struct
|
|
3499
|
+
internalType: 'struct ContractWithAdditionalAdminsCreationConfig',
|
|
3264
3500
|
type: 'tuple',
|
|
3265
3501
|
components: [
|
|
3266
3502
|
{ name: 'contractAdmin', internalType: 'address', type: 'address' },
|
|
3267
3503
|
{ name: 'contractURI', internalType: 'string', type: 'string' },
|
|
3268
3504
|
{ name: 'contractName', internalType: 'string', type: 'string' },
|
|
3505
|
+
{
|
|
3506
|
+
name: 'additionalAdmins',
|
|
3507
|
+
internalType: 'address[]',
|
|
3508
|
+
type: 'address[]',
|
|
3509
|
+
},
|
|
3269
3510
|
],
|
|
3270
3511
|
},
|
|
3512
|
+
{ name: 'premintCollection', internalType: 'address', type: 'address' },
|
|
3271
3513
|
{
|
|
3272
|
-
name: '
|
|
3273
|
-
internalType: 'struct
|
|
3514
|
+
name: 'encodedPremintConfig',
|
|
3515
|
+
internalType: 'struct PremintConfigEncoded',
|
|
3274
3516
|
type: 'tuple',
|
|
3275
3517
|
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
3518
|
{ name: 'uid', internalType: 'uint32', type: 'uint32' },
|
|
3311
3519
|
{ name: 'version', internalType: 'uint32', type: 'uint32' },
|
|
3312
3520
|
{ name: 'deleted', internalType: 'bool', type: 'bool' },
|
|
3521
|
+
{ name: 'tokenConfig', internalType: 'bytes', type: 'bytes' },
|
|
3522
|
+
{
|
|
3523
|
+
name: 'premintConfigVersion',
|
|
3524
|
+
internalType: 'bytes32',
|
|
3525
|
+
type: 'bytes32',
|
|
3526
|
+
},
|
|
3313
3527
|
],
|
|
3314
3528
|
},
|
|
3315
3529
|
{ name: 'signature', internalType: 'bytes', type: 'bytes' },
|
|
@@ -3331,10 +3545,10 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3331
3545
|
{ name: 'firstMinter', internalType: 'address', type: 'address' },
|
|
3332
3546
|
{ name: 'signerContract', internalType: 'address', type: 'address' },
|
|
3333
3547
|
],
|
|
3334
|
-
name: '
|
|
3548
|
+
name: 'premint',
|
|
3335
3549
|
outputs: [
|
|
3336
3550
|
{
|
|
3337
|
-
name: '
|
|
3551
|
+
name: 'premintResult',
|
|
3338
3552
|
internalType: 'struct PremintResult',
|
|
3339
3553
|
type: 'tuple',
|
|
3340
3554
|
components: [
|
|
@@ -3435,7 +3649,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3435
3649
|
name: 'premintV1',
|
|
3436
3650
|
outputs: [
|
|
3437
3651
|
{
|
|
3438
|
-
name: '
|
|
3652
|
+
name: '',
|
|
3439
3653
|
internalType: 'struct PremintResult',
|
|
3440
3654
|
type: 'tuple',
|
|
3441
3655
|
components: [
|
|
@@ -3523,97 +3737,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
3523
3737
|
name: 'premintV2',
|
|
3524
3738
|
outputs: [
|
|
3525
3739
|
{
|
|
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',
|
|
3740
|
+
name: '',
|
|
3617
3741
|
internalType: 'struct PremintResult',
|
|
3618
3742
|
type: 'tuple',
|
|
3619
3743
|
components: [
|
|
@@ -4111,6 +4235,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
|
|
|
4111
4235
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4112
4236
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4113
4237
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4238
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4114
4239
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4115
4240
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4116
4241
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -4123,6 +4248,7 @@ export const zoraCreator1155PremintExecutorImplAddress = {
|
|
|
4123
4248
|
8453: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4124
4249
|
42161: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4125
4250
|
81457: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4251
|
+
84532: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4126
4252
|
421614: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4127
4253
|
7777777: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
4128
4254
|
11155111: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
|
|
@@ -4136,6 +4262,7 @@ export const zoraCreator1155PremintExecutorImplAddress = {
|
|
|
4136
4262
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4137
4263
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4138
4264
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4265
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4139
4266
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4140
4267
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
4141
4268
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -4913,6 +5040,7 @@ export const zoraCreatorRedeemMinterFactoryConfig = {
|
|
|
4913
5040
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
4914
5041
|
|
|
4915
5042
|
/**
|
|
5043
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
4916
5044
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
4917
5045
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
4918
5046
|
*/
|
|
@@ -5680,15 +5808,18 @@ export const zoraMints1155ABI = [
|
|
|
5680
5808
|
] as const
|
|
5681
5809
|
|
|
5682
5810
|
/**
|
|
5811
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5683
5812
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5684
5813
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5685
5814
|
*/
|
|
5686
5815
|
export const zoraMints1155Address = {
|
|
5816
|
+
84532: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
5687
5817
|
7777777: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
5688
5818
|
999999999: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
|
|
5689
5819
|
} as const
|
|
5690
5820
|
|
|
5691
5821
|
/**
|
|
5822
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5692
5823
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5693
5824
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
5694
5825
|
*/
|
|
@@ -5702,6 +5833,7 @@ export const zoraMints1155Config = {
|
|
|
5702
5833
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
5703
5834
|
|
|
5704
5835
|
/**
|
|
5836
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
5705
5837
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
5706
5838
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
5707
5839
|
*/
|
|
@@ -5712,7 +5844,7 @@ export const zoraMintsManagerImplABI = [
|
|
|
5712
5844
|
inputs: [
|
|
5713
5845
|
{
|
|
5714
5846
|
name: '_premintExecutor',
|
|
5715
|
-
internalType: 'contract
|
|
5847
|
+
internalType: 'contract IZoraCreator1155PremintExecutorAllVersions',
|
|
5716
5848
|
type: 'address',
|
|
5717
5849
|
},
|
|
5718
5850
|
],
|
|
@@ -5790,6 +5922,73 @@ export const zoraMintsManagerImplABI = [
|
|
|
5790
5922
|
name: 'collect',
|
|
5791
5923
|
outputs: [],
|
|
5792
5924
|
},
|
|
5925
|
+
{
|
|
5926
|
+
stateMutability: 'payable',
|
|
5927
|
+
type: 'function',
|
|
5928
|
+
inputs: [
|
|
5929
|
+
{
|
|
5930
|
+
name: 'contractConfig',
|
|
5931
|
+
internalType: 'struct ContractWithAdditionalAdminsCreationConfig',
|
|
5932
|
+
type: 'tuple',
|
|
5933
|
+
components: [
|
|
5934
|
+
{ name: 'contractAdmin', internalType: 'address', type: 'address' },
|
|
5935
|
+
{ name: 'contractURI', internalType: 'string', type: 'string' },
|
|
5936
|
+
{ name: 'contractName', internalType: 'string', type: 'string' },
|
|
5937
|
+
{
|
|
5938
|
+
name: 'additionalAdmins',
|
|
5939
|
+
internalType: 'address[]',
|
|
5940
|
+
type: 'address[]',
|
|
5941
|
+
},
|
|
5942
|
+
],
|
|
5943
|
+
},
|
|
5944
|
+
{ name: 'tokenContract', internalType: 'address', type: 'address' },
|
|
5945
|
+
{
|
|
5946
|
+
name: 'premintConfig',
|
|
5947
|
+
internalType: 'struct PremintConfigEncoded',
|
|
5948
|
+
type: 'tuple',
|
|
5949
|
+
components: [
|
|
5950
|
+
{ name: 'uid', internalType: 'uint32', type: 'uint32' },
|
|
5951
|
+
{ name: 'version', internalType: 'uint32', type: 'uint32' },
|
|
5952
|
+
{ name: 'deleted', internalType: 'bool', type: 'bool' },
|
|
5953
|
+
{ name: 'tokenConfig', internalType: 'bytes', type: 'bytes' },
|
|
5954
|
+
{
|
|
5955
|
+
name: 'premintConfigVersion',
|
|
5956
|
+
internalType: 'bytes32',
|
|
5957
|
+
type: 'bytes32',
|
|
5958
|
+
},
|
|
5959
|
+
],
|
|
5960
|
+
},
|
|
5961
|
+
{ name: 'signature', internalType: 'bytes', type: 'bytes' },
|
|
5962
|
+
{
|
|
5963
|
+
name: 'mintArguments',
|
|
5964
|
+
internalType: 'struct MintArguments',
|
|
5965
|
+
type: 'tuple',
|
|
5966
|
+
components: [
|
|
5967
|
+
{ name: 'mintRecipient', internalType: 'address', type: 'address' },
|
|
5968
|
+
{ name: 'mintComment', internalType: 'string', type: 'string' },
|
|
5969
|
+
{
|
|
5970
|
+
name: 'mintRewardsRecipients',
|
|
5971
|
+
internalType: 'address[]',
|
|
5972
|
+
type: 'address[]',
|
|
5973
|
+
},
|
|
5974
|
+
],
|
|
5975
|
+
},
|
|
5976
|
+
{ name: 'signerContract', internalType: 'address', type: 'address' },
|
|
5977
|
+
],
|
|
5978
|
+
name: 'collectPremint',
|
|
5979
|
+
outputs: [
|
|
5980
|
+
{
|
|
5981
|
+
name: 'result',
|
|
5982
|
+
internalType: 'struct PremintResult',
|
|
5983
|
+
type: 'tuple',
|
|
5984
|
+
components: [
|
|
5985
|
+
{ name: 'contractAddress', internalType: 'address', type: 'address' },
|
|
5986
|
+
{ name: 'tokenId', internalType: 'uint256', type: 'uint256' },
|
|
5987
|
+
{ name: 'createdNewContract', internalType: 'bool', type: 'bool' },
|
|
5988
|
+
],
|
|
5989
|
+
},
|
|
5990
|
+
],
|
|
5991
|
+
},
|
|
5793
5992
|
{
|
|
5794
5993
|
stateMutability: 'payable',
|
|
5795
5994
|
type: 'function',
|
|
@@ -6526,15 +6725,18 @@ export const zoraMintsManagerImplABI = [
|
|
|
6526
6725
|
] as const
|
|
6527
6726
|
|
|
6528
6727
|
/**
|
|
6728
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6529
6729
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6530
6730
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6531
6731
|
*/
|
|
6532
6732
|
export const zoraMintsManagerImplAddress = {
|
|
6733
|
+
84532: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
6533
6734
|
7777777: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
6534
6735
|
999999999: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
|
|
6535
6736
|
} as const
|
|
6536
6737
|
|
|
6537
6738
|
/**
|
|
6739
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6538
6740
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6539
6741
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
6540
6742
|
*/
|