Simon Warta
Simon Warta
Amazing! Have a look at [HACKING.md](https://github.com/cosmos/cosmjs/blob/main/HACKING.md) for how to start developing CosmJS.
Better post here or open a draft PR to discuss inline. Otherwise it get's lost in the noise of the chat.
Looks like warnings only. What does `yarn install && echo "all good"` say?
Yeah, this can happen when VSCode's TypeScript server does not find the type definitions of other packages in the same repo because they are not built yet. Running `yarn build`...
What about this: only allow setting the fee payer when the fee is set explicitly (via StdFee)? Once this is available we can think about making "auto" fee and fee...
In Cosmos SDK the `payer` field was added to the `StdFee` type as well: ```go type StdFee struct { Amount sdk.Coins `json:"amount" yaml:"amount"` Gas uint64 `json:"gas" yaml:"gas"` Payer string `json:"payer,omitempty"...
Here are some "payer"/"granter" docs from Cosmos SDK: ```proto // Fee includes the amount of coins paid in fees and the maximum // gas to be used by the transaction....
Right. You need to generate the TS code for those types. Or someone from the Ethermint team can do that for you. See https://github.com/cosmos/cosmjs/blob/main/packages/stargate/CUSTOM_PROTOBUF_CODECS.md for how to do the code...
#399 and #404 should reduce the burden for the caller a lot. Now you only need to set the gas price once and all fees are auto-calculated. Gas limits only...
Here is a list of simplifications to [the code](https://github.com/CosmWasm/cosmwasm-plus/blob/master/contracts/cw20-base/helpers.ts#L19-L134) that can happen with CosmJS 0.32 - Use alias `HdPath` instead of `readonly Slip10RawIndex[]` - Remove `faucetToken` because faucet now accepts...