53 lines
694 B
TypeScript
53 lines
694 B
TypeScript
const networkInfo = [
|
|
{
|
|
chainID: 1,
|
|
name: "Ethereum Mainnet",
|
|
},
|
|
{
|
|
chainID: 42161,
|
|
name: "Arbitrum One",
|
|
},
|
|
{
|
|
chainID: 10,
|
|
name: "Optimistic Ethereum",
|
|
},
|
|
{
|
|
chainID: 137,
|
|
name: "Polygon",
|
|
},
|
|
{
|
|
chainID: 56,
|
|
name: "Binance Smart Chain",
|
|
},
|
|
{
|
|
chainID: 250,
|
|
name: "Fantom Opera",
|
|
},
|
|
{
|
|
chainID: 43114,
|
|
name: "Avalanche",
|
|
},
|
|
{
|
|
chainID: 100,
|
|
name: "xDAI",
|
|
},
|
|
{
|
|
chainID: 42,
|
|
name: "Kovan Testnet",
|
|
},
|
|
{
|
|
chainID: 3,
|
|
name: "Ropsten Testnet",
|
|
},
|
|
{
|
|
chainID: 4,
|
|
name: "Rinkeby Testnet",
|
|
},
|
|
{
|
|
chainID: 5,
|
|
name: "Goerli Testnet",
|
|
},
|
|
];
|
|
|
|
export default networkInfo;
|