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
1
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 3.0.0 to 3.0.1

1

dist/swaps/frombtc/btctosolNew/BTCtoSolNewSwap.d.ts

@@ -101,2 +101,3 @@ /// <reference types="node" />

getTimeoutTime(): number;
getClaimerBounty(): BN;
}

@@ -339,2 +339,5 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

}
getClaimerBounty() {
return this.data.getClaimerBounty();
}
}

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

getClaimFee(): Promise<BN>;
getSecurityDeposit(): BN;
getTotalDeposit(): BN;
}

@@ -123,0 +125,0 @@ export declare enum BTCxtoSolSwapState {

@@ -68,2 +68,8 @@ import * as BN from "bn.js";

}
getSecurityDeposit() {
return this.data.getSecurityDeposit();
}
getTotalDeposit() {
return this.data.getTotalDeposit();
}
}

@@ -70,0 +76,0 @@ export var BTCxtoSolSwapState;

2

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

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

@@ -405,2 +405,6 @@ import {IBTCxtoSolSwap} from "../IBTCxtoSolSwap";

getClaimerBounty(): BN {
return this.data.getClaimerBounty();
}
}

@@ -228,2 +228,10 @@

getSecurityDeposit(): BN {
return this.data.getSecurityDeposit();
}
getTotalDeposit():BN {
return this.data.getTotalDeposit();
}
}

@@ -230,0 +238,0 @@

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