Interface TokenAmountEstimate

An interface representing the estimated fees.

interface TokenAmountEstimate {
    totalFees?: bigint;
    token?: TokenInfo;
}

Properties

Properties

totalFees?: bigint

The estimated fees for the transaction.

token?: TokenInfo

The gas token information.

""