File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ OWNER_ADDRESS=<CONTRACT_OWNER_ADDRESS>
99PRIVATE_KEY=<PRIVATE_KEY_TO_DEPLOY>
1010# This is the aligned proof aggregator address in holesky see:
1111# https://docs.alignedlayer.com/guides/7_contract_addresses
12- ALIGNED_PROOF_AGGREGATOR_ADDRESS=0x7Eace34A8d4C4CacE633946C6F7CF4BeF3F33513
12+ ALIGNED_PROOF_AGGREGATOR_ADDRESS=0xe84CD4084d8131841CE6DC265361f81F4C59a1d4
1313ETHERSCAN_API_KEY=<YOUR_ETHERSCAN_API_KEY>
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ pub async fn start_l2(config: Config) {
2929 let transfers = generate_random_transfers ( & db, 10 ) ;
3030
3131 // 2. Call zkvm and transfer to perform and verify
32- info ! ( "Staring prover" ) ;
32+ info ! ( "Starting prover" ) ;
3333 let ( mut proof, vk) = prove_state_transition ( & db, transfers. clone ( ) ) ;
3434 let ProgramOutput {
3535 initial_state_merkle_root,
@@ -80,7 +80,10 @@ pub async fn start_l2(config: Config) {
8080 let receipt =
8181 send_state_transition_to_chain ( & config, proof. public_values . to_vec ( ) , merkle_path) . await ;
8282
83- info ! ( "State update in contracts tx receipt {:?}" , receipt) ;
83+ info ! (
84+ "State update in contracts tx hash: {:?}" ,
85+ receipt. transaction_hash
86+ ) ;
8487
8588 // Finally save the db to a file to be retrieved later
8689 db. save ( ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments