@bitgo/wasm-utxo 4.11.0 → 4.12.0
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/cjs/js/ast/formatNode.d.ts +2 -0
- package/dist/cjs/js/ast/fromWasmNode.js +2 -0
- package/dist/cjs/js/wasm/wasm_utxo_bg.wasm +0 -0
- package/dist/esm/js/ast/formatNode.d.ts +2 -0
- package/dist/esm/js/ast/fromWasmNode.js +2 -0
- package/dist/esm/js/wasm/wasm_utxo_bg.wasm +0 -0
- package/package.json +1 -1
|
@@ -105,6 +105,8 @@ function fromUnknown(v) {
|
|
|
105
105
|
return node("multi", value);
|
|
106
106
|
case "MultiA":
|
|
107
107
|
return node("multi_a", value);
|
|
108
|
+
case "PayloadDrop":
|
|
109
|
+
return node("payload_drop", value);
|
|
108
110
|
case "Tree":
|
|
109
111
|
if (!Array.isArray(value) || value.length !== 2) {
|
|
110
112
|
throw new Error(`Invalid Tree node: ${JSON.stringify(value)}`);
|
|
Binary file
|
|
@@ -101,6 +101,8 @@ function fromUnknown(v) {
|
|
|
101
101
|
return node("multi", value);
|
|
102
102
|
case "MultiA":
|
|
103
103
|
return node("multi_a", value);
|
|
104
|
+
case "PayloadDrop":
|
|
105
|
+
return node("payload_drop", value);
|
|
104
106
|
case "Tree":
|
|
105
107
|
if (!Array.isArray(value) || value.length !== 2) {
|
|
106
108
|
throw new Error(`Invalid Tree node: ${JSON.stringify(value)}`);
|
|
Binary file
|