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
Response
The response structure is defined by the sui/rpc/v2/state_service.proto definition.
Response Fields
| Field | Type | Description |
|---|---|---|
dynamic_fields | DynamicField | See proto definition |
next_page_token | bytes | See proto definition |
info
For full field definitions, please refer to the Sui Protobuf definitions.