Skip to main content

TokenPolicy

open class TokenPolicy : Disposable, AutoCloseable, TokenPolicyInterface

A typed view of an on-chain 0x2::token::TokenPolicy<T> object.

Functions

NameSummary
close@Synchronized
open override fun close()
destroyopen override fun destroy()
idopen override fun id(): ObjectId
The object's ID.
rulesopen override fun rules(): Map<String, List<String>>
Fully-qualified type names of the rules attached to each action, keyed by action name.
spentBalanceopen override fun spentBalance(): ULong
Balance spent on the spend action, in base units.
toStringopen override fun toString(): String

Companion object functions

NameSummary
tryFromBcsfun tryFromBcs(bytes: ByteArray): TokenPolicy
Decode from BCS bytes, without validating the on-chain type tag.
tryFromObjectWithTypefun tryFromObjectWithType(object: Object, typeParam: TypeTag): TokenPolicy
Decode from an on-chain object, validating its Move type tag, including that its type parameter equals type_param.