Skip to content

Commit

Permalink
clients/nimbus-el: update nimbus execution client mapper.jq (#1239)
Browse files Browse the repository at this point in the history
- Add missing `depositContractAddress`
- Remove `terminalTotalDifficultyPassed`
- Rename `mergeForkBlock` to `mergeNetsplitBlock`
  • Loading branch information
jangko authored Feb 5, 2025
1 parent 9b8b72e commit 4af482e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/nimbus-el/mapper.jq
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def to_bool:
"londonBlock": env.HIVE_FORK_LONDON|to_int,
"arrowGlacierBlock": env.HIVE_FORK_ARROW_GLACIER|to_int,
"grayGlacierBlock": env.HIVE_FORK_GRAY_GLACIER|to_int,
"mergeForkBlock": env.HIVE_MERGE_BLOCK_ID|to_int,
"mergeNetsplitBlock": env.HIVE_MERGE_BLOCK_ID|to_int,
"terminalTotalDifficulty": env.HIVE_TERMINAL_TOTAL_DIFFICULTY|to_int,
"shanghaiTime": env.HIVE_SHANGHAI_TIMESTAMP|to_int,
"cancunTime": env.HIVE_CANCUN_TIMESTAMP|to_int,
Expand All @@ -90,6 +90,6 @@ def to_bool:
"baseFeeUpdateFraction": (if env.HIVE_PRAGUE_BLOB_BASE_FEE_UPDATE_FRACTION then env.HIVE_PRAGUE_BLOB_BASE_FEE_UPDATE_FRACTION|to_int else 5007716 end)
}
},
"terminalTotalDifficultyPassed": true,
"depositContractAddress": "0x00000000219ab540356cBB839Cbe05303d7705Fa",
}|remove_empty
}

0 comments on commit 4af482e

Please sign in to comment.