From c33f5ed114a52802b7b877dd245390be5bfadcc3 Mon Sep 17 00:00:00 2001 From: Calvin Kei Date: Wed, 6 Oct 2021 14:00:53 +0800 Subject: [PATCH] Update packages/ledger-amino/src/launchpadledger.ts Co-authored-by: Simon Warta <2603011+webmaster128@users.noreply.github.com> --- packages/ledger-amino/src/launchpadledger.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/ledger-amino/src/launchpadledger.ts b/packages/ledger-amino/src/launchpadledger.ts index 581cb255..4afd31e2 100644 --- a/packages/ledger-amino/src/launchpadledger.ts +++ b/packages/ledger-amino/src/launchpadledger.ts @@ -31,6 +31,14 @@ export interface LaunchpadLedgerOptions { readonly hdPaths?: readonly HdPath[]; readonly prefix?: string; readonly testModeAllowed?: boolean; + /** + * The name of the app the user must have opened on the Ledger. + * This allows you to use this connector with forks of the Cosmos Hub Ledger app. + * Support is provided on an best effort basis and only as long as those forks do not + * significantly differ from the original app. + * + * Defaults to "cosmos". + */ readonly ledgerAppName?: string }