Update packages/ledger-amino/src/launchpadledger.ts

Co-authored-by: Simon Warta <2603011+webmaster128@users.noreply.github.com>
This commit is contained in:
Calvin Kei 2021-10-06 14:00:53 +08:00 committed by GitHub
parent edf7210898
commit c33f5ed114
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}