Removed too much by mistake, added again
This commit is contained in:
parent
43b6e99312
commit
f6455bb5d3
@ -86,9 +86,5 @@ export {
|
||||
} from "./staking/messages";
|
||||
export { setupStakingExtension, StakingExtension } from "./staking/queries";
|
||||
export { setupTxExtension, TxExtension } from "./tx/queries";
|
||||
export {
|
||||
AminoMsgCreateVestingAccount,
|
||||
createVestingAminoConverters,
|
||||
isAminoMsgCreateVestingAccount,
|
||||
} from "./vesting/aminomessages";
|
||||
export { createVestingAminoConverters } from "./vesting/aminomessages";
|
||||
export { vestingTypes } from "./vesting/messages";
|
||||
|
||||
@ -38,6 +38,7 @@ import {
|
||||
MsgUndelegateEncodeObject,
|
||||
MsgWithdrawDelegatorRewardEncodeObject,
|
||||
stakingTypes,
|
||||
vestingTypes,
|
||||
} from "./modules";
|
||||
import {
|
||||
createAuthzAminoConverters,
|
||||
@ -47,6 +48,7 @@ import {
|
||||
createGovAminoConverters,
|
||||
createIbcAminoConverters,
|
||||
createStakingAminoConverters,
|
||||
createVestingAminoConverters,
|
||||
} from "./modules";
|
||||
import { DeliverTxResponse, StargateClient, StargateClientOptions } from "./stargateclient";
|
||||
|
||||
@ -59,6 +61,7 @@ export const defaultRegistryTypes: ReadonlyArray<[string, GeneratedType]> = [
|
||||
...govTypes,
|
||||
...stakingTypes,
|
||||
...ibcTypes,
|
||||
...vestingTypes,
|
||||
];
|
||||
|
||||
function createDefaultRegistry(): Registry {
|
||||
@ -99,6 +102,7 @@ function createDefaultTypes(prefix: string): AminoConverters {
|
||||
...createStakingAminoConverters(prefix),
|
||||
...createIbcAminoConverters(),
|
||||
...createFreegrantAminoConverters(),
|
||||
...createVestingAminoConverters(),
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user