NEAR RPC Node
Sharded for Scale

Connect to NEAR, the sharded Layer 1 blockchain built for usability and scale. Experience human-readable accounts, low fees, and infinite scalability through Nightshade sharding.

20 M+

Requests per Day

99.99 %

Network Uptime

< 50 ms

Average Response Time

24/7

Technical Support

Specification NEAR Network

Technical characteristics and available endpoints

NEAR Protocol

Mainnet & Testnet Support

Network Mainnet
Protocol HTTPS / WSS
Uptime 99.99%
Finality ~1-2s
Sharding Nightshade
TPS 100,000+ (theoretical)

NEAR Protocol is a sharded Layer 1 blockchain designed for usability and infinite scalability through Nightshade sharding. Unlike most blockchains, NEAR prioritizes user experience with human-readable account names (alice.near), built-in onboarding, and extremely low fees. Nightshade's dynamic sharding enables the network to scale by adding shards as demand grows, theoretically supporting millions of transactions per second.

Key capabilities:

  • Dynamic sharding (Nightshade)
  • 100,000+ TPS capacity (theoretical)
  • Human-readable account names
  • 1-2 second finality
  • Extremely low fees (~$0.001)
  • Progressive security model
  • Aurora EVM compatibility layer
  • JavaScript smart contracts (AssemblyScript)
  • User-friendly onboarding

🔗 RPC Endpoints

HTTPS
https://rpc.crypto-chief.com/near/{YOUR_API_KEY}
WSS
wss://rpc.crypto-chief.com/near/ws/{YOUR_API_KEY}

Replace {YOUR_API_KEY} with your actual API key from the dashboard.

What is a NEAR RPC Node?

Access sharded blockchain

A NEAR RPC node provides applications with access to a sharded Layer 1 blockchain designed for mass adoption through usability and scalability. NEAR's unique combination of human-readable accounts, low fees, and dynamic sharding makes it ideal for applications targeting mainstream users rather than crypto-natives.

Why sharding matters

Traditional blockchains hit scalability limits — every validator processes every transaction. Sharding divides the network into parallel chains (shards), with each shard processing transactions independently. NEAR's Nightshade sharding enables infinite scalability by dynamically adding shards as demand grows.

NEAR advantages:

  • Dynamic sharding — infinite scalability
  • Human accounts — alice.near instead of 0x...
  • 1-2s finality — near-instant confirmation
  • Low fees — ~$0.001 per transaction
  • User friendly — built for mainstream adoption
  • Developer friendly — JavaScript contracts

Nightshade sharding

Nightshade is NEAR's sharding mechanism where the blockchain is divided into multiple shards, each processing transactions in parallel. Unlike static sharding, Nightshade dynamically adjusts shard count based on network load. This enables the network to scale from thousands to potentially millions of TPS as adoption grows.

How NEAR sharding works:

  1. Network divided into parallel shards
  2. Each shard processes transactions independently
  3. Validators assigned to specific shards
  4. Cross-shard communication via receipts
  5. Shards added/removed based on demand

User experience focus

NEAR prioritizes usability over crypto-native features. Human-readable account names (alice.near), progressive onboarding, extremely low fees, and built-in account recovery make NEAR accessible to mainstream users. The Aurora EVM layer enables Ethereum developers to deploy Solidity contracts, bridging both ecosystems.

This user-first approach positions NEAR as infrastructure for applications targeting billions, not just crypto users.

Technical Documentation

Quick start for developers

Supported RPC Methods

NEAR uses JSON-RPC 2.0 with custom methods:

  • block — block information
  • chunk — chunk details (sharding)
  • tx — transaction status
  • query — view account/contract state
  • validators — current validators
  • gas_price — current gas price
  • send_tx — broadcast transaction
  • EXPERIMENTAL_changes — state changes

Code Examples

💻

JavaScript (near-api-js) — NEAR Connection:

const { connect, keyStores } = require('near-api-js');

const config = {
  networkId: 'mainnet',
  nodeUrl: 'https://rpc.crypto-chief.com/near/YOUR_API_KEY',
  keyStore: new keyStores.InMemoryKeyStore()
};

const near = await connect(config);

// Get account (human-readable!)
const account = await near.account('alice.near');
const balance = await account.getAccountBalance();

console.log('NEAR Balance:', balance.available);

// Call smart contract
const result = await account.functionCall({
  contractId: 'contract.near',
  methodName: 'get_greeting',
  args: {}
});

console.log('Contract result:', result);
💻

Python — NEAR Query:

import requests
import json

RPC_URL = 'https://rpc.crypto-chief.com/near/YOUR_API_KEY'

# Query account
payload = {
    'jsonrpc': '2.0',
    'id': 'dontcare',
    'method': 'query',
    'params': {
        'request_type': 'view_account',
        'finality': 'final',
        'account_id': 'alice.near'
    }
}

