NameRegistration
No description
type NameRegistration implements IMoveObject, IOwner {
address: IotaAddress!
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!
stakedIotas(
first: Int
after: String
last: Int
before: String
): StakedIotaConnection!
iotaNamesDefaultName(
format: NameFormat
): String
iotaNamesRegistrations(
first: Int
after: String
last: Int
before: String
): NameRegistrationConnection!
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!
name: String!
}
Fields
NameRegistration.address
● IotaAddress!
non-null scalar
NameRegistration.objects
● MoveObjectConnection!
non-null object
Objects owned by this object, optionally filter
-ed.
NameRegistration.objects.first
● Int
scalar
NameRegistration.objects.after
● String
scalar
NameRegistration.objects.last
● Int
scalar
NameRegistration.objects.before
● String
scalar
NameRegistration.objects.filter
● ObjectFilter
input
NameRegistration.balance
● Balance
object
Total balance of all coins with marker type owned by this object. If
type is not supplied, it defaults to 0x2::iota::IOTA
.
NameRegistration.balance.type
● String
scalar
NameRegistration.balances
● BalanceConnection!
non-null object
The balances of all coin types owned by this object.
NameRegistration.balances.first
● Int
scalar
NameRegistration.balances.after
● String
scalar
NameRegistration.balances.last
● Int
scalar
NameRegistration.balances.before
● String
scalar
NameRegistration.coins
● CoinConnection!
non-null object
The coin objects for this object.
type
is a filter on the coin's type parameter, defaulting to
0x2::iota::IOTA
.
NameRegistration.coins.first
● Int
scalar
NameRegistration.coins.after
● String
scalar
NameRegistration.coins.last
● Int
scalar
NameRegistration.coins.before
● String
scalar
NameRegistration.coins.type
● String
scalar
NameRegistration.stakedIotas
● StakedIotaConnection!
non-null object
The 0x3::staking_pool::StakedIota
objects owned by this object.
NameRegistration.stakedIotas.first
● Int
scalar
NameRegistration.stakedIotas.after
● String
scalar
NameRegistration.stakedIotas.last
● Int
scalar
NameRegistration.stakedIotas.before
● String
scalar
NameRegistration.iotaNamesDefaultName
● String
scalar
The name explicitly configured as the default name pointing to this object.
NameRegistration.iotaNamesDefaultName.format
● NameFormat
enum
NameRegistration.iotaNamesRegistrations
● NameRegistrationConnection!
non-null object
The NameRegistration NFTs owned by this object. These grant the owner the capability to manage the associated name.
NameRegistration.iotaNamesRegistrations.first
● Int
scalar
NameRegistration.iotaNamesRegistrations.after
● String
scalar
NameRegistration.iotaNamesRegistrations.last
● Int
scalar
NameRegistration.iotaNamesRegistrations.before
● String
scalar
NameRegistration.version
● UInt53!
non-null scalar
NameRegistration.status
● ObjectKind!
non-null enum
The current status of the object as read from the off-chain store. The possible states are: NOT_INDEXED, the object is loaded from serialized data, such as the contents of a genesis or system package upgrade transaction. LIVE, the version returned is the most recent for the object, and it is not deleted or wrapped at that version. HISTORICAL, the object was referenced at a specific version or checkpoint, so is fetched from historical tables and may not be the latest version of the object. WRAPPED_OR_DELETED, the object is deleted or wrapped and only partial information can be loaded."
NameRegistration.digest
● String
scalar
32-byte hash that identifies the object's contents, encoded as a Base58 string.