Skip to main content

TypeAlias.NativeCurrency

type NativeCurrency = {
decimals: number;
name: string;
symbol: string;
};

Represents the native currency of a blockchain network.

Examples

const nativeCurrency = {
name: "Ether",
symbol: "ETH",
decimals: 18
};
const nativeCurrency = {
name: "Bitcoin",
symbol: "BTC",
decimals: 8
};

Properties

PropertyTypeDescription
decimalsnumberThe number of decimal places the currency can be divided into.
namestringThe name of the native currency (e.g., "Ether").
symbolstringThe symbol of the native currency (e.g., "ETH").