Skip to content

EthereumChain

type EthereumChain = {
blockExplorerUrls: string[];
chainId: string;
chainName: string;
iconUrls: string[];
nativeCurrency: {
decimals: number;
name: string;
symbol: string;
};
rpcUrls: string[];
};

Defined in: packages/iso-filecoin/src/types.ts:178

Ethereum chain type (Metamask)

Properties

blockExplorerUrls?

optional blockExplorerUrls: string[];

Defined in: packages/iso-filecoin/src/types.ts:192


chainId

chainId: string;

Defined in: packages/iso-filecoin/src/types.ts:180

A 0x-prefixed hexadecimal string


chainName

chainName: string;

Defined in: packages/iso-filecoin/src/types.ts:182

The chain name.


iconUrls?

optional iconUrls: string[];

Defined in: packages/iso-filecoin/src/types.ts:193


nativeCurrency?

optional nativeCurrency: {
decimals: number;
name: string;
symbol: string;
};

Defined in: packages/iso-filecoin/src/types.ts:184

Native currency for the chain.

decimals

decimals: number;

name

name: string;

symbol

symbol: string;

rpcUrls

rpcUrls: string[];

Defined in: packages/iso-filecoin/src/types.ts:191