Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom input signatureScript ability #69

Merged
merged 12 commits into from
Jul 16, 2024
Prev Previous commit
Next Next commit
Sort lines of deps and imports
KaffinPX committed Jul 4, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 96748af5135249ba050066dfeeb528a2f108fefb
8 changes: 4 additions & 4 deletions crypto/txscript/Cargo.toml
Original file line number Diff line number Diff line change
@@ -15,27 +15,27 @@ wasm32-sdk = []
[dependencies]
blake2b_simd.workspace = true
borsh.workspace = true
indexmap.workspace = true
cfg-if.workspace = true
indexmap.workspace = true
itertools.workspace = true
kaspa-addresses.workspace = true
kaspa-consensus-core.workspace = true
kaspa-hashes.workspace = true
kaspa-txscript-errors.workspace = true
kaspa-utils.workspace = true
kaspa-wasm-core.workspace = true
kaspa-txscript-errors.workspace = true
log.workspace = true
parking_lot.workspace = true
rand.workspace = true
secp256k1.workspace = true
serde_json.workspace = true
serde-wasm-bindgen.workspace = true
serde.workspace = true
sha2.workspace = true
smallvec.workspace = true
thiserror.workspace = true
wasm-bindgen.workspace = true
workflow-wasm.workspace = true
serde-wasm-bindgen.workspace = true
serde_json.workspace = true

[dev-dependencies]
criterion.workspace = true
2 changes: 1 addition & 1 deletion crypto/txscript/src/wasm/builder.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::result::Result;
use crate::{script_builder as native, standard};
use crate::result::Result;
use kaspa_consensus_core::tx::ScriptPublicKey;
use kaspa_utils::hex::ToHex;
use kaspa_wasm_core::types::{BinaryT, HexString};