js-libs
js-libs copied to clipboard
A collection of JavaScript libraries for Ethereum dapp development.
`eth_newHeads` (I think) returns a Block with the number field being a string (e.g. `"0x..."`); `distinctValues` assumes that the number field is a BigNumber: https://github.com/paritytech/js-libs/blob/master/packages/light.js/src/utils/operators/distinctValues.ts#L26 and as such we get...
Are you plan to support new rpc method: debug.getModifiedAccountsByNumber. Thanks!
light.js is used when pubsub on state is not available (e.g. on a light client). In that case, we need to find the minimal viable calls to track the relevant...
From https://github.com/parity-js/api/issues/8 If I define a contract with an overloaded function, then try to call the function from the parity.js contract instance, I can only access one of the functions...
Either in the example/ folder, or in the docs. Or both.
Either in the example/ folder, or in the docs. Or both.
Currently when there's no internet connection it just appears as a normal console.log
For simplicity, the `balanceOf$.setFrequency()` function has been removed, but it would be an idea to put it back. The idea is: - right now, each RpcObservable has its frequency fixed...