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

[DO NOT MERGE] Verkle Gen Devnet 6 #9335

Draft
wants to merge 39 commits into
base: release/2.60
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
b87542e
Save progress
Dec 4, 2023
23a2cd8
Genesis root calc with in-memory vtrie
Dec 7, 2023
bb0dacf
Fork id + goodpeers + verkle refac
Dec 13, 2023
d1b38eb
Working height 42
Dec 21, 2023
099dede
Progress till height 7196
somnathb1 Dec 23, 2023
653b42e
Upto 7196
somnathb1 Dec 25, 2023
fc1c6ae
Merge branch 'devel' into som/verkle-kaustinen-2
somnathb1 Apr 18, 2024
51c4ee5
Fix merge and update go-verkle
somnathb1 Apr 18, 2024
e32775f
chain-config: capital IsOsaka
somnathb1 Apr 18, 2024
41ed859
Move verkle logic to Osaka
somnathb1 Apr 18, 2024
53e1175
Gas tale updates
somnathb1 Apr 22, 2024
3b5533a
Update gas table
somnathb1 Apr 23, 2024
604f451
Update access_witness
somnathb1 Apr 23, 2024
7bc5882
gofmt
somnathb1 Apr 23, 2024
c1d009a
Merge branch 'devel' into som/verkle-kaustinen-2
somnathb1 Apr 23, 2024
21fc9f9
Skip hashstate stage for verkle
somnathb1 Apr 24, 2024
700a1a5
Merge branch 'devel' into som/verkle-kaustinen-2
somnathb1 Apr 30, 2024
8305d89
Build fix
somnathb1 May 11, 2024
17d379f
Add pre image dump new
somnathb1 May 15, 2024
241cd92
Add new preimage dump func
somnathb1 May 17, 2024
6535bc1
Update network configs to vgdn-6
somnathb1 Jul 1, 2024
f5aaca7
More updates looking at geth
somnathb1 Jul 16, 2024
9787051
Copy more
somnathb1 Jul 29, 2024
94be461
Change to Osakatime in config
somnathb1 Jul 30, 2024
398d836
Add 2935 part 1
somnathb1 May 9, 2024
cc96f6f
Update EIP-2935 for Prague devnet1 (#10920)
yperbasis Jun 26, 2024
c427a90
Merge remote-tracking branch 'origin/release/2.60' into som/verkle-ka…
somnathb1 Aug 29, 2024
a59ef84
Fix rebase
somnathb1 Aug 30, 2024
0d668d3
Working execution Checkpoint
somnathb1 Sep 2, 2024
517d116
Fix precompile for osaka
somnathb1 Sep 3, 2024
b107e29
Rename and default enable SpawnVerkleTrieStage
somnathb1 Sep 4, 2024
95bd102
Sync go-verkle version
somnathb1 Sep 4, 2024
9d2573c
Rename dump_pre_images func
somnathb1 Oct 27, 2024
0d9a520
Remove older methods from verkle/main cmd
somnathb1 Oct 27, 2024
27d9e45
Update command to add hashed keys files
somnathb1 Oct 27, 2024
f958eb0
Devnet-6 update
somnathb1 Oct 31, 2024
b11c75a
Add verkle fork and exec spec tests
somnathb1 Oct 31, 2024
997f46f
Comment unnecessary files for now
somnathb1 Nov 2, 2024
5b5b9b7
Comment out unnecessary actions
somnathb1 Nov 2, 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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,5 @@ node_modules
/config.yml

vendor

*.dat
82 changes: 47 additions & 35 deletions cmd/evm/internal/t8ntool/gen_stenv.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cmd/evm/internal/t8ntool/transition.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func Main(ctx *cli.Context) error {
var chainConfig *chain.Config
if cConf, extraEips, err1 := tests.GetChainConfig(ctx.String(ForknameFlag.Name)); err1 != nil {
return NewError(ErrorVMConfig, fmt.Errorf("failed constructing chain configuration: %v", err1))
} else { //nolint:golint
} else { //nowlint:golint
chainConfig = cConf
vmConfig.ExtraEips = extraEips
}
Expand Down
1 change: 1 addition & 0 deletions cmd/state/exec3/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ func (rw *Worker) RunTxTaskNoLock(txTask *exec22.TxTask) {
// Genesis block
// fmt.Printf("txNum=%d, blockNum=%d, Genesis\n", txTask.TxNum, txTask.BlockNum)
_, ibs, err = core.GenesisToBlock(rw.genesis, "", logger)

if err != nil {
panic(err)
}
Expand Down
Loading
Loading