MoveObject
The representation of an object as a Move Object, which exposes additional information (content, module that governs it, version, is transferrable, etc.) about this object.
type MoveObject implements IMoveObject, IObject, IOwner {
address: SuiAddress!
objects(
first: Int
after: String
last: Int
before: String
filter: ObjectFilter
): MoveObjectConnection!
balance(
type: String
): Balance
balances(
first: Int
after: String
last: Int
before: String
): BalanceConnection!
coins(
first: Int
after: String
last: Int
before: String
type: String
): CoinConnection!
stakedSuis(
first: Int
after: String
last: Int
before: String
): StakedSuiConnection!
defaultSuinsName(
format: DomainFormat
): String
suinsRegistrations(
first: Int
after: String
last: Int
before: String
): SuinsRegistrationConnection!
version: UInt53!
status: ObjectKind!
digest: String
owner: ObjectOwner
previousTransactionBlock: TransactionBlock
storageRebate: BigInt
receivedTransactionBlocks(
first: Int
after: String
last: Int
before: String
filter: TransactionBlockFilter
scanLimit: Int
): TransactionBlockConnection!
bcs: Base64
contents: MoveValue
hasPublicTransfer: Boolean!
display: [DisplayEntry!]
dynamicField(
name: DynamicFieldName!
): DynamicField
dynamicObjectField(
name: DynamicFieldName!
): DynamicField
dynamicFields(
first: Int
after: String
last: Int
before: String
): DynamicFieldConnection!
asCoin: Coin
asStakedSui: StakedSui
asCoinMetadata: CoinMetadata
asSuinsRegistration: SuinsRegistration
}
Fields
MoveObject.address
● SuiAddress!
non-null scalar
MoveObject.objects
● MoveObjectConnection!
non-null object
Objects owned by this object, optionally filter
-ed.
MoveObject.objects.first
● Int
scalar
MoveObject.objects.after
● String
scalar
MoveObject.objects.last
● Int
scalar
MoveObject.objects.before
● String
scalar
MoveObject.objects.filter
● ObjectFilter
input
MoveObject.balance
● Balance
object
Total balance of all coins with marker type owned by this object. If type is not supplied,
it defaults to 0x2::sui::SUI
.
MoveObject.balance.type
● String
scalar
MoveObject.balances
● BalanceConnection!
non-null object
The balances of all coin types owned by this object.
MoveObject.balances.first
● Int
scalar
MoveObject.balances.after
● String
scalar
MoveObject.balances.last
● Int
scalar
MoveObject.balances.before
● String
scalar
MoveObject.coins
● CoinConnection!
non-null object
The coin objects for this object.
type
is a filter on the coin's type parameter, defaulting to 0x2::sui::SUI
.
MoveObject.coins.first
● Int
scalar
MoveObject.coins.after
● String
scalar
MoveObject.coins.last
● Int
scalar
MoveObject.coins.before
● String
scalar
MoveObject.coins.type
● String
scalar
MoveObject.stakedSuis
● StakedSuiConnection!
non-null object
The 0x3::staking_pool::StakedSui
objects owned by this object.