From 79cd8c0109af51f27bb065c47679f11355e75c52 Mon Sep 17 00:00:00 2001 From: willclarktech Date: Tue, 12 Jan 2021 13:02:52 +0000 Subject: [PATCH] launchpad: Export bank and staking Msg types/checkers --- packages/launchpad/src/index.ts | 18 +++++++++++++++++- packages/launchpad/types/index.d.ts | 18 +++++++++++++++++- 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/packages/launchpad/src/index.ts b/packages/launchpad/src/index.ts index 644eb610..52990a9d 100644 --- a/packages/launchpad/src/index.ts +++ b/packages/launchpad/src/index.ts @@ -99,7 +99,23 @@ export { uint64ToNumber, uint64ToString, } from "./lcdapi"; -export { isMsgDelegate, isMsgSend, Msg, MsgDelegate, MsgSend } from "./msgs"; +export { + isMsgBeginRedelegate, + isMsgCreateValidator, + isMsgDelegate, + isMsgEditValidator, + isMsgMultiSend, + isMsgSend, + isMsgUndelegate, + Msg, + MsgBeginRedelegate, + MsgCreateValidator, + MsgDelegate, + MsgEditValidator, + MsgMultiSend, + MsgSend, + MsgUndelegate, +} from "./msgs"; export { decodeAminoPubkey, decodeBech32Pubkey, diff --git a/packages/launchpad/types/index.d.ts b/packages/launchpad/types/index.d.ts index 1c8bc2ea..e0a1863f 100644 --- a/packages/launchpad/types/index.d.ts +++ b/packages/launchpad/types/index.d.ts @@ -97,7 +97,23 @@ export { uint64ToNumber, uint64ToString, } from "./lcdapi"; -export { isMsgDelegate, isMsgSend, Msg, MsgDelegate, MsgSend } from "./msgs"; +export { + isMsgBeginRedelegate, + isMsgCreateValidator, + isMsgDelegate, + isMsgEditValidator, + isMsgMultiSend, + isMsgSend, + isMsgUndelegate, + Msg, + MsgBeginRedelegate, + MsgCreateValidator, + MsgDelegate, + MsgEditValidator, + MsgMultiSend, + MsgSend, + MsgUndelegate, +} from "./msgs"; export { decodeAminoPubkey, decodeBech32Pubkey,