From 456c9c8645772f70b8e905ca0b01ad6eedfa7c12 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Wed, 20 Oct 2021 12:05:09 +0200 Subject: [PATCH] Improve docs on ledgerAppName/requiredLedgerAppVersion --- packages/ledger-amino/src/launchpadledger.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/ledger-amino/src/launchpadledger.ts b/packages/ledger-amino/src/launchpadledger.ts index f0af4085..37d2d0bf 100644 --- a/packages/ledger-amino/src/launchpadledger.ts +++ b/packages/ledger-amino/src/launchpadledger.ts @@ -37,9 +37,17 @@ export interface LaunchpadLedgerOptions { * 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". + * Defaults to "Cosmos". */ readonly ledgerAppName?: string; + /** + * The min version 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 "1.5.3". + */ readonly minLedgerAppVersion?: string; }