Interface LiquidityPoolsParamsWithAmount

interface LiquidityPoolsParamsWithAmount {
    accountAddress: string;
    amount: string;
    token: TokenWithChainDetails;
    txFeeParams?: TxFeeParams;
}

Hierarchy (View Summary)

Properties

accountAddress: string

The account address to operate tokens with.

amount: string

The float amount of tokens.

The token info object of operation token.

txFeeParams?: TxFeeParams