-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
34 lines (30 loc) · 974 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const NFTABI = require("./contractMetadata/ABI-sepolia-NFT.json");
const NFT = require("./contractMetadata/sepolia-NFT.json"); // TODO: replace with mainnet
const NFTSepolia = require("./contractMetadata/sepolia-NFT.json");
const MetadataABI = require("./contractMetadata/ABI-sepolia-Metadata.json");
const Metadata = require("./contractMetadata/sepolia-Metadata.json"); // TODO: replace with mainnet
const MetadataSepolia = require("./contractMetadata/sepolia-Metadata.json");
const { merkleAddresses } = require("./merkleAddresses.js");
module.exports = {
merkleAddresses,
NFT: {
abi: NFTABI.abi,
networks: {
'1': NFT,
'homestead': NFT,
'mainnet': NFT,
'11155111': NFTSepolia,
'sepolia': NFTSepolia,
},
},
Metadata: {
abi: MetadataABI.abi,
networks: {
'1': Metadata,
'homestead': Metadata,
'mainnet': Metadata,
'11155111': MetadataSepolia,
'sepolia': MetadataSepolia,
},
}
}