eth_getCode
Returns code at a given address.
Params
- a string array containing (required):DATA(hex string, required)
, 20 Bytes - address.QUANTITY|TAG(hex string|string, required)
- integer block number in hex string format, or the string"latest"
,"earliest"
or"pending"
, see the default block parameter
DATA(hex string)
- the code from the given address.curl
TypeScript
curl https://api.blockvision.org/v1/<api key> \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getCode",
"params": [
"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
"0x2"
],
"id": 1
}'
import { BlockVisionProvider, BvNetwork } from 'blockvision.js'
// Optional parameters, but default to eth-mainnet and default api-key.
const bv = new BlockVisionProvider(BvNetwork.BNB_MAINNET)
// Access standard Ethers.js JSON-RPC node request
bv.getCode('0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b').then(console.log)
{
"id": 1,
"jsonrpc": "2.0",
"result": "0x600160008035811a818181146012578301005b601b6001356025565b8060005260206000f25b600060078202905091905056"
}
Last modified 1mo ago