Describes the native currency of the chain using the name, symbol, and decimals fields.

interface NativeCurrency {
    decimals: number;
    name?: string;
    symbol: string;
}

Properties

Properties

decimals: number

A non-negative integer.

name?: string

A human-readable name.

symbol: string

A human-readable symbol.