Node

data class Node(val coinBalance: Any?, val contents: GetCoinsQuery.Contents?, val address: Any, val version: Any, val digest: String?, val previousTransactionBlock: GetCoinsQuery.PreviousTransactionBlock?)

Constructors

Link copied to clipboard
constructor(coinBalance: Any?, contents: GetCoinsQuery.Contents?, address: Any, version: Any, digest: String?, previousTransactionBlock: GetCoinsQuery.PreviousTransactionBlock?)

Properties

Link copied to clipboard
Link copied to clipboard

Balance of this coin object.

Link copied to clipboard

Displays the contents of the Move object in a JSON string and through GraphQL types. Also provides the flat representation of the type signature, and the BCS of the corresponding data.

Link copied to clipboard

32-byte hash that identifies the object's contents, encoded as a Base58 string.

Link copied to clipboard

The transaction block that created this version of the object.

Link copied to clipboard