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.
Address.coins.first ● Int scalar
Address.coins.after ● String scalar
Address.coins.last ● Int scalar
Address.coins.before ● String scalar
Address.coins.type ● String scalar
Address.stakedSuis ● StakedSuiConnection! non-null object
The 0x3::staking_pool::StakedSui objects owned by this address.
Address.stakedSuis.first ● Int scalar
Address.stakedSuis.after ● String scalar
Address.stakedSuis.last ● Int scalar
Address.stakedSuis.before ● String scalar
Address.defaultSuinsName ● String scalar
The domain explicitly configured as the default domain pointing to this address.
Address.defaultSuinsName.format ● DomainFormat enum
Address.suinsRegistrations ● SuinsRegistrationConnection! non-null object
The SuinsRegistration NFTs owned by this address. These grant the owner the capability to manage the associated domain.