Interface FeeTier

Your fee tier is based upon total USD trading volume over the trailing 30 day period.

interface FeeTier {
    maker_fee_rate: string;
    taker_fee_rate: string;
    usd_volume: null | string;
}

Properties

maker_fee_rate: string

A maker fee is paid when you create ("make") liquidity on the order book, i.e. you create an order which is not matched immediately.

taker_fee_rate: string

A taker fee is paid when you remove ("take") liquidity from the order book, i.e. you create an order which matches an existing order (this includes all market orders).

usd_volume: null | string

Your 30-day trailing volume which impacts your fee rates.