@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
12 lines • 353 B
TypeScript
import { CryptoCurrencyId } from "@ledgerhq/types-cryptoassets";
export type MigrationAddress = {
currencyId: CryptoCurrencyId;
address: string;
xpub?: never;
} | {
currencyId: CryptoCurrencyId;
xpub: string;
address?: never;
};
export declare const migrationAddresses: MigrationAddress[];
//# sourceMappingURL=addresses.d.ts.map