Derek Chiang

Results 28 comments of Derek Chiang

@yoavw ERC-1271 itself doesn't define how the account address is supposed to be communicated. Currently the typical DApp flow is just: - Ask the user what their address is (typically...

I meant magic bytes -- so it'd be a long enough sequence that collisions are unlikely. Not sure how long it needs to be though?

There are three parties to consider here: - Verifier - Transporter - Signer Transporter would be like WalletConnect or Web3Provider, the protocol through which verifier and signer talk to each...

Actually, it occurred to me that we don’t need magic bytes. We could simply stipulate that the verifier goes through the 4337 validation flow if and only if the EOA...

> This would make it safer to share wallets with more than one party. I would add that "This would make it safe to use wallets containing valuable assets on...

For anyone who wanted a quick fix on Macbooks, you can literally modify `/opt/homebrew/opt/openblas/lib/pkgconfig/openblas.pc` and remove the line that says `omp_opt=-fopenmp` and OpenBLAS will compile successfully. Of course, this means...

Not that complex I think -- I'm just implementing [Karpathy's makemore](https://github.com/karpathy/nn-zero-to-hero/blob/master/lectures/makemore/makemore_part2_mlp.ipynb) and the dynamic indexing is the `emb = C[X]` part.

> It looks pretty trivial Alright save this issue for me :) How would you detect it though? Unless we literally loop over the tensor data to decide whether it's...