New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

crosslightning-sdk-base

Package Overview
Dependencies
Maintainers
0
Versions
318
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crosslightning-sdk-base - npm Package Compare versions

Comparing version 10.1.0 to 10.2.0

2

dist/btc/mempool/MempoolBitcoinRpc.d.ts

@@ -79,2 +79,4 @@ /// <reference types="node" />

getLNNodeLiquidity(pubkey: string): Promise<LNNodeLiquidity>;
sendRawTransaction(rawTx: string): Promise<string>;
sendRawPackage(rawTx: string[]): Promise<string[]>;
}

@@ -258,3 +258,9 @@ "use strict";

}
sendRawTransaction(rawTx) {
return this.api.sendTransaction(rawTx);
}
sendRawPackage(rawTx) {
throw new Error("Unsupported");
}
}
exports.MempoolBitcoinRpc = MempoolBitcoinRpc;

4

package.json
{
"name": "crosslightning-sdk-base",
"version": "10.1.0",
"version": "10.2.0",
"description": "CrossLightning SDK chain-agnostic base",

@@ -33,3 +33,3 @@ "main": "./dist/index.js",

"create-hash": "1.2.0",
"crosslightning-base": "7.1.0",
"crosslightning-base": "7.2.0",
"events": "3.3.0",

@@ -36,0 +36,0 @@ "randombytes": "2.1.0"

@@ -270,2 +270,10 @@ import {BtcBlockWithTxs, BtcSyncInfo, BtcTx} from "crosslightning-base";

sendRawTransaction(rawTx: string): Promise<string> {
return this.api.sendTransaction(rawTx);
}
sendRawPackage(rawTx: string[]): Promise<string[]> {
throw new Error("Unsupported");
}
}
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