RPC Methods
Test Paxeer Network RPC methods in real-time
Overview
Test Paxeer Network RPC methods in real-time. Select an example or write your own JSON-RPC request.
RPC Endpoint: https://public-rpc.paxeer.app/rpc
Common RPC Methods
eth_blockNumber
Returns the number of the most recent block.
{
"jsonrpc": "2.0",
"method": "eth_blockNumber",
"params": [],
"id": 1
}{
"jsonrpc": "2.0",
"id": 1,
"result": "0x5daf3b"
}eth_getBalance
Returns the balance of the account of given address.
{
"jsonrpc": "2.0",
"method": "eth_getBalance",
"params": [
"0x407d73d8a49eeb85d32cf465507dd71d507100c1",
"latest"
],
"id": 1
}{
"jsonrpc": "2.0",
"id": 1,
"result": "0x0234c8a3397aab58"
}eth_gasPrice
Returns the current price per gas in wei.
{
"jsonrpc": "2.0",
"method": "eth_gasPrice",
"params": [],
"id": 1
}{
"jsonrpc": "2.0",
"id": 1,
"result": "0x09184e72a000"
}eth_chainId
Returns the chain ID of the current network.
{
"jsonrpc": "2.0",
"method": "eth_chainId",
"params": [],
"id": 1
}{
"jsonrpc": "2.0",
"id": 1,
"result": "0xe5"
}eth_call
Executes a new message call immediately without creating a transaction on the blockchain.
{
"jsonrpc": "2.0",
"method": "eth_call",
"params": [
{
"to": "0xd46e8dd67c5d32be8058bb8eb970870f07244567",
"data": "0x..."
},
"latest"
],
"id": 1
}{
"jsonrpc": "2.0",
"id": 1,
"result": "0x..."
}eth_sendTransaction
Creates new message call transaction or a contract creation.
This method requires a wallet connection to sign the transaction.
{
"jsonrpc": "2.0",
"method": "eth_sendTransaction",
"params": [
{
"from": "0xb60e8dd61c5d32be8058bb8eb970870f07233155",
"to": "0xd46e8dd67c5d32be8058bb8eb970870f07244567",
"gas": "0x76c0",
"gasPrice": "0x9184e72a000",
"value": "0x9184e72a",
"data": "0x..."
}
],
"id": 1
}{
"jsonrpc": "2.0",
"id": 1,
"result": "0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331"
}eth_getTransactionByHash
Returns information about a transaction by transaction hash.
{
"jsonrpc": "2.0",
"method": "eth_getTransactionByHash",
"params": [
"0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b"
],
"id": 1
}{
"jsonrpc": "2.0",
"id": 1,
"result": {
"blockHash": "0x1d59ff54b1eb26b013ce3cb5fc9dab3705b415a67127a003c3e61eb445bb8df2",
"blockNumber": "0x5daf3b",
"from": "0xa7d9ddbe1f17865597fbd27ec712455208b6b76d",
"gas": "0xc350",
"gasPrice": "0x4a817c800",
"hash": "0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b",
"input": "0x68656c6c6f21",
"nonce": "0x15",
"to": "0xf02c1c8e6114b1dbe8937a39260b5b0a374432bb",
"transactionIndex": "0x41",
"value": "0xf3dbb76162000",
"v": "0x25",
"r": "0x1b5e176d927f8e9ab405058b2d2457392da3e20f328b16ddabcebc33eaac5fea",
"s": "0x4ba69724e8f69de52f0125ad8b3c5c2cef33019bac3249e2c0a2192766d1721c"
}
}Using with cURL
curl -X POST \
https://public-rpc.paxeer.app/rpc \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"method": "eth_blockNumber",
"params": [],
"id": 1
}'Using with JavaScript
const response = await fetch('https://public-rpc.paxeer.app/rpc', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
jsonrpc: '2.0',
method: 'eth_blockNumber',
params: [],
id: 1,
}),
});
const data = await response.json();
console.log(data.result);Using with Python
import requests
import json
url = 'https://public-rpc.paxeer.app/rpc'
payload = {
'jsonrpc': '2.0',
'method': 'eth_blockNumber',
'params': [],
'id': 1
}
response = requests.post(url, json=payload)
print(response.json())Next Steps
How is this guide?