Interface iEstimatedCost<T>

A cost estimate with an amount and denomination, similar to CosmosCoin but for display purposes only.

interface iEstimatedCost<T extends NumberType> {
    amount: T;
    denom: string;
}

Type Parameters

Implemented by

Properties

Properties

amount: T

The amount of the cost

denom: string

The denomination of the cost (e.g. 'USD', 'ETH', etc.)

MMNEPVFCICPMFPCPTTAAATR