Skip to content

Commit ef05686

Browse files
committed
v0.13.0
1 parent a2757b6 commit ef05686

File tree

17 files changed

+106
-1858
lines changed

17 files changed

+106
-1858
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ We have the following feature flags in arm lib:
8585

8686
```toml
8787
# Default configuration
88-
arm = "0.12.0"
88+
arm = "0.13.0"
8989

9090
# Proof aggregation (a single succinct proof per transaction)
91-
arm = { version = "0.12.0", features = ["aggregation"] }
91+
arm = { version = "0.13.0", features = ["aggregation"] }
9292

9393
# Logic-circuit-only usage
94-
arm = { version = "0.12.0", default-features = false }
94+
arm = { version = "0.13.0", default-features = false }
9595
```
9696

9797

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.12.0"
3+
version = "0.13.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

-2.64 KB
Binary file not shown.

arm/elfs/compliance-guest.bin

-4.37 KB
Binary file not shown.
-2.66 KB
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("1dac4bff516acbec855e97481821c15915078edaed44887cf48024170a0a107e").unwrap();
14+
Digest::from_hex("1d8fee9852b3b56d5cb0f541f81ac28f5759a2b32a1d9a86af433f50e1f28375").unwrap();
1515

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

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

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.

0 commit comments

Comments
 (0)