Skip to content

Latest commit

 

History

History
105 lines (77 loc) · 3.17 KB

README.md

File metadata and controls

105 lines (77 loc) · 3.17 KB

Implementation status

Methods listed in this document is not a commitment that it will be implemented. The list is built from what MetaMask supported.

Need revisit

Read ETH methods

  • net_version
  • eth_accounts
  • eth_blockNumber
  • eth_call
  • eth_chainId
  • eth_estimateGas
  • eth_feeHistory
  • eth_gasPrice
  • eth_getBalance
  • eth_getBlockByHash
  • eth_getBlockByNumber
  • eth_getBlockReceipts
  • eth_getBlockTransactionCountByHash
  • eth_getBlockTransactionCountByNumber
  • eth_getCode
  • eth_getLogs
  • eth_getProof
  • eth_getStorageAt
  • eth_getTransactionByBlockHashAndIndex
  • eth_getTransactionByBlockNumberAndIndex
  • eth_getTransactionByHash
  • eth_getTransactionCount
  • eth_getTransactionReceipt
  • eth_getUncleCountByBlockHash
  • eth_getUncleCountByBlockNumber
  • eth_syncing

Write ETH methods

ETH methods

Subscribe to events (unknown specification)

  • eth_subscribe
  • eth_unsubscribe

Filters

  • eth_getFilterChanges
  • eth_getFilterLogs
  • eth_newBlockFilter
  • eth_newFilter
  • eth_newPendingTransactionFilter (not supported by infura)
  • eth_uninstallFilter

Deprecated methods

  • eth_decrypt
  • eth_getEncryptionPublicKey
  • eth_requestAccounts
  • (Deprecated) Provider.enable()
  • wallet_getPermissions
  • wallet_requestPermissions
  • wallet_revokePermissions (not in EIP-2255)
  • eth_signTypedData
  • eth_signTypedData_v3
  • eth_signTypedData_v4

Other EIP

Methods that has no specification?

Methods not on a standard track is unlikely to be implemented.

Other question