sui_getObjectsOwnedByAddress
Return the list of objects owned by an address.
The
sui_getObjectsOwnedByAddress
command returns the objects list owned by a given address.address
: <SuiAddress>
- the owner's Sui addressVec<SuiObjectInfo>
: <[ObjectInfo]>
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_getObjectsOwnedByAddress",
"params": [
"0x480dfb8cfc4e8743d4086ace09f232beef625fe6"
]
}'
Last modified 30d ago