Skip to content

Commit 087e7d0

Browse files
committed
v0.11.0
1 parent 6146a87 commit 087e7d0

File tree

32 files changed

+29
-29
lines changed

32 files changed

+29
-29
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: 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.10.0"
112+
arm = "0.11.0"
113113

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

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

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

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

126126
# Elixir Anoma SDK
127-
arm = { version = "0.10.0", features = ["nif"] }
127+
arm = { version = "0.11.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.10.0"
3+
version = "0.11.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

-20 Bytes
Binary file not shown.

arm/elfs/compliance-guest.bin

-4 Bytes
Binary file not shown.

arm/elfs/logic-test-guest.bin

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

arm/elfs/trivial-logic-guest.bin

4 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("a1bb441ce15ef0fb1dacde24752bd48302a5b65e930ad62109134bdbacd6e97a").unwrap();
14+
Digest::from_hex("087798837419c6e8615047eea7862131565b3b2d8656414aa6ccb9957d1a782d").unwrap();
1515

1616
// Batch aggregation verification key / Batch aggregation image id.
17-
pub static ref BATCH_AGGREGATION_VK: Digest = Digest::from_hex("df6dabb66cfd982cb4df5ba18d0454f10859b347dac774aa54d573b07090d79b").unwrap();
17+
pub static ref BATCH_AGGREGATION_VK: Digest = Digest::from_hex("469a6236407cc8647a0ec92fb3c73d444b597e9638fa67dd7df4fd356c9d8b99").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("0f8d676ba2ca27a39ea857bd0ad858df240e6f4d44e5801025e7b66602f4288f")
13+
Digest::from_hex("3a7953535604ff0606b3e82ea96a43a23eec622cb4981259eaefe07e8bb29783")
1414
.unwrap();
1515

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

0 commit comments

Comments
 (0)