crosslightning-sdk-base
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -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; |
{ | ||
"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 @@ |
440215
9938