According to eth.wiki rpc, the following methods have an extra default block parameter:
- eth_getBalance
- eth_getCode
- eth_getTransactionCount
- eth_getStorageAt
- eth_call
Current Impl ignored block parameter, as the state snapshot was not supported until this pr.
To support block parameter:
- the web3 rpc layer need handle
block parameter;
- godwoken rpc need handle
block parameter;
- get_balance
- get_storage_at
- get_nonce
- get_data
- execute_raw_l2transaction
According to eth.wiki rpc, the following methods have an extra default
block parameter:Current Impl ignored
block parameter, as the state snapshot was not supported until this pr.To support
block parameter:block parameter;block parameter;