Skip to content

Commit 34b0ad8

Browse files
committed
v0.10.0
1 parent 1f93e01 commit 34b0ad8

32 files changed

Lines changed: 29 additions & 29 deletions

File tree

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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,22 +109,22 @@ We have the following feature flags in arm lib:
109109

110110
```toml
111111
# Default configuration (succinct proofs + transaction support)
112-
arm = "0.9.0"
112+
arm = "0.10.0"
113113

114114
# Blockchain deployment with Groth16 proofs
115-
arm = { version = "0.9.0", default-features = false, features = ["groth16_prover", "transaction"] }
115+
arm = { version = "0.10.0", default-features = false, features = ["groth16_prover", "transaction"] }
116116

117117
# Proof aggregation (a single succinct proof per transaction)
118-
arm = { version = "0.9.0", features = ["aggregation"] }
118+
arm = { version = "0.10.0", features = ["aggregation"] }
119119

120120
# Blockchain deployment with a Groth16 aggregation proof
121-
arm = { version = "0.9.0", features = ["groth16_aggregation"] }
121+
arm = { version = "0.10.0", features = ["groth16_aggregation"] }
122122

123123
# Logic-circuit-only usage
124-
arm = { version = "0.9.0", default-features = false }
124+
arm = { version = "0.10.0", default-features = false }
125125

126126
# Elixir Anoma SDK
127-
arm = { version = "0.9.0", features = ["nif"] }
127+
arm = { version = "0.10.0", features = ["nif"] }
128128
```
129129

130130

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.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55

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

arm/elfs/batch_aggregation.bin

-4 Bytes
Binary file not shown.

arm/elfs/compliance-guest.bin

8 Bytes
Binary file not shown.

arm/elfs/logic-test-guest.bin

28 Bytes
Binary file not shown.
-16 Bytes
Binary file not shown.

arm/elfs/trivial-logic-guest.bin

40 Bytes
Binary file not shown.

arm/src/aggregation/constants.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ pub const BATCH_AGGREGATION_PK: &[u8] = include_bytes!("../../elfs/batch_aggrega
1111
lazy_static! {
1212
// Sequential aggregation verification key / sequential aggregation image id.
1313
pub static ref SEQUENTIAL_AGGREGATION_VK: Digest =
14-
Digest::from_hex("7a09cd07f813838690684a26eb0c9a4f24ca25919513f293449b5e286ab9f62d").unwrap();
14+
Digest::from_hex("a1bb441ce15ef0fb1dacde24752bd48302a5b65e930ad62109134bdbacd6e97a").unwrap();
1515

1616
// Batch aggregation verification key / Batch aggregation image id.
17-
pub static ref BATCH_AGGREGATION_VK: Digest = Digest::from_hex("57f428a039ce0b0d628f9fd9a6a3f7aac6050ff719f05d3f30dee9035b94f078").unwrap();
17+
pub static ref BATCH_AGGREGATION_VK: Digest = Digest::from_hex("df6dabb66cfd982cb4df5ba18d0454f10859b347dac774aa54d573b07090d79b").unwrap();
1818
}

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("74c0a4f7e37bba523794bb8c174b5faad1d572c56868ba14ebc2204116b01fce")
13+
Digest::from_hex("0f8d676ba2ca27a39ea857bd0ad858df240e6f4d44e5801025e7b66602f4288f")
1414
.unwrap();
1515

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

0 commit comments

Comments
 (0)