sui_getDynamicFields
Return the list of dynamic field objects owned by an object.
parent_object_id
:<ObjectID>
- The ID of the parent objectcursor
:<ObjectID>
- Optional paging cursorlimit
:<uint>
- Maximum item returned per page, default to [QUERY_MAX_RESULT_LIMIT] if not specified.
DynamicFieldPage
: <Page_for_DynamicFieldInfo_and_ObjectID>
Request
curl
--location --request POST 'https://sui-devnet.blastapi.io/<project_id>' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"id": 1,
"method": "sui_getDynamicFields",
"params": [
"0xba483c73a9b79bcc592cc5f163465ff1bc5c5d2e",
"0xba483c73a9b79bcc592cc5f163465ff1bc5c5d2e",
2
]
}'
Last modified 2mo ago