Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
452fb28
first working version of new state sync tx
lucca30 Aug 27, 2025
ada4bcc
remove logs
lucca30 Sep 3, 2025
4853b71
Merge remote-tracking branch 'origin/develop' into lmartins/state-syn…
lucca30 Sep 3, 2025
d57e485
fix lint
lucca30 Sep 3, 2025
a6b395c
fix integration tests
lucca30 Sep 3, 2025
feb65bf
test fixes
lucca30 Sep 4, 2025
030eb31
lint fix
lucca30 Sep 4, 2025
854fabe
fix parallel processor
lucca30 Sep 4, 2025
6f8186c
type improvement and unit tests
lucca30 Sep 4, 2025
55ba461
remove duplicates
lucca30 Sep 4, 2025
340a5bb
Merge remote-tracking branch 'origin/develop' into lmartins/state-syn…
lucca30 Sep 29, 2025
d634bc1
ignore data test output
lucca30 Oct 6, 2025
f76174b
fixing method calls and fields
lucca30 Oct 6, 2025
7f00fe6
Merge remote-tracking branch 'origin/develop' into lmartins/state-syn…
lucca30 Oct 6, 2025
b23546e
Merge remote-tracking branch 'origin/develop' into lmartins/state-syn…
lucca30 Oct 9, 2025
0b556fa
build fix
lucca30 Oct 9, 2025
90b03da
remove bor filter for after hf blocks
lucca30 Oct 9, 2025
15d3a69
sort logs just when necessary
lucca30 Oct 9, 2025
27562ef
Merge remote-tracking branch 'origin/develop' into lmartins/state-syn…
kamuikatsurgi Oct 15, 2025
d028c82
Merge remote-tracking branch 'origin/develop' into lmartins/state-syn…
kamuikatsurgi Oct 16, 2025
d56cdc0
ssTxs: fix receiptsHash mismatch (#1829)
kamuikatsurgi Oct 17, 2025
2f5a20d
core(tx): fix Hash method for StateSyncTxType (#1830)
kamuikatsurgi Oct 17, 2025
be7f430
eth: fixes in receipt handling via p2p post HF (#1825)
manav2401 Oct 20, 2025
4b07936
core/types: return nil for chainID() call over state-sync tx
manav2401 Oct 21, 2025
6d6d37f
internal/ethapi: handle bor txs and receipts post HF (#1834)
manav2401 Oct 21, 2025
223f7f9
Merge remote-tracking branch 'origin/develop' into lmartins/state-syn…
kamuikatsurgi Oct 22, 2025
74627f0
fix: cumulativeGasUsed in insertStateSyncTransactionAndCalculateRecei…
kamuikatsurgi Oct 22, 2025
09b31d5
fix: sort logs and remove duplicate append in Finalize (#1836)
kamuikatsurgi Oct 23, 2025
8960a93
chore: nit (#1838)
kamuikatsurgi Oct 24, 2025
c1fb88e
chore: typos
kamuikatsurgi Oct 24, 2025
64e78d6
fix: lint
kamuikatsurgi Oct 26, 2025
1e3176e
Renaming to Madhugiri HF
lucca30 Oct 27, 2025
af543ae
chore: nits
kamuikatsurgi Oct 27, 2025
097fc2f
(fix): handle pointers to receipt list received via p2p
manav2401 Oct 27, 2025
d1b7dbf
(chore): rename tests with HF name
manav2401 Oct 27, 2025
61d2113
chore: more nits
kamuikatsurgi Oct 27, 2025
bdab391
Merge branch 'lmartins/state-sync-txs-on-block-body' of ssh://github.…
kamuikatsurgi Oct 27, 2025
24302c6
core: add blocktime in bor receipt logs (#1848)
manav2401 Oct 28, 2025
b1ddd41
core/types: derive bloom for bor receipts
manav2401 Oct 28, 2025
00768c5
Merge remote-tracking branch 'origin/develop' into lmartins/state-syn…
kamuikatsurgi Oct 30, 2025
84609f6
(chore): update madhugiri block for amoy
manav2401 Oct 30, 2025
6e8b7fc
Change consensus block time to 1s at Madhugiri HF (#1852)
cffls Oct 30, 2025
9f16d93
Merge branch 'develop' into madhugiri-block-amoy
manav2401 Oct 30, 2025
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: 3 additions & 1 deletion builder/files/genesis-amoy.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@
"ahmedabadBlock": 11865856,
"bhilaiBlock": 22765056,
"rioBlock": 26272256,
"madhugiriBlock": 28899616,
"skipValidatorByteCheck": [26160367, 26161087, 26171567, 26173743, 26175647],
"stateSyncConfirmationDelay": {
"0": 128
},
"period": {
"0": 2
"0": 2,
"28899616": 1
},
"producerDelay": {
"0": 4
Expand Down
4 changes: 3 additions & 1 deletion internal/cli/server/chains/amoy.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@ var amoyTestnet = &Chain{
AhmedabadBlock: big.NewInt(11865856),
BhilaiBlock: big.NewInt(22765056),
RioBlock: big.NewInt(26272256),
MadhugiriBlock: big.NewInt(28899616),
StateSyncConfirmationDelay: map[string]uint64{
"0": 128,
},
Period: map[string]uint64{
"0": 2,
"0": 2,
"28899616": 1,
},
ProducerDelay: map[string]uint64{
"0": 4,
Expand Down
4 changes: 3 additions & 1 deletion params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,13 @@ var (
AhmedabadBlock: big.NewInt(11865856),
BhilaiBlock: big.NewInt(22765056),
RioBlock: big.NewInt(26272256),
MadhugiriBlock: big.NewInt(28899616),
StateSyncConfirmationDelay: map[string]uint64{
"0": 128,
},
Period: map[string]uint64{
"0": 2,
"0": 2,
"28899616": 1,
},
ProducerDelay: map[string]uint64{
"0": 4,
Expand Down
Loading