From 3a5877452e3afc405b6f48ddf8f79c806c040053 Mon Sep 17 00:00:00 2001 From: willclarktech Date: Tue, 23 Mar 2021 17:41:46 +0100 Subject: [PATCH] amino: Export signature functions/type --- packages/amino/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/amino/src/index.ts b/packages/amino/src/index.ts index 28b4d9e5..340fd598 100644 --- a/packages/amino/src/index.ts +++ b/packages/amino/src/index.ts @@ -19,3 +19,4 @@ export { pubkeyType, } from "./pubkeys"; export { createMultisigThresholdPubkey } from "./multisig"; +export { decodeSignature, encodeSecp256k1Signature, StdSignature } from "./signature";