Jeremy Rubin

Results 86 comments of Jeremy Rubin

chiming in -- toXOnly would indeed be helpful to be exported to allow for going from seed phrase -> bip32 PK -> taproot address.

the main reason to expose it is so that user code doesn't depend on knowledge of the internals of how the key is represented.

i'm trying to understand what's going on here. what does ppm mean in this context?

A number of developers are proposing and working on upgrades which would include a parity bit, it was a large topic of conversation at the recent Austin Forum. I didn't...

I don't think there's a detailed spec out there yet, but here's some references. The point of adding some functionality in libsecp would be to aid in the people prototyping...

It's definitely not intended to be a part of 119, it's an extension which is controversial among other options for accomplishing similar tasks (e.g. @reardencode prefers vectorcommit, CSFS multi item,...

I'm fine with having either semantic as to which account gets changed. I was just making it the opposite of Account Merge because this is a reverse merge. We may...

Fair crit -- hence being an issue rather than a PR. Here are a few options: original: ``` // 1-4 alphanumeric characters right-padded with 0 bytes typedef opaque AssetCode4[4]; //...

I think the proposed Satisfy semantics are better. We want the conditions checked to result in an invalid transaction, not in a failed transaction so we should check them in...

Operations actually are currently executed partially... The transaction frames have two phases, `doApply` and `doCheckValid`. The appropriate place for this would be in `doCheckValid`. I agree that there is a...