crosslightning-base
Advanced tools
Comparing version 4.0.5 to 4.0.6
@@ -106,2 +106,3 @@ /// <reference types="node" /> | ||
getTxStatus(tx: string): Promise<"not_found" | "pending" | "success" | "reverted">; | ||
getTxIdStatus(txId: string): Promise<"not_found" | "pending" | "success" | "reverted">; | ||
sendAndConfirm(txs: TX[], waitForConfirmation?: boolean, abortSignal?: AbortSignal, parallel?: boolean, onBeforePublish?: (txId: string, rawTx: string) => Promise<void>): Promise<string[]>; | ||
@@ -108,0 +109,0 @@ onBeforeTxReplace(callback: (oldTx: string, oldTxId: string, newTx: string, newTxId: string) => Promise<void>): void; |
{ | ||
"name": "crosslightning-base", | ||
"version": "4.0.5", | ||
"version": "4.0.6", | ||
"description": "Base classes and interfaces of SolLightning", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -136,2 +136,3 @@ import {SwapData} from "./SwapData"; | ||
getTxStatus(tx: string): Promise<"not_found" | "pending" | "success" | "reverted">; | ||
getTxIdStatus(txId: string): Promise<"not_found" | "pending" | "success" | "reverted">; | ||
@@ -138,0 +139,0 @@ sendAndConfirm(txs: TX[], waitForConfirmation?: boolean, abortSignal?: AbortSignal, parallel?: boolean, onBeforePublish?: (txId: string, rawTx: string) => Promise<void>): Promise<string[]>; |
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
61012
1193