@zoralabs/protocol-deployments 0.1.10 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +24 -11
- package/CHANGELOG.md +12 -0
- package/dist/_esm-ZN7ZVJVO.js +4027 -0
- package/dist/_esm-ZN7ZVJVO.js.map +1 -0
- package/dist/ccip-IGMHQQR7.js +15 -0
- package/dist/ccip-IGMHQQR7.js.map +1 -0
- package/dist/chunk-2FDPSBOH.js +118 -0
- package/dist/chunk-2FDPSBOH.js.map +1 -0
- package/dist/chunk-3EJPJMEH.js +44 -0
- package/dist/chunk-3EJPJMEH.js.map +1 -0
- package/dist/chunk-KIPP2F4J.js +3217 -0
- package/dist/chunk-KIPP2F4J.js.map +1 -0
- package/dist/generated/1155.d.ts +2 -2
- package/dist/generated/mints.d.ts +46 -11
- package/dist/generated/mints.d.ts.map +1 -1
- package/dist/generated/wagmi.d.ts +1627 -556
- package/dist/generated/wagmi.d.ts.map +1 -1
- package/dist/index.cjs +2474 -325
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +761 -205
- package/dist/index.js.map +1 -1
- package/dist/secp256k1-R7PEGLZR.js +2222 -0
- package/dist/secp256k1-R7PEGLZR.js.map +1 -0
- package/dist/typedData.d.ts +18 -2
- package/dist/typedData.d.ts.map +1 -1
- package/dist/types.d.ts +41 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +2 -2
- package/src/generated/1155.ts +25 -25
- package/src/generated/mints.ts +48 -30
- package/src/generated/wagmi.ts +696 -145
- package/src/index.ts +1 -0
- package/src/typedData.ts +127 -11
- package/src/types.ts +109 -0
|
@@ -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,220 @@ 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 Ethereum Etherscan__](https://etherscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1993
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1994
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1995
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1996
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1997
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1998
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1999
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2000
|
+
*/
|
|
2001
|
+
export declare const mintsEthUnwrapperAndCallerABI: readonly [{
|
|
2002
|
+
readonly stateMutability: "nonpayable";
|
|
2003
|
+
readonly type: "constructor";
|
|
2004
|
+
readonly inputs: readonly [{
|
|
2005
|
+
readonly name: "_zoraMints1155";
|
|
2006
|
+
readonly internalType: "contract IZoraMints1155";
|
|
2007
|
+
readonly type: "address";
|
|
2008
|
+
}];
|
|
2009
|
+
}, {
|
|
2010
|
+
readonly stateMutability: "payable";
|
|
2011
|
+
readonly type: "receive";
|
|
2012
|
+
}, {
|
|
2013
|
+
readonly stateMutability: "nonpayable";
|
|
2014
|
+
readonly type: "function";
|
|
2015
|
+
readonly inputs: readonly [{
|
|
2016
|
+
readonly name: "";
|
|
2017
|
+
readonly internalType: "address";
|
|
2018
|
+
readonly type: "address";
|
|
2019
|
+
}, {
|
|
2020
|
+
readonly name: "from";
|
|
2021
|
+
readonly internalType: "address";
|
|
2022
|
+
readonly type: "address";
|
|
2023
|
+
}, {
|
|
2024
|
+
readonly name: "ids";
|
|
2025
|
+
readonly internalType: "uint256[]";
|
|
2026
|
+
readonly type: "uint256[]";
|
|
2027
|
+
}, {
|
|
2028
|
+
readonly name: "values";
|
|
2029
|
+
readonly internalType: "uint256[]";
|
|
2030
|
+
readonly type: "uint256[]";
|
|
2031
|
+
}, {
|
|
2032
|
+
readonly name: "data";
|
|
2033
|
+
readonly internalType: "bytes";
|
|
2034
|
+
readonly type: "bytes";
|
|
2035
|
+
}];
|
|
2036
|
+
readonly name: "onERC1155BatchReceived";
|
|
2037
|
+
readonly outputs: readonly [{
|
|
2038
|
+
readonly name: "";
|
|
2039
|
+
readonly internalType: "bytes4";
|
|
1716
2040
|
readonly type: "bytes4";
|
|
1717
2041
|
}];
|
|
1718
2042
|
}, {
|
|
@@ -1838,19 +2162,45 @@ export declare const mintsEthUnwrapperAndCallerABI: readonly [{
|
|
|
1838
2162
|
readonly name: "UnknownUserAction";
|
|
1839
2163
|
}];
|
|
1840
2164
|
/**
|
|
2165
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2166
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2167
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2168
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2169
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2170
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1841
2171
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1842
2172
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1843
2173
|
*/
|
|
1844
2174
|
export declare const mintsEthUnwrapperAndCallerAddress: {
|
|
2175
|
+
readonly 1: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2176
|
+
readonly 10: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2177
|
+
readonly 8453: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2178
|
+
readonly 42161: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2179
|
+
readonly 81457: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2180
|
+
readonly 84532: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2181
|
+
readonly 421614: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1845
2182
|
readonly 7777777: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1846
2183
|
readonly 999999999: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1847
2184
|
};
|
|
1848
2185
|
/**
|
|
2186
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2187
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2188
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2189
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2190
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
2191
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1849
2192
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1850
2193
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1851
2194
|
*/
|
|
1852
2195
|
export declare const mintsEthUnwrapperAndCallerConfig: {
|
|
1853
2196
|
readonly address: {
|
|
2197
|
+
readonly 1: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2198
|
+
readonly 10: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2199
|
+
readonly 8453: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2200
|
+
readonly 42161: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2201
|
+
readonly 81457: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2202
|
+
readonly 84532: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
2203
|
+
readonly 421614: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1854
2204
|
readonly 7777777: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1855
2205
|
readonly 999999999: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1856
2206
|
};
|
|
@@ -2865,37 +3215,19 @@ export declare const protocolRewardsConfig: {
|
|
|
2865
3215
|
}];
|
|
2866
3216
|
};
|
|
2867
3217
|
/**
|
|
2868
|
-
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/
|
|
2869
|
-
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/
|
|
2870
|
-
* - [__View Contract on
|
|
2871
|
-
* - [__View Contract on
|
|
2872
|
-
* - [__View Contract on
|
|
2873
|
-
* - [__View Contract on
|
|
2874
|
-
* - [__View Contract on
|
|
2875
|
-
* - [__View Contract on
|
|
2876
|
-
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2877
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3218
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3219
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3220
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3221
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3222
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3223
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3224
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3225
|
+
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
2878
3226
|
*/
|
|
2879
|
-
export declare const
|
|
3227
|
+
export declare const upgradeGateABI: readonly [{
|
|
2880
3228
|
readonly stateMutability: "nonpayable";
|
|
2881
3229
|
readonly type: "constructor";
|
|
2882
|
-
readonly inputs: readonly [
|
|
2883
|
-
readonly name: "_zora1155Impl";
|
|
2884
|
-
readonly internalType: "contract IZoraCreator1155";
|
|
2885
|
-
readonly type: "address";
|
|
2886
|
-
}, {
|
|
2887
|
-
readonly name: "_merkleMinter";
|
|
2888
|
-
readonly internalType: "contract IMinter1155";
|
|
2889
|
-
readonly type: "address";
|
|
2890
|
-
}, {
|
|
2891
|
-
readonly name: "_fixedPriceMinter";
|
|
2892
|
-
readonly internalType: "contract IMinter1155";
|
|
2893
|
-
readonly type: "address";
|
|
2894
|
-
}, {
|
|
2895
|
-
readonly name: "_redeemMinterFactory";
|
|
2896
|
-
readonly internalType: "contract IMinter1155";
|
|
2897
|
-
readonly type: "address";
|
|
2898
|
-
}];
|
|
3230
|
+
readonly inputs: readonly [];
|
|
2899
3231
|
}, {
|
|
2900
3232
|
readonly stateMutability: "nonpayable";
|
|
2901
3233
|
readonly type: "function";
|
|
@@ -2929,53 +3261,661 @@ export declare const zoraCreator1155FactoryImplABI: readonly [{
|
|
|
2929
3261
|
readonly type: "string";
|
|
2930
3262
|
}];
|
|
2931
3263
|
}, {
|
|
2932
|
-
readonly stateMutability: "
|
|
3264
|
+
readonly stateMutability: "nonpayable";
|
|
2933
3265
|
readonly type: "function";
|
|
2934
|
-
readonly inputs: readonly [
|
|
2935
|
-
|
|
3266
|
+
readonly inputs: readonly [{
|
|
3267
|
+
readonly name: "_initialOwner";
|
|
3268
|
+
readonly internalType: "address";
|
|
3269
|
+
readonly type: "address";
|
|
3270
|
+
}];
|
|
3271
|
+
readonly name: "initialize";
|
|
3272
|
+
readonly outputs: readonly [];
|
|
3273
|
+
}, {
|
|
3274
|
+
readonly stateMutability: "view";
|
|
3275
|
+
readonly type: "function";
|
|
3276
|
+
readonly inputs: readonly [{
|
|
3277
|
+
readonly name: "";
|
|
3278
|
+
readonly internalType: "address";
|
|
3279
|
+
readonly type: "address";
|
|
3280
|
+
}, {
|
|
3281
|
+
readonly name: "";
|
|
3282
|
+
readonly internalType: "address";
|
|
3283
|
+
readonly type: "address";
|
|
3284
|
+
}];
|
|
3285
|
+
readonly name: "isAllowedUpgrade";
|
|
2936
3286
|
readonly outputs: readonly [{
|
|
2937
3287
|
readonly name: "";
|
|
2938
|
-
readonly internalType: "
|
|
2939
|
-
readonly type: "
|
|
3288
|
+
readonly internalType: "bool";
|
|
3289
|
+
readonly type: "bool";
|
|
2940
3290
|
}];
|
|
2941
3291
|
}, {
|
|
2942
|
-
readonly stateMutability: "
|
|
3292
|
+
readonly stateMutability: "view";
|
|
2943
3293
|
readonly type: "function";
|
|
2944
3294
|
readonly inputs: readonly [{
|
|
2945
|
-
readonly name: "
|
|
2946
|
-
readonly internalType: "
|
|
2947
|
-
readonly type: "string";
|
|
2948
|
-
}, {
|
|
2949
|
-
readonly name: "name";
|
|
2950
|
-
readonly internalType: "string";
|
|
2951
|
-
readonly type: "string";
|
|
2952
|
-
}, {
|
|
2953
|
-
readonly name: "defaultRoyaltyConfiguration";
|
|
2954
|
-
readonly internalType: "struct ICreatorRoyaltiesControl.RoyaltyConfiguration";
|
|
2955
|
-
readonly type: "tuple";
|
|
2956
|
-
readonly components: readonly [{
|
|
2957
|
-
readonly name: "royaltyMintSchedule";
|
|
2958
|
-
readonly internalType: "uint32";
|
|
2959
|
-
readonly type: "uint32";
|
|
2960
|
-
}, {
|
|
2961
|
-
readonly name: "royaltyBPS";
|
|
2962
|
-
readonly internalType: "uint32";
|
|
2963
|
-
readonly type: "uint32";
|
|
2964
|
-
}, {
|
|
2965
|
-
readonly name: "royaltyRecipient";
|
|
2966
|
-
readonly internalType: "address";
|
|
2967
|
-
readonly type: "address";
|
|
2968
|
-
}];
|
|
2969
|
-
}, {
|
|
2970
|
-
readonly name: "defaultAdmin";
|
|
2971
|
-
readonly internalType: "address payable";
|
|
3295
|
+
readonly name: "baseImpl";
|
|
3296
|
+
readonly internalType: "address";
|
|
2972
3297
|
readonly type: "address";
|
|
2973
3298
|
}, {
|
|
2974
|
-
readonly name: "
|
|
2975
|
-
readonly internalType: "
|
|
2976
|
-
readonly type: "
|
|
3299
|
+
readonly name: "upgradeImpl";
|
|
3300
|
+
readonly internalType: "address";
|
|
3301
|
+
readonly type: "address";
|
|
2977
3302
|
}];
|
|
2978
|
-
readonly name: "
|
|
3303
|
+
readonly name: "isRegisteredUpgradePath";
|
|
3304
|
+
readonly outputs: readonly [{
|
|
3305
|
+
readonly name: "";
|
|
3306
|
+
readonly internalType: "bool";
|
|
3307
|
+
readonly type: "bool";
|
|
3308
|
+
}];
|
|
3309
|
+
}, {
|
|
3310
|
+
readonly stateMutability: "view";
|
|
3311
|
+
readonly type: "function";
|
|
3312
|
+
readonly inputs: readonly [];
|
|
3313
|
+
readonly name: "owner";
|
|
3314
|
+
readonly outputs: readonly [{
|
|
3315
|
+
readonly name: "";
|
|
3316
|
+
readonly internalType: "address";
|
|
3317
|
+
readonly type: "address";
|
|
3318
|
+
}];
|
|
3319
|
+
}, {
|
|
3320
|
+
readonly stateMutability: "view";
|
|
3321
|
+
readonly type: "function";
|
|
3322
|
+
readonly inputs: readonly [];
|
|
3323
|
+
readonly name: "pendingOwner";
|
|
3324
|
+
readonly outputs: readonly [{
|
|
3325
|
+
readonly name: "";
|
|
3326
|
+
readonly internalType: "address";
|
|
3327
|
+
readonly type: "address";
|
|
3328
|
+
}];
|
|
3329
|
+
}, {
|
|
3330
|
+
readonly stateMutability: "nonpayable";
|
|
3331
|
+
readonly type: "function";
|
|
3332
|
+
readonly inputs: readonly [{
|
|
3333
|
+
readonly name: "baseImpls";
|
|
3334
|
+
readonly internalType: "address[]";
|
|
3335
|
+
readonly type: "address[]";
|
|
3336
|
+
}, {
|
|
3337
|
+
readonly name: "upgradeImpl";
|
|
3338
|
+
readonly internalType: "address";
|
|
3339
|
+
readonly type: "address";
|
|
3340
|
+
}];
|
|
3341
|
+
readonly name: "registerUpgradePath";
|
|
3342
|
+
readonly outputs: readonly [];
|
|
3343
|
+
}, {
|
|
3344
|
+
readonly stateMutability: "nonpayable";
|
|
3345
|
+
readonly type: "function";
|
|
3346
|
+
readonly inputs: readonly [{
|
|
3347
|
+
readonly name: "baseImpl";
|
|
3348
|
+
readonly internalType: "address";
|
|
3349
|
+
readonly type: "address";
|
|
3350
|
+
}, {
|
|
3351
|
+
readonly name: "upgradeImpl";
|
|
3352
|
+
readonly internalType: "address";
|
|
3353
|
+
readonly type: "address";
|
|
3354
|
+
}];
|
|
3355
|
+
readonly name: "removeUpgradePath";
|
|
3356
|
+
readonly outputs: readonly [];
|
|
3357
|
+
}, {
|
|
3358
|
+
readonly stateMutability: "nonpayable";
|
|
3359
|
+
readonly type: "function";
|
|
3360
|
+
readonly inputs: readonly [];
|
|
3361
|
+
readonly name: "resignOwnership";
|
|
3362
|
+
readonly outputs: readonly [];
|
|
3363
|
+
}, {
|
|
3364
|
+
readonly stateMutability: "nonpayable";
|
|
3365
|
+
readonly type: "function";
|
|
3366
|
+
readonly inputs: readonly [{
|
|
3367
|
+
readonly name: "_newOwner";
|
|
3368
|
+
readonly internalType: "address";
|
|
3369
|
+
readonly type: "address";
|
|
3370
|
+
}];
|
|
3371
|
+
readonly name: "safeTransferOwnership";
|
|
3372
|
+
readonly outputs: readonly [];
|
|
3373
|
+
}, {
|
|
3374
|
+
readonly stateMutability: "nonpayable";
|
|
3375
|
+
readonly type: "function";
|
|
3376
|
+
readonly inputs: readonly [{
|
|
3377
|
+
readonly name: "_newOwner";
|
|
3378
|
+
readonly internalType: "address";
|
|
3379
|
+
readonly type: "address";
|
|
3380
|
+
}];
|
|
3381
|
+
readonly name: "transferOwnership";
|
|
3382
|
+
readonly outputs: readonly [];
|
|
3383
|
+
}, {
|
|
3384
|
+
readonly type: "event";
|
|
3385
|
+
readonly anonymous: false;
|
|
3386
|
+
readonly inputs: readonly [{
|
|
3387
|
+
readonly name: "version";
|
|
3388
|
+
readonly internalType: "uint8";
|
|
3389
|
+
readonly type: "uint8";
|
|
3390
|
+
readonly indexed: false;
|
|
3391
|
+
}];
|
|
3392
|
+
readonly name: "Initialized";
|
|
3393
|
+
}, {
|
|
3394
|
+
readonly type: "event";
|
|
3395
|
+
readonly anonymous: false;
|
|
3396
|
+
readonly inputs: readonly [{
|
|
3397
|
+
readonly name: "owner";
|
|
3398
|
+
readonly internalType: "address";
|
|
3399
|
+
readonly type: "address";
|
|
3400
|
+
readonly indexed: true;
|
|
3401
|
+
}, {
|
|
3402
|
+
readonly name: "canceledOwner";
|
|
3403
|
+
readonly internalType: "address";
|
|
3404
|
+
readonly type: "address";
|
|
3405
|
+
readonly indexed: true;
|
|
3406
|
+
}];
|
|
3407
|
+
readonly name: "OwnerCanceled";
|
|
3408
|
+
}, {
|
|
3409
|
+
readonly type: "event";
|
|
3410
|
+
readonly anonymous: false;
|
|
3411
|
+
readonly inputs: readonly [{
|
|
3412
|
+
readonly name: "owner";
|
|
3413
|
+
readonly internalType: "address";
|
|
3414
|
+
readonly type: "address";
|
|
3415
|
+
readonly indexed: true;
|
|
3416
|
+
}, {
|
|
3417
|
+
readonly name: "pendingOwner";
|
|
3418
|
+
readonly internalType: "address";
|
|
3419
|
+
readonly type: "address";
|
|
3420
|
+
readonly indexed: true;
|
|
3421
|
+
}];
|
|
3422
|
+
readonly name: "OwnerPending";
|
|
3423
|
+
}, {
|
|
3424
|
+
readonly type: "event";
|
|
3425
|
+
readonly anonymous: false;
|
|
3426
|
+
readonly inputs: readonly [{
|
|
3427
|
+
readonly name: "prevOwner";
|
|
3428
|
+
readonly internalType: "address";
|
|
3429
|
+
readonly type: "address";
|
|
3430
|
+
readonly indexed: true;
|
|
3431
|
+
}, {
|
|
3432
|
+
readonly name: "newOwner";
|
|
3433
|
+
readonly internalType: "address";
|
|
3434
|
+
readonly type: "address";
|
|
3435
|
+
readonly indexed: true;
|
|
3436
|
+
}];
|
|
3437
|
+
readonly name: "OwnerUpdated";
|
|
3438
|
+
}, {
|
|
3439
|
+
readonly type: "event";
|
|
3440
|
+
readonly anonymous: false;
|
|
3441
|
+
readonly inputs: readonly [];
|
|
3442
|
+
readonly name: "UpgradeGateSetup";
|
|
3443
|
+
}, {
|
|
3444
|
+
readonly type: "event";
|
|
3445
|
+
readonly anonymous: false;
|
|
3446
|
+
readonly inputs: readonly [{
|
|
3447
|
+
readonly name: "baseImpl";
|
|
3448
|
+
readonly internalType: "address";
|
|
3449
|
+
readonly type: "address";
|
|
3450
|
+
readonly indexed: true;
|
|
3451
|
+
}, {
|
|
3452
|
+
readonly name: "upgradeImpl";
|
|
3453
|
+
readonly internalType: "address";
|
|
3454
|
+
readonly type: "address";
|
|
3455
|
+
readonly indexed: true;
|
|
3456
|
+
}];
|
|
3457
|
+
readonly name: "UpgradeRegistered";
|
|
3458
|
+
}, {
|
|
3459
|
+
readonly type: "event";
|
|
3460
|
+
readonly anonymous: false;
|
|
3461
|
+
readonly inputs: readonly [{
|
|
3462
|
+
readonly name: "baseImpl";
|
|
3463
|
+
readonly internalType: "address";
|
|
3464
|
+
readonly type: "address";
|
|
3465
|
+
readonly indexed: true;
|
|
3466
|
+
}, {
|
|
3467
|
+
readonly name: "upgradeImpl";
|
|
3468
|
+
readonly internalType: "address";
|
|
3469
|
+
readonly type: "address";
|
|
3470
|
+
readonly indexed: true;
|
|
3471
|
+
}];
|
|
3472
|
+
readonly name: "UpgradeRemoved";
|
|
3473
|
+
}, {
|
|
3474
|
+
readonly type: "error";
|
|
3475
|
+
readonly inputs: readonly [];
|
|
3476
|
+
readonly name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED";
|
|
3477
|
+
}, {
|
|
3478
|
+
readonly type: "error";
|
|
3479
|
+
readonly inputs: readonly [];
|
|
3480
|
+
readonly name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING";
|
|
3481
|
+
}, {
|
|
3482
|
+
readonly type: "error";
|
|
3483
|
+
readonly inputs: readonly [];
|
|
3484
|
+
readonly name: "ONLY_OWNER";
|
|
3485
|
+
}, {
|
|
3486
|
+
readonly type: "error";
|
|
3487
|
+
readonly inputs: readonly [];
|
|
3488
|
+
readonly name: "ONLY_PENDING_OWNER";
|
|
3489
|
+
}, {
|
|
3490
|
+
readonly type: "error";
|
|
3491
|
+
readonly inputs: readonly [];
|
|
3492
|
+
readonly name: "OWNER_CANNOT_BE_ZERO_ADDRESS";
|
|
3493
|
+
}];
|
|
3494
|
+
/**
|
|
3495
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3496
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3497
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3498
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3499
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3500
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3501
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3502
|
+
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3503
|
+
*/
|
|
3504
|
+
export declare const upgradeGateAddress: {
|
|
3505
|
+
readonly 1: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3506
|
+
readonly 10: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3507
|
+
readonly 8453: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3508
|
+
readonly 42161: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3509
|
+
readonly 81457: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3510
|
+
readonly 84532: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3511
|
+
readonly 421614: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3512
|
+
readonly 7777777: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3513
|
+
readonly 11155111: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3514
|
+
readonly 168587773: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3515
|
+
};
|
|
3516
|
+
/**
|
|
3517
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3518
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3519
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3520
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3521
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3522
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3523
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3524
|
+
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900)
|
|
3525
|
+
*/
|
|
3526
|
+
export declare const upgradeGateConfig: {
|
|
3527
|
+
readonly address: {
|
|
3528
|
+
readonly 1: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3529
|
+
readonly 10: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3530
|
+
readonly 8453: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3531
|
+
readonly 42161: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3532
|
+
readonly 81457: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3533
|
+
readonly 84532: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3534
|
+
readonly 421614: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3535
|
+
readonly 7777777: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3536
|
+
readonly 11155111: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3537
|
+
readonly 168587773: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900";
|
|
3538
|
+
};
|
|
3539
|
+
readonly abi: readonly [{
|
|
3540
|
+
readonly stateMutability: "nonpayable";
|
|
3541
|
+
readonly type: "constructor";
|
|
3542
|
+
readonly inputs: readonly [];
|
|
3543
|
+
}, {
|
|
3544
|
+
readonly stateMutability: "nonpayable";
|
|
3545
|
+
readonly type: "function";
|
|
3546
|
+
readonly inputs: readonly [];
|
|
3547
|
+
readonly name: "acceptOwnership";
|
|
3548
|
+
readonly outputs: readonly [];
|
|
3549
|
+
}, {
|
|
3550
|
+
readonly stateMutability: "nonpayable";
|
|
3551
|
+
readonly type: "function";
|
|
3552
|
+
readonly inputs: readonly [];
|
|
3553
|
+
readonly name: "cancelOwnershipTransfer";
|
|
3554
|
+
readonly outputs: readonly [];
|
|
3555
|
+
}, {
|
|
3556
|
+
readonly stateMutability: "pure";
|
|
3557
|
+
readonly type: "function";
|
|
3558
|
+
readonly inputs: readonly [];
|
|
3559
|
+
readonly name: "contractName";
|
|
3560
|
+
readonly outputs: readonly [{
|
|
3561
|
+
readonly name: "";
|
|
3562
|
+
readonly internalType: "string";
|
|
3563
|
+
readonly type: "string";
|
|
3564
|
+
}];
|
|
3565
|
+
}, {
|
|
3566
|
+
readonly stateMutability: "pure";
|
|
3567
|
+
readonly type: "function";
|
|
3568
|
+
readonly inputs: readonly [];
|
|
3569
|
+
readonly name: "contractURI";
|
|
3570
|
+
readonly outputs: readonly [{
|
|
3571
|
+
readonly name: "";
|
|
3572
|
+
readonly internalType: "string";
|
|
3573
|
+
readonly type: "string";
|
|
3574
|
+
}];
|
|
3575
|
+
}, {
|
|
3576
|
+
readonly stateMutability: "nonpayable";
|
|
3577
|
+
readonly type: "function";
|
|
3578
|
+
readonly inputs: readonly [{
|
|
3579
|
+
readonly name: "_initialOwner";
|
|
3580
|
+
readonly internalType: "address";
|
|
3581
|
+
readonly type: "address";
|
|
3582
|
+
}];
|
|
3583
|
+
readonly name: "initialize";
|
|
3584
|
+
readonly outputs: readonly [];
|
|
3585
|
+
}, {
|
|
3586
|
+
readonly stateMutability: "view";
|
|
3587
|
+
readonly type: "function";
|
|
3588
|
+
readonly inputs: readonly [{
|
|
3589
|
+
readonly name: "";
|
|
3590
|
+
readonly internalType: "address";
|
|
3591
|
+
readonly type: "address";
|
|
3592
|
+
}, {
|
|
3593
|
+
readonly name: "";
|
|
3594
|
+
readonly internalType: "address";
|
|
3595
|
+
readonly type: "address";
|
|
3596
|
+
}];
|
|
3597
|
+
readonly name: "isAllowedUpgrade";
|
|
3598
|
+
readonly outputs: readonly [{
|
|
3599
|
+
readonly name: "";
|
|
3600
|
+
readonly internalType: "bool";
|
|
3601
|
+
readonly type: "bool";
|
|
3602
|
+
}];
|
|
3603
|
+
}, {
|
|
3604
|
+
readonly stateMutability: "view";
|
|
3605
|
+
readonly type: "function";
|
|
3606
|
+
readonly inputs: readonly [{
|
|
3607
|
+
readonly name: "baseImpl";
|
|
3608
|
+
readonly internalType: "address";
|
|
3609
|
+
readonly type: "address";
|
|
3610
|
+
}, {
|
|
3611
|
+
readonly name: "upgradeImpl";
|
|
3612
|
+
readonly internalType: "address";
|
|
3613
|
+
readonly type: "address";
|
|
3614
|
+
}];
|
|
3615
|
+
readonly name: "isRegisteredUpgradePath";
|
|
3616
|
+
readonly outputs: readonly [{
|
|
3617
|
+
readonly name: "";
|
|
3618
|
+
readonly internalType: "bool";
|
|
3619
|
+
readonly type: "bool";
|
|
3620
|
+
}];
|
|
3621
|
+
}, {
|
|
3622
|
+
readonly stateMutability: "view";
|
|
3623
|
+
readonly type: "function";
|
|
3624
|
+
readonly inputs: readonly [];
|
|
3625
|
+
readonly name: "owner";
|
|
3626
|
+
readonly outputs: readonly [{
|
|
3627
|
+
readonly name: "";
|
|
3628
|
+
readonly internalType: "address";
|
|
3629
|
+
readonly type: "address";
|
|
3630
|
+
}];
|
|
3631
|
+
}, {
|
|
3632
|
+
readonly stateMutability: "view";
|
|
3633
|
+
readonly type: "function";
|
|
3634
|
+
readonly inputs: readonly [];
|
|
3635
|
+
readonly name: "pendingOwner";
|
|
3636
|
+
readonly outputs: readonly [{
|
|
3637
|
+
readonly name: "";
|
|
3638
|
+
readonly internalType: "address";
|
|
3639
|
+
readonly type: "address";
|
|
3640
|
+
}];
|
|
3641
|
+
}, {
|
|
3642
|
+
readonly stateMutability: "nonpayable";
|
|
3643
|
+
readonly type: "function";
|
|
3644
|
+
readonly inputs: readonly [{
|
|
3645
|
+
readonly name: "baseImpls";
|
|
3646
|
+
readonly internalType: "address[]";
|
|
3647
|
+
readonly type: "address[]";
|
|
3648
|
+
}, {
|
|
3649
|
+
readonly name: "upgradeImpl";
|
|
3650
|
+
readonly internalType: "address";
|
|
3651
|
+
readonly type: "address";
|
|
3652
|
+
}];
|
|
3653
|
+
readonly name: "registerUpgradePath";
|
|
3654
|
+
readonly outputs: readonly [];
|
|
3655
|
+
}, {
|
|
3656
|
+
readonly stateMutability: "nonpayable";
|
|
3657
|
+
readonly type: "function";
|
|
3658
|
+
readonly inputs: readonly [{
|
|
3659
|
+
readonly name: "baseImpl";
|
|
3660
|
+
readonly internalType: "address";
|
|
3661
|
+
readonly type: "address";
|
|
3662
|
+
}, {
|
|
3663
|
+
readonly name: "upgradeImpl";
|
|
3664
|
+
readonly internalType: "address";
|
|
3665
|
+
readonly type: "address";
|
|
3666
|
+
}];
|
|
3667
|
+
readonly name: "removeUpgradePath";
|
|
3668
|
+
readonly outputs: readonly [];
|
|
3669
|
+
}, {
|
|
3670
|
+
readonly stateMutability: "nonpayable";
|
|
3671
|
+
readonly type: "function";
|
|
3672
|
+
readonly inputs: readonly [];
|
|
3673
|
+
readonly name: "resignOwnership";
|
|
3674
|
+
readonly outputs: readonly [];
|
|
3675
|
+
}, {
|
|
3676
|
+
readonly stateMutability: "nonpayable";
|
|
3677
|
+
readonly type: "function";
|
|
3678
|
+
readonly inputs: readonly [{
|
|
3679
|
+
readonly name: "_newOwner";
|
|
3680
|
+
readonly internalType: "address";
|
|
3681
|
+
readonly type: "address";
|
|
3682
|
+
}];
|
|
3683
|
+
readonly name: "safeTransferOwnership";
|
|
3684
|
+
readonly outputs: readonly [];
|
|
3685
|
+
}, {
|
|
3686
|
+
readonly stateMutability: "nonpayable";
|
|
3687
|
+
readonly type: "function";
|
|
3688
|
+
readonly inputs: readonly [{
|
|
3689
|
+
readonly name: "_newOwner";
|
|
3690
|
+
readonly internalType: "address";
|
|
3691
|
+
readonly type: "address";
|
|
3692
|
+
}];
|
|
3693
|
+
readonly name: "transferOwnership";
|
|
3694
|
+
readonly outputs: readonly [];
|
|
3695
|
+
}, {
|
|
3696
|
+
readonly type: "event";
|
|
3697
|
+
readonly anonymous: false;
|
|
3698
|
+
readonly inputs: readonly [{
|
|
3699
|
+
readonly name: "version";
|
|
3700
|
+
readonly internalType: "uint8";
|
|
3701
|
+
readonly type: "uint8";
|
|
3702
|
+
readonly indexed: false;
|
|
3703
|
+
}];
|
|
3704
|
+
readonly name: "Initialized";
|
|
3705
|
+
}, {
|
|
3706
|
+
readonly type: "event";
|
|
3707
|
+
readonly anonymous: false;
|
|
3708
|
+
readonly inputs: readonly [{
|
|
3709
|
+
readonly name: "owner";
|
|
3710
|
+
readonly internalType: "address";
|
|
3711
|
+
readonly type: "address";
|
|
3712
|
+
readonly indexed: true;
|
|
3713
|
+
}, {
|
|
3714
|
+
readonly name: "canceledOwner";
|
|
3715
|
+
readonly internalType: "address";
|
|
3716
|
+
readonly type: "address";
|
|
3717
|
+
readonly indexed: true;
|
|
3718
|
+
}];
|
|
3719
|
+
readonly name: "OwnerCanceled";
|
|
3720
|
+
}, {
|
|
3721
|
+
readonly type: "event";
|
|
3722
|
+
readonly anonymous: false;
|
|
3723
|
+
readonly inputs: readonly [{
|
|
3724
|
+
readonly name: "owner";
|
|
3725
|
+
readonly internalType: "address";
|
|
3726
|
+
readonly type: "address";
|
|
3727
|
+
readonly indexed: true;
|
|
3728
|
+
}, {
|
|
3729
|
+
readonly name: "pendingOwner";
|
|
3730
|
+
readonly internalType: "address";
|
|
3731
|
+
readonly type: "address";
|
|
3732
|
+
readonly indexed: true;
|
|
3733
|
+
}];
|
|
3734
|
+
readonly name: "OwnerPending";
|
|
3735
|
+
}, {
|
|
3736
|
+
readonly type: "event";
|
|
3737
|
+
readonly anonymous: false;
|
|
3738
|
+
readonly inputs: readonly [{
|
|
3739
|
+
readonly name: "prevOwner";
|
|
3740
|
+
readonly internalType: "address";
|
|
3741
|
+
readonly type: "address";
|
|
3742
|
+
readonly indexed: true;
|
|
3743
|
+
}, {
|
|
3744
|
+
readonly name: "newOwner";
|
|
3745
|
+
readonly internalType: "address";
|
|
3746
|
+
readonly type: "address";
|
|
3747
|
+
readonly indexed: true;
|
|
3748
|
+
}];
|
|
3749
|
+
readonly name: "OwnerUpdated";
|
|
3750
|
+
}, {
|
|
3751
|
+
readonly type: "event";
|
|
3752
|
+
readonly anonymous: false;
|
|
3753
|
+
readonly inputs: readonly [];
|
|
3754
|
+
readonly name: "UpgradeGateSetup";
|
|
3755
|
+
}, {
|
|
3756
|
+
readonly type: "event";
|
|
3757
|
+
readonly anonymous: false;
|
|
3758
|
+
readonly inputs: readonly [{
|
|
3759
|
+
readonly name: "baseImpl";
|
|
3760
|
+
readonly internalType: "address";
|
|
3761
|
+
readonly type: "address";
|
|
3762
|
+
readonly indexed: true;
|
|
3763
|
+
}, {
|
|
3764
|
+
readonly name: "upgradeImpl";
|
|
3765
|
+
readonly internalType: "address";
|
|
3766
|
+
readonly type: "address";
|
|
3767
|
+
readonly indexed: true;
|
|
3768
|
+
}];
|
|
3769
|
+
readonly name: "UpgradeRegistered";
|
|
3770
|
+
}, {
|
|
3771
|
+
readonly type: "event";
|
|
3772
|
+
readonly anonymous: false;
|
|
3773
|
+
readonly inputs: readonly [{
|
|
3774
|
+
readonly name: "baseImpl";
|
|
3775
|
+
readonly internalType: "address";
|
|
3776
|
+
readonly type: "address";
|
|
3777
|
+
readonly indexed: true;
|
|
3778
|
+
}, {
|
|
3779
|
+
readonly name: "upgradeImpl";
|
|
3780
|
+
readonly internalType: "address";
|
|
3781
|
+
readonly type: "address";
|
|
3782
|
+
readonly indexed: true;
|
|
3783
|
+
}];
|
|
3784
|
+
readonly name: "UpgradeRemoved";
|
|
3785
|
+
}, {
|
|
3786
|
+
readonly type: "error";
|
|
3787
|
+
readonly inputs: readonly [];
|
|
3788
|
+
readonly name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED";
|
|
3789
|
+
}, {
|
|
3790
|
+
readonly type: "error";
|
|
3791
|
+
readonly inputs: readonly [];
|
|
3792
|
+
readonly name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING";
|
|
3793
|
+
}, {
|
|
3794
|
+
readonly type: "error";
|
|
3795
|
+
readonly inputs: readonly [];
|
|
3796
|
+
readonly name: "ONLY_OWNER";
|
|
3797
|
+
}, {
|
|
3798
|
+
readonly type: "error";
|
|
3799
|
+
readonly inputs: readonly [];
|
|
3800
|
+
readonly name: "ONLY_PENDING_OWNER";
|
|
3801
|
+
}, {
|
|
3802
|
+
readonly type: "error";
|
|
3803
|
+
readonly inputs: readonly [];
|
|
3804
|
+
readonly name: "OWNER_CANNOT_BE_ZERO_ADDRESS";
|
|
3805
|
+
}];
|
|
3806
|
+
};
|
|
3807
|
+
/**
|
|
3808
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3809
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3810
|
+
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3811
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3812
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3813
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3814
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3815
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3816
|
+
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3817
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3818
|
+
*/
|
|
3819
|
+
export declare const zoraCreator1155FactoryImplABI: readonly [{
|
|
3820
|
+
readonly stateMutability: "nonpayable";
|
|
3821
|
+
readonly type: "constructor";
|
|
3822
|
+
readonly inputs: readonly [{
|
|
3823
|
+
readonly name: "_zora1155Impl";
|
|
3824
|
+
readonly internalType: "contract IZoraCreator1155";
|
|
3825
|
+
readonly type: "address";
|
|
3826
|
+
}, {
|
|
3827
|
+
readonly name: "_merkleMinter";
|
|
3828
|
+
readonly internalType: "contract IMinter1155";
|
|
3829
|
+
readonly type: "address";
|
|
3830
|
+
}, {
|
|
3831
|
+
readonly name: "_fixedPriceMinter";
|
|
3832
|
+
readonly internalType: "contract IMinter1155";
|
|
3833
|
+
readonly type: "address";
|
|
3834
|
+
}, {
|
|
3835
|
+
readonly name: "_redeemMinterFactory";
|
|
3836
|
+
readonly internalType: "contract IMinter1155";
|
|
3837
|
+
readonly type: "address";
|
|
3838
|
+
}];
|
|
3839
|
+
}, {
|
|
3840
|
+
readonly stateMutability: "nonpayable";
|
|
3841
|
+
readonly type: "function";
|
|
3842
|
+
readonly inputs: readonly [];
|
|
3843
|
+
readonly name: "acceptOwnership";
|
|
3844
|
+
readonly outputs: readonly [];
|
|
3845
|
+
}, {
|
|
3846
|
+
readonly stateMutability: "nonpayable";
|
|
3847
|
+
readonly type: "function";
|
|
3848
|
+
readonly inputs: readonly [];
|
|
3849
|
+
readonly name: "cancelOwnershipTransfer";
|
|
3850
|
+
readonly outputs: readonly [];
|
|
3851
|
+
}, {
|
|
3852
|
+
readonly stateMutability: "pure";
|
|
3853
|
+
readonly type: "function";
|
|
3854
|
+
readonly inputs: readonly [];
|
|
3855
|
+
readonly name: "contractName";
|
|
3856
|
+
readonly outputs: readonly [{
|
|
3857
|
+
readonly name: "";
|
|
3858
|
+
readonly internalType: "string";
|
|
3859
|
+
readonly type: "string";
|
|
3860
|
+
}];
|
|
3861
|
+
}, {
|
|
3862
|
+
readonly stateMutability: "pure";
|
|
3863
|
+
readonly type: "function";
|
|
3864
|
+
readonly inputs: readonly [];
|
|
3865
|
+
readonly name: "contractURI";
|
|
3866
|
+
readonly outputs: readonly [{
|
|
3867
|
+
readonly name: "";
|
|
3868
|
+
readonly internalType: "string";
|
|
3869
|
+
readonly type: "string";
|
|
3870
|
+
}];
|
|
3871
|
+
}, {
|
|
3872
|
+
readonly stateMutability: "pure";
|
|
3873
|
+
readonly type: "function";
|
|
3874
|
+
readonly inputs: readonly [];
|
|
3875
|
+
readonly name: "contractVersion";
|
|
3876
|
+
readonly outputs: readonly [{
|
|
3877
|
+
readonly name: "";
|
|
3878
|
+
readonly internalType: "string";
|
|
3879
|
+
readonly type: "string";
|
|
3880
|
+
}];
|
|
3881
|
+
}, {
|
|
3882
|
+
readonly stateMutability: "nonpayable";
|
|
3883
|
+
readonly type: "function";
|
|
3884
|
+
readonly inputs: readonly [{
|
|
3885
|
+
readonly name: "newContractURI";
|
|
3886
|
+
readonly internalType: "string";
|
|
3887
|
+
readonly type: "string";
|
|
3888
|
+
}, {
|
|
3889
|
+
readonly name: "name";
|
|
3890
|
+
readonly internalType: "string";
|
|
3891
|
+
readonly type: "string";
|
|
3892
|
+
}, {
|
|
3893
|
+
readonly name: "defaultRoyaltyConfiguration";
|
|
3894
|
+
readonly internalType: "struct ICreatorRoyaltiesControl.RoyaltyConfiguration";
|
|
3895
|
+
readonly type: "tuple";
|
|
3896
|
+
readonly components: readonly [{
|
|
3897
|
+
readonly name: "royaltyMintSchedule";
|
|
3898
|
+
readonly internalType: "uint32";
|
|
3899
|
+
readonly type: "uint32";
|
|
3900
|
+
}, {
|
|
3901
|
+
readonly name: "royaltyBPS";
|
|
3902
|
+
readonly internalType: "uint32";
|
|
3903
|
+
readonly type: "uint32";
|
|
3904
|
+
}, {
|
|
3905
|
+
readonly name: "royaltyRecipient";
|
|
3906
|
+
readonly internalType: "address";
|
|
3907
|
+
readonly type: "address";
|
|
3908
|
+
}];
|
|
3909
|
+
}, {
|
|
3910
|
+
readonly name: "defaultAdmin";
|
|
3911
|
+
readonly internalType: "address payable";
|
|
3912
|
+
readonly type: "address";
|
|
3913
|
+
}, {
|
|
3914
|
+
readonly name: "setupActions";
|
|
3915
|
+
readonly internalType: "bytes[]";
|
|
3916
|
+
readonly type: "bytes[]";
|
|
3917
|
+
}];
|
|
3918
|
+
readonly name: "createContract";
|
|
2979
3919
|
readonly outputs: readonly [{
|
|
2980
3920
|
readonly name: "";
|
|
2981
3921
|
readonly internalType: "address";
|
|
@@ -3060,6 +4000,36 @@ export declare const zoraCreator1155FactoryImplABI: readonly [{
|
|
|
3060
4000
|
readonly internalType: "address";
|
|
3061
4001
|
readonly type: "address";
|
|
3062
4002
|
}];
|
|
4003
|
+
}, {
|
|
4004
|
+
readonly stateMutability: "view";
|
|
4005
|
+
readonly type: "function";
|
|
4006
|
+
readonly inputs: readonly [{
|
|
4007
|
+
readonly name: "msgSender";
|
|
4008
|
+
readonly internalType: "address";
|
|
4009
|
+
readonly type: "address";
|
|
4010
|
+
}, {
|
|
4011
|
+
readonly name: "newContractURI";
|
|
4012
|
+
readonly internalType: "string";
|
|
4013
|
+
readonly type: "string";
|
|
4014
|
+
}, {
|
|
4015
|
+
readonly name: "name";
|
|
4016
|
+
readonly internalType: "string";
|
|
4017
|
+
readonly type: "string";
|
|
4018
|
+
}, {
|
|
4019
|
+
readonly name: "contractAdmin";
|
|
4020
|
+
readonly internalType: "address";
|
|
4021
|
+
readonly type: "address";
|
|
4022
|
+
}, {
|
|
4023
|
+
readonly name: "setupActions";
|
|
4024
|
+
readonly internalType: "bytes[]";
|
|
4025
|
+
readonly type: "bytes[]";
|
|
4026
|
+
}];
|
|
4027
|
+
readonly name: "deterministicContractAddressWithSetupActions";
|
|
4028
|
+
readonly outputs: readonly [{
|
|
4029
|
+
readonly name: "";
|
|
4030
|
+
readonly internalType: "address";
|
|
4031
|
+
readonly type: "address";
|
|
4032
|
+
}];
|
|
3063
4033
|
}, {
|
|
3064
4034
|
readonly stateMutability: "view";
|
|
3065
4035
|
readonly type: "function";
|
|
@@ -3418,7 +4388,7 @@ export declare const zoraCreator1155FactoryImplABI: readonly [{
|
|
|
3418
4388
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3419
4389
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3420
4390
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3421
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
4391
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3422
4392
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3423
4393
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3424
4394
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -3431,7 +4401,7 @@ export declare const zoraCreator1155FactoryImplAddress: {
|
|
|
3431
4401
|
readonly 8453: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3432
4402
|
readonly 42161: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3433
4403
|
readonly 81457: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3434
|
-
readonly 84532: "
|
|
4404
|
+
readonly 84532: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3435
4405
|
readonly 421614: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3436
4406
|
readonly 7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3437
4407
|
readonly 11155111: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
@@ -3444,7 +4414,7 @@ export declare const zoraCreator1155FactoryImplAddress: {
|
|
|
3444
4414
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3445
4415
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3446
4416
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3447
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
4417
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3448
4418
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3449
4419
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3450
4420
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -3458,7 +4428,7 @@ export declare const zoraCreator1155FactoryImplConfig: {
|
|
|
3458
4428
|
readonly 8453: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3459
4429
|
readonly 42161: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3460
4430
|
readonly 81457: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3461
|
-
readonly 84532: "
|
|
4431
|
+
readonly 84532: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3462
4432
|
readonly 421614: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3463
4433
|
readonly 7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3464
4434
|
readonly 11155111: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
@@ -3649,6 +4619,36 @@ export declare const zoraCreator1155FactoryImplConfig: {
|
|
|
3649
4619
|
readonly internalType: "address";
|
|
3650
4620
|
readonly type: "address";
|
|
3651
4621
|
}];
|
|
4622
|
+
}, {
|
|
4623
|
+
readonly stateMutability: "view";
|
|
4624
|
+
readonly type: "function";
|
|
4625
|
+
readonly inputs: readonly [{
|
|
4626
|
+
readonly name: "msgSender";
|
|
4627
|
+
readonly internalType: "address";
|
|
4628
|
+
readonly type: "address";
|
|
4629
|
+
}, {
|
|
4630
|
+
readonly name: "newContractURI";
|
|
4631
|
+
readonly internalType: "string";
|
|
4632
|
+
readonly type: "string";
|
|
4633
|
+
}, {
|
|
4634
|
+
readonly name: "name";
|
|
4635
|
+
readonly internalType: "string";
|
|
4636
|
+
readonly type: "string";
|
|
4637
|
+
}, {
|
|
4638
|
+
readonly name: "contractAdmin";
|
|
4639
|
+
readonly internalType: "address";
|
|
4640
|
+
readonly type: "address";
|
|
4641
|
+
}, {
|
|
4642
|
+
readonly name: "setupActions";
|
|
4643
|
+
readonly internalType: "bytes[]";
|
|
4644
|
+
readonly type: "bytes[]";
|
|
4645
|
+
}];
|
|
4646
|
+
readonly name: "deterministicContractAddressWithSetupActions";
|
|
4647
|
+
readonly outputs: readonly [{
|
|
4648
|
+
readonly name: "";
|
|
4649
|
+
readonly internalType: "address";
|
|
4650
|
+
readonly type: "address";
|
|
4651
|
+
}];
|
|
3652
4652
|
}, {
|
|
3653
4653
|
readonly stateMutability: "view";
|
|
3654
4654
|
readonly type: "function";
|
|
@@ -5972,6 +6972,7 @@ export declare const zoraCreator1155ImplABI: readonly [{
|
|
|
5972
6972
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5973
6973
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5974
6974
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
6975
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5975
6976
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5976
6977
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5977
6978
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -6004,15 +7005,52 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6004
7005
|
readonly name: "contractName";
|
|
6005
7006
|
readonly outputs: readonly [{
|
|
6006
7007
|
readonly name: "";
|
|
6007
|
-
readonly internalType: "string";
|
|
6008
|
-
readonly type: "string";
|
|
7008
|
+
readonly internalType: "string";
|
|
7009
|
+
readonly type: "string";
|
|
7010
|
+
}];
|
|
7011
|
+
}, {
|
|
7012
|
+
readonly stateMutability: "pure";
|
|
7013
|
+
readonly type: "function";
|
|
7014
|
+
readonly inputs: readonly [];
|
|
7015
|
+
readonly name: "contractVersion";
|
|
7016
|
+
readonly outputs: readonly [{
|
|
7017
|
+
readonly name: "";
|
|
7018
|
+
readonly internalType: "string";
|
|
7019
|
+
readonly type: "string";
|
|
7020
|
+
}];
|
|
7021
|
+
}, {
|
|
7022
|
+
readonly stateMutability: "view";
|
|
7023
|
+
readonly type: "function";
|
|
7024
|
+
readonly inputs: readonly [{
|
|
7025
|
+
readonly name: "contractConfig";
|
|
7026
|
+
readonly internalType: "struct ContractCreationConfig";
|
|
7027
|
+
readonly type: "tuple";
|
|
7028
|
+
readonly components: readonly [{
|
|
7029
|
+
readonly name: "contractAdmin";
|
|
7030
|
+
readonly internalType: "address";
|
|
7031
|
+
readonly type: "address";
|
|
7032
|
+
}, {
|
|
7033
|
+
readonly name: "contractURI";
|
|
7034
|
+
readonly internalType: "string";
|
|
7035
|
+
readonly type: "string";
|
|
7036
|
+
}, {
|
|
7037
|
+
readonly name: "contractName";
|
|
7038
|
+
readonly internalType: "string";
|
|
7039
|
+
readonly type: "string";
|
|
7040
|
+
}];
|
|
7041
|
+
}];
|
|
7042
|
+
readonly name: "getContractAddress";
|
|
7043
|
+
readonly outputs: readonly [{
|
|
7044
|
+
readonly name: "";
|
|
7045
|
+
readonly internalType: "address";
|
|
7046
|
+
readonly type: "address";
|
|
6009
7047
|
}];
|
|
6010
7048
|
}, {
|
|
6011
7049
|
readonly stateMutability: "view";
|
|
6012
7050
|
readonly type: "function";
|
|
6013
7051
|
readonly inputs: readonly [{
|
|
6014
7052
|
readonly name: "contractConfig";
|
|
6015
|
-
readonly internalType: "struct
|
|
7053
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
6016
7054
|
readonly type: "tuple";
|
|
6017
7055
|
readonly components: readonly [{
|
|
6018
7056
|
readonly name: "contractAdmin";
|
|
@@ -6026,9 +7064,13 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6026
7064
|
readonly name: "contractName";
|
|
6027
7065
|
readonly internalType: "string";
|
|
6028
7066
|
readonly type: "string";
|
|
7067
|
+
}, {
|
|
7068
|
+
readonly name: "additionalAdmins";
|
|
7069
|
+
readonly internalType: "address[]";
|
|
7070
|
+
readonly type: "address[]";
|
|
6029
7071
|
}];
|
|
6030
7072
|
}];
|
|
6031
|
-
readonly name: "
|
|
7073
|
+
readonly name: "getContractWithAdditionalAdminsAddress";
|
|
6032
7074
|
readonly outputs: readonly [{
|
|
6033
7075
|
readonly name: "";
|
|
6034
7076
|
readonly internalType: "address";
|
|
@@ -6076,6 +7118,32 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6076
7118
|
readonly internalType: "bool";
|
|
6077
7119
|
readonly type: "bool";
|
|
6078
7120
|
}];
|
|
7121
|
+
}, {
|
|
7122
|
+
readonly stateMutability: "view";
|
|
7123
|
+
readonly type: "function";
|
|
7124
|
+
readonly inputs: readonly [{
|
|
7125
|
+
readonly name: "signer";
|
|
7126
|
+
readonly internalType: "address";
|
|
7127
|
+
readonly type: "address";
|
|
7128
|
+
}, {
|
|
7129
|
+
readonly name: "premintContractConfigContractAdmin";
|
|
7130
|
+
readonly internalType: "address";
|
|
7131
|
+
readonly type: "address";
|
|
7132
|
+
}, {
|
|
7133
|
+
readonly name: "contractAddress";
|
|
7134
|
+
readonly internalType: "address";
|
|
7135
|
+
readonly type: "address";
|
|
7136
|
+
}, {
|
|
7137
|
+
readonly name: "additionalAdmins";
|
|
7138
|
+
readonly internalType: "address[]";
|
|
7139
|
+
readonly type: "address[]";
|
|
7140
|
+
}];
|
|
7141
|
+
readonly name: "isAuthorizedToCreatePremintWithAdditionalAdmins";
|
|
7142
|
+
readonly outputs: readonly [{
|
|
7143
|
+
readonly name: "isAuthorized";
|
|
7144
|
+
readonly internalType: "bool";
|
|
7145
|
+
readonly type: "bool";
|
|
7146
|
+
}];
|
|
6079
7147
|
}, {
|
|
6080
7148
|
readonly stateMutability: "view";
|
|
6081
7149
|
readonly type: "function";
|
|
@@ -6212,11 +7280,11 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6212
7280
|
readonly type: "address";
|
|
6213
7281
|
}];
|
|
6214
7282
|
}, {
|
|
6215
|
-
readonly stateMutability: "
|
|
7283
|
+
readonly stateMutability: "payable";
|
|
6216
7284
|
readonly type: "function";
|
|
6217
7285
|
readonly inputs: readonly [{
|
|
6218
7286
|
readonly name: "contractConfig";
|
|
6219
|
-
readonly internalType: "struct
|
|
7287
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
6220
7288
|
readonly type: "tuple";
|
|
6221
7289
|
readonly components: readonly [{
|
|
6222
7290
|
readonly name: "contractAdmin";
|
|
@@ -6230,61 +7298,20 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6230
7298
|
readonly name: "contractName";
|
|
6231
7299
|
readonly internalType: "string";
|
|
6232
7300
|
readonly type: "string";
|
|
7301
|
+
}, {
|
|
7302
|
+
readonly name: "additionalAdmins";
|
|
7303
|
+
readonly internalType: "address[]";
|
|
7304
|
+
readonly type: "address[]";
|
|
6233
7305
|
}];
|
|
6234
7306
|
}, {
|
|
6235
|
-
readonly name: "
|
|
6236
|
-
readonly internalType: "
|
|
7307
|
+
readonly name: "premintCollection";
|
|
7308
|
+
readonly internalType: "address";
|
|
7309
|
+
readonly type: "address";
|
|
7310
|
+
}, {
|
|
7311
|
+
readonly name: "encodedPremintConfig";
|
|
7312
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
6237
7313
|
readonly type: "tuple";
|
|
6238
7314
|
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
7315
|
readonly name: "uid";
|
|
6289
7316
|
readonly internalType: "uint32";
|
|
6290
7317
|
readonly type: "uint32";
|
|
@@ -6296,6 +7323,14 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6296
7323
|
readonly name: "deleted";
|
|
6297
7324
|
readonly internalType: "bool";
|
|
6298
7325
|
readonly type: "bool";
|
|
7326
|
+
}, {
|
|
7327
|
+
readonly name: "tokenConfig";
|
|
7328
|
+
readonly internalType: "bytes";
|
|
7329
|
+
readonly type: "bytes";
|
|
7330
|
+
}, {
|
|
7331
|
+
readonly name: "premintConfigVersion";
|
|
7332
|
+
readonly internalType: "bytes32";
|
|
7333
|
+
readonly type: "bytes32";
|
|
6299
7334
|
}];
|
|
6300
7335
|
}, {
|
|
6301
7336
|
readonly name: "signature";
|
|
@@ -6331,9 +7366,9 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6331
7366
|
readonly internalType: "address";
|
|
6332
7367
|
readonly type: "address";
|
|
6333
7368
|
}];
|
|
6334
|
-
readonly name: "
|
|
7369
|
+
readonly name: "premint";
|
|
6335
7370
|
readonly outputs: readonly [{
|
|
6336
|
-
readonly name: "
|
|
7371
|
+
readonly name: "premintResult";
|
|
6337
7372
|
readonly internalType: "struct PremintResult";
|
|
6338
7373
|
readonly type: "tuple";
|
|
6339
7374
|
readonly components: readonly [{
|
|
@@ -6482,7 +7517,7 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6482
7517
|
}];
|
|
6483
7518
|
readonly name: "premintV1";
|
|
6484
7519
|
readonly outputs: readonly [{
|
|
6485
|
-
readonly name: "
|
|
7520
|
+
readonly name: "";
|
|
6486
7521
|
readonly internalType: "struct PremintResult";
|
|
6487
7522
|
readonly type: "tuple";
|
|
6488
7523
|
readonly components: readonly [{
|
|
@@ -6609,142 +7644,7 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6609
7644
|
}];
|
|
6610
7645
|
readonly name: "premintV2";
|
|
6611
7646
|
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";
|
|
7647
|
+
readonly name: "";
|
|
6748
7648
|
readonly internalType: "struct PremintResult";
|
|
6749
7649
|
readonly type: "tuple";
|
|
6750
7650
|
readonly components: readonly [{
|
|
@@ -7432,6 +8332,7 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
7432
8332
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7433
8333
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7434
8334
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
8335
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7435
8336
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7436
8337
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7437
8338
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -7444,6 +8345,7 @@ export declare const zoraCreator1155PremintExecutorImplAddress: {
|
|
|
7444
8345
|
readonly 8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7445
8346
|
readonly 42161: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7446
8347
|
readonly 81457: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
8348
|
+
readonly 84532: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7447
8349
|
readonly 421614: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7448
8350
|
readonly 7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7449
8351
|
readonly 11155111: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
@@ -7456,6 +8358,7 @@ export declare const zoraCreator1155PremintExecutorImplAddress: {
|
|
|
7456
8358
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7457
8359
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7458
8360
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
8361
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7459
8362
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7460
8363
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7461
8364
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -7469,6 +8372,7 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7469
8372
|
readonly 8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7470
8373
|
readonly 42161: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7471
8374
|
readonly 81457: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
8375
|
+
readonly 84532: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7472
8376
|
readonly 421614: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7473
8377
|
readonly 7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7474
8378
|
readonly 11155111: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
@@ -7502,15 +8406,52 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7502
8406
|
readonly name: "contractName";
|
|
7503
8407
|
readonly outputs: readonly [{
|
|
7504
8408
|
readonly name: "";
|
|
7505
|
-
readonly internalType: "string";
|
|
7506
|
-
readonly type: "string";
|
|
8409
|
+
readonly internalType: "string";
|
|
8410
|
+
readonly type: "string";
|
|
8411
|
+
}];
|
|
8412
|
+
}, {
|
|
8413
|
+
readonly stateMutability: "pure";
|
|
8414
|
+
readonly type: "function";
|
|
8415
|
+
readonly inputs: readonly [];
|
|
8416
|
+
readonly name: "contractVersion";
|
|
8417
|
+
readonly outputs: readonly [{
|
|
8418
|
+
readonly name: "";
|
|
8419
|
+
readonly internalType: "string";
|
|
8420
|
+
readonly type: "string";
|
|
8421
|
+
}];
|
|
8422
|
+
}, {
|
|
8423
|
+
readonly stateMutability: "view";
|
|
8424
|
+
readonly type: "function";
|
|
8425
|
+
readonly inputs: readonly [{
|
|
8426
|
+
readonly name: "contractConfig";
|
|
8427
|
+
readonly internalType: "struct ContractCreationConfig";
|
|
8428
|
+
readonly type: "tuple";
|
|
8429
|
+
readonly components: readonly [{
|
|
8430
|
+
readonly name: "contractAdmin";
|
|
8431
|
+
readonly internalType: "address";
|
|
8432
|
+
readonly type: "address";
|
|
8433
|
+
}, {
|
|
8434
|
+
readonly name: "contractURI";
|
|
8435
|
+
readonly internalType: "string";
|
|
8436
|
+
readonly type: "string";
|
|
8437
|
+
}, {
|
|
8438
|
+
readonly name: "contractName";
|
|
8439
|
+
readonly internalType: "string";
|
|
8440
|
+
readonly type: "string";
|
|
8441
|
+
}];
|
|
8442
|
+
}];
|
|
8443
|
+
readonly name: "getContractAddress";
|
|
8444
|
+
readonly outputs: readonly [{
|
|
8445
|
+
readonly name: "";
|
|
8446
|
+
readonly internalType: "address";
|
|
8447
|
+
readonly type: "address";
|
|
7507
8448
|
}];
|
|
7508
8449
|
}, {
|
|
7509
8450
|
readonly stateMutability: "view";
|
|
7510
8451
|
readonly type: "function";
|
|
7511
8452
|
readonly inputs: readonly [{
|
|
7512
8453
|
readonly name: "contractConfig";
|
|
7513
|
-
readonly internalType: "struct
|
|
8454
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
7514
8455
|
readonly type: "tuple";
|
|
7515
8456
|
readonly components: readonly [{
|
|
7516
8457
|
readonly name: "contractAdmin";
|
|
@@ -7524,9 +8465,13 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7524
8465
|
readonly name: "contractName";
|
|
7525
8466
|
readonly internalType: "string";
|
|
7526
8467
|
readonly type: "string";
|
|
8468
|
+
}, {
|
|
8469
|
+
readonly name: "additionalAdmins";
|
|
8470
|
+
readonly internalType: "address[]";
|
|
8471
|
+
readonly type: "address[]";
|
|
7527
8472
|
}];
|
|
7528
8473
|
}];
|
|
7529
|
-
readonly name: "
|
|
8474
|
+
readonly name: "getContractWithAdditionalAdminsAddress";
|
|
7530
8475
|
readonly outputs: readonly [{
|
|
7531
8476
|
readonly name: "";
|
|
7532
8477
|
readonly internalType: "address";
|
|
@@ -7574,6 +8519,32 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7574
8519
|
readonly internalType: "bool";
|
|
7575
8520
|
readonly type: "bool";
|
|
7576
8521
|
}];
|
|
8522
|
+
}, {
|
|
8523
|
+
readonly stateMutability: "view";
|
|
8524
|
+
readonly type: "function";
|
|
8525
|
+
readonly inputs: readonly [{
|
|
8526
|
+
readonly name: "signer";
|
|
8527
|
+
readonly internalType: "address";
|
|
8528
|
+
readonly type: "address";
|
|
8529
|
+
}, {
|
|
8530
|
+
readonly name: "premintContractConfigContractAdmin";
|
|
8531
|
+
readonly internalType: "address";
|
|
8532
|
+
readonly type: "address";
|
|
8533
|
+
}, {
|
|
8534
|
+
readonly name: "contractAddress";
|
|
8535
|
+
readonly internalType: "address";
|
|
8536
|
+
readonly type: "address";
|
|
8537
|
+
}, {
|
|
8538
|
+
readonly name: "additionalAdmins";
|
|
8539
|
+
readonly internalType: "address[]";
|
|
8540
|
+
readonly type: "address[]";
|
|
8541
|
+
}];
|
|
8542
|
+
readonly name: "isAuthorizedToCreatePremintWithAdditionalAdmins";
|
|
8543
|
+
readonly outputs: readonly [{
|
|
8544
|
+
readonly name: "isAuthorized";
|
|
8545
|
+
readonly internalType: "bool";
|
|
8546
|
+
readonly type: "bool";
|
|
8547
|
+
}];
|
|
7577
8548
|
}, {
|
|
7578
8549
|
readonly stateMutability: "view";
|
|
7579
8550
|
readonly type: "function";
|
|
@@ -7710,11 +8681,11 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7710
8681
|
readonly type: "address";
|
|
7711
8682
|
}];
|
|
7712
8683
|
}, {
|
|
7713
|
-
readonly stateMutability: "
|
|
8684
|
+
readonly stateMutability: "payable";
|
|
7714
8685
|
readonly type: "function";
|
|
7715
8686
|
readonly inputs: readonly [{
|
|
7716
8687
|
readonly name: "contractConfig";
|
|
7717
|
-
readonly internalType: "struct
|
|
8688
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
7718
8689
|
readonly type: "tuple";
|
|
7719
8690
|
readonly components: readonly [{
|
|
7720
8691
|
readonly name: "contractAdmin";
|
|
@@ -7728,218 +8699,20 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7728
8699
|
readonly name: "contractName";
|
|
7729
8700
|
readonly internalType: "string";
|
|
7730
8701
|
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
|
-
}, {
|
|
7794
|
-
readonly name: "deleted";
|
|
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
8702
|
}, {
|
|
7819
|
-
readonly name: "
|
|
8703
|
+
readonly name: "additionalAdmins";
|
|
7820
8704
|
readonly internalType: "address[]";
|
|
7821
8705
|
readonly type: "address[]";
|
|
7822
8706
|
}];
|
|
7823
8707
|
}, {
|
|
7824
|
-
readonly name: "
|
|
7825
|
-
readonly internalType: "address";
|
|
7826
|
-
readonly type: "address";
|
|
7827
|
-
}, {
|
|
7828
|
-
readonly name: "signerContract";
|
|
7829
|
-
readonly internalType: "address";
|
|
7830
|
-
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";
|
|
8708
|
+
readonly name: "premintCollection";
|
|
7856
8709
|
readonly internalType: "address";
|
|
7857
8710
|
readonly type: "address";
|
|
7858
8711
|
}, {
|
|
7859
|
-
readonly name: "
|
|
7860
|
-
readonly internalType: "
|
|
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
|
-
}, {
|
|
7894
|
-
readonly name: "premintConfig";
|
|
7895
|
-
readonly internalType: "struct PremintConfig";
|
|
8712
|
+
readonly name: "encodedPremintConfig";
|
|
8713
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
7896
8714
|
readonly type: "tuple";
|
|
7897
8715
|
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
|
-
}, {
|
|
7943
8716
|
readonly name: "uid";
|
|
7944
8717
|
readonly internalType: "uint32";
|
|
7945
8718
|
readonly type: "uint32";
|
|
@@ -7951,6 +8724,14 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7951
8724
|
readonly name: "deleted";
|
|
7952
8725
|
readonly internalType: "bool";
|
|
7953
8726
|
readonly type: "bool";
|
|
8727
|
+
}, {
|
|
8728
|
+
readonly name: "tokenConfig";
|
|
8729
|
+
readonly internalType: "bytes";
|
|
8730
|
+
readonly type: "bytes";
|
|
8731
|
+
}, {
|
|
8732
|
+
readonly name: "premintConfigVersion";
|
|
8733
|
+
readonly internalType: "bytes32";
|
|
8734
|
+
readonly type: "bytes32";
|
|
7954
8735
|
}];
|
|
7955
8736
|
}, {
|
|
7956
8737
|
readonly name: "signature";
|
|
@@ -7977,10 +8758,18 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7977
8758
|
readonly internalType: "address[]";
|
|
7978
8759
|
readonly type: "address[]";
|
|
7979
8760
|
}];
|
|
8761
|
+
}, {
|
|
8762
|
+
readonly name: "firstMinter";
|
|
8763
|
+
readonly internalType: "address";
|
|
8764
|
+
readonly type: "address";
|
|
8765
|
+
}, {
|
|
8766
|
+
readonly name: "signerContract";
|
|
8767
|
+
readonly internalType: "address";
|
|
8768
|
+
readonly type: "address";
|
|
7980
8769
|
}];
|
|
7981
|
-
readonly name: "
|
|
8770
|
+
readonly name: "premint";
|
|
7982
8771
|
readonly outputs: readonly [{
|
|
7983
|
-
readonly name: "
|
|
8772
|
+
readonly name: "premintResult";
|
|
7984
8773
|
readonly internalType: "struct PremintResult";
|
|
7985
8774
|
readonly type: "tuple";
|
|
7986
8775
|
readonly components: readonly [{
|
|
@@ -7997,6 +8786,28 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7997
8786
|
readonly type: "bool";
|
|
7998
8787
|
}];
|
|
7999
8788
|
}];
|
|
8789
|
+
}, {
|
|
8790
|
+
readonly stateMutability: "view";
|
|
8791
|
+
readonly type: "function";
|
|
8792
|
+
readonly inputs: readonly [{
|
|
8793
|
+
readonly name: "contractAddress";
|
|
8794
|
+
readonly internalType: "address";
|
|
8795
|
+
readonly type: "address";
|
|
8796
|
+
}, {
|
|
8797
|
+
readonly name: "uid";
|
|
8798
|
+
readonly internalType: "uint32";
|
|
8799
|
+
readonly type: "uint32";
|
|
8800
|
+
}];
|
|
8801
|
+
readonly name: "premintStatus";
|
|
8802
|
+
readonly outputs: readonly [{
|
|
8803
|
+
readonly name: "contractCreated";
|
|
8804
|
+
readonly internalType: "bool";
|
|
8805
|
+
readonly type: "bool";
|
|
8806
|
+
}, {
|
|
8807
|
+
readonly name: "tokenIdForPremint";
|
|
8808
|
+
readonly internalType: "uint256";
|
|
8809
|
+
readonly type: "uint256";
|
|
8810
|
+
}];
|
|
8000
8811
|
}, {
|
|
8001
8812
|
readonly stateMutability: "payable";
|
|
8002
8813
|
readonly type: "function";
|
|
@@ -8019,11 +8830,11 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
8019
8830
|
}];
|
|
8020
8831
|
}, {
|
|
8021
8832
|
readonly name: "premintConfig";
|
|
8022
|
-
readonly internalType: "struct
|
|
8833
|
+
readonly internalType: "struct PremintConfig";
|
|
8023
8834
|
readonly type: "tuple";
|
|
8024
8835
|
readonly components: readonly [{
|
|
8025
8836
|
readonly name: "tokenConfig";
|
|
8026
|
-
readonly internalType: "struct
|
|
8837
|
+
readonly internalType: "struct TokenCreationConfig";
|
|
8027
8838
|
readonly type: "tuple";
|
|
8028
8839
|
readonly components: readonly [{
|
|
8029
8840
|
readonly name: "tokenURI";
|
|
@@ -8049,22 +8860,22 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
8049
8860
|
readonly name: "mintDuration";
|
|
8050
8861
|
readonly internalType: "uint64";
|
|
8051
8862
|
readonly type: "uint64";
|
|
8863
|
+
}, {
|
|
8864
|
+
readonly name: "royaltyMintSchedule";
|
|
8865
|
+
readonly internalType: "uint32";
|
|
8866
|
+
readonly type: "uint32";
|
|
8052
8867
|
}, {
|
|
8053
8868
|
readonly name: "royaltyBPS";
|
|
8054
8869
|
readonly internalType: "uint32";
|
|
8055
8870
|
readonly type: "uint32";
|
|
8056
8871
|
}, {
|
|
8057
|
-
readonly name: "
|
|
8872
|
+
readonly name: "royaltyRecipient";
|
|
8058
8873
|
readonly internalType: "address";
|
|
8059
8874
|
readonly type: "address";
|
|
8060
8875
|
}, {
|
|
8061
8876
|
readonly name: "fixedPriceMinter";
|
|
8062
8877
|
readonly internalType: "address";
|
|
8063
8878
|
readonly type: "address";
|
|
8064
|
-
}, {
|
|
8065
|
-
readonly name: "createReferral";
|
|
8066
|
-
readonly internalType: "address";
|
|
8067
|
-
readonly type: "address";
|
|
8068
8879
|
}];
|
|
8069
8880
|
}, {
|
|
8070
8881
|
readonly name: "uid";
|
|
@@ -8105,9 +8916,9 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
8105
8916
|
readonly type: "address[]";
|
|
8106
8917
|
}];
|
|
8107
8918
|
}];
|
|
8108
|
-
readonly name: "
|
|
8919
|
+
readonly name: "premintV1";
|
|
8109
8920
|
readonly outputs: readonly [{
|
|
8110
|
-
readonly name: "
|
|
8921
|
+
readonly name: "";
|
|
8111
8922
|
readonly internalType: "struct PremintResult";
|
|
8112
8923
|
readonly type: "tuple";
|
|
8113
8924
|
readonly components: readonly [{
|
|
@@ -8231,18 +9042,10 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
8231
9042
|
readonly internalType: "address[]";
|
|
8232
9043
|
readonly type: "address[]";
|
|
8233
9044
|
}];
|
|
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
9045
|
}];
|
|
8243
|
-
readonly name: "
|
|
9046
|
+
readonly name: "premintV2";
|
|
8244
9047
|
readonly outputs: readonly [{
|
|
8245
|
-
readonly name: "
|
|
9048
|
+
readonly name: "";
|
|
8246
9049
|
readonly internalType: "struct PremintResult";
|
|
8247
9050
|
readonly type: "tuple";
|
|
8248
9051
|
readonly components: readonly [{
|
|
@@ -10852,6 +11655,12 @@ export declare const zoraCreatorRedeemMinterFactoryConfig: {
|
|
|
10852
11655
|
}];
|
|
10853
11656
|
};
|
|
10854
11657
|
/**
|
|
11658
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11659
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11660
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11661
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11662
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11663
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
10855
11664
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
10856
11665
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
10857
11666
|
*/
|
|
@@ -12097,19 +12906,45 @@ export declare const zoraMints1155ABI: readonly [{
|
|
|
12097
12906
|
readonly name: "TokenNotMintable";
|
|
12098
12907
|
}];
|
|
12099
12908
|
/**
|
|
12909
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12910
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12911
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12912
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12913
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12914
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12100
12915
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12101
12916
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12102
12917
|
*/
|
|
12103
12918
|
export declare const zoraMints1155Address: {
|
|
12919
|
+
readonly 1: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12920
|
+
readonly 10: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12921
|
+
readonly 8453: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12922
|
+
readonly 42161: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12923
|
+
readonly 81457: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12924
|
+
readonly 84532: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12925
|
+
readonly 421614: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12104
12926
|
readonly 7777777: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12105
12927
|
readonly 999999999: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12106
12928
|
};
|
|
12107
12929
|
/**
|
|
12930
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12931
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12932
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12933
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12934
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12935
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12108
12936
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12109
12937
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
12110
12938
|
*/
|
|
12111
12939
|
export declare const zoraMints1155Config: {
|
|
12112
12940
|
readonly address: {
|
|
12941
|
+
readonly 1: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12942
|
+
readonly 10: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12943
|
+
readonly 8453: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12944
|
+
readonly 42161: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12945
|
+
readonly 81457: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12946
|
+
readonly 84532: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12947
|
+
readonly 421614: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12113
12948
|
readonly 7777777: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12114
12949
|
readonly 999999999: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
12115
12950
|
};
|
|
@@ -13356,6 +14191,12 @@ export declare const zoraMints1155Config: {
|
|
|
13356
14191
|
}];
|
|
13357
14192
|
};
|
|
13358
14193
|
/**
|
|
14194
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14195
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14196
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14197
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14198
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14199
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
13359
14200
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
13360
14201
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
13361
14202
|
*/
|
|
@@ -13364,7 +14205,7 @@ export declare const zoraMintsManagerImplABI: readonly [{
|
|
|
13364
14205
|
readonly type: "constructor";
|
|
13365
14206
|
readonly inputs: readonly [{
|
|
13366
14207
|
readonly name: "_premintExecutor";
|
|
13367
|
-
readonly internalType: "contract
|
|
14208
|
+
readonly internalType: "contract IZoraCreator1155PremintExecutorAllVersions";
|
|
13368
14209
|
readonly type: "address";
|
|
13369
14210
|
}];
|
|
13370
14211
|
}, {
|
|
@@ -13470,6 +14311,108 @@ export declare const zoraMintsManagerImplABI: readonly [{
|
|
|
13470
14311
|
}];
|
|
13471
14312
|
readonly name: "collect";
|
|
13472
14313
|
readonly outputs: readonly [];
|
|
14314
|
+
}, {
|
|
14315
|
+
readonly stateMutability: "payable";
|
|
14316
|
+
readonly type: "function";
|
|
14317
|
+
readonly inputs: readonly [{
|
|
14318
|
+
readonly name: "contractConfig";
|
|
14319
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
14320
|
+
readonly type: "tuple";
|
|
14321
|
+
readonly components: readonly [{
|
|
14322
|
+
readonly name: "contractAdmin";
|
|
14323
|
+
readonly internalType: "address";
|
|
14324
|
+
readonly type: "address";
|
|
14325
|
+
}, {
|
|
14326
|
+
readonly name: "contractURI";
|
|
14327
|
+
readonly internalType: "string";
|
|
14328
|
+
readonly type: "string";
|
|
14329
|
+
}, {
|
|
14330
|
+
readonly name: "contractName";
|
|
14331
|
+
readonly internalType: "string";
|
|
14332
|
+
readonly type: "string";
|
|
14333
|
+
}, {
|
|
14334
|
+
readonly name: "additionalAdmins";
|
|
14335
|
+
readonly internalType: "address[]";
|
|
14336
|
+
readonly type: "address[]";
|
|
14337
|
+
}];
|
|
14338
|
+
}, {
|
|
14339
|
+
readonly name: "tokenContract";
|
|
14340
|
+
readonly internalType: "address";
|
|
14341
|
+
readonly type: "address";
|
|
14342
|
+
}, {
|
|
14343
|
+
readonly name: "premintConfig";
|
|
14344
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
14345
|
+
readonly type: "tuple";
|
|
14346
|
+
readonly components: readonly [{
|
|
14347
|
+
readonly name: "uid";
|
|
14348
|
+
readonly internalType: "uint32";
|
|
14349
|
+
readonly type: "uint32";
|
|
14350
|
+
}, {
|
|
14351
|
+
readonly name: "version";
|
|
14352
|
+
readonly internalType: "uint32";
|
|
14353
|
+
readonly type: "uint32";
|
|
14354
|
+
}, {
|
|
14355
|
+
readonly name: "deleted";
|
|
14356
|
+
readonly internalType: "bool";
|
|
14357
|
+
readonly type: "bool";
|
|
14358
|
+
}, {
|
|
14359
|
+
readonly name: "tokenConfig";
|
|
14360
|
+
readonly internalType: "bytes";
|
|
14361
|
+
readonly type: "bytes";
|
|
14362
|
+
}, {
|
|
14363
|
+
readonly name: "premintConfigVersion";
|
|
14364
|
+
readonly internalType: "bytes32";
|
|
14365
|
+
readonly type: "bytes32";
|
|
14366
|
+
}];
|
|
14367
|
+
}, {
|
|
14368
|
+
readonly name: "signature";
|
|
14369
|
+
readonly internalType: "bytes";
|
|
14370
|
+
readonly type: "bytes";
|
|
14371
|
+
}, {
|
|
14372
|
+
readonly name: "mintArguments";
|
|
14373
|
+
readonly internalType: "struct MintArguments";
|
|
14374
|
+
readonly type: "tuple";
|
|
14375
|
+
readonly components: readonly [{
|
|
14376
|
+
readonly name: "mintRecipient";
|
|
14377
|
+
readonly internalType: "address";
|
|
14378
|
+
readonly type: "address";
|
|
14379
|
+
}, {
|
|
14380
|
+
readonly name: "mintComment";
|
|
14381
|
+
readonly internalType: "string";
|
|
14382
|
+
readonly type: "string";
|
|
14383
|
+
}, {
|
|
14384
|
+
readonly name: "mintRewardsRecipients";
|
|
14385
|
+
readonly internalType: "address[]";
|
|
14386
|
+
readonly type: "address[]";
|
|
14387
|
+
}];
|
|
14388
|
+
}, {
|
|
14389
|
+
readonly name: "firstMinter";
|
|
14390
|
+
readonly internalType: "address";
|
|
14391
|
+
readonly type: "address";
|
|
14392
|
+
}, {
|
|
14393
|
+
readonly name: "signerContract";
|
|
14394
|
+
readonly internalType: "address";
|
|
14395
|
+
readonly type: "address";
|
|
14396
|
+
}];
|
|
14397
|
+
readonly name: "collectPremint";
|
|
14398
|
+
readonly outputs: readonly [{
|
|
14399
|
+
readonly name: "result";
|
|
14400
|
+
readonly internalType: "struct PremintResult";
|
|
14401
|
+
readonly type: "tuple";
|
|
14402
|
+
readonly components: readonly [{
|
|
14403
|
+
readonly name: "contractAddress";
|
|
14404
|
+
readonly internalType: "address";
|
|
14405
|
+
readonly type: "address";
|
|
14406
|
+
}, {
|
|
14407
|
+
readonly name: "tokenId";
|
|
14408
|
+
readonly internalType: "uint256";
|
|
14409
|
+
readonly type: "uint256";
|
|
14410
|
+
}, {
|
|
14411
|
+
readonly name: "createdNewContract";
|
|
14412
|
+
readonly internalType: "bool";
|
|
14413
|
+
readonly type: "bool";
|
|
14414
|
+
}];
|
|
14415
|
+
}];
|
|
13473
14416
|
}, {
|
|
13474
14417
|
readonly stateMutability: "payable";
|
|
13475
14418
|
readonly type: "function";
|
|
@@ -14589,19 +15532,45 @@ export declare const zoraMintsManagerImplABI: readonly [{
|
|
|
14589
15532
|
readonly name: "premintSignerContractNotAContract";
|
|
14590
15533
|
}];
|
|
14591
15534
|
/**
|
|
15535
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15536
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15537
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15538
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15539
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15540
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14592
15541
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14593
15542
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14594
15543
|
*/
|
|
14595
15544
|
export declare const zoraMintsManagerImplAddress: {
|
|
15545
|
+
readonly 1: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15546
|
+
readonly 10: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15547
|
+
readonly 8453: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15548
|
+
readonly 42161: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15549
|
+
readonly 81457: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15550
|
+
readonly 84532: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15551
|
+
readonly 421614: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14596
15552
|
readonly 7777777: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14597
15553
|
readonly 999999999: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14598
15554
|
};
|
|
14599
15555
|
/**
|
|
15556
|
+
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15557
|
+
* - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15558
|
+
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15559
|
+
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15560
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
15561
|
+
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14600
15562
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14601
15563
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14602
15564
|
*/
|
|
14603
15565
|
export declare const zoraMintsManagerImplConfig: {
|
|
14604
15566
|
readonly address: {
|
|
15567
|
+
readonly 1: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15568
|
+
readonly 10: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15569
|
+
readonly 8453: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15570
|
+
readonly 42161: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15571
|
+
readonly 81457: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15572
|
+
readonly 84532: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
15573
|
+
readonly 421614: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14605
15574
|
readonly 7777777: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14606
15575
|
readonly 999999999: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14607
15576
|
};
|
|
@@ -14610,7 +15579,7 @@ export declare const zoraMintsManagerImplConfig: {
|
|
|
14610
15579
|
readonly type: "constructor";
|
|
14611
15580
|
readonly inputs: readonly [{
|
|
14612
15581
|
readonly name: "_premintExecutor";
|
|
14613
|
-
readonly internalType: "contract
|
|
15582
|
+
readonly internalType: "contract IZoraCreator1155PremintExecutorAllVersions";
|
|
14614
15583
|
readonly type: "address";
|
|
14615
15584
|
}];
|
|
14616
15585
|
}, {
|
|
@@ -14716,6 +15685,108 @@ export declare const zoraMintsManagerImplConfig: {
|
|
|
14716
15685
|
}];
|
|
14717
15686
|
readonly name: "collect";
|
|
14718
15687
|
readonly outputs: readonly [];
|
|
15688
|
+
}, {
|
|
15689
|
+
readonly stateMutability: "payable";
|
|
15690
|
+
readonly type: "function";
|
|
15691
|
+
readonly inputs: readonly [{
|
|
15692
|
+
readonly name: "contractConfig";
|
|
15693
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
15694
|
+
readonly type: "tuple";
|
|
15695
|
+
readonly components: readonly [{
|
|
15696
|
+
readonly name: "contractAdmin";
|
|
15697
|
+
readonly internalType: "address";
|
|
15698
|
+
readonly type: "address";
|
|
15699
|
+
}, {
|
|
15700
|
+
readonly name: "contractURI";
|
|
15701
|
+
readonly internalType: "string";
|
|
15702
|
+
readonly type: "string";
|
|
15703
|
+
}, {
|
|
15704
|
+
readonly name: "contractName";
|
|
15705
|
+
readonly internalType: "string";
|
|
15706
|
+
readonly type: "string";
|
|
15707
|
+
}, {
|
|
15708
|
+
readonly name: "additionalAdmins";
|
|
15709
|
+
readonly internalType: "address[]";
|
|
15710
|
+
readonly type: "address[]";
|
|
15711
|
+
}];
|
|
15712
|
+
}, {
|
|
15713
|
+
readonly name: "tokenContract";
|
|
15714
|
+
readonly internalType: "address";
|
|
15715
|
+
readonly type: "address";
|
|
15716
|
+
}, {
|
|
15717
|
+
readonly name: "premintConfig";
|
|
15718
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
15719
|
+
readonly type: "tuple";
|
|
15720
|
+
readonly components: readonly [{
|
|
15721
|
+
readonly name: "uid";
|
|
15722
|
+
readonly internalType: "uint32";
|
|
15723
|
+
readonly type: "uint32";
|
|
15724
|
+
}, {
|
|
15725
|
+
readonly name: "version";
|
|
15726
|
+
readonly internalType: "uint32";
|
|
15727
|
+
readonly type: "uint32";
|
|
15728
|
+
}, {
|
|
15729
|
+
readonly name: "deleted";
|
|
15730
|
+
readonly internalType: "bool";
|
|
15731
|
+
readonly type: "bool";
|
|
15732
|
+
}, {
|
|
15733
|
+
readonly name: "tokenConfig";
|
|
15734
|
+
readonly internalType: "bytes";
|
|
15735
|
+
readonly type: "bytes";
|
|
15736
|
+
}, {
|
|
15737
|
+
readonly name: "premintConfigVersion";
|
|
15738
|
+
readonly internalType: "bytes32";
|
|
15739
|
+
readonly type: "bytes32";
|
|
15740
|
+
}];
|
|
15741
|
+
}, {
|
|
15742
|
+
readonly name: "signature";
|
|
15743
|
+
readonly internalType: "bytes";
|
|
15744
|
+
readonly type: "bytes";
|
|
15745
|
+
}, {
|
|
15746
|
+
readonly name: "mintArguments";
|
|
15747
|
+
readonly internalType: "struct MintArguments";
|
|
15748
|
+
readonly type: "tuple";
|
|
15749
|
+
readonly components: readonly [{
|
|
15750
|
+
readonly name: "mintRecipient";
|
|
15751
|
+
readonly internalType: "address";
|
|
15752
|
+
readonly type: "address";
|
|
15753
|
+
}, {
|
|
15754
|
+
readonly name: "mintComment";
|
|
15755
|
+
readonly internalType: "string";
|
|
15756
|
+
readonly type: "string";
|
|
15757
|
+
}, {
|
|
15758
|
+
readonly name: "mintRewardsRecipients";
|
|
15759
|
+
readonly internalType: "address[]";
|
|
15760
|
+
readonly type: "address[]";
|
|
15761
|
+
}];
|
|
15762
|
+
}, {
|
|
15763
|
+
readonly name: "firstMinter";
|
|
15764
|
+
readonly internalType: "address";
|
|
15765
|
+
readonly type: "address";
|
|
15766
|
+
}, {
|
|
15767
|
+
readonly name: "signerContract";
|
|
15768
|
+
readonly internalType: "address";
|
|
15769
|
+
readonly type: "address";
|
|
15770
|
+
}];
|
|
15771
|
+
readonly name: "collectPremint";
|
|
15772
|
+
readonly outputs: readonly [{
|
|
15773
|
+
readonly name: "result";
|
|
15774
|
+
readonly internalType: "struct PremintResult";
|
|
15775
|
+
readonly type: "tuple";
|
|
15776
|
+
readonly components: readonly [{
|
|
15777
|
+
readonly name: "contractAddress";
|
|
15778
|
+
readonly internalType: "address";
|
|
15779
|
+
readonly type: "address";
|
|
15780
|
+
}, {
|
|
15781
|
+
readonly name: "tokenId";
|
|
15782
|
+
readonly internalType: "uint256";
|
|
15783
|
+
readonly type: "uint256";
|
|
15784
|
+
}, {
|
|
15785
|
+
readonly name: "createdNewContract";
|
|
15786
|
+
readonly internalType: "bool";
|
|
15787
|
+
readonly type: "bool";
|
|
15788
|
+
}];
|
|
15789
|
+
}];
|
|
14719
15790
|
}, {
|
|
14720
15791
|
readonly stateMutability: "payable";
|
|
14721
15792
|
readonly type: "function";
|