Skip to content

Commit aa19cee

Browse files
committed
v0.9.0
1 parent 55b32a9 commit aa19cee

32 files changed

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

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

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

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

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

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

126126
# Elixir Anoma SDK
127-
arm = { version = "0.8.2", features = ["nif"] }
128-
arm = { version = "0.8.2", features = ["nif"] }
127+
arm = { version = "0.9.0", features = ["nif"] }
129128
```
130129

131130

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.8.2"
3+
version = "0.9.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

832 Bytes
Binary file not shown.

arm/elfs/compliance-guest.bin

-716 Bytes
Binary file not shown.

arm/elfs/logic-test-guest.bin

60 Bytes
Binary file not shown.
-228 Bytes
Binary file not shown.

arm/elfs/trivial-logic-guest.bin

-412 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("efcc602f5be1c3ab02e688285423ef539b45b2052581ac795967d021273a1bc7").unwrap();
14+
Digest::from_hex("7a09cd07f813838690684a26eb0c9a4f24ca25919513f293449b5e286ab9f62d").unwrap();
1515

1616
// Batch aggregation verification key / Batch aggregation image id.
17-
pub static ref BATCH_AGGREGATION_VK: Digest = Digest::from_hex("5044b1b998bbea99faf23bc096427bb1b08d74b4e38dd7f39c895ca784876706").unwrap();
17+
pub static ref BATCH_AGGREGATION_VK: Digest = Digest::from_hex("57f428a039ce0b0d628f9fd9a6a3f7aac6050ff719f05d3f30dee9035b94f078").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("9acbebc99ed056cad5a823f7c68f03a5ff9c66bb7188346d46e5c41e75078d72")
13+
Digest::from_hex("74c0a4f7e37bba523794bb8c174b5faad1d572c56868ba14ebc2204116b01fce")
1414
.unwrap();
1515

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

0 commit comments

Comments
 (0)