Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

== DFX


=== feat: Enable threshold ecdsa signature

ECDSA signature signing is now enabled by default in new projects, or by running `dfx start --clean`.
A test key id "Secp256k1:dfx_test_key" is ready to be used by locally created canisters.

=== refactor: optimize from ic-wasm

Optimize Rust canister WASM module via ic-wasm library instead of ic-cdk-optimizer.
Expand Down
2 changes: 2 additions & 0 deletions src/dfx/src/actors/replica.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,8 @@ fn replica_start_thread(
"rocksdb",
"--subnet-type",
&config.subnet_type.as_ic_starter_string(),
"--ecdsa-keyid",
"Secp256k1:dfx_test_key",
]);
if let Some(port) = port {
cmd.args(&["--http-port", &port.to_string()]);
Expand Down