Parameters
chainId
string
default:"sui"
required
Unique identifier for a blockchain network.
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"suix_getDynamicFieldObject"
required
JSON-RPC method name.
This method does not require any parameters.
Returns
The JSON-RPC result.
Move object content or package content in BCS. Only present if SuiObjectDataOptions.showBcs is true.
Move object content or package content. Only present if SuiObjectDataOptions.showContent is true.
Base64 string representing the object digest
Display metadata for frontend UI rendering, or null if no Display is defined
Unique ObjectID for this object
The owner of this object. Optional unless showOwner is enabled
Digest of the last transaction that modified this object
Amount of SUI rebated if the object is deleted (uint64 as string)
Type of the object, if known
Error information if the request failed
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=sui \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "suix_getDynamicFieldObject",
"params": []
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}