quiseos
Version:
EVM Networks & Node Providers Parameters Documentation
70 lines (67 loc) • 2.38 kB
text/typescript
import { BlockExplorerStandard, BlockExplorerType } from '../enums'
import { type Network } from '../types/types'
import { blockdaemon, nodestake } from '../providers'
export const evmosTestnet = {
id: 9000,
name: 'Evmos Testnet',
network: 'evmos-testnet',
infoUrl: 'https://evmos.org/',
docsUrl: 'https://docs.evmos.org/',
eipUrl: 'https://github.com/ethereum-lists/chains/blob/master/_data/chains/eip155-9000.json',
nativeCurrency: {
name: 'Test Evmos',
symbol: 'tEVMOS',
uSymbol: 'atEVMOS',
decimals: 18,
},
rpcNodes: {
nodestake: {
http: ['https://jsonrpc-t.evmos.nodestake.top/'],
provider: nodestake,
authenticated: false,
},
blockdaemon: {
http: ['https://eth.bd.evmos.dev:8545'],
wss: ['wss://eth.bd.evmos.dev:8546'],
provider: blockdaemon,
authenticated: false,
},
public: {
http: ['https://eth.bd.evmos.dev:8545'],
wss: ['wss://eth.bd.evmos.dev:8546'],
provider: blockdaemon,
authenticated: false,
},
default: {
http: ['https://eth.bd.evmos.dev:8545'],
wss: ['wss://eth.bd.evmos.dev:8546'],
provider: blockdaemon,
authenticated: false,
},
},
blockExplorers: {
mintscan: {
name: 'Evmos Testnet Cosmos Explorer',
type: BlockExplorerType.Independent,
browserUrl: 'https://testnet.mintscan.io/evmos-testnet/',
standard: BlockExplorerStandard.None,
},
evmosExplorer: {
name: 'Evmos Testnet Block Explorer',
type: BlockExplorerType.Blockscout,
browserUrl: 'https://evm.evmos.dev/',
apiUrl: 'https://localhost:4000/api/',
docsUrl: 'https://evm.evmos.dev/api-docs/',
standard: BlockExplorerStandard.EIP3091,
},
default: {
name: 'Evmos Testnet Block Explorer',
type: BlockExplorerType.Blockscout,
browserUrl: 'https://evm.evmos.dev/',
apiUrl: 'https://localhost:4000/api/',
docsUrl: 'https://evm.evmos.dev/api-docs/',
standard: BlockExplorerStandard.EIP3091,
},
},
testnet: true,
} as const satisfies Network