Add setupAuthzExtension, setupFeegrantExtension and setupSlashingExtension

This commit is contained in:
Simon Warta 2022-09-07 18:21:29 +02:00
parent e39204599a
commit 503bd40ab1
3 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,8 @@ and this project adheres to
([#1250]).
- @cosmjs/faucet: Allow configuring the cooldown value via
`FAUCET_COOLDOWN_TIME` environment variable.
- @cosmjs/stargate: Add missing exports `setupAuthzExtension`,
`setupFeegrantExtension` and `setupSlashingExtension` ([#1261]).
[#1072]: https://github.com/cosmos/cosmjs/issues/1072
[#1096]: https://github.com/cosmos/cosmjs/issues/1096
@ -38,6 +40,7 @@ and this project adheres to
[#1224]: https://github.com/cosmos/cosmjs/pull/1224
[#1225]: https://github.com/cosmos/cosmjs/issues/1225
[#1250]: https://github.com/cosmos/cosmjs/issues/1250
[#1261]: https://github.com/cosmos/cosmjs/pull/1261
### Fixed

View File

@ -78,11 +78,14 @@ export {
MsgVoteWeightedEncodeObject,
MsgWithdrawDelegatorRewardEncodeObject,
setupAuthExtension,
setupAuthzExtension,
setupBankExtension,
setupDistributionExtension,
setupFeegrantExtension,
setupGovExtension,
setupIbcExtension,
setupMintExtension,
setupSlashingExtension,
setupStakingExtension,
setupTxExtension,
StakingExtension,

View File

@ -1,6 +1,7 @@
export { AuthExtension, setupAuthExtension } from "./auth/queries";
export { createAuthzAminoConverters } from "./authz/aminomessages";
export { authzTypes } from "./authz/messages";
export { setupAuthzExtension } from "./authz/queries";
export {
AminoMsgMultiSend,
AminoMsgSend,