-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(devnet): update devnet config (#326)
* update devnet config Signed-off-by: smtmfft <[email protected]> * update devnet config Signed-off-by: smtmfft <[email protected]> * update dependency cargo.lock Signed-off-by: smtmfft <[email protected]> * update risc0 binary Signed-off-by: smtmfft <[email protected]> * update sp1 binary Signed-off-by: smtmfft <[email protected]> * update testcase Signed-off-by: smtmfft <[email protected]> * debug CI Signed-off-by: smtmfft <[email protected]> * debug ci * debug CI * fix CI * resolve merge conflict Signed-off-by: smtmfft <[email protected]> * fix test * fix clippy --------- Signed-off-by: smtmfft <[email protected]>
- Loading branch information
Showing
14 changed files
with
269 additions
and
117 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
[ | ||
{ | ||
"name": "taiko_dev_l1", | ||
"chain_id": 32382, | ||
"max_spec_id": "CANCUN", | ||
"hard_forks": { | ||
"FRONTIER": { | ||
"Block": 0 | ||
}, | ||
"SHANGHAI": { | ||
"Timestamp": 0 | ||
}, | ||
"CANCUN": { | ||
"Timestamp": 0 | ||
} | ||
}, | ||
"eip_1559_constants": { | ||
"base_fee_change_denominator": "0x8", | ||
"base_fee_max_increase_denominator": "0x8", | ||
"base_fee_max_decrease_denominator": "0x8", | ||
"elasticity_multiplier": "0x2" | ||
}, | ||
"l1_contract": null, | ||
"l2_contract": null, | ||
"rpc": "https://l1rpc.internal.taiko.xyz", | ||
"beacon_rpc": "https://l1beacon.internal.taiko.xyz/", | ||
"verifier_address": { | ||
"SGX": null, | ||
"SP1": null, | ||
"RISC0": null | ||
}, | ||
"genesis_time": 1721296000, | ||
"seconds_per_slot": 12, | ||
"is_taiko": false | ||
}, | ||
{ | ||
"name": "taiko_dev", | ||
"chain_id": 167001, | ||
"max_spec_id": "SHANGHAI", | ||
"hard_forks": { | ||
"SHANGHAI": { | ||
"Block": 0 | ||
}, | ||
"CANCUN": "TBD" | ||
}, | ||
"eip_1559_constants": { | ||
"base_fee_change_denominator": "0x8", | ||
"base_fee_max_increase_denominator": "0x8", | ||
"base_fee_max_decrease_denominator": "0x8", | ||
"elasticity_multiplier": "0x2" | ||
}, | ||
"l1_contract": "0xcdE816aFd1B7db50f09831097e71F99877809218", | ||
"l2_contract": "0x1670010000000000000000000000000000010001", | ||
"rpc": "https://rpc.internal.taiko.xyz", | ||
"beacon_rpc": null, | ||
"verifier_address":{ | ||
"SGX":"0xC069c3d2a9f2479F559AD34485698ad5199C555f", | ||
"SP1":null, | ||
"RISC0":"0xde28533011Ef2d6484A03beFD8ffbF31d179AE6A" | ||
}, | ||
"genesis_time": 0, | ||
"seconds_per_slot": 1, | ||
"is_taiko": true | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
pub const RISC0_GUEST_ELF: &[u8] = | ||
include_bytes!("../../../guest/target/riscv32im-risc0-zkvm-elf/release/risc0-guest"); | ||
pub const RISC0_GUEST_ID: [u32; 8] = [ | ||
1914784930, 3634152083, 2963332796, 2630159414, 3104046433, 3092402903, 3447446567, 3034579556, | ||
778116790, 3147350329, 3518605327, 2941923414, 1667247192, 584142090, 3914021799, 3838916379, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.