MoveData

class MoveData

The contents of a Move Value, corresponding to the following recursive type:

type MoveData = { Address: SuiAddress } | { UID: SuiAddress } | { ID: SuiAddress } | { Bool: bool } | { Number: BigInt } | { String: string } | { Vector: MoveData } | { Option: MoveData? } | { Struct: { name: string , value: MoveData } } | { Variant: { name: string, fields: { name: string, value: MoveData }, }

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard
object Companion