Todas as chains

Arbitrum One

Ao vivoEVMhttpswss

Arbitrum One está disponível na TheRPC sob o endpoint unificado arbitrum.therpc.io/<YOUR_KEY>. Mesmo schema JSON-RPC da sua integração existente — basta trocar o host.

Faça uma chamada agora

Requisição ao vivo pelo proxy de docs da TheRPC. Nenhuma API key necessária para esta demo.

curl https://arbitrum.therpc.io/YOUR_API_KEY \
-X POST \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}'

Redes

RedeChain IDExplorerEndpoint
Mainnet0xa4b1arbiscan.ioarbitrum.therpc.io
wallet_addEthereumChain
await window.ethereum.request({
method: 'wallet_addEthereumChain',
params: [{
chainId: '0xa4b1',
chainName: 'Arbitrum One',
rpcUrls: ['https://arbitrum.therpc.io/<YOUR_KEY>'],
nativeCurrency: {
name: 'Ether',
symbol: 'ETH',
decimals: 18,
},
blockExplorerUrls: ['https://arbiscan.io'],
}],
});