Finney Testnet RPC Endpoints
Last updated
The Finney testnet provides robust infrastructure through two dedicated RPC (Remote Procedure Call) endpoints. These endpoints serve as archive nodes, offering developers and users comprehensive access to the network's historical data and current state.
https://finney.uomi.ai
Primary Archive Node
Active
https://finney2.uomi.ai
Secondary Archive Node
Active
Complete historical state access
Full block history from genesis
State queries at any block height
Transaction receipt retrieval for all historical transactions
Both endpoints support the standard JSON-RPC methods including:
Ethereum JSON-RPC API (eth_*)
Net API (net_*)
Web3 API (web3_*)
Debug API (debug_*)
Load Balancing
Alternate between both endpoints for optimal performance
Implement retry logic with endpoint switching
Rate Limiting
Respect rate limits to ensure fair usage
Implement appropriate caching strategies
Error Handling
Always implement proper error handling
Monitor response times and implement timeouts
For technical issues or questions:
Join our Discord community
Open a GitHub issue
Contact our developer support team
Chain ID: 4386
Block Time: 3s
Both endpoints are continuously monitored for:
Uptime
Response time
Sync status
Block height consistency
Last updated
const Web3 = require('web3');
const web3 = new Web3('https://finney.uomi.ai');const { ethers } = require('ethers');
const provider = new ethers.providers.JsonRpcProvider('https://finney.uomi.ai');