Returns the contract state (key value pairs) based on the key prefix encoded in base64.
Supported on NEAR (mainnet) only.
Parameters
request_type
- string - The type of request i.e view_statefinality
- string - The assurance that the transaction cannot be altered, reversed, or canceled after they are completed. For finality=final, it means that it has been validated on at least 66% of the nodes in the network and for finality=optimistic, it uses the latest block recorded on the node that responded to the query passedblock_id
- int/string - The block id, it could be either block number or block hashaccount_id
- string - The id of the account associcated with the transactionprefix_base64
- string - The key prefix encoded in base64
Note: You can only use one parameter, either finality or block_id. The block_id param can take either the block number or the block hash as an argument.
Returns
block_hash
- The hash of the block this transaction was associated withblock_height
- The height of the block this transactions was associated withproof
- The proofvalues
- An array of values that are sent with the transactionkey
- The signer keyvalue
- Integer of the value sent with this transaction encoded as a hexadecimalproof
- The proof encoded in hexadecimal form
API Endpoint
The format of a Near API endpoint is
https://open-platform.nodereal.io/{{apiKey}}/near/
Here is an example:
https://open-platform.nodereal.io/4c0a1c23661a4e26bcbcwed461e34ea9/near/
Example
Request
curl https://open-platform.nodereal.io/{{apiKey}}/near/ \
--request POST \
--header "Content-Type: application/json" \
--data '{"method": "query","params": {"request_type": "view_state", "finality": "final", "account_id": "kiln.poolv1.near", "prefix_base64": ""},"id":1,"jsonrpc":"2.0"}'
Result