Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@elmutt/hdwallet-core

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elmutt/hdwallet-core - npm Package Compare versions

Comparing version 1.10.2-testnet to 1.13.0-testnet

dist/thorchain.d.ts

1

dist/bitcoin.d.ts

@@ -82,2 +82,3 @@ import { ExchangeType, BIP32Path, Coin, PathDescription } from "./wallet";

locktime?: number;
opReturnData?: string;
}

@@ -84,0 +85,0 @@ export interface BTCSignedTx {

@@ -7,2 +7,3 @@ export * from "./event";

export * from "./cosmos";
export * from "./thorchain";
export * from "./binance";

@@ -9,0 +10,0 @@ export * from "./ethereum";

@@ -19,2 +19,3 @@ "use strict";

__exportStar(require("./cosmos"), exports);
__exportStar(require("./thorchain"), exports);
__exportStar(require("./binance"), exports);

@@ -21,0 +22,0 @@ __exportStar(require("./ethereum"), exports);

@@ -127,2 +127,3 @@ "use strict";

Fio: 235,
Thorchain: 931,
}[coin];

@@ -129,0 +130,0 @@ }

@@ -8,2 +8,3 @@ import { BTCInputScriptType, BTCWallet, BTCWalletInfo } from "./bitcoin";

import { FioWallet, FioWalletInfo } from "./fio";
import { ThorchainWallet, ThorchainWalletInfo } from "./thorchain";
import { DebugLinkWallet } from "./debuglink";

@@ -115,2 +116,4 @@ import { Transport } from "./transport";

export declare function infoCosmos(info: any): info is CosmosWalletInfo;
export declare function supportsThorchain(wallet: any): wallet is ThorchainWallet;
export declare function infoThorchain(info: any): info is ThorchainWalletInfo;
export declare function supportsEos(wallet: any): wallet is EosWallet;

@@ -143,2 +146,3 @@ export declare function infoEos(info: any): info is EosWalletInfo;

_supportsFioInfo: boolean;
_supportsThorchainInfo: boolean;
/**

@@ -185,2 +189,3 @@ * Retrieve the wallet's vendor string.

_supportsFio: boolean;
_supportsThorchain: boolean;
_supportsDebugLink: boolean;

@@ -187,0 +192,0 @@ transport?: Transport;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.supportsDebugLink = exports.infoBinance = exports.supportsBinance = exports.infoRipple = exports.supportsRipple = exports.infoFio = exports.supportsFio = exports.infoEos = exports.supportsEos = exports.infoCosmos = exports.supportsCosmos = exports.infoETH = exports.supportsETH = exports.infoBTC = exports.supportsBTC = void 0;
exports.supportsDebugLink = exports.infoBinance = exports.supportsBinance = exports.infoRipple = exports.supportsRipple = exports.infoFio = exports.supportsFio = exports.infoEos = exports.supportsEos = exports.infoThorchain = exports.supportsThorchain = exports.infoCosmos = exports.supportsCosmos = exports.infoETH = exports.supportsETH = exports.infoBTC = exports.supportsBTC = void 0;
const lodash_1 = require("lodash");

@@ -49,2 +49,10 @@ /**

exports.infoCosmos = infoCosmos;
function supportsThorchain(wallet) {
return lodash_1.isObject(wallet) && wallet._supportsThorchain;
}
exports.supportsThorchain = supportsThorchain;
function infoThorchain(info) {
return lodash_1.isObject(info) && info._supportsThorchainInfo;
}
exports.infoThorchain = infoThorchain;
function supportsEos(wallet) {

@@ -51,0 +59,0 @@ return lodash_1.isObject(wallet) && wallet._supportsEos;

4

package.json
{
"name": "@elmutt/hdwallet-core",
"version": "1.10.2-testnet",
"version": "1.13.0-testnet",
"license": "MIT",

@@ -21,3 +21,3 @@ "publishConfig": {

},
"gitHead": "f062839c0dcf9d067811d2d1e89291d99a1d3548"
"gitHead": "d045073a6a1d4356a6a6e2561012f327f6148bd8"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc