sui_tryGetPastObject
Parameters:
Returns:
Example:
// Request
curl https://sui.blockpi.network/v1/rpc/your-rpc-key -X POST -H "Content-Type: application/json"
--data
'{
"jsonrpc": "2.0",
"id": 1,
"method": "sui_tryGetPastObject",
"params": [
"0x11af4b844ff94b3fbef6e36b518da3ad4c5856fa686464524a876b463d129760",
4,
{
"showType": true,
"showOwner": true,
"showPreviousTransaction": true,
"showDisplay": false,
"showContent": true,
"showBcs": false,
"showStorageRebate": true
}
]
}'
// Result
{
"jsonrpc": "2.0",
"result": {
"status": "ObjectNotExists",
"details": "0x11af4b844ff94b3fbef6e36b518da3ad4c5856fa686464524a876b463d129760"
},
"id": 1
}Last updated
Was this helpful?