web3.js
web3.js copied to clipboard
add eth_newPendingTransactionFilter to rpc method wrappers
eth_newPendingTransactionFilter exists in rpc methods, its just not being exposed by web3.eth. Double check and make sure other methods are implemented as well https://github.com/web3/web3.js/issues/4483 https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_newpendingtransactionfilter
- [ ] List all RPC methods
- [ ] Move to library
- [ ] Doc Update
9/3 Meeting - should have this to support execution level. Just need to expose it to the public in the lib.
following function are available in RPC Methods package but are not exported via Eth class:
| Function Name | JSON RPC API | EL Specs |
|---|---|---|
| getCompilers | x | x |
| compileSolidity | x | x |
| compileLLL | x | x |
| compileSerpent | x | x |
newFilter |
✓ | ✓ |
newBlockFilter |
✓ | ✓ |
uninstallFilter |
✓ | ✓ |
getFilterChanges |
✓ | ✓ |
getFilterLogs |
✓ | ✓ |
| submitHashrate | x | x |
newPendingTransactionFilter |
✓ | ✓ |