Flare RPC
How to use it
// yarn add @tatumio/tatum
import { TatumSDK, Flare, Network } from '@tatumio/tatum'
const tatum = await TatumSDK.init<Flare>({ network: Network.FLARE })
const result = await tatum.rpc.call(
{
to: '0xD31a59c85aE9D8edEFeC411D448f90841571b89c', // Replace with the ERC-20 token contract address
data: '0x70a08231000000000000000000000000F22981C5bF0A717c98781Af04fdc8213fA789F1C', // The function signature for balanceOf(address), followed by the address
},
'latest',
)
await tatum.destroy() // Destroy Tatum SDK - needed for stopping background jobs
Overview
Executes a new message call immediately without creating a transaction on the block chain. Often used for executing read-only smart contract functions, for example the balanceOf
for an ERC-20 contract.
Top 5 most commonly used use cases for eth_call
:
- Retrieve Token Balance: Check an ERC-20 token balance for an address.
- Query Contract State: Get contract data, like a game score or auction status.
- Validate Inputs: Pre-validate function inputs before sending a transaction.
- Price Oracles: Fetch real-time price data for decentralized applications.
- Gas Estimation: Estimate gas costs for future transactions.
Parameters
Object
- The transaction call object
from
:DATA
, 20 Bytes - (optional) The address the transaction is sent from.to
:DATA
, 20 Bytes - The address the transaction is directed to.gas
:QUANTITY
- (optional) Integer of the gas provided for the transaction execution. eth_call consumes zero gas, but this parameter may be needed by some executions.gasPrice
:QUANTITY
- (optional) Integer of the gasPrice used for each paid gasvalue
:QUANTITY
- (optional) Integer of the value sent with this transactiondata
:DATA
- (optional) Hash of the method signature and encoded parameters. For details see Ethereum Contract ABI in the Solidity documentation(opens in a new tab)
QUANTITY|TAG
- integer block number, or the string"latest"
,"earliest"
or"pending"
Return Object
DATA
- the return value of executed contract.
JSON Examples
Request
{
"jsonrpc": "2.0",
"method": "eth_call",
"params": [
{
"to": "0xD31a59c85aE9D8edEFeC411D448f90841571b89c", // Replace with the ERC-20 token contract address
"data": "0x70a08231000000000000000000000000F22981C5bF0A717c98781Af04fdc8213fA789F1C" // The function signature for balanceOf(address), followed by the address to query
},
"latest"
],
"id": 1
}
Response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x00000000000000000000000000000000000000000000000000001726f9fecc9d"
}