Paul Miller
Paul Miller
I've been testing this with Goerli / Prater testnets, so not sure if this applies to mainnet. During the last step, on the page with "send all deposits", a GET...
How is aggregating 30 keys useful? eth2 would be around 32k validators very soon, and probably 320k after some time. And each slot is voted by around 1k voters I...
This is a legacy inconsistency issue, we've mentioned it should be renamed in #2193
Need to understand if it'll be used anywhere in scure/bip32, micro-signers, etc ```ts isValidPublicKey(publicKey: Hex, type: 'ecdsa' | 'schnorr') { const arr = ensureBytes(publicKey); const len = arr.length; if (type...
https://github.com/bitcoin/bitcoin/pull/13666/ TODO: Actually change `extraEntropy` counter Need to understand if that feature is still needed, since we have Schnorr now.
It's time! Ethereum and Solana already did. 😃
``` var a = {} a['shit.bro'] = {5: 'total shit'}; ??? ```
example: https://github.com/paulmillr/brunch-with-chaplin/tree/master/test since brunch 1.3 has great testing support, it would be cool to have
Preview: https://github.com/MystenLabs/ed25519-unsafe-libs/blob/3ad3f0d90f6b1b52842bc5e0f245434daef6438a/README.md
https://github.com/guggero/bip-schnorr/blob/b6479ecf55da1266ae49eac3565bca3a8b1a8832/src/schnorr.js#L32 To simplify, you have `if (auxRand is present) { use auxRand } else { deterministicGetK0() } ` Specification https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki#default-signing says `use auxRand` should always be used. `deterministicGetK0` is some...