Skip to content

Commit b619ef8

Browse files
committed
update program ids in zisk aggregator for the values of a linux machine
1 parent 0082b41 commit b619ef8

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

aggregation_mode/proof_aggregator/aggregation_programs/zisk/src/chunk_aggregator_main.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ use zisk_aggregation_program::{ChunkAggregatorInput, Hash32};
66

77
// Generated with `make proof_aggregator_write_program_ids` and copied from program_ids.json
88
pub const USER_PROOFS_AGGREGATOR_PROGRAM_ROM_ROOT: [u64; 4] = [
9-
8006415978237093766,
10-
9267864536843082901,
11-
14454613831466088168,
12-
10034785771278346133,
9+
6589631844296419412,
10+
9245669750987062479,
11+
9069898615149755662,
12+
9755939384656322398,
1313
];
1414

1515
pub fn main() {
@@ -53,7 +53,7 @@ pub fn main() {
5353
let mut merkle_root = [0u8; 32];
5454
for (idx, word) in publics.iter().enumerate() {
5555
let start = idx * 4;
56-
merkle_root[start..start + 4].copy_from_slice(&( *word as u32).to_le_bytes());
56+
merkle_root[start..start + 4].copy_from_slice(&(*word as u32).to_le_bytes());
5757
}
5858

5959
// Reconstruct the merkle tree and verify that the roots match

aggregation_mode/proof_aggregator/programs_ids.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"sp1_chunk_aggregator_vk_hash": "0x00d6e32a34f68ea643362b96615591c94ee0bf99ee871740ab2337966a4f77af",
66
"sp1_user_proofs_aggregator_vk_hash": "0x00a0fe3e73d4dd5f66369c60629213c8a037da04f8f68724c8a15ed1d20a0d5e",
77
"sp1_user_proofs_aggregator_vk_hash_words": "[1350508345, 1966561241, 1188269068, 690044042, 29282343, 1675238547, 289586595, 1376390494]",
8-
"zisk_chunk_aggregator_rom_vk_hex": "0x2ce6917eec7ea5abcbc4cef57f0ca21414bc8f28e04c9d24dca4b96ca98c16f2",
9-
"zisk_user_proofs_aggregator_rom_vk": "[8006415978237093766, 9267864536843082901, 14454613831466088168, 10034785771278346133]"
8+
"zisk_chunk_aggregator_rom_vk_hex": "0xf65864040c58087c19d2793043dcfe0cbf99e8d555b45f20e1801cc447a69108",
9+
"zisk_user_proofs_aggregator_rom_vk": "[6589631844296419412, 9245669750987062479, 9069898615149755662, 9755939384656322398]"
1010
}

contracts/script/deploy/config/devnet/proof-aggregator-service.devnet.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"programs_id": {
1010
"sp1AggregationProgramVKHash": "0x00d6e32a34f68ea643362b96615591c94ee0bf99ee871740ab2337966a4f77af",
1111
"risc0AggregationProgramImageId": "0x8908f01022827e80a5de71908c16ee44f4a467236df20f62e7c994491629d74c",
12-
"ziskAggregationProgramVKHash": "0xfd518d50ee1b5bfe9e594448582fc8556b7313e2607e3d1f10a1d475800912b0"
12+
"ziskAggregationProgramVKHash": "0xf65864040c58087c19d2793043dcfe0cbf99e8d555b45f20e1801cc447a69108"
1313
},
1414
"amounts": {
1515
"amountToPayInWei": 1000000000000000000,

0 commit comments

Comments
 (0)