@zoralabs/protocol-deployments 0.1.3-MINT.3 → 0.1.4
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 +29 -0
- package/CHANGELOG.md +5 -18
- package/dist/generated/1155.d.ts +8 -1
- package/dist/generated/1155.d.ts.map +1 -1
- package/dist/generated/wagmi.d.ts +399 -2391
- package/dist/generated/wagmi.d.ts.map +1 -1
- package/dist/index.cjs +159 -924
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +158 -919
- package/dist/index.js.map +1 -1
- package/json/1155.json +20 -13
- package/package.json +1 -3
- package/src/generated/1155.ts +20 -13
- package/src/generated/wagmi.ts +109 -838
- package/src/index.ts +0 -1
- package/tsconfig.build.json +10 -0
- package/tsup.config.ts +11 -0
- package/wagmi.config.ts +107 -0
- package/dist/addresses.d.ts +0 -164
- package/dist/addresses.d.ts.map +0 -1
- package/dist/generated/mints.d.ts +0 -45
- package/dist/generated/mints.d.ts.map +0 -1
- package/json/mints.json +0 -46
- package/src/addresses.ts +0 -163
- package/src/generated/mints.ts +0 -44
package/src/index.ts
CHANGED
package/tsup.config.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { defineConfig } from "tsup";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
entry: ["src/index.ts"],
|
|
5
|
+
sourcemap: true,
|
|
6
|
+
clean: true,
|
|
7
|
+
dts: false,
|
|
8
|
+
format: ["cjs", "esm"],
|
|
9
|
+
onSuccess:
|
|
10
|
+
"tsc --project tsconfig.build.json --emitDeclarationOnly --declaration --declarationMap",
|
|
11
|
+
});
|
package/wagmi.config.ts
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { defineConfig } from "@wagmi/cli";
|
|
2
|
+
import { Abi } from "viem";
|
|
3
|
+
import { readdirSync, readFileSync } from "fs";
|
|
4
|
+
import * as abis from "@zoralabs/zora-1155-contracts";
|
|
5
|
+
|
|
6
|
+
type Address = `0x${string}`;
|
|
7
|
+
|
|
8
|
+
type Addresses = {
|
|
9
|
+
[contractName: string]: {
|
|
10
|
+
address: {
|
|
11
|
+
[chainId: number]: Address;
|
|
12
|
+
};
|
|
13
|
+
abi: Abi;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
const getAddresses = () => {
|
|
18
|
+
const addresses: Addresses = {};
|
|
19
|
+
|
|
20
|
+
const addressesFiles = readdirSync("../1155-deployments/addresses");
|
|
21
|
+
|
|
22
|
+
const addAddress = ({
|
|
23
|
+
contractName,
|
|
24
|
+
chainId,
|
|
25
|
+
address,
|
|
26
|
+
abi,
|
|
27
|
+
}: {
|
|
28
|
+
contractName: string;
|
|
29
|
+
chainId: number;
|
|
30
|
+
address?: Address;
|
|
31
|
+
abi: Abi;
|
|
32
|
+
}) => {
|
|
33
|
+
if (!address) return;
|
|
34
|
+
if (!addresses[contractName]) {
|
|
35
|
+
addresses[contractName] = {
|
|
36
|
+
address: {},
|
|
37
|
+
abi,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
addresses[contractName]!.address[chainId] = address;
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
for (const addressesFile of addressesFiles) {
|
|
45
|
+
const jsonAddress = JSON.parse(
|
|
46
|
+
readFileSync(`../1155-deployments/addresses/${addressesFile}`, "utf-8"),
|
|
47
|
+
) as {
|
|
48
|
+
FIXED_PRICE_SALE_STRATEGY: Address;
|
|
49
|
+
MERKLE_MINT_SALE_STRATEGY: Address;
|
|
50
|
+
REDEEM_MINTER_FACTORY: Address;
|
|
51
|
+
"1155_IMPL": Address;
|
|
52
|
+
FACTORY_IMPL: Address;
|
|
53
|
+
FACTORY_PROXY: Address;
|
|
54
|
+
PREMINTER_PROXY?: Address;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const chainId = parseInt(addressesFile.split(".")[0]);
|
|
58
|
+
|
|
59
|
+
addAddress({
|
|
60
|
+
contractName: "ZoraCreatorFixedPriceSaleStrategy",
|
|
61
|
+
chainId,
|
|
62
|
+
address: jsonAddress.FIXED_PRICE_SALE_STRATEGY,
|
|
63
|
+
abi: abis.zoraCreatorFixedPriceSaleStrategyABI,
|
|
64
|
+
});
|
|
65
|
+
addAddress({
|
|
66
|
+
contractName: "ZoraCreatorMerkleMinterStrategy",
|
|
67
|
+
chainId,
|
|
68
|
+
address: jsonAddress.MERKLE_MINT_SALE_STRATEGY,
|
|
69
|
+
abi: abis.zoraCreatorMerkleMinterStrategyABI,
|
|
70
|
+
});
|
|
71
|
+
addAddress({
|
|
72
|
+
contractName: "ZoraCreator1155FactoryImpl",
|
|
73
|
+
chainId,
|
|
74
|
+
address: jsonAddress.FACTORY_PROXY,
|
|
75
|
+
abi: abis.zoraCreator1155FactoryImplABI,
|
|
76
|
+
});
|
|
77
|
+
addAddress({
|
|
78
|
+
contractName: "ZoraCreatorRedeemMinterFactory",
|
|
79
|
+
chainId,
|
|
80
|
+
address: jsonAddress.REDEEM_MINTER_FACTORY,
|
|
81
|
+
abi: abis.zoraCreatorRedeemMinterFactoryABI,
|
|
82
|
+
});
|
|
83
|
+
addAddress({
|
|
84
|
+
contractName: "ZoraCreator1155PremintExecutorImpl",
|
|
85
|
+
chainId,
|
|
86
|
+
address: jsonAddress.PREMINTER_PROXY,
|
|
87
|
+
abi: abis.zoraCreator1155PremintExecutorImplABI,
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
return addresses;
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
export default defineConfig({
|
|
95
|
+
out: "src/generated/wagmi.ts",
|
|
96
|
+
contracts: [
|
|
97
|
+
...Object.entries(getAddresses()).map(([contractName, addressConfig]) => ({
|
|
98
|
+
abi: addressConfig.abi,
|
|
99
|
+
address: addressConfig.address,
|
|
100
|
+
name: contractName,
|
|
101
|
+
})),
|
|
102
|
+
{
|
|
103
|
+
abi: abis.zoraCreator1155ImplABI,
|
|
104
|
+
name: "ZoraCreator1155Impl",
|
|
105
|
+
},
|
|
106
|
+
],
|
|
107
|
+
});
|
package/dist/addresses.d.ts
DELETED
|
@@ -1,164 +0,0 @@
|
|
|
1
|
-
export declare const addresses: {
|
|
2
|
-
1: {
|
|
3
|
-
CONTRACT_1155_IMPL: string;
|
|
4
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
5
|
-
FACTORY_IMPL: string;
|
|
6
|
-
FACTORY_PROXY: string;
|
|
7
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
8
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
9
|
-
PREMINTER_IMPL: string;
|
|
10
|
-
PREMINTER_PROXY: string;
|
|
11
|
-
REDEEM_MINTER_FACTORY: string;
|
|
12
|
-
UPGRADE_GATE: string;
|
|
13
|
-
timestamp: number;
|
|
14
|
-
};
|
|
15
|
-
5: {
|
|
16
|
-
CONTRACT_1155_IMPL: string;
|
|
17
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
18
|
-
FACTORY_IMPL: string;
|
|
19
|
-
FACTORY_PROXY: string;
|
|
20
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
21
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
22
|
-
PREMINTER_IMPL: string;
|
|
23
|
-
PREMINTER_PROXY: string;
|
|
24
|
-
REDEEM_MINTER_FACTORY: string;
|
|
25
|
-
UPGRADE_GATE: string;
|
|
26
|
-
timestamp: number;
|
|
27
|
-
commit: string;
|
|
28
|
-
};
|
|
29
|
-
10: {
|
|
30
|
-
CONTRACT_1155_IMPL: string;
|
|
31
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
32
|
-
FACTORY_IMPL: string;
|
|
33
|
-
FACTORY_PROXY: string;
|
|
34
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
35
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
36
|
-
PREMINTER_IMPL: string;
|
|
37
|
-
PREMINTER_PROXY: string;
|
|
38
|
-
REDEEM_MINTER_FACTORY: string;
|
|
39
|
-
UPGRADE_GATE: string;
|
|
40
|
-
timestamp: number;
|
|
41
|
-
};
|
|
42
|
-
420: {
|
|
43
|
-
CONTRACT_1155_IMPL: string;
|
|
44
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
45
|
-
FACTORY_IMPL: string;
|
|
46
|
-
FACTORY_PROXY: string;
|
|
47
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
48
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
49
|
-
PREMINTER_IMPL: string;
|
|
50
|
-
PREMINTER_PROXY: string;
|
|
51
|
-
REDEEM_MINTER_FACTORY: string;
|
|
52
|
-
UPGRADE_GATE: string;
|
|
53
|
-
timestamp: number;
|
|
54
|
-
};
|
|
55
|
-
999: {
|
|
56
|
-
CONTRACT_1155_IMPL: string;
|
|
57
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
58
|
-
FACTORY_IMPL: string;
|
|
59
|
-
FACTORY_PROXY: string;
|
|
60
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
61
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
62
|
-
PREMINTER_IMPL: string;
|
|
63
|
-
PREMINTER_PROXY: string;
|
|
64
|
-
REDEEM_MINTER_FACTORY: string;
|
|
65
|
-
UPGRADE_GATE: string;
|
|
66
|
-
timestamp: number;
|
|
67
|
-
};
|
|
68
|
-
8453: {
|
|
69
|
-
CONTRACT_1155_IMPL: string;
|
|
70
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
71
|
-
FACTORY_IMPL: string;
|
|
72
|
-
FACTORY_PROXY: string;
|
|
73
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
74
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
75
|
-
PREMINTER_IMPL: string;
|
|
76
|
-
PREMINTER_PROXY: string;
|
|
77
|
-
REDEEM_MINTER_FACTORY: string;
|
|
78
|
-
UPGRADE_GATE: string;
|
|
79
|
-
timestamp: number;
|
|
80
|
-
};
|
|
81
|
-
42161: {
|
|
82
|
-
CONTRACT_1155_IMPL: string;
|
|
83
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
84
|
-
FACTORY_IMPL: string;
|
|
85
|
-
FACTORY_PROXY: string;
|
|
86
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
87
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
88
|
-
PREMINTER_IMPL: string;
|
|
89
|
-
PREMINTER_PROXY: string;
|
|
90
|
-
REDEEM_MINTER_FACTORY: string;
|
|
91
|
-
UPGRADE_GATE: string;
|
|
92
|
-
timestamp: number;
|
|
93
|
-
};
|
|
94
|
-
84531: {
|
|
95
|
-
CONTRACT_1155_IMPL: string;
|
|
96
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
97
|
-
FACTORY_IMPL: string;
|
|
98
|
-
FACTORY_PROXY: string;
|
|
99
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
100
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
101
|
-
PREMINTER_IMPL: string;
|
|
102
|
-
PREMINTER_PROXY: string;
|
|
103
|
-
REDEEM_MINTER_FACTORY: string;
|
|
104
|
-
UPGRADE_GATE: string;
|
|
105
|
-
timestamp: number;
|
|
106
|
-
commit: string;
|
|
107
|
-
};
|
|
108
|
-
421614: {
|
|
109
|
-
CONTRACT_1155_IMPL: string;
|
|
110
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
111
|
-
FACTORY_IMPL: string;
|
|
112
|
-
FACTORY_PROXY: string;
|
|
113
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
114
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
115
|
-
PREMINTER_IMPL: string;
|
|
116
|
-
PREMINTER_PROXY: string;
|
|
117
|
-
REDEEM_MINTER_FACTORY: string;
|
|
118
|
-
UPGRADE_GATE: string;
|
|
119
|
-
timestamp: number;
|
|
120
|
-
};
|
|
121
|
-
7777777: {
|
|
122
|
-
CONTRACT_1155_IMPL: string;
|
|
123
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
124
|
-
FACTORY_IMPL: string;
|
|
125
|
-
FACTORY_PROXY: string;
|
|
126
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
127
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
128
|
-
PREMINTER_IMPL: string;
|
|
129
|
-
PREMINTER_PROXY: string;
|
|
130
|
-
REDEEM_MINTER_FACTORY: string;
|
|
131
|
-
UPGRADE_GATE: string;
|
|
132
|
-
timestamp: number;
|
|
133
|
-
};
|
|
134
|
-
11155111: {
|
|
135
|
-
CONTRACT_1155_IMPL: string;
|
|
136
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
137
|
-
FACTORY_IMPL: string;
|
|
138
|
-
FACTORY_PROXY: string;
|
|
139
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
140
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
141
|
-
PREMINTER_IMPL: string;
|
|
142
|
-
PREMINTER_PROXY: string;
|
|
143
|
-
REDEEM_MINTER_FACTORY: string;
|
|
144
|
-
UPGRADE_GATE: string;
|
|
145
|
-
timestamp: number;
|
|
146
|
-
};
|
|
147
|
-
999999999: {
|
|
148
|
-
CONTRACT_1155_IMPL: string;
|
|
149
|
-
CONTRACT_1155_IMPL_VERSION: string;
|
|
150
|
-
FACTORY_IMPL: string;
|
|
151
|
-
FACTORY_PROXY: string;
|
|
152
|
-
FIXED_PRICE_SALE_STRATEGY: string;
|
|
153
|
-
MERKLE_MINT_SALE_STRATEGY: string;
|
|
154
|
-
PREMINTER_IMPL: string;
|
|
155
|
-
PREMINTER_PROXY: string;
|
|
156
|
-
REDEEM_MINTER_FACTORY: string;
|
|
157
|
-
UPGRADE_GATE: string;
|
|
158
|
-
timestamp: number;
|
|
159
|
-
commit: string;
|
|
160
|
-
MINTS_IMPL: string;
|
|
161
|
-
MINTS_IMPL_VERSION: string;
|
|
162
|
-
};
|
|
163
|
-
};
|
|
164
|
-
//# sourceMappingURL=addresses.d.ts.map
|
package/dist/addresses.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"addresses.d.ts","sourceRoot":"","sources":["../src/addresses.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkKrB,CAAC"}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
export declare const chainConfigs: {
|
|
2
|
-
"1": {
|
|
3
|
-
PROXY_ADMIN: string;
|
|
4
|
-
MINTS_OWNER: string;
|
|
5
|
-
};
|
|
6
|
-
"10": {
|
|
7
|
-
PROXY_ADMIN: string;
|
|
8
|
-
MINTS_OWNER: string;
|
|
9
|
-
};
|
|
10
|
-
"420": {
|
|
11
|
-
PROXY_ADMIN: string;
|
|
12
|
-
MINTS_OWNER: string;
|
|
13
|
-
};
|
|
14
|
-
"999": {
|
|
15
|
-
PROXY_ADMIN: string;
|
|
16
|
-
MINTS_OWNER: string;
|
|
17
|
-
};
|
|
18
|
-
"8453": {
|
|
19
|
-
PROXY_ADMIN: string;
|
|
20
|
-
MINTS_OWNER: string;
|
|
21
|
-
};
|
|
22
|
-
"84531": {
|
|
23
|
-
PROXY_ADMIN: string;
|
|
24
|
-
MINTS_OWNER: string;
|
|
25
|
-
};
|
|
26
|
-
"7777777": {
|
|
27
|
-
PROXY_ADMIN: string;
|
|
28
|
-
MINTS_OWNER: string;
|
|
29
|
-
};
|
|
30
|
-
"11155111": {
|
|
31
|
-
PROXY_ADMIN: string;
|
|
32
|
-
MINTS_OWNER: string;
|
|
33
|
-
};
|
|
34
|
-
"999999999": {
|
|
35
|
-
PROXY_ADMIN: string;
|
|
36
|
-
MINTS_OWNER: string;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
export declare const addresses: {
|
|
40
|
-
"999999999": {
|
|
41
|
-
MINTS_IMPL: string;
|
|
42
|
-
MINTS_IMPL_VERSION: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
//# sourceMappingURL=mints.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mints.d.ts","sourceRoot":"","sources":["../../src/generated/mints.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqCxB,CAAC;AACF,eAAO,MAAM,SAAS;;;;;CAKrB,CAAC"}
|
package/json/mints.json
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"chainConfigs": {
|
|
3
|
-
"1": {
|
|
4
|
-
"PROXY_ADMIN": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
|
|
5
|
-
"MINTS_OWNER": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0"
|
|
6
|
-
},
|
|
7
|
-
"10": {
|
|
8
|
-
"PROXY_ADMIN": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
|
|
9
|
-
"MINTS_OWNER": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c"
|
|
10
|
-
},
|
|
11
|
-
"420": {
|
|
12
|
-
"PROXY_ADMIN": "0xbb45052B2260707655Dfd916a416264f5981192c",
|
|
13
|
-
"MINTS_OWNER": "0x5dEe21327CD7CD6725C2578DA1c3E5bb2D2D34b2"
|
|
14
|
-
},
|
|
15
|
-
"999": {
|
|
16
|
-
"PROXY_ADMIN": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
17
|
-
"MINTS_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252"
|
|
18
|
-
},
|
|
19
|
-
"8453": {
|
|
20
|
-
"PROXY_ADMIN": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
|
|
21
|
-
"MINTS_OWNER": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6"
|
|
22
|
-
},
|
|
23
|
-
"84531": {
|
|
24
|
-
"PROXY_ADMIN": "0x02539E813cA450C2c7334e885423f4A899a063Fe",
|
|
25
|
-
"MINTS_OWNER": "0x02539E813cA450C2c7334e885423f4A899a063Fe"
|
|
26
|
-
},
|
|
27
|
-
"7777777": {
|
|
28
|
-
"PROXY_ADMIN": "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
|
|
29
|
-
"MINTS_OWNER": "0xEcfc2ee50409E459c554a2b0376F882Ce916D853"
|
|
30
|
-
},
|
|
31
|
-
"11155111": {
|
|
32
|
-
"PROXY_ADMIN": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
33
|
-
"MINTS_OWNER": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D"
|
|
34
|
-
},
|
|
35
|
-
"999999999": {
|
|
36
|
-
"PROXY_ADMIN": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
37
|
-
"MINTS_OWNER": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"addresses": {
|
|
41
|
-
"999999999": {
|
|
42
|
-
"MINTS_IMPL": "0x4D1d4767d5f2cC3884E221c340240BEa0B42b7BA",
|
|
43
|
-
"MINTS_IMPL_VERSION": "0.0.2"
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
package/src/addresses.ts
DELETED
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
export const addresses = {
|
|
2
|
-
1: {
|
|
3
|
-
CONTRACT_1155_IMPL: "0x32006e298C19818CD5e8000E26439691f0ac2128",
|
|
4
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
5
|
-
FACTORY_IMPL: "0xD662FB0fB00261C039441EF49Dbab154d7c533bD",
|
|
6
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
7
|
-
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
8
|
-
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
9
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
10
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
11
|
-
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
12
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
13
|
-
timestamp: 1704400466,
|
|
14
|
-
},
|
|
15
|
-
5: {
|
|
16
|
-
CONTRACT_1155_IMPL: "0xa5f8577cCA2eE9d5577E76385dB1Af51517c76bb",
|
|
17
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
18
|
-
FACTORY_IMPL: "0xd74AB2EE2117C647f19de0D44FE56c56953Bd05d",
|
|
19
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
20
|
-
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
21
|
-
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
22
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
23
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
24
|
-
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
25
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
26
|
-
timestamp: 1703007708,
|
|
27
|
-
commit: "bdf6682",
|
|
28
|
-
},
|
|
29
|
-
10: {
|
|
30
|
-
CONTRACT_1155_IMPL: "0xECfbCf718E17B6e76A675dDB936a9249C69DD2aA",
|
|
31
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
32
|
-
FACTORY_IMPL: "0x32006e298C19818CD5e8000E26439691f0ac2128",
|
|
33
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
34
|
-
FIXED_PRICE_SALE_STRATEGY: "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
|
|
35
|
-
MERKLE_MINT_SALE_STRATEGY: "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
|
|
36
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
37
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
38
|
-
REDEEM_MINTER_FACTORY: "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
|
|
39
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
40
|
-
timestamp: 1704396387,
|
|
41
|
-
},
|
|
42
|
-
420: {
|
|
43
|
-
CONTRACT_1155_IMPL: "0xC7598f8eAA1455f5b2B3f206A9af55B2BA248e3E",
|
|
44
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
45
|
-
FACTORY_IMPL: "0xCf0B4Acab081169D12b729c3Bd1c6E7bbAB820Da",
|
|
46
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
47
|
-
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
48
|
-
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
49
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
50
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
51
|
-
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
52
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
53
|
-
timestamp: 1704496741,
|
|
54
|
-
},
|
|
55
|
-
999: {
|
|
56
|
-
CONTRACT_1155_IMPL: "0x2022AdEF470DA3543a19fac8c9be80618112704D",
|
|
57
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
58
|
-
FACTORY_IMPL: "0x4b0365Ec68C2D92Af2Fa56f120095F0859142Eff",
|
|
59
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
60
|
-
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
61
|
-
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
62
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
63
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
64
|
-
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
65
|
-
UPGRADE_GATE: "0x0000000000000000000000000000000000000000",
|
|
66
|
-
timestamp: 1704399834,
|
|
67
|
-
},
|
|
68
|
-
8453: {
|
|
69
|
-
CONTRACT_1155_IMPL: "0xAF5A4F6F6640734d7D000321Bb27De40D4Ae91f6",
|
|
70
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
71
|
-
FACTORY_IMPL: "0x7B59c0378F540c0356A5DAEF7574255A7C74EC76",
|
|
72
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
73
|
-
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
74
|
-
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
75
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
76
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
77
|
-
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
78
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
79
|
-
timestamp: 1704396122,
|
|
80
|
-
},
|
|
81
|
-
42161: {
|
|
82
|
-
CONTRACT_1155_IMPL: "0x97eb05B8db496B12244BCcf17CF377d00a99b67a",
|
|
83
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
84
|
-
FACTORY_IMPL: "0x48d8db63724444C6270749fEe80bBDB6CF33677f",
|
|
85
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
86
|
-
FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
87
|
-
MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
88
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
89
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
90
|
-
REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
91
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
92
|
-
timestamp: 1704914719,
|
|
93
|
-
},
|
|
94
|
-
84531: {
|
|
95
|
-
CONTRACT_1155_IMPL: "0xc6a8C44c695F227097f6F10dfCB4335308AF444D",
|
|
96
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
97
|
-
FACTORY_IMPL: "0x2667909314554B0f37D306C463e68737d1707953",
|
|
98
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
99
|
-
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
100
|
-
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
101
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
102
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
103
|
-
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
104
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
105
|
-
timestamp: 1703009473,
|
|
106
|
-
commit: "bdf6682",
|
|
107
|
-
},
|
|
108
|
-
421614: {
|
|
109
|
-
CONTRACT_1155_IMPL: "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3",
|
|
110
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
111
|
-
FACTORY_IMPL: "0x314E552b55DFbDfD4d76623E1D45E5056723998B",
|
|
112
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
113
|
-
FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
114
|
-
MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
115
|
-
PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
|
|
116
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
117
|
-
REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
118
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
119
|
-
timestamp: 1706661669,
|
|
120
|
-
},
|
|
121
|
-
7777777: {
|
|
122
|
-
CONTRACT_1155_IMPL: "0x57f412Ea90b59ce4023AFDE95C251E3c747EB7F8",
|
|
123
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
124
|
-
FACTORY_IMPL: "0xc6bf69986859f0dC0b77f2cA6AD86F5b294c0443",
|
|
125
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
126
|
-
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
127
|
-
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
128
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
129
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
130
|
-
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
131
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
132
|
-
timestamp: 1704401901,
|
|
133
|
-
},
|
|
134
|
-
11155111: {
|
|
135
|
-
CONTRACT_1155_IMPL: "0x437A762fc2a8f898Aa7a2575Be21c41753DC4797",
|
|
136
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
137
|
-
FACTORY_IMPL: "0xF82286760a953D2Bad7D6F2F0da458Ac20f955D3",
|
|
138
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
139
|
-
FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
140
|
-
MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
141
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
142
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
143
|
-
REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
144
|
-
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
145
|
-
timestamp: 1704336497,
|
|
146
|
-
},
|
|
147
|
-
999999999: {
|
|
148
|
-
CONTRACT_1155_IMPL: "0x980170C861E723309628a27c27397a955920F968",
|
|
149
|
-
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
150
|
-
FACTORY_IMPL: "0xcea530A0d2d158500E248a59682a1D230c2422F7",
|
|
151
|
-
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
152
|
-
FIXED_PRICE_SALE_STRATEGY: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A",
|
|
153
|
-
MERKLE_MINT_SALE_STRATEGY: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c",
|
|
154
|
-
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
155
|
-
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
156
|
-
REDEEM_MINTER_FACTORY: "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6",
|
|
157
|
-
UPGRADE_GATE: "0x0000000000000000000000000000000000000000",
|
|
158
|
-
timestamp: 1703007364,
|
|
159
|
-
commit: "bdf6682",
|
|
160
|
-
MINTS_IMPL: "0x4D1d4767d5f2cC3884E221c340240BEa0B42b7BA",
|
|
161
|
-
MINTS_IMPL_VERSION: "0.0.2",
|
|
162
|
-
},
|
|
163
|
-
};
|
package/src/generated/mints.ts
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
export const chainConfigs = {
|
|
2
|
-
"1": {
|
|
3
|
-
"PROXY_ADMIN": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
|
|
4
|
-
"MINTS_OWNER": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0"
|
|
5
|
-
},
|
|
6
|
-
"10": {
|
|
7
|
-
"PROXY_ADMIN": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
|
|
8
|
-
"MINTS_OWNER": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c"
|
|
9
|
-
},
|
|
10
|
-
"420": {
|
|
11
|
-
"PROXY_ADMIN": "0xbb45052B2260707655Dfd916a416264f5981192c",
|
|
12
|
-
"MINTS_OWNER": "0x5dEe21327CD7CD6725C2578DA1c3E5bb2D2D34b2"
|
|
13
|
-
},
|
|
14
|
-
"999": {
|
|
15
|
-
"PROXY_ADMIN": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
16
|
-
"MINTS_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252"
|
|
17
|
-
},
|
|
18
|
-
"8453": {
|
|
19
|
-
"PROXY_ADMIN": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
|
|
20
|
-
"MINTS_OWNER": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6"
|
|
21
|
-
},
|
|
22
|
-
"84531": {
|
|
23
|
-
"PROXY_ADMIN": "0x02539E813cA450C2c7334e885423f4A899a063Fe",
|
|
24
|
-
"MINTS_OWNER": "0x02539E813cA450C2c7334e885423f4A899a063Fe"
|
|
25
|
-
},
|
|
26
|
-
"7777777": {
|
|
27
|
-
"PROXY_ADMIN": "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
|
|
28
|
-
"MINTS_OWNER": "0xEcfc2ee50409E459c554a2b0376F882Ce916D853"
|
|
29
|
-
},
|
|
30
|
-
"11155111": {
|
|
31
|
-
"PROXY_ADMIN": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
32
|
-
"MINTS_OWNER": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D"
|
|
33
|
-
},
|
|
34
|
-
"999999999": {
|
|
35
|
-
"PROXY_ADMIN": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
36
|
-
"MINTS_OWNER": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E"
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
export const addresses = {
|
|
40
|
-
"999999999": {
|
|
41
|
-
"MINTS_IMPL": "0x4D1d4767d5f2cC3884E221c340240BEa0B42b7BA",
|
|
42
|
-
"MINTS_IMPL_VERSION": "0.0.2"
|
|
43
|
-
}
|
|
44
|
-
};
|