Skip to content

Commit 2cfc587

Browse files
committed
v0.12.0
1 parent 03a521c commit 2cfc587

File tree

17 files changed

+19
-19
lines changed

17 files changed

+19
-19
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
@@ -90,22 +90,22 @@ We have the following feature flags in arm lib:
9090

9191
```toml
9292
# Default configuration (succinct proofs + transaction support)
93-
arm = "0.11.0"
93+
arm = "0.12.0"
9494

9595
# Blockchain deployment with Groth16 proofs
96-
arm = { version = "0.11.0", default-features = false, features = ["groth16_prover", "transaction"] }
96+
arm = { version = "0.12.0", default-features = false, features = ["groth16_prover", "transaction"] }
9797

9898
# Proof aggregation (a single succinct proof per transaction)
99-
arm = { version = "0.11.0", features = ["aggregation"] }
99+
arm = { version = "0.12.0", features = ["aggregation"] }
100100

101101
# Blockchain deployment with a Groth16 aggregation proof
102-
arm = { version = "0.11.0", features = ["groth16_aggregation"] }
102+
arm = { version = "0.12.0", features = ["groth16_aggregation"] }
103103

104104
# Logic-circuit-only usage
105-
arm = { version = "0.11.0", default-features = false }
105+
arm = { version = "0.12.0", default-features = false }
106106

107107
# Elixir Anoma SDK
108-
arm = { version = "0.11.0", features = ["nif"] }
108+
arm = { version = "0.12.0", features = ["nif"] }
109109
```
110110

111111

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.11.0"
3+
version = "0.12.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

16 Bytes
Binary file not shown.

arm/elfs/compliance-guest.bin

260 Bytes
Binary file not shown.

arm/elfs/logic-test-guest.bin

-236 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.

arm/elfs/trivial-logic-guest.bin

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

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

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

0 commit comments

Comments
 (0)