Skip to main content

Parameters

chainId
string
default:"sui"
required
Unique identifier for a blockchain network.
id
number
default:1
required
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"suix_resolveNameServiceNames"
required
JSON-RPC method name.
params
object
required
Parameters for suix_resolveNameServiceNames: [address, cursor, limit]. The address is required. The cursor is an optional paging cursor (ObjectID) and limit is an optional unsigned integer.Positional parameters for suix_resolveNameServiceNames:
  • params[0]: The address to resolve names for, as a SuiAddress (base-58 encoded).
  • params[1]: Optional paging cursor (ObjectID). If provided, the query will start from the item after this cursor.
  • params[2]: Maximum number of items per page (uint). Defaults to QUERY_MAX_RESULT_LIMIT if not specified.

Returns

result
object
A page of resolved names for the specified address, with pagination information. If next_cursor is provided, reading with that cursor will start from the item after it; if null, the first page is returned.