Reserve

@Serializable
data class Reserve(val amount: String, val asset: String)

Represents liquidity pool reserves.

Each reserve holds one of the assets in the liquidity pool.

Constructors

Link copied to clipboard
constructor(amount: String, asset: String)

Properties

Link copied to clipboard
@SerialName(value = "amount")
val amount: String

The amount of the asset in the reserve

Link copied to clipboard
@SerialName(value = "asset")
val asset: String

The asset in canonical string form (e.g., "native" or "USD:GCDNJUBQSX7...")