Update CHANGELOG for removal of default fees

This commit is contained in:
willclarktech 2021-06-15 14:01:44 +02:00
parent ed34d57fe5
commit 2596f9e93b
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7

View File

@ -24,6 +24,12 @@ and this project adheres to
- @cosmjs/cosmwasm-stargate: The `transferAmount` property on
`InstantiateOptions` (accepted as a parameter to
`SigningCosmWasmClient.instantiate`) has been renamed to `funds`.
- @cosmjs/cosmwasm-stargate: Default fee/gas values have been removed. Fees now
need to be calculated and passed to `SigningCosmWasmClient` when calling any
methods which submit transactions to the blockchain.
- @cosmjs/stargate: Default fee/gas values have been removed. Fees now need to
be calculated and passed to `SigningStargateClient` when calling any methods
which submit transactions to the blockchain.
- @cosmjs/tendermint-rpc: Make `tendermint34.Header.lastBlockId` and
`tendermint34.Block.lastCommit` optional to better handle the case of height 1
where there is no previous block.
@ -31,6 +37,11 @@ and this project adheres to
### Removed
- Node.js v10 is no longer supported. Please use v12 or later.
- @cosmjs/cosmwasm-stargate: Remove `CosmWasmFeeTable` type and
`defaultGasLimits` object.
- @cosmjs/stargate: Remove types, objects and functions to do with default fees:
`CosmosFeeTable`, `FeeTable`, `GasLimits`, `defaultGasLimits`,
`defaultGasPrice` and `buildFeeTable`.
- @cosmjs/tendermint-rpc: `Client` has been removed. Please use
`Tendermint33Client` or `Tendermint34Client`, depending on your needs.