@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
9 lines • 553 B
JavaScript
// Expose only strict necessary coin-module logic to LLD and LLM
export { getSecp256k1Instance, setSecp256k1Instance, } from "@ledgerhq/coin-bitcoin/wallet-btc/crypto/secp256k1";
export { getUTXOStatus } from "@ledgerhq/coin-bitcoin/logic";
import { scanDescriptors as moduleScanDescriptors } from "@ledgerhq/coin-bitcoin/descriptor";
import { signerContext } from "./setup";
export function scanDescriptors(deviceId, currency, limit = 10) {
return moduleScanDescriptors(deviceId, currency, signerContext, limit);
}
//# sourceMappingURL=logic.js.map