CoinMetadata
data class CoinMetadata(var address: ObjectId, var decimals: Int? = null, var description: String? = null, var iconUrl: String? = null, var name: String? = null, var symbol: String? = null, var supply: ULong? = null, var version: ULong) : Disposable
The coin metadata associated with the given coin type.
Constructors
| CoinMetadata | constructor(address: ObjectId, decimals: Int? = null, description: String? = null, iconUrl: String? = null, name: String? = null, symbol: String? = null, supply: ULong? = null, version: ULong) |
Properties
| Name | Summary |
|---|---|
| address | var address: ObjectId The CoinMetadata object ID. |
| decimals | var decimals: Int? The number of decimal places used to represent the token. |
| description | var description: String? Optional description of the token, provided by the creator of the token. |
| iconUrl | var iconUrl: String? Icon URL of the coin. |
| name | var name: String? Full, official name of the token. |
| supply | var supply: ULong? The overall quantity of tokens that will be issued. |
| symbol | var symbol: String? The token's identifying abbreviation. |
| version | var version: ULong Version of the token. |
Functions
| Name | Summary |
|---|---|
| destroy | open override fun destroy() |