Skip to main content

List Dynamic Fields

Lists all dynamic fields for a parent object via StateService/ListDynamicFields. Supports cursor pagination for objects with many fields.

Service

sui.rpc.v2.StateService

Parity

Direct

This method has a direct mapping from the JSON-RPC method suix_getDynamicFields.

Request

Parameters

{
"parent": "0x5"
}

Example (grpcurl)

grpcurl -H "x-api-key: YOUR_API_KEY" \
-d '{"parent":"0x5"}' \
grpc.surflux.dev:443 \
sui.rpc.v2.StateService/ListDynamicFields
Run in Playground

Response

The response structure is defined by the sui/rpc/v2/state_service.proto definition.

Response Fields

FieldTypeDescription
dynamic_fieldsDynamicFieldSee proto definition
next_page_tokenbytesSee proto definition
info

For full field definitions, please refer to the Sui Protobuf definitions.