@alphafi/alphalend-sdk - v1.1.2
    Preparing search index...

    Variable coinsListConst

    coinsList: { [key in CoinName]: Coin } = ...

    Collection of supported coins in the Sui ecosystem

    Each coin is defined with the following properties:

    • name: Display name of the coin
    • type: The unique identifier of the coin on the Sui blockchain
    • icon: URL to the coin's icon image
    • expo: Decimal places for the coin (e.g., 9 for SUI means 1 SUI = 10^9 base units)
    // Accessing SUI coin information
    const suiCoin = coins.SUI;
    // Returns: { name: 'SUI', type: '0x2::sui::SUI', icon: '...', expo: 9 }

    The coin types are unique identifiers on the Sui blockchain and should not be modified without proper verification