Simon Warta
Simon Warta
Starting with CosmJS 0.29, we'll use BigInt in places where values exceed the safe integer range of `number` (https://github.com/cosmos/cosmjs/pull/1187). Soon the generated types from proto files will follow. So all...
I see, that's unfortunate. But given the resource constraints and the requirement to move forward my the ecosystem, I don't see how we can maintain this library without BigInt mid...
For message decoding you need a Registry. This has come up a number of times in questions and is not so easy. Why do you use `tx: any`? `IndexedTx.tx` is...
In https://github.com/cosmos/cosmjs/issues/879#issuecomment-927929727 and following comments you should find the answer. Sorry this is not documented nicely.
`sentFromOrTo` only works if transaction indexing is enabled on the node. It is probably easier for you to query transactions by height to get the decoding work. Then you can...
> Hello. It there any way to make salt configurable? Heyho! Why do you want to do that? I'd be curious about a detailed motivation and usecase description. If it...
Okay, so one scenario could be this: All CosmJS users use the same salt. One can come up with a rainbow table of passwords that are all hashed with one...
Yeah. This can be done and there is nothing wrong with it. But I highly recommend not making this a priority and don't implement costy and risky hacks for it....
I wonder if we could just store the salt together with all other argon2 options. The options need to be read anyways before the decryption. Then we can automatically generate...
Alright, go ahead. No rush. I'll look at it then.