Simon Warta

Results 115 issues of Simon Warta

[ADR-036](https://github.com/cosmos/cosmos-sdk/blob/master/docs/architecture/adr-036-arbitrary-signature.md) was merged as a draft spec for signing arbitrary data using a Cosmos SDK keypair. We should try to implement it.

This is a bit tricky and would be good to wrote an example for. The question is more or less #1054 and the answer is more or less https://github.com/cosmos/cosmjs/issues/879#issuecomment-927929727.

libsodium.js is amazing [but big](https://github.com/cosmos/cosmjs/issues/904). This could be mitigated by using our own build. However, I assume the better path is to break it down into the algorithms we need...

An attempt to replace Argon2 from libsodium.js with the argon2 crate. Local benchmarks show this makes things significantly slower: ``` This PR (argon2 crate): 5.1 Argon2id ✓ works for 1...

Right now, CosmJS produces CommonJS builds. This works well for all versions of Node.js as well as bundlers like Webpack in order to bundle for the web. As mentioned in...

This function does not reject when the target is not available, leading to strange errors down the line. ```ts async function http(method: "POST", url: string, request?: any): Promise { if...