J M Rossy
J M Rossy
I reached out to Github support who shared these requirements/details about the cloud environments used for Github Actions. To folks who are familiar with this project, do any of these...
@nambrot Thanks for creating an issue for this. Where to draw the line between what stays on chain and what doesn't is subjective but this to me feels like a...
It's definitely deeper in the stack as @aaronmgdr said. The errors Ledger's libs surface are usually pretty terse. We may be able to distinguish between them in some cases but...
As you call out in the spec, the CIP-39 phrases are still valid Bip-39 phrases, and Cip-39 wallets should still accept Bip-39 phrases. So this seems like a strictly better...
Is it coming from eslint or ts? if it's eslint we add the artifacts to eslintignore
@krzkaczor I'm seeing inheritance chains being lost with the `ethers-v5` target, the classes are being flattened down. Have there been any changes to the default behavior there recently?
Hi @larswww @MorganConrad @scmmishra Was this ever built? I'm looking for similar functionality.
Same on MacOS
GIven that fallback to pure JS is possible, it seems like this line just creates noise and confusion: https://github.com/no2chem/bigint-buffer/blob/master/src/index.ts#L16 I'd recommend simply removing it. It's better if libs like this...
In case anyone needs to strip the output format down to just the content, this worked for me: ```ts function formatArgs(this: debug.Debugger, args: any[]) { args.push(debug.humanize(this.diff)); args.pop(); } debug.formatArgs =...