Simon Warta
Simon Warta
Thanks for the insights. > But instead a way to at runtime interact with a chain without preexisting knowledge. All we do in CosmJS is statically typed. I wonder how...
Thank you for the pointers. protobuf.js (unmaintained) supports the dynamic type generation at runtime. I just wonder why you would want all of this in the first place? The CosmJS...
Thanks a lot for taking the time to describe all of this, @fdymylja! I'll have a think about it to see if this is useful for our context and maybe...
How do you call searchTx? You probably need to use a tags search. Like this but with different tags: ```ts const results = await client.searchTx({ tags: [{ key: "transfer.recipient", value:...
The panic and codespace: undefined sounds like a bug in the Cosmos SDK. Which chain are you connecting to? Which signer are you using?
Which signer do you use? In https://github.com/cosmos/cosmjs/issues/1026 it was discussed that Amino Signing mode is currently broken for the authz types.
Bank send transactions have a relatively stable gas usage. I get simulation results of like 71507. So it you use a gas limit of 100_000 you should be safe. Now...
Sounds good, thank you. In https://github.com/cosmos/cosmjs/pull/1206 I fixed the outdated docs. Let me know if there are any questions left.
> Anything I can do to help this along? Thank you @dckc. I am hesitant to merge this without the feature being tested. I don't want this feature to fail...
I'm finishing this work in #1262. The test is in https://github.com/cosmos/cosmjs/pull/1262/commits/c959343cacd868ed60891cbd7c92a1a2f24448ba. Turns out no `/cosmos.authz.v1beta1.MsgGrant` and `/cosmos.authz.v1beta1.MsgExec` is needed to test that as you can use feegrant for a simple...