Fix typo freegrant -> feegrant
This commit is contained in:
parent
503bd40ab1
commit
3c919014fe
@ -76,6 +76,8 @@ and this project adheres to
|
||||
pagination key ([#1095]).
|
||||
- @cosmjs/proto-signing: `makeAuthInfoBytes` now expects a fee granter and fee
|
||||
payer argument in position 4 and 5.
|
||||
- @cosmjs/stargate: Rename exported function `createFreegrantAminoConverters` to
|
||||
`createFeegrantAminoConverters` due to a typo ([#1261).
|
||||
|
||||
[#1131]: https://github.com/cosmos/cosmjs/pull/1131
|
||||
[#1168]: https://github.com/cosmos/cosmjs/pull/1168
|
||||
@ -84,6 +86,7 @@ and this project adheres to
|
||||
[#1234]: https://github.com/cosmos/cosmjs/issues/1234
|
||||
[#1095]: https://github.com/cosmos/cosmjs/issues/1095
|
||||
[#1254]: https://github.com/cosmos/cosmjs/issues/1254
|
||||
[#1261]: https://github.com/cosmos/cosmjs/pull/1261
|
||||
|
||||
## [0.28.11] - 2022-07-13
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@ export {
|
||||
createAuthzAminoConverters,
|
||||
createBankAminoConverters,
|
||||
createDistributionAminoConverters,
|
||||
createFreegrantAminoConverters,
|
||||
createFeegrantAminoConverters,
|
||||
createGovAminoConverters,
|
||||
createIbcAminoConverters,
|
||||
createStakingAminoConverters,
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { AminoConverters } from "../../aminotypes";
|
||||
|
||||
export function createFreegrantAminoConverters(): AminoConverters {
|
||||
export function createFeegrantAminoConverters(): AminoConverters {
|
||||
return {
|
||||
"/cosmos.feegrant.v1beta1.MsgGrantAllowance": "not_supported_by_chain",
|
||||
"/cosmos.feegrant.v1beta1.MsgRevokeAllowance": "not_supported_by_chain",
|
||||
|
||||
@ -38,7 +38,7 @@ export {
|
||||
createEvidenceAminoConverters,
|
||||
isAminoMsgSubmitEvidence,
|
||||
} from "./evidence/aminomessages";
|
||||
export { createFreegrantAminoConverters } from "./feegrant/aminomessages";
|
||||
export { createFeegrantAminoConverters } from "./feegrant/aminomessages";
|
||||
export { feegrantTypes } from "./feegrant/messages";
|
||||
export { FeegrantExtension, setupFeegrantExtension } from "./feegrant/queries";
|
||||
export {
|
||||
|
||||
@ -44,7 +44,7 @@ import {
|
||||
createAuthzAminoConverters,
|
||||
createBankAminoConverters,
|
||||
createDistributionAminoConverters,
|
||||
createFreegrantAminoConverters,
|
||||
createFeegrantAminoConverters,
|
||||
createGovAminoConverters,
|
||||
createIbcAminoConverters,
|
||||
createStakingAminoConverters,
|
||||
@ -101,7 +101,7 @@ function createDefaultTypes(prefix: string): AminoConverters {
|
||||
...createGovAminoConverters(),
|
||||
...createStakingAminoConverters(prefix),
|
||||
...createIbcAminoConverters(),
|
||||
...createFreegrantAminoConverters(),
|
||||
...createFeegrantAminoConverters(),
|
||||
...createVestingAminoConverters(),
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user