crosslightning-base
Advanced tools
Comparing version 3.0.0 to 3.0.1
/// <reference types="node" /> | ||
import { BtcStoredHeader } from "./types/BtcStoredHeader"; | ||
import { BtcBlock } from "./types/BtcBlock"; | ||
import * as BN from "bn.js"; | ||
export interface BtcRelay<V extends BtcStoredHeader<any>, T, B extends BtcBlock> { | ||
@@ -45,2 +46,3 @@ maxHeadersPerTx: number; | ||
}>; | ||
estimateSynchronizeFee(requiredBlockheight: number): Promise<BN>; | ||
} |
{ | ||
"name": "crosslightning-base", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Base classes and interfaces of SolLightning", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
import {BtcStoredHeader} from "./types/BtcStoredHeader"; | ||
import {BtcBlock} from "./types/BtcBlock"; | ||
import * as BN from "bn.js"; | ||
@@ -47,2 +48,5 @@ export interface BtcRelay<V extends BtcStoredHeader<any>, T, B extends BtcBlock> { | ||
estimateSynchronizeFee(requiredBlockheight: number): Promise<BN>; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57062
1159