Skip to content

Commit

Permalink
chore: update assume valid targets
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Oct 10, 2024
1 parent d49cd4e commit 113cdae
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions util/constant/src/default_assume_valid_target.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ pub mod mainnet {
///
/// Need to update when CKB's new release
/// in mainnet: the 60 days ago block is:
/// height: 13266076
/// hash: 0xd07c7f0fcea6e2a20a51dabbf0caae7ebff49723bcd8bac81a8b8c021a546a32
/// date: Wed Jun 19 02:31:36 AM UTC 2024
/// you can view this block in https://explorer.nervos.org/block/0xd07c7f0fcea6e2a20a51dabbf0caae7ebff49723bcd8bac81a8b8c021a546a32
/// height: 13735790
/// hash: 0x1dc6ebf09bf066b6d4c6b9bf1ded8e4c692c55b14f98bff231a4cb26720412cd
/// date: Sun Aug 11 07:55:39 AM CST 2024
/// you can view this block in https://explorer.nervos.org/block/0x1dc6ebf09bf066b6d4c6b9bf1ded8e4c692c55b14f98bff231a4cb26720412cd
pub const DEFAULT_ASSUME_VALID_TARGET: &str =
"0xd07c7f0fcea6e2a20a51dabbf0caae7ebff49723bcd8bac81a8b8c021a546a32";
"0x1dc6ebf09bf066b6d4c6b9bf1ded8e4c692c55b14f98bff231a4cb26720412cd";
}
/// sync config related to testnet
pub mod testnet {
/// Default assume valid target for testnet, expect to be a block 60 days ago.
///
/// Need to update when CKB's new release
/// in testnet: the 60 days ago block is:
/// height: 13632642
/// hash: 0xab6f81474ccbc1cdd5f42cda7029a6f6e52fc242c3487861e8abb62b6a6ea8a9
/// date: Wed Jun 19 02:32:01 AM UTC 2024
/// you can view this block in https://pudge.explorer.nervos.org/block/0xab6f81474ccbc1cdd5f42cda7029a6f6e52fc242c3487861e8abb62b6a6ea8a9
/// height: 14203467
/// hash: 0xa13450d53528d80fb5886f35386cf0119eea74cc63092c1138c38971416fe445
/// date: Sun Aug 11 07:56:19 AM CST 2024
/// you can view this block in https://pudge.explorer.nervos.org/block/0xa13450d53528d80fb5886f35386cf0119eea74cc63092c1138c38971416fe445
pub const DEFAULT_ASSUME_VALID_TARGET: &str =
"0xab6f81474ccbc1cdd5f42cda7029a6f6e52fc242c3487861e8abb62b6a6ea8a9";
"0xa13450d53528d80fb5886f35386cf0119eea74cc63092c1138c38971416fe445";
}

0 comments on commit 113cdae

Please sign in to comment.