Type Alias NativeCurrencyData

NativeCurrencyData: {
    decimals: number;
    name: string;
    symbol: string;
}

Type declaration

  • decimals: number

    The number of decimal places used by the currency.

  • name: string

    The name of the native currency (e.g., "Ether" for Ethereum).

  • symbol: string

    The currency symbol (e.g., "ETH" for Ethereum).