链号
1
货币符号
ETH
网站
https://ethereum.org
封锁浏览器URL
https://etherscan.io
RPC端点 | 添加到钱包 |
---|---|
https://eth.llamarpc.com | |
https://endpoints.omniatech.io/v1/eth/mainnet/public | |
https://rpc.ankr.com/eth | |
https://go.getblock.io/d7dab8149ec04390aaa923ff2768f914 | |
https://eth-mainnet.nodereal.io/v1/1659dfb40aa24bbb8153a677b98064d7 | |
https://ethereum.publicnode.com | |
wss://ethereum.publicnode.com | |
https://1rpc.io/eth | |
https://rpc.builder0x69.io | |
https://rpc.mevblocker.io | |
https://rpc.flashbots.net | |
https://virginia.rpc.blxrbdn.com | |
https://uk.rpc.blxrbdn.com | |
https://singapore.rpc.blxrbdn.com | |
https://eth.rpc.blxrbdn.com | |
https://cloudflare-eth.com | |
https://eth-mainnet.public.blastapi.io | |
https://api.securerpc.com/v1 | |
https://openapi.bitstack.com/v1/wNFxbiJyQsSeLrX8RRCHi7NpRxrlErZk/DjShIqLishPCTB9HiMkPHXjUM9CNM9Na/ETH/mainnet | |
https://eth-pokt.nodies.app | |
https://eth-mainnet-public.unifra.io | |
https://ethereum.blockpi.network/v1/rpc/public | |
https://rpc.payload.de | |
https://api.zmok.io/mainnet/oaen6dy8ff6hju9k | |
https://eth-mainnet.g.alchemy.com/v2/demo | |
https://eth.api.onfinality.io/public | |
https://core.gashawk.io/rpc | |
https://mainnet.eth.cloud.ava.do | |
https://ethereumnodelight.app.runonflux.io | |
https://eth-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf | |
https://main-light.eth.linkpool.io | |
https://rpc.eth.gateway.fm | |
https://rpc.chain49.com/ethereum?api_key=14d1a8b86d8a4b4797938332394203dc | |
https://eth.meowrpc.com | |
https://eth.drpc.org | |
https://mainnet.gateway.tenderly.co | |
https://rpc.tenderly.co/fork/c63af728-a183-4cfb-b24e-a92801463484 | |
https://gateway.tenderly.co/public/mainnet | |
https://api.zan.top/node/v1/eth/mainnet/public | |
https://eth-mainnet.diamondswap.org/rpc | |
https://rpc.notadegen.com/eth | |
https://eth.merkle.io | |
https://rpc.lokibuilder.xyz/wallet | |
https://services.tokenview.io/vipapi/nodeservice/eth?apikey=qVHq2o6jpaakcw3lRstl | |
https://api.mycryptoapi.com/eth | |
wss://mainnet.gateway.tenderly.co | |
https://rpc.blocknative.com/boost | |
https://rpc.flashbots.net/fast | |
https://rpc.mevblocker.io/fast | |
https://rpc.mevblocker.io/noreverts | |
https://rpc.mevblocker.io/fullprivacy |
您可以使用 Ethereum Mainnet RPC端点 您可以使用以太坊主网的RPC端点URL与Web3库(如Ethers.js、Web3)或Web3钱包(如MetaMask、WalletConnect、WalletConnect)建立连接。这使您能够轻松地与区块链进行交互并使用去中心化应用程序。 Ethereum Mainnet
const Web3 = require('web3'); // Replace 'YOUR_RPC_URL' with the Ethereum Mainnet RPC endpoint URL const rpcURL = https://eth.llamarpc.com; // Create a new Web3 instance using the RPC endpoint const web3 = new Web3(new Web3.providers.HttpProvider(rpcURL)); // Now you can use the 'web3' object to interact with Ethereum Mainnet web3.eth.getBlockNumber() .then(blockNumber => { console.log('Latest block number:', blockNumber); }) .catch(error => { console.error('Error:', error); });
const ethers = require('ethers'); // Replace 'YOUR_RPC_URL' with the Ethereum Mainnet RPC endpoint URL const rpcURL = https://eth.llamarpc.com; // Create a provider using the Ethereum Mainnet RPC endpoint const provider = new ethers.providers.JsonRpcProvider(rpcURL); // You can use the 'provider' object to interact with Ethereum Mainnet provider.getBlockNumber() .then(blockNumber => { console.log('Latest block number:', blockNumber); }) .catch(error => { console.error('Error:', error); });