@solarity/hardhat-migrate
Version:
The simplest way to deploy smart contracts
50 lines • 1.21 kB
JavaScript
export const predefinedChains = {
1337: {
name: "Local Ethereum",
chain: "ETH",
title: "Local",
rpc: ["http://127.0.0.1:8545"],
faucets: [],
nativeCurrency: {
name: "Ethereum",
symbol: "ETH",
decimals: 18,
},
infoURL: "https://ethereum.org",
shortName: "eth",
chainId: 1337,
networkId: 1337,
ens: {
registry: "0x0000000000000000000000000000000000000000",
},
explorers: [
{
name: "Local Explorer",
url: "",
},
],
},
31337: {
name: "Local Ethereum",
chain: "ETH",
title: "Local",
rpc: ["http://127.0.0.1:8545"],
faucets: [],
nativeCurrency: {
name: "Ethereum",
symbol: "ETH",
decimals: 18,
},
infoURL: "https://ethereum.org",
shortName: "eth",
chainId: 31337,
networkId: 31337,
explorers: [
{
name: "Local Explorer",
url: "",
},
],
},
};
//# sourceMappingURL=verifier.js.map