You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
520 B
TypeScript
20 lines
520 B
TypeScript
const NetworkDefinition = {
|
|
rinkeby: {
|
|
url: "https://rinkeby.infura.io/v3/*******your-api-key*******",
|
|
accounts: {
|
|
mnemonic: "test test test test test test test test test test test junk",
|
|
},
|
|
},
|
|
polygon: {
|
|
url: "https://polygon.infura.io/v3/*******your-api-key*******",
|
|
accounts: {
|
|
mnemonic: "test test test test test test test test test test test junk",
|
|
},
|
|
},
|
|
};
|
|
const EtherscanConfig = {
|
|
apiKey: "YOUR_ETHERSCAN_API_KEY",
|
|
};
|
|
|
|
export { NetworkDefinition, EtherscanConfig };
|