Geth Proxy

eth_blockNumber

Returns the number of most recent block

https://api.ibvmscan.io/api
   ?module=proxy
   &action=eth_blockNumber
   &apikey=YourApiKeyToken

Try this endpoint in your browserarrow-up-right 🔗

No parameters required.

eth_getBlockByNumber

Returns information about a block by block number.

https://api.ibvmscan.io/api
   ?module=proxy
   &action=eth_getBlockByNumber
   &tag=0xa11446
   &boolean=true
   &apikey=YourApiKeyToken

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

tag

the block number, in hex eg. 0xC36B3C

boolean

the boolean value to show full transaction objects.

when true, returns full transaction objects and their information, when false only returns a list of transactions.

eth_getBlockTransactionCountByNumber

Returns the number of transactions in a block.

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

tag

the block number, in hex eg. 0xC36B3C

eth_getTransactionByHash

Returns information about a transaction requested by transaction hash.

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

txhash

the string representing the hash of the transaction

eth_getTransactionByBlockNumberAndIndex

Returns information about a transaction by block number and transaction index position.

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

tag

the block number, in hex eg. 0x10FB78

index

the position of the uncle's index in the block, in hex eg. 0x1

eth_getTransactionCount

Returns the number of transactions performed by an address.

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

address

the string representing the address to get transaction count

tag

the string pre-defined block parameter, either earliest, pending or latest

eth_sendRawTransaction

Submits a pre-signed transaction for broadcast to the BNB Smart Chain network.

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

hex

the string representing the signed raw transaction data to broadcast.

eth_getTransactionReceipt

Returns the receipt of a transaction that has been validated.

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

txhash

the string representing the hash of the transaction

eth_call

Executes a new message call immediately without creating a transaction on the block chain.

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

to

the string representing the address to interact with

data

the hash of the method signature and encoded parameters

tag

the string pre-defined block parameter, either earliest, pending or latest

circle-info

Note: The gas parameter is capped at 2x the current block gas limit.

eth_getCode

Returns code at a given address.

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

address

the string representing the address to get code

tag

the string pre-defined block parameter, either earliest, pending or latest

eth_gasPrice

Returns the current price per gas in wei.

Try this endpoint in your browserarrow-up-right 🔗

No parameters required.

eth_estimateGas

Makes a call or transaction, which won't be added to the blockchain and returns the gas used.

Try this endpoint in your browserarrow-up-right 🔗

Query Parameters

Parameter
Description

data

the hash of the method signature and encoded parameters

to

the string representing the address to interact with

value

the value sent in this transaction, in hex eg. 0xff22

gas

the amount of gas provided for the transaction, in hex eg. 0x5f5e0ff

gasPrice

the gas price paid for each unit of gas, in wei

circle-info

Note: The gas parameter is capped at 2x the current block gas limit.

Last updated