Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hotfix] Update the genesis targets for TestnetV0 #2466

Merged
merged 45 commits into from
May 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
5b30ccd
feat: introduce cfg_sorted_by
ljedrz May 9, 2024
05c0273
Do not abort executions early in prepare_for_speculate
vicsn May 13, 2024
4ff52ba
Fix unit tests which test for duplicate tx contents
vicsn May 13, 2024
8949c47
Add test to confirm behavior of a malicious validator re-using execut…
vicsn May 14, 2024
ba56517
perf: speed up the LiteralType check for the Identifier
ljedrz May 15, 2024
2a275ed
chore: adjust the lockfile
ljedrz May 15, 2024
fd51446
Revert "Do not abort executions early in prepare_for_speculate"
vicsn May 17, 2024
ea6bf5a
Abort fee transactions before speculation early
vicsn May 17, 2024
6e6476e
Fix tests
vicsn May 17, 2024
5835a86
perf: reduce allocations in ToBits for Plaintext
ljedrz May 20, 2024
35a94bf
Merge branch 'mainnet-staging' into perf/identifier_literal_type_parsing
raychu86 May 20, 2024
c792427
refactor: use type_name instead of literals for LiteralType::parse
ljedrz May 21, 2024
a6256eb
Add num_variables to testnet verifier byte serialization
raychu86 May 22, 2024
644c5ee
Add num_variables to mainnet verifier byte serialization
raychu86 May 22, 2024
cab1c0d
Introduce TestnetV1 network
raychu86 May 22, 2024
dfd00e6
Introduce TestnetV1Circuit and AleoTestnetV1
raychu86 May 22, 2024
6120c67
Add parameter synthesis for TestnetV1
raychu86 May 22, 2024
a8b0c82
Add parameters for TestnetV1
raychu86 May 22, 2024
2abf0e1
Add TestnetV1 ID parsing
raychu86 May 22, 2024
895952f
Regenerate genesis block
raychu86 May 22, 2024
9493c43
Regenerate genesis block
raychu86 May 23, 2024
1da43ab
Update the genesis coinbase and proof targets
raychu86 May 23, 2024
d638448
Introduce CanaryV0
raychu86 May 23, 2024
757e5d5
Merge pull request #2458 from ljedrz/perf/plaintext_bits_allocs
howardwu May 23, 2024
a471281
Merge pull request #2454 from ljedrz/perf/identifier_literal_type_par…
howardwu May 23, 2024
dbc101b
Merge pull request #2459 from ljedrz/refactor/futureproof_literals
howardwu May 23, 2024
9d956dd
Merge pull request #2450 from ljedrz/feat/cfg_sorted_by
howardwu May 23, 2024
fa04451
Modify CI to use CircleCI's runners
zosorock May 23, 2024
f6ace91
Merge pull request #2452 from AleoNet/only_abort_deploys_early
howardwu May 23, 2024
a68e2a1
Merge branch 'mainnet-staging' into fix/stored-parameters
howardwu May 23, 2024
13b3efa
Use parameters::canary
raychu86 May 23, 2024
0bd71b5
Merge pull request #2463 from AleoHQ/feat/testnetv1
howardwu May 23, 2024
f197796
Merge branch 'mainnet-staging' into fix/stored-parameters
howardwu May 23, 2024
a8c0b2d
Merge pull request #2462 from AleoHQ/fix/stored-parameters
howardwu May 23, 2024
078bd05
adding new Testnet genesis block with new coinbase and proof targets
zosorock May 23, 2024
54c17c0
Revert "Merge pull request #2462 from AleoHQ/fix/stored-parameters"
zosorock May 24, 2024
a129de0
Revert "Merge pull request #2463 from AleoHQ/feat/testnetv1"
zosorock May 24, 2024
1816887
Revert "Merge pull request #2452 from AleoNet/only_abort_deploys_early"
zosorock May 24, 2024
1f9aef2
Revert "Merge pull request #2450 from ljedrz/feat/cfg_sorted_by"
zosorock May 24, 2024
10ec10d
Revert "Merge pull request #2459 from ljedrz/refactor/futureproof_lit…
zosorock May 24, 2024
d85b49d
Revert "Merge pull request #2454 from ljedrz/perf/identifier_literal_…
zosorock May 24, 2024
1ce3cb3
Revert "Merge pull request #2458 from ljedrz/perf/plaintext_bits_allocs"
zosorock May 24, 2024
c891ca2
Merge pull request #2465 from AleoNet/revert-multiple-prs
apruden2008 May 24, 2024
e0d378e
Merge branch 'mainnet-staging' into update/testnetv0-genesis-target
zosorock May 24, 2024
393b8fb
Merge pull request #2464 from AleoNet/update/testnetv0-genesis-target
apruden2008 May 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions console/network/src/testnet_v0.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ impl Network for TestnetV0 {
/// The network edition.
const EDITION: u16 = 0;
/// The genesis block coinbase target.
const GENESIS_COINBASE_TARGET: u64 = (1u64 << 5).saturating_sub(1);
const GENESIS_COINBASE_TARGET: u64 = (1u64 << 10).saturating_sub(1);
/// The genesis block proof target.
const GENESIS_PROOF_TARGET: u64 = 1u64 << 3;
const GENESIS_PROOF_TARGET: u64 = 1u64 << 8;
/// The fixed timestamp of the genesis block.
const GENESIS_TIMESTAMP: i64 = 1715776496 /* 2024-05-15 12:34:56 UTC */;
/// The network ID.
Expand Down
Binary file modified parameters/src/testnet/resources/block.genesis
Binary file not shown.