Describes an asset within a Market (base or quote).

interface MarketAsset {
    asset: AssetId;
    decimals: number;
    max_precision: number;
    symbol: string;
}

Properties

asset: AssetId

The asset ID on the Fuel blockchain.

decimals: number

Number of decimal places for the asset (e.g., 9 for Fuel).

max_precision: number

Maximum allowed price/quantity precision digits.

symbol: string

The token symbol (e.g., "fFUEL", "fUSDC").