mirror of git3://git3.w3q/git3-contract
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
557 B
TypeScript
20 lines
557 B
TypeScript
2 years ago
|
|
||
|
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 }
|