NEAR
NEAR CLI
-
Install the NEAR CLI.
-
Use the
--node_url
flag to operate through your Chainstack-deployed NEAR node:near COMMAND --node_url YOUR_CHAINSTACK_ENDPOINT
where
- COMMAND โ a supported NEAR CLI command
- YOUR_CHAINSTACK_ENDPOINT โ your node HTTPS or WSS endpoint protected either with the key or password. See also node access details.
JSON-RPC API
Interact with your NEAR node using JSON-RPC API.
Example to get the latest block:
curl -H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "id": "1", "method": "block", "params": {"finality": "final"}}' \
YOUR_CHAINSTACK_ENDPOINT
where
YOUR_CHAINSTACK_ENDPOINT is your node HTTPS or WSS endpoint protected either with the key or password. See also node access details.
near-api-js
-
Install near-api-js.
-
Use
JsonRpcProvider
to connect to your NEAR node.const nearAPI = require("near-api-js"); const connectionInfo = { url: "YOUR_CHAINSTACK_ENDPOINT" }; const provider = new nearAPI.providers.JsonRpcProvider(connectionInfo); async function main() { const response = await provider.block({ finality: "final", }); console.log(response) } main();
where YOUR_CHAINSTACK_ENDPOINT is your node HTTPS or WSS endpoint protected either with the key or password. See also node access details.
Updated 19 days ago