Skip to content

Commit c58d57c

Browse files
committed
v0.7.0
1 parent 672bfde commit c58d57c

File tree

26 files changed

+22
-22
lines changed

26 files changed

+22
-22
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,16 @@ We have the following feature flags in arm lib:
104104

105105
```toml
106106
# Default configuration (succinct proofs + transaction support)
107-
arm = "0.6.1"
107+
arm = "0.7.0"
108108

109109
# Blockchain deployment with Groth16 proofs
110-
arm = { version = "0.6.1", default-features = false, features = ["groth16_prover", "transaction"] }
110+
arm = { version = "0.7.0", default-features = false, features = ["groth16_prover", "transaction"] }
111111

112112
# Logic-circuit-only usage
113-
arm = { version = "0.6.1", default-features = false }
113+
arm = { version = "0.7.0", default-features = false }
114114

115115
# Elixir Anoma SDK
116-
arm = { version = "0.6.1", features = ["nif"] }
116+
arm = { version = "0.7.0", features = ["nif"] }
117117
```
118118

119119

arm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arm"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

arm/elfs/compliance-guest.bin

-32 Bytes
Binary file not shown.

arm/elfs/logic-test-guest.bin

60 Bytes
Binary file not shown.

arm/elfs/trivial-logic-guest.bin

-4 Bytes
Binary file not shown.

arm/src/constants.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ pub const PADDING_LOGIC_PK: &[u8] = include_bytes!("../elfs/trivial-logic-guest.
1010
lazy_static! {
1111
// compliance verification key / compliance image id
1212
pub static ref COMPLIANCE_VK: Digest =
13-
Digest::from_hex("06ee1a0d2ceff6472738916496d099ea139511e84a90785576c06601c855ebc3")
13+
Digest::from_hex("2652d58ac2fba40aa5811adf2cee2314c4dc2168ae93dab069c8eb7496107c99")
1414
.unwrap();
1515

1616
// padding logic verification key / compliance image id
1717
pub static ref PADDING_LOGIC_VK: Digest =
18-
Digest::from_hex("fcd5de6f9092eb76534db7ffb1c29ef1ded5abf6543daf7ea8d55b169c7f0ba6")
18+
Digest::from_hex("3a29ffc3f5667e56f17f09c9fb123c7126daee8fe1aba0caba061baf3937f36f")
1919
.unwrap();
2020
}

arm/src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub const TEST_LOGIC_PK: &[u8] = include_bytes!("../elfs/logic-test-guest.bin");
2626
lazy_static! {
2727
// test logic verification key / compliance image id
2828
pub static ref TEST_LOGIC_VK: Digest =
29-
Digest::from_hex("979a12ac83b4117036b2d8a2bbba4a149a232d14ac8410b9e60b4613c5bd4d4e")
29+
Digest::from_hex("159df7d62a1ae65876e4c291a90f4e9d1456c024be5674f61840b6b8c52df319")
3030
.unwrap();
3131
}
3232

arm_circuits/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

arm_circuits/compliance/methods/guest/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)