@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
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
8
8
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
9
9
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
10
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/
|
|
10
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
|
|
11
11
|
*/
|
|
12
12
|
export declare const erc20MinterABI: readonly [{
|
|
13
13
|
readonly stateMutability: "nonpayable";
|
|
@@ -15,6 +15,66 @@ export declare const erc20MinterABI: readonly [{
|
|
|
15
15
|
readonly inputs: readonly [];
|
|
16
16
|
readonly name: "acceptOwnership";
|
|
17
17
|
readonly outputs: readonly [];
|
|
18
|
+
}, {
|
|
19
|
+
readonly stateMutability: "view";
|
|
20
|
+
readonly type: "function";
|
|
21
|
+
readonly inputs: readonly [{
|
|
22
|
+
readonly name: "config";
|
|
23
|
+
readonly internalType: "struct IERC20Minter.PremintSalesConfig";
|
|
24
|
+
readonly type: "tuple";
|
|
25
|
+
readonly components: readonly [{
|
|
26
|
+
readonly name: "duration";
|
|
27
|
+
readonly internalType: "uint64";
|
|
28
|
+
readonly type: "uint64";
|
|
29
|
+
}, {
|
|
30
|
+
readonly name: "maxTokensPerAddress";
|
|
31
|
+
readonly internalType: "uint64";
|
|
32
|
+
readonly type: "uint64";
|
|
33
|
+
}, {
|
|
34
|
+
readonly name: "pricePerToken";
|
|
35
|
+
readonly internalType: "uint256";
|
|
36
|
+
readonly type: "uint256";
|
|
37
|
+
}, {
|
|
38
|
+
readonly name: "fundsRecipient";
|
|
39
|
+
readonly internalType: "address";
|
|
40
|
+
readonly type: "address";
|
|
41
|
+
}, {
|
|
42
|
+
readonly name: "currency";
|
|
43
|
+
readonly internalType: "address";
|
|
44
|
+
readonly type: "address";
|
|
45
|
+
}];
|
|
46
|
+
}];
|
|
47
|
+
readonly name: "buildSalesConfigForPremint";
|
|
48
|
+
readonly outputs: readonly [{
|
|
49
|
+
readonly name: "";
|
|
50
|
+
readonly internalType: "struct IERC20Minter.SalesConfig";
|
|
51
|
+
readonly type: "tuple";
|
|
52
|
+
readonly components: readonly [{
|
|
53
|
+
readonly name: "saleStart";
|
|
54
|
+
readonly internalType: "uint64";
|
|
55
|
+
readonly type: "uint64";
|
|
56
|
+
}, {
|
|
57
|
+
readonly name: "saleEnd";
|
|
58
|
+
readonly internalType: "uint64";
|
|
59
|
+
readonly type: "uint64";
|
|
60
|
+
}, {
|
|
61
|
+
readonly name: "maxTokensPerAddress";
|
|
62
|
+
readonly internalType: "uint64";
|
|
63
|
+
readonly type: "uint64";
|
|
64
|
+
}, {
|
|
65
|
+
readonly name: "pricePerToken";
|
|
66
|
+
readonly internalType: "uint256";
|
|
67
|
+
readonly type: "uint256";
|
|
68
|
+
}, {
|
|
69
|
+
readonly name: "fundsRecipient";
|
|
70
|
+
readonly internalType: "address";
|
|
71
|
+
readonly type: "address";
|
|
72
|
+
}, {
|
|
73
|
+
readonly name: "currency";
|
|
74
|
+
readonly internalType: "address";
|
|
75
|
+
readonly type: "address";
|
|
76
|
+
}];
|
|
77
|
+
}];
|
|
18
78
|
}, {
|
|
19
79
|
readonly stateMutability: "nonpayable";
|
|
20
80
|
readonly type: "function";
|
|
@@ -213,7 +273,7 @@ export declare const erc20MinterABI: readonly [{
|
|
|
213
273
|
readonly internalType: "address";
|
|
214
274
|
readonly type: "address";
|
|
215
275
|
}, {
|
|
216
|
-
readonly name: "
|
|
276
|
+
readonly name: "_owner";
|
|
217
277
|
readonly internalType: "address";
|
|
218
278
|
readonly type: "address";
|
|
219
279
|
}, {
|
|
@@ -443,6 +503,20 @@ export declare const erc20MinterABI: readonly [{
|
|
|
443
503
|
}];
|
|
444
504
|
readonly name: "setERC20MinterConfig";
|
|
445
505
|
readonly outputs: readonly [];
|
|
506
|
+
}, {
|
|
507
|
+
readonly stateMutability: "nonpayable";
|
|
508
|
+
readonly type: "function";
|
|
509
|
+
readonly inputs: readonly [{
|
|
510
|
+
readonly name: "tokenId";
|
|
511
|
+
readonly internalType: "uint256";
|
|
512
|
+
readonly type: "uint256";
|
|
513
|
+
}, {
|
|
514
|
+
readonly name: "encodedPremintSalesConfig";
|
|
515
|
+
readonly internalType: "bytes";
|
|
516
|
+
readonly type: "bytes";
|
|
517
|
+
}];
|
|
518
|
+
readonly name: "setPremintSale";
|
|
519
|
+
readonly outputs: readonly [];
|
|
446
520
|
}, {
|
|
447
521
|
readonly stateMutability: "nonpayable";
|
|
448
522
|
readonly type: "function";
|
|
@@ -753,6 +827,18 @@ export declare const erc20MinterABI: readonly [{
|
|
|
753
827
|
readonly type: "error";
|
|
754
828
|
readonly inputs: readonly [];
|
|
755
829
|
readonly name: "InvalidCurrency";
|
|
830
|
+
}, {
|
|
831
|
+
readonly type: "error";
|
|
832
|
+
readonly inputs: readonly [{
|
|
833
|
+
readonly name: "expectedValue";
|
|
834
|
+
readonly internalType: "uint256";
|
|
835
|
+
readonly type: "uint256";
|
|
836
|
+
}, {
|
|
837
|
+
readonly name: "actualValue";
|
|
838
|
+
readonly internalType: "uint256";
|
|
839
|
+
readonly type: "uint256";
|
|
840
|
+
}];
|
|
841
|
+
readonly name: "InvalidETHValue";
|
|
756
842
|
}, {
|
|
757
843
|
readonly type: "error";
|
|
758
844
|
readonly inputs: readonly [];
|
|
@@ -815,7 +901,7 @@ export declare const erc20MinterABI: readonly [{
|
|
|
815
901
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
816
902
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
817
903
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
818
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/
|
|
904
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
|
|
819
905
|
*/
|
|
820
906
|
export declare const erc20MinterAddress: {
|
|
821
907
|
readonly 1: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
@@ -827,7 +913,7 @@ export declare const erc20MinterAddress: {
|
|
|
827
913
|
readonly 421614: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
828
914
|
readonly 7777777: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
829
915
|
readonly 11155111: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
830
|
-
readonly 999999999: "
|
|
916
|
+
readonly 999999999: "0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2";
|
|
831
917
|
};
|
|
832
918
|
/**
|
|
833
919
|
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
@@ -838,7 +924,7 @@ export declare const erc20MinterAddress: {
|
|
|
838
924
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
839
925
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
840
926
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
841
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/
|
|
927
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
|
|
842
928
|
*/
|
|
843
929
|
export declare const erc20MinterConfig: {
|
|
844
930
|
readonly address: {
|
|
@@ -851,7 +937,7 @@ export declare const erc20MinterConfig: {
|
|
|
851
937
|
readonly 421614: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
852
938
|
readonly 7777777: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
853
939
|
readonly 11155111: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
854
|
-
readonly 999999999: "
|
|
940
|
+
readonly 999999999: "0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2";
|
|
855
941
|
};
|
|
856
942
|
readonly abi: readonly [{
|
|
857
943
|
readonly stateMutability: "nonpayable";
|
|
@@ -859,6 +945,66 @@ export declare const erc20MinterConfig: {
|
|
|
859
945
|
readonly inputs: readonly [];
|
|
860
946
|
readonly name: "acceptOwnership";
|
|
861
947
|
readonly outputs: readonly [];
|
|
948
|
+
}, {
|
|
949
|
+
readonly stateMutability: "view";
|
|
950
|
+
readonly type: "function";
|
|
951
|
+
readonly inputs: readonly [{
|
|
952
|
+
readonly name: "config";
|
|
953
|
+
readonly internalType: "struct IERC20Minter.PremintSalesConfig";
|
|
954
|
+
readonly type: "tuple";
|
|
955
|
+
readonly components: readonly [{
|
|
956
|
+
readonly name: "duration";
|
|
957
|
+
readonly internalType: "uint64";
|
|
958
|
+
readonly type: "uint64";
|
|
959
|
+
}, {
|
|
960
|
+
readonly name: "maxTokensPerAddress";
|
|
961
|
+
readonly internalType: "uint64";
|
|
962
|
+
readonly type: "uint64";
|
|
963
|
+
}, {
|
|
964
|
+
readonly name: "pricePerToken";
|
|
965
|
+
readonly internalType: "uint256";
|
|
966
|
+
readonly type: "uint256";
|
|
967
|
+
}, {
|
|
968
|
+
readonly name: "fundsRecipient";
|
|
969
|
+
readonly internalType: "address";
|
|
970
|
+
readonly type: "address";
|
|
971
|
+
}, {
|
|
972
|
+
readonly name: "currency";
|
|
973
|
+
readonly internalType: "address";
|
|
974
|
+
readonly type: "address";
|
|
975
|
+
}];
|
|
976
|
+
}];
|
|
977
|
+
readonly name: "buildSalesConfigForPremint";
|
|
978
|
+
readonly outputs: readonly [{
|
|
979
|
+
readonly name: "";
|
|
980
|
+
readonly internalType: "struct IERC20Minter.SalesConfig";
|
|
981
|
+
readonly type: "tuple";
|
|
982
|
+
readonly components: readonly [{
|
|
983
|
+
readonly name: "saleStart";
|
|
984
|
+
readonly internalType: "uint64";
|
|
985
|
+
readonly type: "uint64";
|
|
986
|
+
}, {
|
|
987
|
+
readonly name: "saleEnd";
|
|
988
|
+
readonly internalType: "uint64";
|
|
989
|
+
readonly type: "uint64";
|
|
990
|
+
}, {
|
|
991
|
+
readonly name: "maxTokensPerAddress";
|
|
992
|
+
readonly internalType: "uint64";
|
|
993
|
+
readonly type: "uint64";
|
|
994
|
+
}, {
|
|
995
|
+
readonly name: "pricePerToken";
|
|
996
|
+
readonly internalType: "uint256";
|
|
997
|
+
readonly type: "uint256";
|
|
998
|
+
}, {
|
|
999
|
+
readonly name: "fundsRecipient";
|
|
1000
|
+
readonly internalType: "address";
|
|
1001
|
+
readonly type: "address";
|
|
1002
|
+
}, {
|
|
1003
|
+
readonly name: "currency";
|
|
1004
|
+
readonly internalType: "address";
|
|
1005
|
+
readonly type: "address";
|
|
1006
|
+
}];
|
|
1007
|
+
}];
|
|
862
1008
|
}, {
|
|
863
1009
|
readonly stateMutability: "nonpayable";
|
|
864
1010
|
readonly type: "function";
|
|
@@ -1057,7 +1203,7 @@ export declare const erc20MinterConfig: {
|
|
|
1057
1203
|
readonly internalType: "address";
|
|
1058
1204
|
readonly type: "address";
|
|
1059
1205
|
}, {
|
|
1060
|
-
readonly name: "
|
|
1206
|
+
readonly name: "_owner";
|
|
1061
1207
|
readonly internalType: "address";
|
|
1062
1208
|
readonly type: "address";
|
|
1063
1209
|
}, {
|
|
@@ -1287,6 +1433,20 @@ export declare const erc20MinterConfig: {
|
|
|
1287
1433
|
}];
|
|
1288
1434
|
readonly name: "setERC20MinterConfig";
|
|
1289
1435
|
readonly outputs: readonly [];
|
|
1436
|
+
}, {
|
|
1437
|
+
readonly stateMutability: "nonpayable";
|
|
1438
|
+
readonly type: "function";
|
|
1439
|
+
readonly inputs: readonly [{
|
|
1440
|
+
readonly name: "tokenId";
|
|
1441
|
+
readonly internalType: "uint256";
|
|
1442
|
+
readonly type: "uint256";
|
|
1443
|
+
}, {
|
|
1444
|
+
readonly name: "encodedPremintSalesConfig";
|
|
1445
|
+
readonly internalType: "bytes";
|
|
1446
|
+
readonly type: "bytes";
|
|
1447
|
+
}];
|
|
1448
|
+
readonly name: "setPremintSale";
|
|
1449
|
+
readonly outputs: readonly [];
|
|
1290
1450
|
}, {
|
|
1291
1451
|
readonly stateMutability: "nonpayable";
|
|
1292
1452
|
readonly type: "function";
|
|
@@ -1597,6 +1757,18 @@ export declare const erc20MinterConfig: {
|
|
|
1597
1757
|
readonly type: "error";
|
|
1598
1758
|
readonly inputs: readonly [];
|
|
1599
1759
|
readonly name: "InvalidCurrency";
|
|
1760
|
+
}, {
|
|
1761
|
+
readonly type: "error";
|
|
1762
|
+
readonly inputs: readonly [{
|
|
1763
|
+
readonly name: "expectedValue";
|
|
1764
|
+
readonly internalType: "uint256";
|
|
1765
|
+
readonly type: "uint256";
|
|
1766
|
+
}, {
|
|
1767
|
+
readonly name: "actualValue";
|
|
1768
|
+
readonly internalType: "uint256";
|
|
1769
|
+
readonly type: "uint256";
|
|
1770
|
+
}];
|
|
1771
|
+
readonly name: "InvalidETHValue";
|
|
1600
1772
|
}, {
|
|
1601
1773
|
readonly type: "error";
|
|
1602
1774
|
readonly inputs: readonly [];
|
|
@@ -1651,68 +1823,215 @@ export declare const erc20MinterConfig: {
|
|
|
1651
1823
|
readonly name: "WrongValueSent";
|
|
1652
1824
|
}];
|
|
1653
1825
|
};
|
|
1654
|
-
export declare const
|
|
1655
|
-
readonly stateMutability: "
|
|
1826
|
+
export declare const iPremintDefinitionsABI: readonly [{
|
|
1827
|
+
readonly stateMutability: "nonpayable";
|
|
1656
1828
|
readonly type: "function";
|
|
1657
1829
|
readonly inputs: readonly [{
|
|
1658
|
-
readonly name: "
|
|
1659
|
-
readonly internalType: "
|
|
1660
|
-
readonly type: "
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1830
|
+
readonly name: "";
|
|
1831
|
+
readonly internalType: "struct TokenCreationConfig";
|
|
1832
|
+
readonly type: "tuple";
|
|
1833
|
+
readonly components: readonly [{
|
|
1834
|
+
readonly name: "tokenURI";
|
|
1835
|
+
readonly internalType: "string";
|
|
1836
|
+
readonly type: "string";
|
|
1837
|
+
}, {
|
|
1838
|
+
readonly name: "maxSupply";
|
|
1839
|
+
readonly internalType: "uint256";
|
|
1840
|
+
readonly type: "uint256";
|
|
1841
|
+
}, {
|
|
1842
|
+
readonly name: "maxTokensPerAddress";
|
|
1843
|
+
readonly internalType: "uint64";
|
|
1844
|
+
readonly type: "uint64";
|
|
1845
|
+
}, {
|
|
1846
|
+
readonly name: "pricePerToken";
|
|
1847
|
+
readonly internalType: "uint96";
|
|
1848
|
+
readonly type: "uint96";
|
|
1849
|
+
}, {
|
|
1850
|
+
readonly name: "mintStart";
|
|
1851
|
+
readonly internalType: "uint64";
|
|
1852
|
+
readonly type: "uint64";
|
|
1853
|
+
}, {
|
|
1854
|
+
readonly name: "mintDuration";
|
|
1855
|
+
readonly internalType: "uint64";
|
|
1856
|
+
readonly type: "uint64";
|
|
1857
|
+
}, {
|
|
1858
|
+
readonly name: "royaltyMintSchedule";
|
|
1859
|
+
readonly internalType: "uint32";
|
|
1860
|
+
readonly type: "uint32";
|
|
1861
|
+
}, {
|
|
1862
|
+
readonly name: "royaltyBPS";
|
|
1863
|
+
readonly internalType: "uint32";
|
|
1864
|
+
readonly type: "uint32";
|
|
1865
|
+
}, {
|
|
1866
|
+
readonly name: "royaltyRecipient";
|
|
1867
|
+
readonly internalType: "address";
|
|
1868
|
+
readonly type: "address";
|
|
1869
|
+
}, {
|
|
1870
|
+
readonly name: "fixedPriceMinter";
|
|
1871
|
+
readonly internalType: "address";
|
|
1872
|
+
readonly type: "address";
|
|
1873
|
+
}];
|
|
1669
1874
|
}];
|
|
1670
|
-
readonly name: "
|
|
1875
|
+
readonly name: "tokenConfigV1Definition";
|
|
1671
1876
|
readonly outputs: readonly [];
|
|
1672
|
-
}];
|
|
1673
|
-
/**
|
|
1674
|
-
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1675
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1676
|
-
*/
|
|
1677
|
-
export declare const mintsEthUnwrapperAndCallerABI: readonly [{
|
|
1678
|
-
readonly stateMutability: "nonpayable";
|
|
1679
|
-
readonly type: "constructor";
|
|
1680
|
-
readonly inputs: readonly [{
|
|
1681
|
-
readonly name: "_zoraMints1155";
|
|
1682
|
-
readonly internalType: "contract IZoraMints1155";
|
|
1683
|
-
readonly type: "address";
|
|
1684
|
-
}];
|
|
1685
|
-
}, {
|
|
1686
|
-
readonly stateMutability: "payable";
|
|
1687
|
-
readonly type: "receive";
|
|
1688
1877
|
}, {
|
|
1689
1878
|
readonly stateMutability: "nonpayable";
|
|
1690
1879
|
readonly type: "function";
|
|
1691
1880
|
readonly inputs: readonly [{
|
|
1692
1881
|
readonly name: "";
|
|
1693
|
-
readonly internalType: "
|
|
1694
|
-
readonly type: "
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1882
|
+
readonly internalType: "struct TokenCreationConfigV2";
|
|
1883
|
+
readonly type: "tuple";
|
|
1884
|
+
readonly components: readonly [{
|
|
1885
|
+
readonly name: "tokenURI";
|
|
1886
|
+
readonly internalType: "string";
|
|
1887
|
+
readonly type: "string";
|
|
1888
|
+
}, {
|
|
1889
|
+
readonly name: "maxSupply";
|
|
1890
|
+
readonly internalType: "uint256";
|
|
1891
|
+
readonly type: "uint256";
|
|
1892
|
+
}, {
|
|
1893
|
+
readonly name: "maxTokensPerAddress";
|
|
1894
|
+
readonly internalType: "uint64";
|
|
1895
|
+
readonly type: "uint64";
|
|
1896
|
+
}, {
|
|
1897
|
+
readonly name: "pricePerToken";
|
|
1898
|
+
readonly internalType: "uint96";
|
|
1899
|
+
readonly type: "uint96";
|
|
1900
|
+
}, {
|
|
1901
|
+
readonly name: "mintStart";
|
|
1902
|
+
readonly internalType: "uint64";
|
|
1903
|
+
readonly type: "uint64";
|
|
1904
|
+
}, {
|
|
1905
|
+
readonly name: "mintDuration";
|
|
1906
|
+
readonly internalType: "uint64";
|
|
1907
|
+
readonly type: "uint64";
|
|
1908
|
+
}, {
|
|
1909
|
+
readonly name: "royaltyBPS";
|
|
1910
|
+
readonly internalType: "uint32";
|
|
1911
|
+
readonly type: "uint32";
|
|
1912
|
+
}, {
|
|
1913
|
+
readonly name: "payoutRecipient";
|
|
1914
|
+
readonly internalType: "address";
|
|
1915
|
+
readonly type: "address";
|
|
1916
|
+
}, {
|
|
1917
|
+
readonly name: "fixedPriceMinter";
|
|
1918
|
+
readonly internalType: "address";
|
|
1919
|
+
readonly type: "address";
|
|
1920
|
+
}, {
|
|
1921
|
+
readonly name: "createReferral";
|
|
1922
|
+
readonly internalType: "address";
|
|
1923
|
+
readonly type: "address";
|
|
1924
|
+
}];
|
|
1925
|
+
}];
|
|
1926
|
+
readonly name: "tokenConfigV2Definition";
|
|
1927
|
+
readonly outputs: readonly [];
|
|
1928
|
+
}, {
|
|
1929
|
+
readonly stateMutability: "nonpayable";
|
|
1930
|
+
readonly type: "function";
|
|
1931
|
+
readonly inputs: readonly [{
|
|
1932
|
+
readonly name: "";
|
|
1933
|
+
readonly internalType: "struct TokenCreationConfigV3";
|
|
1934
|
+
readonly type: "tuple";
|
|
1935
|
+
readonly components: readonly [{
|
|
1936
|
+
readonly name: "tokenURI";
|
|
1937
|
+
readonly internalType: "string";
|
|
1938
|
+
readonly type: "string";
|
|
1939
|
+
}, {
|
|
1940
|
+
readonly name: "maxSupply";
|
|
1941
|
+
readonly internalType: "uint256";
|
|
1942
|
+
readonly type: "uint256";
|
|
1943
|
+
}, {
|
|
1944
|
+
readonly name: "royaltyBPS";
|
|
1945
|
+
readonly internalType: "uint32";
|
|
1946
|
+
readonly type: "uint32";
|
|
1947
|
+
}, {
|
|
1948
|
+
readonly name: "payoutRecipient";
|
|
1949
|
+
readonly internalType: "address";
|
|
1950
|
+
readonly type: "address";
|
|
1951
|
+
}, {
|
|
1952
|
+
readonly name: "createReferral";
|
|
1953
|
+
readonly internalType: "address";
|
|
1954
|
+
readonly type: "address";
|
|
1955
|
+
}, {
|
|
1956
|
+
readonly name: "mintStart";
|
|
1957
|
+
readonly internalType: "uint64";
|
|
1958
|
+
readonly type: "uint64";
|
|
1959
|
+
}, {
|
|
1960
|
+
readonly name: "minter";
|
|
1961
|
+
readonly internalType: "address";
|
|
1962
|
+
readonly type: "address";
|
|
1963
|
+
}, {
|
|
1964
|
+
readonly name: "premintSalesConfig";
|
|
1965
|
+
readonly internalType: "bytes";
|
|
1966
|
+
readonly type: "bytes";
|
|
1967
|
+
}];
|
|
1968
|
+
}];
|
|
1969
|
+
readonly name: "tokenConfigV3Definition";
|
|
1970
|
+
readonly outputs: readonly [];
|
|
1971
|
+
}];
|
|
1972
|
+
export declare const iUnwrapAndForwardActionABI: readonly [{
|
|
1973
|
+
readonly stateMutability: "payable";
|
|
1974
|
+
readonly type: "function";
|
|
1975
|
+
readonly inputs: readonly [{
|
|
1976
|
+
readonly name: "receiverAddress";
|
|
1977
|
+
readonly internalType: "address";
|
|
1978
|
+
readonly type: "address";
|
|
1979
|
+
}, {
|
|
1980
|
+
readonly name: "call";
|
|
1981
|
+
readonly internalType: "bytes";
|
|
1982
|
+
readonly type: "bytes";
|
|
1983
|
+
}, {
|
|
1984
|
+
readonly name: "valueToSend";
|
|
1985
|
+
readonly internalType: "uint256";
|
|
1986
|
+
readonly type: "uint256";
|
|
1987
|
+
}];
|
|
1988
|
+
readonly name: "callWithEth";
|
|
1989
|
+
readonly outputs: readonly [];
|
|
1990
|
+
}];
|
|
1991
|
+
/**
|
|
1992
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1993
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1994
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1995
|
+
*/
|
|
1996
|
+
export declare const mintsEthUnwrapperAndCallerABI: readonly [{
|
|
1997
|
+
readonly stateMutability: "nonpayable";
|
|
1998
|
+
readonly type: "constructor";
|
|
1999
|
+
readonly inputs: readonly [{
|
|
2000
|
+
readonly name: "_zoraMints1155";
|
|
2001
|
+
readonly internalType: "contract IZoraMints1155";
|
|
2002
|
+
readonly type: "address";
|
|
2003
|
+
}];
|
|
2004
|
+
}, {
|
|
2005
|
+
readonly stateMutability: "payable";
|
|
2006
|
+
readonly type: "receive";
|
|
2007
|
+
}, {
|
|
2008
|
+
readonly stateMutability: "nonpayable";
|
|
2009
|
+
readonly type: "function";
|
|
2010
|
+
readonly inputs: readonly [{
|
|
2011
|
+
readonly name: "";
|
|
2012
|
+
readonly internalType: "address";
|
|
2013
|
+
readonly type: "address";
|
|
2014
|
+
}, {
|
|
2015
|
+
readonly name: "from";
|
|
2016
|
+
readonly internalType: "address";
|
|
2017
|
+
readonly type: "address";
|
|
2018
|
+
}, {
|
|
2019
|
+
readonly name: "ids";
|
|
2020
|
+
readonly internalType: "uint256[]";
|
|
2021
|
+
readonly type: "uint256[]";
|
|
2022
|
+
}, {
|
|
2023
|
+
readonly name: "values";
|
|
2024
|
+
readonly internalType: "uint256[]";
|
|
2025
|
+
readonly type: "uint256[]";
|
|
2026
|
+
}, {
|
|
2027
|
+
readonly name: "data";
|
|
2028
|
+
readonly internalType: "bytes";
|
|
2029
|
+
readonly type: "bytes";
|
|
2030
|
+
}];
|
|
2031
|
+
readonly name: "onERC1155BatchReceived";
|
|
2032
|
+
readonly outputs: readonly [{
|
|
2033
|
+
readonly name: "";
|
|
2034
|
+
readonly internalType: "bytes4";
|
|
1716
2035
|
readonly type: "bytes4";
|
|
1717
2036
|
}];
|
|
1718
2037
|
}, {
|
|
@@ -1838,19 +2157,23 @@ export declare const mintsEthUnwrapperAndCallerABI: readonly [{
|
|
|
1838
2157
|
readonly name: "UnknownUserAction";
|
|
1839
2158
|
}];
|
|
1840
2159
|
/**
|
|
2160
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1841
2161
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1842
2162
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1843
2163
|
*/
|
|
1844
2164
|
export declare const mintsEthUnwrapperAndCallerAddress: {
|
|
2165
|
+
readonly 84532: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1845
2166
|
readonly 7777777: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1846
2167
|
readonly 999999999: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1847
2168
|
};
|
|
1848
2169
|
/**
|
|
2170
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1849
2171
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1850
2172
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1851
2173
|
*/
|
|
1852
2174
|
export declare const mintsEthUnwrapperAndCallerConfig: {
|
|
1853
2175
|
readonly address: {
|
|
2176
|
+
readonly 84532: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1854
2177
|
readonly 7777777: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1855
2178
|
readonly 999999999: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1856
2179
|
};
|
|
@@ -2870,7 +3193,7 @@ export declare const protocolRewardsConfig: {
|
|
|
2870
3193
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2871
3194
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2872
3195
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2873
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
3196
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2874
3197
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2875
3198
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2876
3199
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -3060,6 +3383,36 @@ export declare const zoraCreator1155FactoryImplABI: readonly [{
|
|
|
3060
3383
|
readonly internalType: "address";
|
|
3061
3384
|
readonly type: "address";
|
|
3062
3385
|
}];
|
|
3386
|
+
}, {
|
|
3387
|
+
readonly stateMutability: "view";
|
|
3388
|
+
readonly type: "function";
|
|
3389
|
+
readonly inputs: readonly [{
|
|
3390
|
+
readonly name: "msgSender";
|
|
3391
|
+
readonly internalType: "address";
|
|
3392
|
+
readonly type: "address";
|
|
3393
|
+
}, {
|
|
3394
|
+
readonly name: "newContractURI";
|
|
3395
|
+
readonly internalType: "string";
|
|
3396
|
+
readonly type: "string";
|
|
3397
|
+
}, {
|
|
3398
|
+
readonly name: "name";
|
|
3399
|
+
readonly internalType: "string";
|
|
3400
|
+
readonly type: "string";
|
|
3401
|
+
}, {
|
|
3402
|
+
readonly name: "contractAdmin";
|
|
3403
|
+
readonly internalType: "address";
|
|
3404
|
+
readonly type: "address";
|
|
3405
|
+
}, {
|
|
3406
|
+
readonly name: "setupActions";
|
|
3407
|
+
readonly internalType: "bytes[]";
|
|
3408
|
+
readonly type: "bytes[]";
|
|
3409
|
+
}];
|
|
3410
|
+
readonly name: "deterministicContractAddressWithSetupActions";
|
|
3411
|
+
readonly outputs: readonly [{
|
|
3412
|
+
readonly name: "";
|
|
3413
|
+
readonly internalType: "address";
|
|
3414
|
+
readonly type: "address";
|
|
3415
|
+
}];
|
|
3063
3416
|
}, {
|
|
3064
3417
|
readonly stateMutability: "view";
|
|
3065
3418
|
readonly type: "function";
|
|
@@ -3418,7 +3771,7 @@ export declare const zoraCreator1155FactoryImplABI: readonly [{
|
|
|
3418
3771
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3419
3772
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3420
3773
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3421
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
3774
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3422
3775
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3423
3776
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3424
3777
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -3431,7 +3784,7 @@ export declare const zoraCreator1155FactoryImplAddress: {
|
|
|
3431
3784
|
readonly 8453: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3432
3785
|
readonly 42161: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3433
3786
|
readonly 81457: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3434
|
-
readonly 84532: "
|
|
3787
|
+
readonly 84532: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3435
3788
|
readonly 421614: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3436
3789
|
readonly 7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3437
3790
|
readonly 11155111: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
@@ -3444,7 +3797,7 @@ export declare const zoraCreator1155FactoryImplAddress: {
|
|
|
3444
3797
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3445
3798
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3446
3799
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3447
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
3800
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3448
3801
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3449
3802
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3450
3803
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -3458,7 +3811,7 @@ export declare const zoraCreator1155FactoryImplConfig: {
|
|
|
3458
3811
|
readonly 8453: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3459
3812
|
readonly 42161: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3460
3813
|
readonly 81457: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3461
|
-
readonly 84532: "
|
|
3814
|
+
readonly 84532: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3462
3815
|
readonly 421614: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3463
3816
|
readonly 7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3464
3817
|
readonly 11155111: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
@@ -3649,6 +4002,36 @@ export declare const zoraCreator1155FactoryImplConfig: {
|
|
|
3649
4002
|
readonly internalType: "address";
|
|
3650
4003
|
readonly type: "address";
|
|
3651
4004
|
}];
|
|
4005
|
+
}, {
|
|
4006
|
+
readonly stateMutability: "view";
|
|
4007
|
+
readonly type: "function";
|
|
4008
|
+
readonly inputs: readonly [{
|
|
4009
|
+
readonly name: "msgSender";
|
|
4010
|
+
readonly internalType: "address";
|
|
4011
|
+
readonly type: "address";
|
|
4012
|
+
}, {
|
|
4013
|
+
readonly name: "newContractURI";
|
|
4014
|
+
readonly internalType: "string";
|
|
4015
|
+
readonly type: "string";
|
|
4016
|
+
}, {
|
|
4017
|
+
readonly name: "name";
|
|
4018
|
+
readonly internalType: "string";
|
|
4019
|
+
readonly type: "string";
|
|
4020
|
+
}, {
|
|
4021
|
+
readonly name: "contractAdmin";
|
|
4022
|
+
readonly internalType: "address";
|
|
4023
|
+
readonly type: "address";
|
|
4024
|
+
}, {
|
|
4025
|
+
readonly name: "setupActions";
|
|
4026
|
+
readonly internalType: "bytes[]";
|
|
4027
|
+
readonly type: "bytes[]";
|
|
4028
|
+
}];
|
|
4029
|
+
readonly name: "deterministicContractAddressWithSetupActions";
|
|
4030
|
+
readonly outputs: readonly [{
|
|
4031
|
+
readonly name: "";
|
|
4032
|
+
readonly internalType: "address";
|
|
4033
|
+
readonly type: "address";
|
|
4034
|
+
}];
|
|
3652
4035
|
}, {
|
|
3653
4036
|
readonly stateMutability: "view";
|
|
3654
4037
|
readonly type: "function";
|
|
@@ -5972,6 +6355,7 @@ export declare const zoraCreator1155ImplABI: readonly [{
|
|
|
5972
6355
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5973
6356
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5974
6357
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
6358
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5975
6359
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5976
6360
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5977
6361
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -6007,6 +6391,16 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6007
6391
|
readonly internalType: "string";
|
|
6008
6392
|
readonly type: "string";
|
|
6009
6393
|
}];
|
|
6394
|
+
}, {
|
|
6395
|
+
readonly stateMutability: "pure";
|
|
6396
|
+
readonly type: "function";
|
|
6397
|
+
readonly inputs: readonly [];
|
|
6398
|
+
readonly name: "contractVersion";
|
|
6399
|
+
readonly outputs: readonly [{
|
|
6400
|
+
readonly name: "";
|
|
6401
|
+
readonly internalType: "string";
|
|
6402
|
+
readonly type: "string";
|
|
6403
|
+
}];
|
|
6010
6404
|
}, {
|
|
6011
6405
|
readonly stateMutability: "view";
|
|
6012
6406
|
readonly type: "function";
|
|
@@ -6034,6 +6428,37 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6034
6428
|
readonly internalType: "address";
|
|
6035
6429
|
readonly type: "address";
|
|
6036
6430
|
}];
|
|
6431
|
+
}, {
|
|
6432
|
+
readonly stateMutability: "view";
|
|
6433
|
+
readonly type: "function";
|
|
6434
|
+
readonly inputs: readonly [{
|
|
6435
|
+
readonly name: "contractConfig";
|
|
6436
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
6437
|
+
readonly type: "tuple";
|
|
6438
|
+
readonly components: readonly [{
|
|
6439
|
+
readonly name: "contractAdmin";
|
|
6440
|
+
readonly internalType: "address";
|
|
6441
|
+
readonly type: "address";
|
|
6442
|
+
}, {
|
|
6443
|
+
readonly name: "contractURI";
|
|
6444
|
+
readonly internalType: "string";
|
|
6445
|
+
readonly type: "string";
|
|
6446
|
+
}, {
|
|
6447
|
+
readonly name: "contractName";
|
|
6448
|
+
readonly internalType: "string";
|
|
6449
|
+
readonly type: "string";
|
|
6450
|
+
}, {
|
|
6451
|
+
readonly name: "additionalAdmins";
|
|
6452
|
+
readonly internalType: "address[]";
|
|
6453
|
+
readonly type: "address[]";
|
|
6454
|
+
}];
|
|
6455
|
+
}];
|
|
6456
|
+
readonly name: "getContractWithAdditionalAdminsAddress";
|
|
6457
|
+
readonly outputs: readonly [{
|
|
6458
|
+
readonly name: "";
|
|
6459
|
+
readonly internalType: "address";
|
|
6460
|
+
readonly type: "address";
|
|
6461
|
+
}];
|
|
6037
6462
|
}, {
|
|
6038
6463
|
readonly stateMutability: "view";
|
|
6039
6464
|
readonly type: "function";
|
|
@@ -6080,21 +6505,47 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6080
6505
|
readonly stateMutability: "view";
|
|
6081
6506
|
readonly type: "function";
|
|
6082
6507
|
readonly inputs: readonly [{
|
|
6083
|
-
readonly name: "
|
|
6084
|
-
readonly internalType: "
|
|
6085
|
-
readonly type: "
|
|
6086
|
-
|
|
6087
|
-
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
|
|
6091
|
-
|
|
6092
|
-
|
|
6093
|
-
|
|
6094
|
-
|
|
6095
|
-
|
|
6096
|
-
|
|
6097
|
-
|
|
6508
|
+
readonly name: "signer";
|
|
6509
|
+
readonly internalType: "address";
|
|
6510
|
+
readonly type: "address";
|
|
6511
|
+
}, {
|
|
6512
|
+
readonly name: "premintContractConfigContractAdmin";
|
|
6513
|
+
readonly internalType: "address";
|
|
6514
|
+
readonly type: "address";
|
|
6515
|
+
}, {
|
|
6516
|
+
readonly name: "contractAddress";
|
|
6517
|
+
readonly internalType: "address";
|
|
6518
|
+
readonly type: "address";
|
|
6519
|
+
}, {
|
|
6520
|
+
readonly name: "additionalAdmins";
|
|
6521
|
+
readonly internalType: "address[]";
|
|
6522
|
+
readonly type: "address[]";
|
|
6523
|
+
}];
|
|
6524
|
+
readonly name: "isAuthorizedToCreatePremintWithAdditionalAdmins";
|
|
6525
|
+
readonly outputs: readonly [{
|
|
6526
|
+
readonly name: "isAuthorized";
|
|
6527
|
+
readonly internalType: "bool";
|
|
6528
|
+
readonly type: "bool";
|
|
6529
|
+
}];
|
|
6530
|
+
}, {
|
|
6531
|
+
readonly stateMutability: "view";
|
|
6532
|
+
readonly type: "function";
|
|
6533
|
+
readonly inputs: readonly [{
|
|
6534
|
+
readonly name: "contractConfig";
|
|
6535
|
+
readonly internalType: "struct ContractCreationConfig";
|
|
6536
|
+
readonly type: "tuple";
|
|
6537
|
+
readonly components: readonly [{
|
|
6538
|
+
readonly name: "contractAdmin";
|
|
6539
|
+
readonly internalType: "address";
|
|
6540
|
+
readonly type: "address";
|
|
6541
|
+
}, {
|
|
6542
|
+
readonly name: "contractURI";
|
|
6543
|
+
readonly internalType: "string";
|
|
6544
|
+
readonly type: "string";
|
|
6545
|
+
}, {
|
|
6546
|
+
readonly name: "contractName";
|
|
6547
|
+
readonly internalType: "string";
|
|
6548
|
+
readonly type: "string";
|
|
6098
6549
|
}];
|
|
6099
6550
|
}, {
|
|
6100
6551
|
readonly name: "premintConfig";
|
|
@@ -6212,11 +6663,11 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6212
6663
|
readonly type: "address";
|
|
6213
6664
|
}];
|
|
6214
6665
|
}, {
|
|
6215
|
-
readonly stateMutability: "
|
|
6666
|
+
readonly stateMutability: "payable";
|
|
6216
6667
|
readonly type: "function";
|
|
6217
6668
|
readonly inputs: readonly [{
|
|
6218
6669
|
readonly name: "contractConfig";
|
|
6219
|
-
readonly internalType: "struct
|
|
6670
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
6220
6671
|
readonly type: "tuple";
|
|
6221
6672
|
readonly components: readonly [{
|
|
6222
6673
|
readonly name: "contractAdmin";
|
|
@@ -6230,61 +6681,20 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6230
6681
|
readonly name: "contractName";
|
|
6231
6682
|
readonly internalType: "string";
|
|
6232
6683
|
readonly type: "string";
|
|
6684
|
+
}, {
|
|
6685
|
+
readonly name: "additionalAdmins";
|
|
6686
|
+
readonly internalType: "address[]";
|
|
6687
|
+
readonly type: "address[]";
|
|
6233
6688
|
}];
|
|
6234
6689
|
}, {
|
|
6235
|
-
readonly name: "
|
|
6236
|
-
readonly internalType: "
|
|
6690
|
+
readonly name: "premintCollection";
|
|
6691
|
+
readonly internalType: "address";
|
|
6692
|
+
readonly type: "address";
|
|
6693
|
+
}, {
|
|
6694
|
+
readonly name: "encodedPremintConfig";
|
|
6695
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
6237
6696
|
readonly type: "tuple";
|
|
6238
6697
|
readonly components: readonly [{
|
|
6239
|
-
readonly name: "tokenConfig";
|
|
6240
|
-
readonly internalType: "struct Erc20TokenCreationConfigV1";
|
|
6241
|
-
readonly type: "tuple";
|
|
6242
|
-
readonly components: readonly [{
|
|
6243
|
-
readonly name: "tokenURI";
|
|
6244
|
-
readonly internalType: "string";
|
|
6245
|
-
readonly type: "string";
|
|
6246
|
-
}, {
|
|
6247
|
-
readonly name: "maxSupply";
|
|
6248
|
-
readonly internalType: "uint256";
|
|
6249
|
-
readonly type: "uint256";
|
|
6250
|
-
}, {
|
|
6251
|
-
readonly name: "royaltyBPS";
|
|
6252
|
-
readonly internalType: "uint32";
|
|
6253
|
-
readonly type: "uint32";
|
|
6254
|
-
}, {
|
|
6255
|
-
readonly name: "payoutRecipient";
|
|
6256
|
-
readonly internalType: "address";
|
|
6257
|
-
readonly type: "address";
|
|
6258
|
-
}, {
|
|
6259
|
-
readonly name: "createReferral";
|
|
6260
|
-
readonly internalType: "address";
|
|
6261
|
-
readonly type: "address";
|
|
6262
|
-
}, {
|
|
6263
|
-
readonly name: "erc20Minter";
|
|
6264
|
-
readonly internalType: "address";
|
|
6265
|
-
readonly type: "address";
|
|
6266
|
-
}, {
|
|
6267
|
-
readonly name: "mintStart";
|
|
6268
|
-
readonly internalType: "uint64";
|
|
6269
|
-
readonly type: "uint64";
|
|
6270
|
-
}, {
|
|
6271
|
-
readonly name: "mintDuration";
|
|
6272
|
-
readonly internalType: "uint64";
|
|
6273
|
-
readonly type: "uint64";
|
|
6274
|
-
}, {
|
|
6275
|
-
readonly name: "maxTokensPerAddress";
|
|
6276
|
-
readonly internalType: "uint64";
|
|
6277
|
-
readonly type: "uint64";
|
|
6278
|
-
}, {
|
|
6279
|
-
readonly name: "currency";
|
|
6280
|
-
readonly internalType: "address";
|
|
6281
|
-
readonly type: "address";
|
|
6282
|
-
}, {
|
|
6283
|
-
readonly name: "pricePerToken";
|
|
6284
|
-
readonly internalType: "uint256";
|
|
6285
|
-
readonly type: "uint256";
|
|
6286
|
-
}];
|
|
6287
|
-
}, {
|
|
6288
6698
|
readonly name: "uid";
|
|
6289
6699
|
readonly internalType: "uint32";
|
|
6290
6700
|
readonly type: "uint32";
|
|
@@ -6296,6 +6706,14 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6296
6706
|
readonly name: "deleted";
|
|
6297
6707
|
readonly internalType: "bool";
|
|
6298
6708
|
readonly type: "bool";
|
|
6709
|
+
}, {
|
|
6710
|
+
readonly name: "tokenConfig";
|
|
6711
|
+
readonly internalType: "bytes";
|
|
6712
|
+
readonly type: "bytes";
|
|
6713
|
+
}, {
|
|
6714
|
+
readonly name: "premintConfigVersion";
|
|
6715
|
+
readonly internalType: "bytes32";
|
|
6716
|
+
readonly type: "bytes32";
|
|
6299
6717
|
}];
|
|
6300
6718
|
}, {
|
|
6301
6719
|
readonly name: "signature";
|
|
@@ -6331,9 +6749,9 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6331
6749
|
readonly internalType: "address";
|
|
6332
6750
|
readonly type: "address";
|
|
6333
6751
|
}];
|
|
6334
|
-
readonly name: "
|
|
6752
|
+
readonly name: "premint";
|
|
6335
6753
|
readonly outputs: readonly [{
|
|
6336
|
-
readonly name: "
|
|
6754
|
+
readonly name: "premintResult";
|
|
6337
6755
|
readonly internalType: "struct PremintResult";
|
|
6338
6756
|
readonly type: "tuple";
|
|
6339
6757
|
readonly components: readonly [{
|
|
@@ -6482,7 +6900,7 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6482
6900
|
}];
|
|
6483
6901
|
readonly name: "premintV1";
|
|
6484
6902
|
readonly outputs: readonly [{
|
|
6485
|
-
readonly name: "
|
|
6903
|
+
readonly name: "";
|
|
6486
6904
|
readonly internalType: "struct PremintResult";
|
|
6487
6905
|
readonly type: "tuple";
|
|
6488
6906
|
readonly components: readonly [{
|
|
@@ -6609,142 +7027,7 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6609
7027
|
}];
|
|
6610
7028
|
readonly name: "premintV2";
|
|
6611
7029
|
readonly outputs: readonly [{
|
|
6612
|
-
readonly name: "
|
|
6613
|
-
readonly internalType: "struct PremintResult";
|
|
6614
|
-
readonly type: "tuple";
|
|
6615
|
-
readonly components: readonly [{
|
|
6616
|
-
readonly name: "contractAddress";
|
|
6617
|
-
readonly internalType: "address";
|
|
6618
|
-
readonly type: "address";
|
|
6619
|
-
}, {
|
|
6620
|
-
readonly name: "tokenId";
|
|
6621
|
-
readonly internalType: "uint256";
|
|
6622
|
-
readonly type: "uint256";
|
|
6623
|
-
}, {
|
|
6624
|
-
readonly name: "createdNewContract";
|
|
6625
|
-
readonly internalType: "bool";
|
|
6626
|
-
readonly type: "bool";
|
|
6627
|
-
}];
|
|
6628
|
-
}];
|
|
6629
|
-
}, {
|
|
6630
|
-
readonly stateMutability: "payable";
|
|
6631
|
-
readonly type: "function";
|
|
6632
|
-
readonly inputs: readonly [{
|
|
6633
|
-
readonly name: "contractConfig";
|
|
6634
|
-
readonly internalType: "struct ContractCreationConfig";
|
|
6635
|
-
readonly type: "tuple";
|
|
6636
|
-
readonly components: readonly [{
|
|
6637
|
-
readonly name: "contractAdmin";
|
|
6638
|
-
readonly internalType: "address";
|
|
6639
|
-
readonly type: "address";
|
|
6640
|
-
}, {
|
|
6641
|
-
readonly name: "contractURI";
|
|
6642
|
-
readonly internalType: "string";
|
|
6643
|
-
readonly type: "string";
|
|
6644
|
-
}, {
|
|
6645
|
-
readonly name: "contractName";
|
|
6646
|
-
readonly internalType: "string";
|
|
6647
|
-
readonly type: "string";
|
|
6648
|
-
}];
|
|
6649
|
-
}, {
|
|
6650
|
-
readonly name: "premintConfig";
|
|
6651
|
-
readonly internalType: "struct PremintConfigV2";
|
|
6652
|
-
readonly type: "tuple";
|
|
6653
|
-
readonly components: readonly [{
|
|
6654
|
-
readonly name: "tokenConfig";
|
|
6655
|
-
readonly internalType: "struct TokenCreationConfigV2";
|
|
6656
|
-
readonly type: "tuple";
|
|
6657
|
-
readonly components: readonly [{
|
|
6658
|
-
readonly name: "tokenURI";
|
|
6659
|
-
readonly internalType: "string";
|
|
6660
|
-
readonly type: "string";
|
|
6661
|
-
}, {
|
|
6662
|
-
readonly name: "maxSupply";
|
|
6663
|
-
readonly internalType: "uint256";
|
|
6664
|
-
readonly type: "uint256";
|
|
6665
|
-
}, {
|
|
6666
|
-
readonly name: "maxTokensPerAddress";
|
|
6667
|
-
readonly internalType: "uint64";
|
|
6668
|
-
readonly type: "uint64";
|
|
6669
|
-
}, {
|
|
6670
|
-
readonly name: "pricePerToken";
|
|
6671
|
-
readonly internalType: "uint96";
|
|
6672
|
-
readonly type: "uint96";
|
|
6673
|
-
}, {
|
|
6674
|
-
readonly name: "mintStart";
|
|
6675
|
-
readonly internalType: "uint64";
|
|
6676
|
-
readonly type: "uint64";
|
|
6677
|
-
}, {
|
|
6678
|
-
readonly name: "mintDuration";
|
|
6679
|
-
readonly internalType: "uint64";
|
|
6680
|
-
readonly type: "uint64";
|
|
6681
|
-
}, {
|
|
6682
|
-
readonly name: "royaltyBPS";
|
|
6683
|
-
readonly internalType: "uint32";
|
|
6684
|
-
readonly type: "uint32";
|
|
6685
|
-
}, {
|
|
6686
|
-
readonly name: "payoutRecipient";
|
|
6687
|
-
readonly internalType: "address";
|
|
6688
|
-
readonly type: "address";
|
|
6689
|
-
}, {
|
|
6690
|
-
readonly name: "fixedPriceMinter";
|
|
6691
|
-
readonly internalType: "address";
|
|
6692
|
-
readonly type: "address";
|
|
6693
|
-
}, {
|
|
6694
|
-
readonly name: "createReferral";
|
|
6695
|
-
readonly internalType: "address";
|
|
6696
|
-
readonly type: "address";
|
|
6697
|
-
}];
|
|
6698
|
-
}, {
|
|
6699
|
-
readonly name: "uid";
|
|
6700
|
-
readonly internalType: "uint32";
|
|
6701
|
-
readonly type: "uint32";
|
|
6702
|
-
}, {
|
|
6703
|
-
readonly name: "version";
|
|
6704
|
-
readonly internalType: "uint32";
|
|
6705
|
-
readonly type: "uint32";
|
|
6706
|
-
}, {
|
|
6707
|
-
readonly name: "deleted";
|
|
6708
|
-
readonly internalType: "bool";
|
|
6709
|
-
readonly type: "bool";
|
|
6710
|
-
}];
|
|
6711
|
-
}, {
|
|
6712
|
-
readonly name: "signature";
|
|
6713
|
-
readonly internalType: "bytes";
|
|
6714
|
-
readonly type: "bytes";
|
|
6715
|
-
}, {
|
|
6716
|
-
readonly name: "quantityToMint";
|
|
6717
|
-
readonly internalType: "uint256";
|
|
6718
|
-
readonly type: "uint256";
|
|
6719
|
-
}, {
|
|
6720
|
-
readonly name: "mintArguments";
|
|
6721
|
-
readonly internalType: "struct MintArguments";
|
|
6722
|
-
readonly type: "tuple";
|
|
6723
|
-
readonly components: readonly [{
|
|
6724
|
-
readonly name: "mintRecipient";
|
|
6725
|
-
readonly internalType: "address";
|
|
6726
|
-
readonly type: "address";
|
|
6727
|
-
}, {
|
|
6728
|
-
readonly name: "mintComment";
|
|
6729
|
-
readonly internalType: "string";
|
|
6730
|
-
readonly type: "string";
|
|
6731
|
-
}, {
|
|
6732
|
-
readonly name: "mintRewardsRecipients";
|
|
6733
|
-
readonly internalType: "address[]";
|
|
6734
|
-
readonly type: "address[]";
|
|
6735
|
-
}];
|
|
6736
|
-
}, {
|
|
6737
|
-
readonly name: "firstMinter";
|
|
6738
|
-
readonly internalType: "address";
|
|
6739
|
-
readonly type: "address";
|
|
6740
|
-
}, {
|
|
6741
|
-
readonly name: "signerContract";
|
|
6742
|
-
readonly internalType: "address";
|
|
6743
|
-
readonly type: "address";
|
|
6744
|
-
}];
|
|
6745
|
-
readonly name: "premintV2WithSignerContract";
|
|
6746
|
-
readonly outputs: readonly [{
|
|
6747
|
-
readonly name: "result";
|
|
7030
|
+
readonly name: "";
|
|
6748
7031
|
readonly internalType: "struct PremintResult";
|
|
6749
7032
|
readonly type: "tuple";
|
|
6750
7033
|
readonly components: readonly [{
|
|
@@ -7432,6 +7715,7 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
7432
7715
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7433
7716
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7434
7717
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7718
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7435
7719
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7436
7720
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7437
7721
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -7444,6 +7728,7 @@ export declare const zoraCreator1155PremintExecutorImplAddress: {
|
|
|
7444
7728
|
readonly 8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7445
7729
|
readonly 42161: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7446
7730
|
readonly 81457: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7731
|
+
readonly 84532: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7447
7732
|
readonly 421614: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7448
7733
|
readonly 7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7449
7734
|
readonly 11155111: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
@@ -7456,6 +7741,7 @@ export declare const zoraCreator1155PremintExecutorImplAddress: {
|
|
|
7456
7741
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7457
7742
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7458
7743
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7744
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7459
7745
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7460
7746
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7461
7747
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -7469,6 +7755,7 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7469
7755
|
readonly 8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7470
7756
|
readonly 42161: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7471
7757
|
readonly 81457: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7758
|
+
readonly 84532: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7472
7759
|
readonly 421614: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7473
7760
|
readonly 7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7474
7761
|
readonly 11155111: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
@@ -7505,6 +7792,16 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7505
7792
|
readonly internalType: "string";
|
|
7506
7793
|
readonly type: "string";
|
|
7507
7794
|
}];
|
|
7795
|
+
}, {
|
|
7796
|
+
readonly stateMutability: "pure";
|
|
7797
|
+
readonly type: "function";
|
|
7798
|
+
readonly inputs: readonly [];
|
|
7799
|
+
readonly name: "contractVersion";
|
|
7800
|
+
readonly outputs: readonly [{
|
|
7801
|
+
readonly name: "";
|
|
7802
|
+
readonly internalType: "string";
|
|
7803
|
+
readonly type: "string";
|
|
7804
|
+
}];
|
|
7508
7805
|
}, {
|
|
7509
7806
|
readonly stateMutability: "view";
|
|
7510
7807
|
readonly type: "function";
|
|
@@ -7532,6 +7829,37 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7532
7829
|
readonly internalType: "address";
|
|
7533
7830
|
readonly type: "address";
|
|
7534
7831
|
}];
|
|
7832
|
+
}, {
|
|
7833
|
+
readonly stateMutability: "view";
|
|
7834
|
+
readonly type: "function";
|
|
7835
|
+
readonly inputs: readonly [{
|
|
7836
|
+
readonly name: "contractConfig";
|
|
7837
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
7838
|
+
readonly type: "tuple";
|
|
7839
|
+
readonly components: readonly [{
|
|
7840
|
+
readonly name: "contractAdmin";
|
|
7841
|
+
readonly internalType: "address";
|
|
7842
|
+
readonly type: "address";
|
|
7843
|
+
}, {
|
|
7844
|
+
readonly name: "contractURI";
|
|
7845
|
+
readonly internalType: "string";
|
|
7846
|
+
readonly type: "string";
|
|
7847
|
+
}, {
|
|
7848
|
+
readonly name: "contractName";
|
|
7849
|
+
readonly internalType: "string";
|
|
7850
|
+
readonly type: "string";
|
|
7851
|
+
}, {
|
|
7852
|
+
readonly name: "additionalAdmins";
|
|
7853
|
+
readonly internalType: "address[]";
|
|
7854
|
+
readonly type: "address[]";
|
|
7855
|
+
}];
|
|
7856
|
+
}];
|
|
7857
|
+
readonly name: "getContractWithAdditionalAdminsAddress";
|
|
7858
|
+
readonly outputs: readonly [{
|
|
7859
|
+
readonly name: "";
|
|
7860
|
+
readonly internalType: "address";
|
|
7861
|
+
readonly type: "address";
|
|
7862
|
+
}];
|
|
7535
7863
|
}, {
|
|
7536
7864
|
readonly stateMutability: "view";
|
|
7537
7865
|
readonly type: "function";
|
|
@@ -7574,6 +7902,32 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7574
7902
|
readonly internalType: "bool";
|
|
7575
7903
|
readonly type: "bool";
|
|
7576
7904
|
}];
|
|
7905
|
+
}, {
|
|
7906
|
+
readonly stateMutability: "view";
|
|
7907
|
+
readonly type: "function";
|
|
7908
|
+
readonly inputs: readonly [{
|
|
7909
|
+
readonly name: "signer";
|
|
7910
|
+
readonly internalType: "address";
|
|
7911
|
+
readonly type: "address";
|
|
7912
|
+
}, {
|
|
7913
|
+
readonly name: "premintContractConfigContractAdmin";
|
|
7914
|
+
readonly internalType: "address";
|
|
7915
|
+
readonly type: "address";
|
|
7916
|
+
}, {
|
|
7917
|
+
readonly name: "contractAddress";
|
|
7918
|
+
readonly internalType: "address";
|
|
7919
|
+
readonly type: "address";
|
|
7920
|
+
}, {
|
|
7921
|
+
readonly name: "additionalAdmins";
|
|
7922
|
+
readonly internalType: "address[]";
|
|
7923
|
+
readonly type: "address[]";
|
|
7924
|
+
}];
|
|
7925
|
+
readonly name: "isAuthorizedToCreatePremintWithAdditionalAdmins";
|
|
7926
|
+
readonly outputs: readonly [{
|
|
7927
|
+
readonly name: "isAuthorized";
|
|
7928
|
+
readonly internalType: "bool";
|
|
7929
|
+
readonly type: "bool";
|
|
7930
|
+
}];
|
|
7577
7931
|
}, {
|
|
7578
7932
|
readonly stateMutability: "view";
|
|
7579
7933
|
readonly type: "function";
|
|
@@ -7710,11 +8064,11 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7710
8064
|
readonly type: "address";
|
|
7711
8065
|
}];
|
|
7712
8066
|
}, {
|
|
7713
|
-
readonly stateMutability: "
|
|
8067
|
+
readonly stateMutability: "payable";
|
|
7714
8068
|
readonly type: "function";
|
|
7715
8069
|
readonly inputs: readonly [{
|
|
7716
8070
|
readonly name: "contractConfig";
|
|
7717
|
-
readonly internalType: "struct
|
|
8071
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
7718
8072
|
readonly type: "tuple";
|
|
7719
8073
|
readonly components: readonly [{
|
|
7720
8074
|
readonly name: "contractAdmin";
|
|
@@ -7728,218 +8082,20 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7728
8082
|
readonly name: "contractName";
|
|
7729
8083
|
readonly internalType: "string";
|
|
7730
8084
|
readonly type: "string";
|
|
7731
|
-
}];
|
|
7732
|
-
}, {
|
|
7733
|
-
readonly name: "premintConfig";
|
|
7734
|
-
readonly internalType: "struct Erc20PremintConfigV1";
|
|
7735
|
-
readonly type: "tuple";
|
|
7736
|
-
readonly components: readonly [{
|
|
7737
|
-
readonly name: "tokenConfig";
|
|
7738
|
-
readonly internalType: "struct Erc20TokenCreationConfigV1";
|
|
7739
|
-
readonly type: "tuple";
|
|
7740
|
-
readonly components: readonly [{
|
|
7741
|
-
readonly name: "tokenURI";
|
|
7742
|
-
readonly internalType: "string";
|
|
7743
|
-
readonly type: "string";
|
|
7744
|
-
}, {
|
|
7745
|
-
readonly name: "maxSupply";
|
|
7746
|
-
readonly internalType: "uint256";
|
|
7747
|
-
readonly type: "uint256";
|
|
7748
|
-
}, {
|
|
7749
|
-
readonly name: "royaltyBPS";
|
|
7750
|
-
readonly internalType: "uint32";
|
|
7751
|
-
readonly type: "uint32";
|
|
7752
|
-
}, {
|
|
7753
|
-
readonly name: "payoutRecipient";
|
|
7754
|
-
readonly internalType: "address";
|
|
7755
|
-
readonly type: "address";
|
|
7756
|
-
}, {
|
|
7757
|
-
readonly name: "createReferral";
|
|
7758
|
-
readonly internalType: "address";
|
|
7759
|
-
readonly type: "address";
|
|
7760
|
-
}, {
|
|
7761
|
-
readonly name: "erc20Minter";
|
|
7762
|
-
readonly internalType: "address";
|
|
7763
|
-
readonly type: "address";
|
|
7764
|
-
}, {
|
|
7765
|
-
readonly name: "mintStart";
|
|
7766
|
-
readonly internalType: "uint64";
|
|
7767
|
-
readonly type: "uint64";
|
|
7768
|
-
}, {
|
|
7769
|
-
readonly name: "mintDuration";
|
|
7770
|
-
readonly internalType: "uint64";
|
|
7771
|
-
readonly type: "uint64";
|
|
7772
|
-
}, {
|
|
7773
|
-
readonly name: "maxTokensPerAddress";
|
|
7774
|
-
readonly internalType: "uint64";
|
|
7775
|
-
readonly type: "uint64";
|
|
7776
|
-
}, {
|
|
7777
|
-
readonly name: "currency";
|
|
7778
|
-
readonly internalType: "address";
|
|
7779
|
-
readonly type: "address";
|
|
7780
|
-
}, {
|
|
7781
|
-
readonly name: "pricePerToken";
|
|
7782
|
-
readonly internalType: "uint256";
|
|
7783
|
-
readonly type: "uint256";
|
|
7784
|
-
}];
|
|
7785
|
-
}, {
|
|
7786
|
-
readonly name: "uid";
|
|
7787
|
-
readonly internalType: "uint32";
|
|
7788
|
-
readonly type: "uint32";
|
|
7789
|
-
}, {
|
|
7790
|
-
readonly name: "version";
|
|
7791
|
-
readonly internalType: "uint32";
|
|
7792
|
-
readonly type: "uint32";
|
|
7793
8085
|
}, {
|
|
7794
|
-
readonly name: "
|
|
7795
|
-
readonly internalType: "bool";
|
|
7796
|
-
readonly type: "bool";
|
|
7797
|
-
}];
|
|
7798
|
-
}, {
|
|
7799
|
-
readonly name: "signature";
|
|
7800
|
-
readonly internalType: "bytes";
|
|
7801
|
-
readonly type: "bytes";
|
|
7802
|
-
}, {
|
|
7803
|
-
readonly name: "quantityToMint";
|
|
7804
|
-
readonly internalType: "uint256";
|
|
7805
|
-
readonly type: "uint256";
|
|
7806
|
-
}, {
|
|
7807
|
-
readonly name: "mintArguments";
|
|
7808
|
-
readonly internalType: "struct MintArguments";
|
|
7809
|
-
readonly type: "tuple";
|
|
7810
|
-
readonly components: readonly [{
|
|
7811
|
-
readonly name: "mintRecipient";
|
|
7812
|
-
readonly internalType: "address";
|
|
7813
|
-
readonly type: "address";
|
|
7814
|
-
}, {
|
|
7815
|
-
readonly name: "mintComment";
|
|
7816
|
-
readonly internalType: "string";
|
|
7817
|
-
readonly type: "string";
|
|
7818
|
-
}, {
|
|
7819
|
-
readonly name: "mintRewardsRecipients";
|
|
8086
|
+
readonly name: "additionalAdmins";
|
|
7820
8087
|
readonly internalType: "address[]";
|
|
7821
8088
|
readonly type: "address[]";
|
|
7822
8089
|
}];
|
|
7823
8090
|
}, {
|
|
7824
|
-
readonly name: "
|
|
7825
|
-
readonly internalType: "address";
|
|
7826
|
-
readonly type: "address";
|
|
7827
|
-
}, {
|
|
7828
|
-
readonly name: "signerContract";
|
|
8091
|
+
readonly name: "premintCollection";
|
|
7829
8092
|
readonly internalType: "address";
|
|
7830
8093
|
readonly type: "address";
|
|
7831
|
-
}];
|
|
7832
|
-
readonly name: "premintErc20V1";
|
|
7833
|
-
readonly outputs: readonly [{
|
|
7834
|
-
readonly name: "result";
|
|
7835
|
-
readonly internalType: "struct PremintResult";
|
|
7836
|
-
readonly type: "tuple";
|
|
7837
|
-
readonly components: readonly [{
|
|
7838
|
-
readonly name: "contractAddress";
|
|
7839
|
-
readonly internalType: "address";
|
|
7840
|
-
readonly type: "address";
|
|
7841
|
-
}, {
|
|
7842
|
-
readonly name: "tokenId";
|
|
7843
|
-
readonly internalType: "uint256";
|
|
7844
|
-
readonly type: "uint256";
|
|
7845
|
-
}, {
|
|
7846
|
-
readonly name: "createdNewContract";
|
|
7847
|
-
readonly internalType: "bool";
|
|
7848
|
-
readonly type: "bool";
|
|
7849
|
-
}];
|
|
7850
|
-
}];
|
|
7851
|
-
}, {
|
|
7852
|
-
readonly stateMutability: "view";
|
|
7853
|
-
readonly type: "function";
|
|
7854
|
-
readonly inputs: readonly [{
|
|
7855
|
-
readonly name: "contractAddress";
|
|
7856
|
-
readonly internalType: "address";
|
|
7857
|
-
readonly type: "address";
|
|
7858
|
-
}, {
|
|
7859
|
-
readonly name: "uid";
|
|
7860
|
-
readonly internalType: "uint32";
|
|
7861
|
-
readonly type: "uint32";
|
|
7862
|
-
}];
|
|
7863
|
-
readonly name: "premintStatus";
|
|
7864
|
-
readonly outputs: readonly [{
|
|
7865
|
-
readonly name: "contractCreated";
|
|
7866
|
-
readonly internalType: "bool";
|
|
7867
|
-
readonly type: "bool";
|
|
7868
|
-
}, {
|
|
7869
|
-
readonly name: "tokenIdForPremint";
|
|
7870
|
-
readonly internalType: "uint256";
|
|
7871
|
-
readonly type: "uint256";
|
|
7872
|
-
}];
|
|
7873
|
-
}, {
|
|
7874
|
-
readonly stateMutability: "payable";
|
|
7875
|
-
readonly type: "function";
|
|
7876
|
-
readonly inputs: readonly [{
|
|
7877
|
-
readonly name: "contractConfig";
|
|
7878
|
-
readonly internalType: "struct ContractCreationConfig";
|
|
7879
|
-
readonly type: "tuple";
|
|
7880
|
-
readonly components: readonly [{
|
|
7881
|
-
readonly name: "contractAdmin";
|
|
7882
|
-
readonly internalType: "address";
|
|
7883
|
-
readonly type: "address";
|
|
7884
|
-
}, {
|
|
7885
|
-
readonly name: "contractURI";
|
|
7886
|
-
readonly internalType: "string";
|
|
7887
|
-
readonly type: "string";
|
|
7888
|
-
}, {
|
|
7889
|
-
readonly name: "contractName";
|
|
7890
|
-
readonly internalType: "string";
|
|
7891
|
-
readonly type: "string";
|
|
7892
|
-
}];
|
|
7893
8094
|
}, {
|
|
7894
|
-
readonly name: "
|
|
7895
|
-
readonly internalType: "struct
|
|
7896
|
-
readonly type: "tuple";
|
|
7897
|
-
readonly components: readonly [{
|
|
7898
|
-
readonly name: "tokenConfig";
|
|
7899
|
-
readonly internalType: "struct TokenCreationConfig";
|
|
7900
|
-
readonly type: "tuple";
|
|
7901
|
-
readonly components: readonly [{
|
|
7902
|
-
readonly name: "tokenURI";
|
|
7903
|
-
readonly internalType: "string";
|
|
7904
|
-
readonly type: "string";
|
|
7905
|
-
}, {
|
|
7906
|
-
readonly name: "maxSupply";
|
|
7907
|
-
readonly internalType: "uint256";
|
|
7908
|
-
readonly type: "uint256";
|
|
7909
|
-
}, {
|
|
7910
|
-
readonly name: "maxTokensPerAddress";
|
|
7911
|
-
readonly internalType: "uint64";
|
|
7912
|
-
readonly type: "uint64";
|
|
7913
|
-
}, {
|
|
7914
|
-
readonly name: "pricePerToken";
|
|
7915
|
-
readonly internalType: "uint96";
|
|
7916
|
-
readonly type: "uint96";
|
|
7917
|
-
}, {
|
|
7918
|
-
readonly name: "mintStart";
|
|
7919
|
-
readonly internalType: "uint64";
|
|
7920
|
-
readonly type: "uint64";
|
|
7921
|
-
}, {
|
|
7922
|
-
readonly name: "mintDuration";
|
|
7923
|
-
readonly internalType: "uint64";
|
|
7924
|
-
readonly type: "uint64";
|
|
7925
|
-
}, {
|
|
7926
|
-
readonly name: "royaltyMintSchedule";
|
|
7927
|
-
readonly internalType: "uint32";
|
|
7928
|
-
readonly type: "uint32";
|
|
7929
|
-
}, {
|
|
7930
|
-
readonly name: "royaltyBPS";
|
|
7931
|
-
readonly internalType: "uint32";
|
|
7932
|
-
readonly type: "uint32";
|
|
7933
|
-
}, {
|
|
7934
|
-
readonly name: "royaltyRecipient";
|
|
7935
|
-
readonly internalType: "address";
|
|
7936
|
-
readonly type: "address";
|
|
7937
|
-
}, {
|
|
7938
|
-
readonly name: "fixedPriceMinter";
|
|
7939
|
-
readonly internalType: "address";
|
|
7940
|
-
readonly type: "address";
|
|
7941
|
-
}];
|
|
7942
|
-
}, {
|
|
8095
|
+
readonly name: "encodedPremintConfig";
|
|
8096
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
8097
|
+
readonly type: "tuple";
|
|
8098
|
+
readonly components: readonly [{
|
|
7943
8099
|
readonly name: "uid";
|
|
7944
8100
|
readonly internalType: "uint32";
|
|
7945
8101
|
readonly type: "uint32";
|
|
@@ -7951,6 +8107,14 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7951
8107
|
readonly name: "deleted";
|
|
7952
8108
|
readonly internalType: "bool";
|
|
7953
8109
|
readonly type: "bool";
|
|
8110
|
+
}, {
|
|
8111
|
+
readonly name: "tokenConfig";
|
|
8112
|
+
readonly internalType: "bytes";
|
|
8113
|
+
readonly type: "bytes";
|
|
8114
|
+
}, {
|
|
8115
|
+
readonly name: "premintConfigVersion";
|
|
8116
|
+
readonly internalType: "bytes32";
|
|
8117
|
+
readonly type: "bytes32";
|
|
7954
8118
|
}];
|
|
7955
8119
|
}, {
|
|
7956
8120
|
readonly name: "signature";
|
|
@@ -7977,10 +8141,18 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7977
8141
|
readonly internalType: "address[]";
|
|
7978
8142
|
readonly type: "address[]";
|
|
7979
8143
|
}];
|
|
8144
|
+
}, {
|
|
8145
|
+
readonly name: "firstMinter";
|
|
8146
|
+
readonly internalType: "address";
|
|
8147
|
+
readonly type: "address";
|
|
8148
|
+
}, {
|
|
8149
|
+
readonly name: "signerContract";
|
|
8150
|
+
readonly internalType: "address";
|
|
8151
|
+
readonly type: "address";
|
|
7980
8152
|
}];
|
|
7981
|
-
readonly name: "
|
|
8153
|
+
readonly name: "premint";
|
|
7982
8154
|
readonly outputs: readonly [{
|
|
7983
|
-
readonly name: "
|
|
8155
|
+
readonly name: "premintResult";
|
|
7984
8156
|
readonly internalType: "struct PremintResult";
|
|
7985
8157
|
readonly type: "tuple";
|
|
7986
8158
|
readonly components: readonly [{
|
|
@@ -7997,6 +8169,28 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7997
8169
|
readonly type: "bool";
|
|
7998
8170
|
}];
|
|
7999
8171
|
}];
|
|
8172
|
+
}, {
|
|
8173
|
+
readonly stateMutability: "view";
|
|
8174
|
+
readonly type: "function";
|
|
8175
|
+
readonly inputs: readonly [{
|
|
8176
|
+
readonly name: "contractAddress";
|
|
8177
|
+
readonly internalType: "address";
|
|
8178
|
+
readonly type: "address";
|
|
8179
|
+
}, {
|
|
8180
|
+
readonly name: "uid";
|
|
8181
|
+
readonly internalType: "uint32";
|
|
8182
|
+
readonly type: "uint32";
|
|
8183
|
+
}];
|
|
8184
|
+
readonly name: "premintStatus";
|
|
8185
|
+
readonly outputs: readonly [{
|
|
8186
|
+
readonly name: "contractCreated";
|
|
8187
|
+
readonly internalType: "bool";
|
|
8188
|
+
readonly type: "bool";
|
|
8189
|
+
}, {
|
|
8190
|
+
readonly name: "tokenIdForPremint";
|
|
8191
|
+
readonly internalType: "uint256";
|
|
8192
|
+
readonly type: "uint256";
|
|
8193
|
+
}];
|
|
8000
8194
|
}, {
|
|
8001
8195
|
readonly stateMutability: "payable";
|
|
8002
8196
|
readonly type: "function";
|
|
@@ -8019,11 +8213,11 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
8019
8213
|
}];
|
|
8020
8214
|
}, {
|
|
8021
8215
|
readonly name: "premintConfig";
|
|
8022
|
-
readonly internalType: "struct
|
|
8216
|
+
readonly internalType: "struct PremintConfig";
|
|
8023
8217
|
readonly type: "tuple";
|
|
8024
8218
|
readonly components: readonly [{
|
|
8025
8219
|
readonly name: "tokenConfig";
|
|
8026
|
-
readonly internalType: "struct
|
|
8220
|
+
readonly internalType: "struct TokenCreationConfig";
|
|
8027
8221
|
readonly type: "tuple";
|
|
8028
8222
|
readonly components: readonly [{
|
|
8029
8223
|
readonly name: "tokenURI";
|
|
@@ -8049,22 +8243,22 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
8049
8243
|
readonly name: "mintDuration";
|
|
8050
8244
|
readonly internalType: "uint64";
|
|
8051
8245
|
readonly type: "uint64";
|
|
8246
|
+
}, {
|
|
8247
|
+
readonly name: "royaltyMintSchedule";
|
|
8248
|
+
readonly internalType: "uint32";
|
|
8249
|
+
readonly type: "uint32";
|
|
8052
8250
|
}, {
|
|
8053
8251
|
readonly name: "royaltyBPS";
|
|
8054
8252
|
readonly internalType: "uint32";
|
|
8055
8253
|
readonly type: "uint32";
|
|
8056
8254
|
}, {
|
|
8057
|
-
readonly name: "
|
|
8255
|
+
readonly name: "royaltyRecipient";
|
|
8058
8256
|
readonly internalType: "address";
|
|
8059
8257
|
readonly type: "address";
|
|
8060
8258
|
}, {
|
|
8061
8259
|
readonly name: "fixedPriceMinter";
|
|
8062
8260
|
readonly internalType: "address";
|
|
8063
8261
|
readonly type: "address";
|
|
8064
|
-
}, {
|
|
8065
|
-
readonly name: "createReferral";
|
|
8066
|
-
readonly internalType: "address";
|
|
8067
|
-
readonly type: "address";
|
|
8068
8262
|
}];
|
|
8069
8263
|
}, {
|
|
8070
8264
|
readonly name: "uid";
|
|
@@ -8105,9 +8299,9 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
8105
8299
|
readonly type: "address[]";
|
|
8106
8300
|
}];
|
|
8107
8301
|
}];
|
|
8108
|
-
readonly name: "
|
|
8302
|
+
readonly name: "premintV1";
|
|
8109
8303
|
readonly outputs: readonly [{
|
|
8110
|
-
readonly name: "
|
|
8304
|
+
readonly name: "";
|
|
8111
8305
|
readonly internalType: "struct PremintResult";
|
|
8112
8306
|
readonly type: "tuple";
|
|
8113
8307
|
readonly components: readonly [{
|
|
@@ -8231,18 +8425,10 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
8231
8425
|
readonly internalType: "address[]";
|
|
8232
8426
|
readonly type: "address[]";
|
|
8233
8427
|
}];
|
|
8234
|
-
}, {
|
|
8235
|
-
readonly name: "firstMinter";
|
|
8236
|
-
readonly internalType: "address";
|
|
8237
|
-
readonly type: "address";
|
|
8238
|
-
}, {
|
|
8239
|
-
readonly name: "signerContract";
|
|
8240
|
-
readonly internalType: "address";
|
|
8241
|
-
readonly type: "address";
|
|
8242
8428
|
}];
|
|
8243
|
-
readonly name: "
|
|
8429
|
+
readonly name: "premintV2";
|
|
8244
8430
|
readonly outputs: readonly [{
|
|
8245
|
-
readonly name: "
|
|
8431
|
+
readonly name: "";
|
|
8246
8432
|
readonly internalType: "struct PremintResult";
|
|
8247
8433
|
readonly type: "tuple";
|
|
8248
8434
|
readonly components: readonly [{
|
|
@@ -10852,6 +11038,7 @@ export declare const zoraCreatorRedeemMinterFactoryConfig: {
|
|
|
10852
11038
|
}];
|
|
10853
11039
|
};
|
|
10854
11040
|
/**
|
|
11041
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
10855
11042
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
10856
11043
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
10857
11044
|
*/
|
|
@@ -12097,19 +12284,23 @@ export declare const zoraMints1155ABI: readonly [{
|
|
|
12097
12284
|
readonly name: "TokenNotMintable";
|
|
12098
12285
|
}];
|
|
12099
12286
|
/**
|
|
12287
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12100
12288
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12101
12289
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12102
12290
|
*/
|
|
12103
12291
|
export declare const zoraMints1155Address: {
|
|
12292
|
+
readonly 84532: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12104
12293
|
readonly 7777777: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12105
12294
|
readonly 999999999: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12106
12295
|
};
|
|
12107
12296
|
/**
|
|
12297
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12108
12298
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12109
12299
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12110
12300
|
*/
|
|
12111
12301
|
export declare const zoraMints1155Config: {
|
|
12112
12302
|
readonly address: {
|
|
12303
|
+
readonly 84532: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12113
12304
|
readonly 7777777: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12114
12305
|
readonly 999999999: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12115
12306
|
};
|
|
@@ -13356,6 +13547,7 @@ export declare const zoraMints1155Config: {
|
|
|
13356
13547
|
}];
|
|
13357
13548
|
};
|
|
13358
13549
|
/**
|
|
13550
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
13359
13551
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
13360
13552
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
13361
13553
|
*/
|
|
@@ -13364,7 +13556,7 @@ export declare const zoraMintsManagerImplABI: readonly [{
|
|
|
13364
13556
|
readonly type: "constructor";
|
|
13365
13557
|
readonly inputs: readonly [{
|
|
13366
13558
|
readonly name: "_premintExecutor";
|
|
13367
|
-
readonly internalType: "contract
|
|
13559
|
+
readonly internalType: "contract IZoraCreator1155PremintExecutorAllVersions";
|
|
13368
13560
|
readonly type: "address";
|
|
13369
13561
|
}];
|
|
13370
13562
|
}, {
|
|
@@ -13470,6 +13662,104 @@ export declare const zoraMintsManagerImplABI: readonly [{
|
|
|
13470
13662
|
}];
|
|
13471
13663
|
readonly name: "collect";
|
|
13472
13664
|
readonly outputs: readonly [];
|
|
13665
|
+
}, {
|
|
13666
|
+
readonly stateMutability: "payable";
|
|
13667
|
+
readonly type: "function";
|
|
13668
|
+
readonly inputs: readonly [{
|
|
13669
|
+
readonly name: "contractConfig";
|
|
13670
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
13671
|
+
readonly type: "tuple";
|
|
13672
|
+
readonly components: readonly [{
|
|
13673
|
+
readonly name: "contractAdmin";
|
|
13674
|
+
readonly internalType: "address";
|
|
13675
|
+
readonly type: "address";
|
|
13676
|
+
}, {
|
|
13677
|
+
readonly name: "contractURI";
|
|
13678
|
+
readonly internalType: "string";
|
|
13679
|
+
readonly type: "string";
|
|
13680
|
+
}, {
|
|
13681
|
+
readonly name: "contractName";
|
|
13682
|
+
readonly internalType: "string";
|
|
13683
|
+
readonly type: "string";
|
|
13684
|
+
}, {
|
|
13685
|
+
readonly name: "additionalAdmins";
|
|
13686
|
+
readonly internalType: "address[]";
|
|
13687
|
+
readonly type: "address[]";
|
|
13688
|
+
}];
|
|
13689
|
+
}, {
|
|
13690
|
+
readonly name: "tokenContract";
|
|
13691
|
+
readonly internalType: "address";
|
|
13692
|
+
readonly type: "address";
|
|
13693
|
+
}, {
|
|
13694
|
+
readonly name: "premintConfig";
|
|
13695
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
13696
|
+
readonly type: "tuple";
|
|
13697
|
+
readonly components: readonly [{
|
|
13698
|
+
readonly name: "uid";
|
|
13699
|
+
readonly internalType: "uint32";
|
|
13700
|
+
readonly type: "uint32";
|
|
13701
|
+
}, {
|
|
13702
|
+
readonly name: "version";
|
|
13703
|
+
readonly internalType: "uint32";
|
|
13704
|
+
readonly type: "uint32";
|
|
13705
|
+
}, {
|
|
13706
|
+
readonly name: "deleted";
|
|
13707
|
+
readonly internalType: "bool";
|
|
13708
|
+
readonly type: "bool";
|
|
13709
|
+
}, {
|
|
13710
|
+
readonly name: "tokenConfig";
|
|
13711
|
+
readonly internalType: "bytes";
|
|
13712
|
+
readonly type: "bytes";
|
|
13713
|
+
}, {
|
|
13714
|
+
readonly name: "premintConfigVersion";
|
|
13715
|
+
readonly internalType: "bytes32";
|
|
13716
|
+
readonly type: "bytes32";
|
|
13717
|
+
}];
|
|
13718
|
+
}, {
|
|
13719
|
+
readonly name: "signature";
|
|
13720
|
+
readonly internalType: "bytes";
|
|
13721
|
+
readonly type: "bytes";
|
|
13722
|
+
}, {
|
|
13723
|
+
readonly name: "mintArguments";
|
|
13724
|
+
readonly internalType: "struct MintArguments";
|
|
13725
|
+
readonly type: "tuple";
|
|
13726
|
+
readonly components: readonly [{
|
|
13727
|
+
readonly name: "mintRecipient";
|
|
13728
|
+
readonly internalType: "address";
|
|
13729
|
+
readonly type: "address";
|
|
13730
|
+
}, {
|
|
13731
|
+
readonly name: "mintComment";
|
|
13732
|
+
readonly internalType: "string";
|
|
13733
|
+
readonly type: "string";
|
|
13734
|
+
}, {
|
|
13735
|
+
readonly name: "mintRewardsRecipients";
|
|
13736
|
+
readonly internalType: "address[]";
|
|
13737
|
+
readonly type: "address[]";
|
|
13738
|
+
}];
|
|
13739
|
+
}, {
|
|
13740
|
+
readonly name: "signerContract";
|
|
13741
|
+
readonly internalType: "address";
|
|
13742
|
+
readonly type: "address";
|
|
13743
|
+
}];
|
|
13744
|
+
readonly name: "collectPremint";
|
|
13745
|
+
readonly outputs: readonly [{
|
|
13746
|
+
readonly name: "result";
|
|
13747
|
+
readonly internalType: "struct PremintResult";
|
|
13748
|
+
readonly type: "tuple";
|
|
13749
|
+
readonly components: readonly [{
|
|
13750
|
+
readonly name: "contractAddress";
|
|
13751
|
+
readonly internalType: "address";
|
|
13752
|
+
readonly type: "address";
|
|
13753
|
+
}, {
|
|
13754
|
+
readonly name: "tokenId";
|
|
13755
|
+
readonly internalType: "uint256";
|
|
13756
|
+
readonly type: "uint256";
|
|
13757
|
+
}, {
|
|
13758
|
+
readonly name: "createdNewContract";
|
|
13759
|
+
readonly internalType: "bool";
|
|
13760
|
+
readonly type: "bool";
|
|
13761
|
+
}];
|
|
13762
|
+
}];
|
|
13473
13763
|
}, {
|
|
13474
13764
|
readonly stateMutability: "payable";
|
|
13475
13765
|
readonly type: "function";
|
|
@@ -14589,19 +14879,23 @@ export declare const zoraMintsManagerImplABI: readonly [{
|
|
|
14589
14879
|
readonly name: "premintSignerContractNotAContract";
|
|
14590
14880
|
}];
|
|
14591
14881
|
/**
|
|
14882
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14592
14883
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14593
14884
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14594
14885
|
*/
|
|
14595
14886
|
export declare const zoraMintsManagerImplAddress: {
|
|
14887
|
+
readonly 84532: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14596
14888
|
readonly 7777777: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14597
14889
|
readonly 999999999: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14598
14890
|
};
|
|
14599
14891
|
/**
|
|
14892
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14600
14893
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14601
14894
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14602
14895
|
*/
|
|
14603
14896
|
export declare const zoraMintsManagerImplConfig: {
|
|
14604
14897
|
readonly address: {
|
|
14898
|
+
readonly 84532: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14605
14899
|
readonly 7777777: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14606
14900
|
readonly 999999999: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14607
14901
|
};
|
|
@@ -14610,7 +14904,7 @@ export declare const zoraMintsManagerImplConfig: {
|
|
|
14610
14904
|
readonly type: "constructor";
|
|
14611
14905
|
readonly inputs: readonly [{
|
|
14612
14906
|
readonly name: "_premintExecutor";
|
|
14613
|
-
readonly internalType: "contract
|
|
14907
|
+
readonly internalType: "contract IZoraCreator1155PremintExecutorAllVersions";
|
|
14614
14908
|
readonly type: "address";
|
|
14615
14909
|
}];
|
|
14616
14910
|
}, {
|
|
@@ -14716,6 +15010,104 @@ export declare const zoraMintsManagerImplConfig: {
|
|
|
14716
15010
|
}];
|
|
14717
15011
|
readonly name: "collect";
|
|
14718
15012
|
readonly outputs: readonly [];
|
|
15013
|
+
}, {
|
|
15014
|
+
readonly stateMutability: "payable";
|
|
15015
|
+
readonly type: "function";
|
|
15016
|
+
readonly inputs: readonly [{
|
|
15017
|
+
readonly name: "contractConfig";
|
|
15018
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
15019
|
+
readonly type: "tuple";
|
|
15020
|
+
readonly components: readonly [{
|
|
15021
|
+
readonly name: "contractAdmin";
|
|
15022
|
+
readonly internalType: "address";
|
|
15023
|
+
readonly type: "address";
|
|
15024
|
+
}, {
|
|
15025
|
+
readonly name: "contractURI";
|
|
15026
|
+
readonly internalType: "string";
|
|
15027
|
+
readonly type: "string";
|
|
15028
|
+
}, {
|
|
15029
|
+
readonly name: "contractName";
|
|
15030
|
+
readonly internalType: "string";
|
|
15031
|
+
readonly type: "string";
|
|
15032
|
+
}, {
|
|
15033
|
+
readonly name: "additionalAdmins";
|
|
15034
|
+
readonly internalType: "address[]";
|
|
15035
|
+
readonly type: "address[]";
|
|
15036
|
+
}];
|
|
15037
|
+
}, {
|
|
15038
|
+
readonly name: "tokenContract";
|
|
15039
|
+
readonly internalType: "address";
|
|
15040
|
+
readonly type: "address";
|
|
15041
|
+
}, {
|
|
15042
|
+
readonly name: "premintConfig";
|
|
15043
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
15044
|
+
readonly type: "tuple";
|
|
15045
|
+
readonly components: readonly [{
|
|
15046
|
+
readonly name: "uid";
|
|
15047
|
+
readonly internalType: "uint32";
|
|
15048
|
+
readonly type: "uint32";
|
|
15049
|
+
}, {
|
|
15050
|
+
readonly name: "version";
|
|
15051
|
+
readonly internalType: "uint32";
|
|
15052
|
+
readonly type: "uint32";
|
|
15053
|
+
}, {
|
|
15054
|
+
readonly name: "deleted";
|
|
15055
|
+
readonly internalType: "bool";
|
|
15056
|
+
readonly type: "bool";
|
|
15057
|
+
}, {
|
|
15058
|
+
readonly name: "tokenConfig";
|
|
15059
|
+
readonly internalType: "bytes";
|
|
15060
|
+
readonly type: "bytes";
|
|
15061
|
+
}, {
|
|
15062
|
+
readonly name: "premintConfigVersion";
|
|
15063
|
+
readonly internalType: "bytes32";
|
|
15064
|
+
readonly type: "bytes32";
|
|
15065
|
+
}];
|
|
15066
|
+
}, {
|
|
15067
|
+
readonly name: "signature";
|
|
15068
|
+
readonly internalType: "bytes";
|
|
15069
|
+
readonly type: "bytes";
|
|
15070
|
+
}, {
|
|
15071
|
+
readonly name: "mintArguments";
|
|
15072
|
+
readonly internalType: "struct MintArguments";
|
|
15073
|
+
readonly type: "tuple";
|
|
15074
|
+
readonly components: readonly [{
|
|
15075
|
+
readonly name: "mintRecipient";
|
|
15076
|
+
readonly internalType: "address";
|
|
15077
|
+
readonly type: "address";
|
|
15078
|
+
}, {
|
|
15079
|
+
readonly name: "mintComment";
|
|
15080
|
+
readonly internalType: "string";
|
|
15081
|
+
readonly type: "string";
|
|
15082
|
+
}, {
|
|
15083
|
+
readonly name: "mintRewardsRecipients";
|
|
15084
|
+
readonly internalType: "address[]";
|
|
15085
|
+
readonly type: "address[]";
|
|
15086
|
+
}];
|
|
15087
|
+
}, {
|
|
15088
|
+
readonly name: "signerContract";
|
|
15089
|
+
readonly internalType: "address";
|
|
15090
|
+
readonly type: "address";
|
|
15091
|
+
}];
|
|
15092
|
+
readonly name: "collectPremint";
|
|
15093
|
+
readonly outputs: readonly [{
|
|
15094
|
+
readonly name: "result";
|
|
15095
|
+
readonly internalType: "struct PremintResult";
|
|
15096
|
+
readonly type: "tuple";
|
|
15097
|
+
readonly components: readonly [{
|
|
15098
|
+
readonly name: "contractAddress";
|
|
15099
|
+
readonly internalType: "address";
|
|
15100
|
+
readonly type: "address";
|
|
15101
|
+
}, {
|
|
15102
|
+
readonly name: "tokenId";
|
|
15103
|
+
readonly internalType: "uint256";
|
|
15104
|
+
readonly type: "uint256";
|
|
15105
|
+
}, {
|
|
15106
|
+
readonly name: "createdNewContract";
|
|
15107
|
+
readonly internalType: "bool";
|
|
15108
|
+
readonly type: "bool";
|
|
15109
|
+
}];
|
|
15110
|
+
}];
|
|
14719
15111
|
}, {
|
|
14720
15112
|
readonly stateMutability: "payable";
|
|
14721
15113
|
readonly type: "function";
|