Docs Category: 284

Protocol

Login with NEARThe RPC API enables you to retrieve the current genesis and protocol configuration. Genesis Config Returns current genesis configuration. method: EXPERIMENTAL_genesis_config params: none Example: “`json { “jsonrpc”: “2.0”, “id”: “dontcare”, “method”: “EXPERIMENTAL_genesis_config” } “` “`js const response = await near.connection.provider.experimental_genesisConfig(); “` “`bash http post https://rpc.testnet.near.org jsonrpc=2.0 id=dontcare method=EXPERIMENTAL_genesis_config “` Example response: “`json { …

Protocol Read More »

RPC Statistics

Login with NEAR warning Please be advised that these tools and services will be discontinued soon. Inspect your RPC Usage in the Statistics Tab: info Data defaults to the last 30 days. Currently the statistics page show the usage data across all projects and API keys within an organization set on Pagoda Console. Aggregated key …

RPC Statistics Read More »

RPC Setup

Login with NEAR warning Please be advised that these tools and services will be discontinued soon. In order to use the RPC API you will need to setup the correct RPC endpoints: POST for all RPC methods JSON RPC 2.0 `- Endpoint URL varies by network testnet: https://near-testnet.api.pagoda.co/rpc/v1/ mainnet: https://near-mainnet.api.pagoda.co/rpc/v1/ note We are working on …

RPC Setup Read More »

Get Pagoda API Keys

Login with NEAR warning Please be advised that these tools and services will be discontinued soon. Register an account on Pagoda Console: Create a blank project Give your project a cool name Grab your API Key Click the API Tab and you will see your API key already generated for you and ready to use, …

Get Pagoda API Keys Read More »

Pagoda RPC API

Login with NEAR warning Please be advised that these tools and services will be discontinued and stop serving traffic on December 9th, 2024. Overview The Pagoda RPC provides you with instant access to maintenance free, scalable NEAR infrastructure, powering you on the fastest path from ideas to launch. Developers can interact with on-chain data and …

Pagoda RPC API Read More »

NEAR Enhanced API

Login with NEAR warning Please be advised that these tools and services will be discontinued soon. Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu. Try out our newly released Enhanced APIs – Balances (in Beta) and get what you …

NEAR Enhanced API Read More »

Setup

Login with NEARIn order to use the RPC API you will need to setup the correct RPC endpoints. RPC Endpoint Setup POST for all methods JSON RPC 2.0 `- endpoint URL varies by network: mainnet https://rpc.mainnet.near.org testnet https://rpc.testnet.near.org betanet https://rpc.betanet.near.org (may be unstable) localnet http://localhost:3030 Limits Maximum number of requests per IP: 600 req/min Querying …

Setup Read More »

RPC Endpoints

Login with NEARThe RPC API enables you to send transactions and query their status. Send transaction Sends transaction. Returns the guaranteed execution status and the results the blockchain can provide at the moment. method: send_tx params: signed_tx_base64: SignedTransaction encoded in base64 [Optional] wait_until: the required minimal execution level. Read more here. The default value is …

RPC Endpoints Read More »

Protocol

Login with NEARThe RPC API enables you to retrieve the current genesis and protocol configuration. Genesis Config Returns current genesis configuration. method: EXPERIMENTAL_genesis_config params: none Example: “`json { “jsonrpc”: “2.0”, “id”: “dontcare”, “method”: “EXPERIMENTAL_genesis_config” } “` “`js const response = await near.connection.provider.experimental_genesisConfig(); “` “`bash http post https://rpc.testnet.near.org jsonrpc=2.0 id=dontcare method=EXPERIMENTAL_genesis_config “` Example response: “`json { …

Protocol Read More »

Scroll to Top