AssetBalances
public struct AssetBalances : Decodable, Sendable
Statistics about the total amounts of an asset held by accounts, categorized by authorization status. See Stellar developer docs
-
The total amount held by accounts that are authorized to hold and transact with this asset.
Declaration
Swift
public var authorized: Decimal -
The total amount held by accounts that are authorized to maintain liabilities but not to perform other operations with this asset.
Declaration
Swift
public var authorizedToMaintainLiabilities: Decimal -
The total amount held by accounts that are not authorized to hold or transact with this asset.
Declaration
Swift
public var unauthorized: Decimal -
Initializer - creates a new instance by decoding from the given decoder.
Declaration
Swift
public init(from decoder: Decoder) throwsParameters
decoderThe decoder containing the data
View on GitHub
Install in Dash