Skip to content

Commit 0858563

Browse files
OttoAllmendingerllm-git
andcommitted
feat(wasm-utxo): add dash module with transaction wrapper
Add Dash support to WASM package by creating a new module and exposing the Dash transaction wrapper for JavaScript interoperability. Issue: BTC-2659 Co-authored-by: llm-git <[email protected]>
1 parent 5b2f633 commit 0858563

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/wasm-utxo/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
mod address;
2+
pub mod dash;
23
mod error;
34
pub mod fixed_script_wallet;
45
mod networks;

packages/wasm-utxo/src/wasm/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
mod address;
22
mod bip32;
3+
mod dash_transaction;
34
mod descriptor;
45
mod ecpair;
56
mod fixed_script_wallet;
@@ -15,6 +16,7 @@ mod wallet_keys;
1516

1617
pub use address::AddressNamespace;
1718
pub use bip32::WasmBIP32;
19+
pub use dash_transaction::WasmDashTransaction;
1820
pub use descriptor::WrapDescriptor;
1921
pub use ecpair::WasmECPair;
2022
pub use fixed_script_wallet::FixedScriptWalletNamespace;

0 commit comments

Comments
 (0)