AssetAccounts
public struct AssetAccounts : Decodable, Sendable
Statistics about the number of accounts holding an asset, categorized by authorization status. See Stellar developer docs
-
The number of accounts authorized to hold and transact with this asset.
Declaration
Swift
public var authorized: Int -
The number of accounts authorized to maintain liabilities but not to perform other operations with this asset.
Declaration
Swift
public var authorizedToMaintainLiabilities: Int -
The number of accounts that are not authorized to hold or transact with this asset.
Declaration
Swift
public var unauthorized: Int -
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