mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 05:36:46 +00:00
update rpc mapping
🎱
This commit is contained in:
parent
6a6cd10299
commit
f3d24e4eb6
1 changed files with 48 additions and 0 deletions
|
|
@ -97,6 +97,54 @@ var (
|
||||||
"eth_resend": (*ethApi).Resend,
|
"eth_resend": (*ethApi).Resend,
|
||||||
"eth_pendingTransactions": (*ethApi).PendingTransactions,
|
"eth_pendingTransactions": (*ethApi).PendingTransactions,
|
||||||
"eth_getTransactionReceipt": (*ethApi).GetTransactionReceipt,
|
"eth_getTransactionReceipt": (*ethApi).GetTransactionReceipt,
|
||||||
|
"exp_accounts": (*ethApi).Accounts,
|
||||||
|
"exp_blockNumber": (*ethApi).BlockNumber,
|
||||||
|
"exp_getBalance": (*ethApi).GetBalance,
|
||||||
|
"exp_protocolVersion": (*ethApi).ProtocolVersion,
|
||||||
|
"exp_coinbase": (*ethApi).Coinbase,
|
||||||
|
"exp_mining": (*ethApi).IsMining,
|
||||||
|
"exp_syncing": (*ethApi).IsSyncing,
|
||||||
|
"exp_gasPrice": (*ethApi).GasPrice,
|
||||||
|
"exp_getStorage": (*ethApi).GetStorage,
|
||||||
|
"exp_storageAt": (*ethApi).GetStorage,
|
||||||
|
"exp_getStorageAt": (*ethApi).GetStorageAt,
|
||||||
|
"exp_getTransactionCount": (*ethApi).GetTransactionCount,
|
||||||
|
"exp_getBlockTransactionCountByHash": (*ethApi).GetBlockTransactionCountByHash,
|
||||||
|
"exp_getBlockTransactionCountByNumber": (*ethApi).GetBlockTransactionCountByNumber,
|
||||||
|
"exp_getUncleCountByBlockHash": (*ethApi).GetUncleCountByBlockHash,
|
||||||
|
"exp_getUncleCountByBlockNumber": (*ethApi).GetUncleCountByBlockNumber,
|
||||||
|
"exp_getData": (*ethApi).GetData,
|
||||||
|
"exp_getCode": (*ethApi).GetData,
|
||||||
|
"exp_sign": (*ethApi).Sign,
|
||||||
|
"exp_sendRawTransaction": (*ethApi).SendRawTransaction,
|
||||||
|
"exp_sendTransaction": (*ethApi).SendTransaction,
|
||||||
|
"exp_transact": (*ethApi).SendTransaction,
|
||||||
|
"exp_estimateGas": (*ethApi).EstimateGas,
|
||||||
|
"exp_call": (*ethApi).Call,
|
||||||
|
"exp_flush": (*ethApi).Flush,
|
||||||
|
"exp_getBlockByHash": (*ethApi).GetBlockByHash,
|
||||||
|
"exp_getBlockByNumber": (*ethApi).GetBlockByNumber,
|
||||||
|
"exp_getTransactionByHash": (*ethApi).GetTransactionByHash,
|
||||||
|
"exp_getTransactionByBlockNumberAndIndex": (*ethApi).GetTransactionByBlockNumberAndIndex,
|
||||||
|
"exp_getTransactionByBlockHashAndIndex": (*ethApi).GetTransactionByBlockHashAndIndex,
|
||||||
|
"exp_getUncleByBlockHashAndIndex": (*ethApi).GetUncleByBlockHashAndIndex,
|
||||||
|
"exp_getUncleByBlockNumberAndIndex": (*ethApi).GetUncleByBlockNumberAndIndex,
|
||||||
|
"exp_getCompilers": (*ethApi).GetCompilers,
|
||||||
|
"exp_compileSolidity": (*ethApi).CompileSolidity,
|
||||||
|
"exp_newFilter": (*ethApi).NewFilter,
|
||||||
|
"exp_newBlockFilter": (*ethApi).NewBlockFilter,
|
||||||
|
"exp_newPendingTransactionFilter": (*ethApi).NewPendingTransactionFilter,
|
||||||
|
"exp_uninstallFilter": (*ethApi).UninstallFilter,
|
||||||
|
"exp_getFilterChanges": (*ethApi).GetFilterChanges,
|
||||||
|
"exp_getFilterLogs": (*ethApi).GetFilterLogs,
|
||||||
|
"exp_getLogs": (*ethApi).GetLogs,
|
||||||
|
"exp_hashrate": (*ethApi).Hashrate,
|
||||||
|
"exp_getWork": (*ethApi).GetWork,
|
||||||
|
"exp_submitWork": (*ethApi).SubmitWork,
|
||||||
|
"exp_submitHashrate": (*ethApi).SubmitHashrate,
|
||||||
|
"exp_resend": (*ethApi).Resend,
|
||||||
|
"exp_pendingTransactions": (*ethApi).PendingTransactions,
|
||||||
|
"exp_getTransactionReceipt": (*ethApi).GetTransactionReceipt,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue