Simon Warta
Simon Warta
I can reproduce this. It happens even without calling `createWallet` from the example. Here is the stacktrace: ``` Error: Entropy source not available. at h (/projects/lunie-test/node_modules/@lunie/cosmos-keys/lib/cosmos-keys.js:1186:208) at u (/projects/lunie-test/node_modules/@lunie/cosmos-keys/lib/cosmos-keys.js:1186:701) at...
Before being shipped to npm, cosmos-keys is built for the Webpack target `web` (the default). Since there is no separate WebPack build for node, I would not expect the package...
I assume this error happens because testnest is on SDK 0.47 (Tendermint 0.37) and mainnet is on 0.45 (Tendermint 0.34). In the latest version of CosmJS there is `connectComet(endpoint)` which...
How do you currently create that client? `Tendermint34Client` is expected to not support SDK 0.47. Using `connectComet` is the recommended way to create the client if you are creating the...
Yes, confirming that https://github.com/cosmology-tech/telescope/pull/503 is the right solution
CosmJS depends on BigInt already through the @noble/hashes dependency. We'll not go backwards from here. The only environment that is struggeling with BigInt is React Native, but there seem to...
Could we start by using BigInt/Long as a configurable option? Then we can try it out and always go back if we run into trouble. Also different Telescope users might...
We now use telescope for the code-generation in cosmjs-types 0.6 and 0.7, which will be used automatically with the next CosmJS 0.30. Personally I think getting looking into this feature...
Just a guess, but you might need a different path than the Cosmos Hub derivation path. In the second argument, `fromMnemonic` has an `hdPath` option ```ts { prefix: "mx", hdPath:...
Why don't you just call `make`? When you look into the Makefile, you see which include paths you need to add to your compiler call, if you want to call...