@vbyte/btc-dev 1.0.13 → 1.0.14
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/dist/lib/tx/create.d.ts +1 -1
- package/dist/main.cjs.map +1 -1
- package/dist/module.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/script.js.map +1 -1
- package/dist/types/txdata.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/tx/create.ts +1 -1
- package/src/types/txdata.ts +2 -2
package/dist/lib/tx/create.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export declare function create_virtual_input(config: TxInputTemplate): TxVirtual
|
|
|
4
4
|
export declare function create_spend_input(config: TxInputTemplate): TxSpendInput;
|
|
5
5
|
export declare function create_tx_input(config: TxInputTemplate): TxInput;
|
|
6
6
|
export declare function create_tx_output(config: TxOutputTemplate): TxOutput;
|
|
7
|
-
export declare function create_tx(config?: TxTemplate): TxData;
|
|
7
|
+
export declare function create_tx(config?: Partial<TxTemplate>): TxData;
|