micahriggan
micahriggan
Various utils in packages/bitcore-client/bin can be pointed to a local bitcore-node instance via a baseUrl flag. Provide documentation of how to create a wallet on a local bitcore-node, or connect...
Interpreter.SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS = (1
``` this.chunks[1].length === this.chunks.len ``` this line should probably be ``` this.chunks[1].len === this.chunks.length ``` https://github.com/bitpay/bitcore-lib/blob/86583608814dfc513e675d7b853806caf9bd95e7/lib/script/script.js#L514
https://github.com/bitpay/bitcore-lib/blob/86583608814dfc513e675d7b853806caf9bd95e7/lib/crypto/hash.js#L56 Buffer < number is probably not the intended logic for this line. Perhaps key.length < blocksize
https://github.com/bitpay/bitcore/blob/e478af880b11990d9b402e246c9c920a24404d8b/packages/bitcore-node/src/modules/ethereum/api/csp.ts#L252 On this line we're getting web3 transfer events, but that won't work for really large block ranges, it'll time out. We have a transform stream that can generate the...
Feel free to close, but seems like we can provide safer access to .index with a getter that throws if it hasn't been init'd Also added a static method to...
The output parser doesn't handle when the AI's action_input contains markdown, or ``` backticks really, as it's matching on the first set of backticks it finds rather than the last....
Just wanted to see what it'd take to be able to derive the SOL address from what is already in this lib I ref'd this blog post for an example...
https://github.com/pascalgn/automerge-action/blob/7961b8b5eec56cc088c140b56d864285eabd3f67/lib/api.js#L97 The push event handler function is only awaited and not returned. The function itself doesn't return anything anyway, so it would need to be modified to return something to...