Links

sui_getDynamicFieldObject

Return the dynamic field object information for a specified object

Parameters

  • parent_object_id : <ObjectID> - The ID of the queried parent object
  • name : <string> - The Name of the dynamic field

Returns

GetObjectDataResponse : <ObjectRead>

Example Request and Result for sui_getDynamicFieldObject

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_getDynamicFieldObject",
"params": [
"0x6ba168402a3cd37904590f38b26c76738ad8a55d",
"Pink Lady"
]
}'