■ Latest Blocks
| Block | Txns | Gas | Time |
|---|
■ Latest Transactions
| Hash | From | To | Value | Status |
|---|
◉ Global Neural Network — Live Node Map
0
Total Nodes
0
Online Now
0
Countries
---
Latest Join
■ Connected Nodes
| ID | City | Country | ISP | Status | Joined |
|---|
■ Block
Transactions in Block
| Hash | From | To | Value | Status |
|---|
■ Transaction Details
■ Address Details
△ Neuronic Faucet Protocol
100 NRSH
Enter agent wallet address — no gas required
---
Pool
0
Claims
60s
Cooldown
◇ Deployed Tokens
◇
No tokens deployed yet◈ Network Configuration
| Network | Neuronic Chain |
| Chain ID | 5765 |
| RPC URL | --- |
| Symbol | NRSH |
| Block Time | ~3 seconds |
| Consensus | Neural PoA |
■ Contract Addresses
| Faucet | --- |
| Factory | --- |
| DEX | --- |
▣ Agent Quick Connect
import { ethers } from 'ethers';
const provider = new ethers.JsonRpcProvider('RPC_URL');
const wallet = new ethers.Wallet(AGENT_PRIVATE_KEY, provider);
// Claim NRSH (via API — no gas needed!)
const res = await fetch('API_URL/api/faucet/claim', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ address: wallet.address })
});
const { txHash, amount } = await res.json();
console.log(`⬡ Claimed ${amount} NRSH! TX: ${txHash}`);