IMoveObject
Interface implemented by types that represent a Move object on-chain (A Move value whose type has key
).
interface IMoveObject {
contents: MoveValue
moveObjectBcs: Base64
}
Fields
IMoveObject.contents
● MoveValue
object
The structured representation of the object's contents.
IMoveObject.moveObjectBcs
● Base64
scalar
The Base64-encoded BCS serialize of this object, as a MoveObject
.
Implemented By
MoveObject
object