Dawson Botsford
Dawson Botsford
Currently, you're met with the following error (this is a `skrub-cli` call, but it makes no difference since it's an issue in this api) ``` sh $ skrub events.js:141 throw...
Running prettier on a file with a comment as the last import duplicates that comment  > the axios import is multiplied each time I run prettier This applies to...
Clearly you write **tons** of useful modules, so you have eyes looking at your recently published often. As developers who don't have that type of attention, what tips would you...
[ethereumjs](https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/util) has MANY functions, of which we should make a "checklist" of currently implemented equivalents in `essential-eth`. A good starting-point would be the function [here](https://github.com/bytesbay/web3-token/blob/main/src/lib/verify/decrypter.ts#L2) ```ts import { hashPersonalMessage, toBuffer,...
> Keyboard Layout as shipped, includes: https://github.com/inkthink/an-alt-ergodox-ez-layout/wiki/Unofficial-Quick-Reference-to-the-ErgoDox-EZ

Solely modifying the README, so no bugs should be introduced. Cheers
Recreate with: ```ts const abi: JSONABI = [ { inputs: [], stateMutability: 'nonpayable', type: 'constructor' }, { inputs: [ { internalType: 'address', name: 'sender', type: 'address' }, { internalType: 'address',...
Recreate this with: ```ts const abi: JSONABI = [ { inputs: [ { internalType: 'address', name: '_logic', type: 'address' }, { internalType: 'address', name: 'admin_', type: 'address' }, { internalType:...
Currently there is an error if you want to pass in a `ReadonlyArray` to a `constructor` like "`new FallthroughProvider(bscRpcs)`". In these situations we should also allow readonly arrays. This does...