koilib 5.3.0 → 5.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/browser/interface.d.ts +1 -1
- package/lib/interface.d.ts +1 -1
- package/package.json +1 -1
|
@@ -210,7 +210,7 @@ export interface BaseTransactionOptions {
|
|
|
210
210
|
* blockchain. It is useful to apply multisignatures to
|
|
211
211
|
* the transaction
|
|
212
212
|
*/
|
|
213
|
-
beforeSend?: (tx: TransactionJson) => Promise<void>;
|
|
213
|
+
beforeSend?: (tx: TransactionJson, options?: SendTransactionOptions) => Promise<void>;
|
|
214
214
|
}
|
|
215
215
|
export interface TransactionOptions extends BaseTransactionOptions {
|
|
216
216
|
/**
|
package/lib/interface.d.ts
CHANGED
|
@@ -210,7 +210,7 @@ export interface BaseTransactionOptions {
|
|
|
210
210
|
* blockchain. It is useful to apply multisignatures to
|
|
211
211
|
* the transaction
|
|
212
212
|
*/
|
|
213
|
-
beforeSend?: (tx: TransactionJson) => Promise<void>;
|
|
213
|
+
beforeSend?: (tx: TransactionJson, options?: SendTransactionOptions) => Promise<void>;
|
|
214
214
|
}
|
|
215
215
|
export interface TransactionOptions extends BaseTransactionOptions {
|
|
216
216
|
/**
|