Skip to main content

owner

Look up an Owner by its SuiAddress.

root_version represents the version of the root object in some nested chain of dynamic fields. It allows consistent historical queries for the case of wrapped objects, which don't have a version. For example, if querying the dynamic field of a table wrapped in a parent object, passing the parent object's version here will ensure we get the dynamic field's state at the moment that parent's version was created.

If root_version is left null, dynamic fields will be from a consistent snapshot of the Sui state at the latest checkpoint known to the GraphQL RPC.

owner(
address: SuiAddress!
rootVersion: Int
): Owner

Arguments

owner.address ● SuiAddress! non-null scalar

owner.rootVersion ● Int scalar

Type

Owner object

An Owner is an entity that can own an object. Each Owner is identified by a SuiAddress which represents either an Address (corresponding to a public key of an account) or an Object, but never both (it is not known up-front whether a given Owner is an Address or an Object).