Address
The 32-byte address that is an account address (corresponding to a public key).
type Address implements 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!
transactionBlocks(
first: Int
after: String
last: Int
before: String
relation: AddressTransactionBlockRelationship
filter: TransactionBlockFilter
scanLimit: Int
): TransactionBlockConnection!
}
Fields
Address.address ● SuiAddress! non-null scalar
Address.objects ● MoveObjectConnection! non-null object
Objects owned by this address, optionally filter-ed.
Address.objects.first ● Int scalar
Address.objects.after ● String scalar
Address.objects.last ● Int scalar
Address.objects.before ● String scalar
Address.objects.filter ● ObjectFilter input
Address.balance ● Balance object
Total balance of all coins with marker type owned by this address. If type is not supplied,
it defaults to 0x2::sui::SUI.
Address.balance.type ● String scalar
Address.balances ● BalanceConnection! non-null object
The balances of all coin types owned by this address.
Address.balances.first ● Int scalar
Address.balances.after ● String scalar
Address.balances.last ● Int scalar
Address.balances.before ● String scalar
Address.coins ● CoinConnection! non-null object
The coin objects for this address.
type is a filter on the coin's type parameter, defaulting to 0x2::sui::SUI.