链号
1285
货币符号
MOVR
网站
https://moonbeam.network/networks/moonriver/
封锁浏览器URL
https://moonriver.moonscan.io
RPC端点 | 添加到钱包 |
---|---|
wss://moonriver.api.onfinality.io/public-ws | |
https://moonriver.api.onfinality.io/public | |
https://moonriver.unitedbloc.com:2000 | |
wss://moonriver.unitedbloc.com:2001 | |
https://moonriver.public.blastapi.io | |
https://moonriver-rpc.dwellir.com | |
wss://moonriver-rpc.dwellir.com | |
https://moonriver.publicnode.com | |
wss://moonriver.publicnode.com | |
https://rpc.api.moonriver.moonbeam.network | |
wss://wss.api.moonriver.moonbeam.network |
您可以使用 Moonriver RPC端点 您可以使用以太坊主网的RPC端点URL与Web3库(如Ethers.js、Web3)或Web3钱包(如MetaMask、WalletConnect、WalletConnect)建立连接。这使您能够轻松地与区块链进行交互并使用去中心化应用程序。 Moonriver
const Web3 = require('web3'); // Replace 'YOUR_RPC_URL' with the Moonriver RPC endpoint URL const rpcURL = wss://moonriver.api.onfinality.io/public-ws; // 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 Moonriver 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 Moonriver RPC endpoint URL const rpcURL = wss://moonriver.api.onfinality.io/public-ws; // Create a provider using the Moonriver RPC endpoint const provider = new ethers.providers.JsonRpcProvider(rpcURL); // You can use the 'provider' object to interact with Moonriver provider.getBlockNumber() .then(blockNumber => { console.log('Latest block number:', blockNumber); }) .catch(error => { console.error('Error:', error); });