response = requests.post(RPC_URL, json=payload)
account = response.json()['result']

print(f"Account: alice.near")
print(f"Balance: {int(account['amount']) / 1e24} NEAR")
💻

WebSocket — Monitor NEAR:

const WebSocket = require('ws');
const ws = new WebSocket('wss://rpc.crypto-chief.com/near/ws/YOUR_API_KEY');

ws.on('open', () => {
  // Subscribe to block events
  ws.send(JSON.stringify({
    jsonrpc: '2.0',
    id: 1,
    method: 'subscribe',
    params: { event_type: 'block' }
  }));
});

ws.on('message', (data) => {
  const event = JSON.parse(data);
  if (event.params?.result?.block) {
    const block = event.params.result.block;
    console.log(`NEAR block ${block.header.height}`);
    console.log(`Sharding: ${block.chunks.length} chunks`);
  }
});

NEAR Best Practices

  • Account Names: Use human-readable accounts for better UX
  • Sharding Awareness: Understand cross-shard communication
  • Low Fees: Design for frequent micro-interactions
  • Fast Finality: Build UX for 1-2s confirmation
  • Aurora: Use Aurora for EVM compatibility if needed
  • Testing: Test on NEAR testnet before mainnet

Why choose us?

Sharded blockchain infrastructure

Dynamic Sharding

Infrastructure supporting Nightshade sharding delivering <50ms latency with infinite scalability potential.

Production Grade

Enterprise infrastructure with 99.99% uptime supporting NEAR's proven Layer 1 blockchain.

Sharding Analytics

Monitor shard activity, cross-shard communication, validator performance, and network metrics.

Global Infrastructure

Strategically deployed nodes ensuring low latency for NEAR's worldwide user base.

Infinite Scaling

Infrastructure designed to scale with dynamic sharding handling millions of potential TPS.

NEAR Specialists

24/7 support from engineers familiar with NEAR Protocol, Nightshade sharding, and Aurora.

Examples of Use

Build mainstream applications

NEAR's user-friendly design and sharding scalability enable mainstream consumer apps, Web3 social platforms, and applications targeting billions of users.

Social Platforms

Build Web3 social networks where human-readable accounts and low fees enable mainstream adoption.

Gaming Applications

Create blockchain games leveraging NEAR's scalability, low fees, and user-friendly onboarding.

DeFi Protocols

Launch DeFi platforms on NEAR or Aurora (EVM) benefiting from sharding scalability.

NFT Marketplaces

Build NFT platforms where low fees and human accounts create better user experience.

Creator Economies

Develop creator platforms where micro-payments and tipping work thanks to low transaction costs.

Identity Solutions

Create decentralized identity systems leveraging NEAR's human-readable account system.

Got questions?
we are here to help

NEAR is a sharded Layer 1 blockchain with dynamic sharding (Nightshade), human-readable accounts, and focus on mainstream user adoption.

Nightshade divides the blockchain into parallel shards that process transactions independently, with dynamic shard count based on demand.

Instead of 0x... addresses, NEAR uses readable names like alice.near, making blockchain more accessible to mainstream users.

NEAR achieves 1-2 second finality and theoretically can process 100,000+ TPS through dynamic sharding.

NEAR transactions typically cost around $0.001, making frequent interactions and micro-payments viable.

Aurora is an EVM compatibility layer on NEAR, enabling deployment of Solidity contracts while benefiting from NEAR's sharding.

Yes! NEAR supports smart contracts in Rust and AssemblyScript (TypeScript-like), making development accessible to web developers.

NEAR is the native token used for gas fees, staking, governance, and storage costs.

Yes, we provide RPC access to both NEAR mainnet and testnet for development.

NEAR offers sharding scalability, human-readable accounts, lower fees, and mainstream user focus while Ethereum has larger ecosystem.

Pricing that grows with your needs.

Free

Start building on Web3 — no credit card.

$0
  • 5 reqs/sec RPC
  • 5 reqs/min Unified API
  • Ultimate chains
  • WSS, Statistics
  • Community support

Pay for use

Flexible pay-as-you-go for any workload.

From $10
  • 400 reqs/sec RPC
  • 300 reqs/min Unified API
  • 10 reqs/min AML
  • EventStream
  • Ultimate chains
  • WSS, Whitelists, Statistics
  • Support portal

Subscription

From $500 monthly plus 20% extra value.

From $500
  • 700 reqs/sec RPC
  • 500 reqs/min Unified API
  • 5 reqs/sec AML
  • EventStream
  • Ultimate chains
  • WSS, Whitelists, Statistics
  • Support portal

Enterprise

Tailored solution for expert builders

Custom terms

All Subscription features plus:

  • Flexible rate limits
  • Engineering team support
  • Custom SLA
  • Personal manager