TransferPolicy
open class TransferPolicy : Disposable, AutoCloseable, TransferPolicyInterface
A typed view of an on-chain 0x2::transfer_policy::TransferPolicy<T> object.
Functions
| Name | Summary |
|---|---|
| balance | open override fun balance(): ULong IOTA balance collected by the policy, in nanos. |
| close | @Synchronized open override fun close() |
| destroy | open override fun destroy() |
| id | open override fun id(): ObjectId The object's ID. |
| rules | open override fun rules(): List<String> Fully-qualified type names of the rules attached to this policy. |
| toString | open override fun toString(): String |
Companion object functions
| Name | Summary |
|---|---|
| tryFromBcs | fun tryFromBcs(bytes: ByteArray): TransferPolicy Decode from BCS bytes, without validating the on-chain type tag. |
| tryFromObjectWithType | fun tryFromObjectWithType(object: Object, typeParam: TypeTag): TransferPolicy Decode from an on-chain object, validating its Move type tag, including that its type parameter equals type_param. |