kaspa-txscript 0.15.0

Kaspa txscript engine library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//!
//!  WASM32 bindings for the txscript framework components.
//!

use cfg_if::cfg_if;

cfg_if! {
    if #[cfg(any(feature = "wasm32-sdk", feature = "wasm32-core"))] {
        pub mod opcodes;
        pub mod builder;

        pub use self::opcodes::*;
        pub use self::builder::*;
    }
}