2022-12-06 05:55:40 +00:00
|
|
|
# Nimbus
|
2024-08-07 15:35:17 +00:00
|
|
|
# Copyright (c) 2022-2024 Status Research & Development GmbH
|
2022-12-06 05:55:40 +00:00
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
|
|
# at your option.
|
|
|
|
# This file may not be copied, modified, or distributed except according to
|
|
|
|
# those terms.
|
|
|
|
import
|
|
|
|
eth/common
|
|
|
|
|
|
|
|
type
|
|
|
|
CasperRef* = ref object
|
2023-10-19 00:50:07 +00:00
|
|
|
feeRecipient: EthAddress
|
|
|
|
timestamp : EthTime
|
|
|
|
prevRandao : Hash256
|
|
|
|
withdrawals : seq[Withdrawal] ## EIP-4895
|
|
|
|
beaconRoot : Hash256 ## EIP-4788
|
2022-12-06 05:55:40 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Getters
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
func feeRecipient*(ctx: CasperRef): EthAddress =
|
|
|
|
ctx.feeRecipient
|
|
|
|
|
|
|
|
func timestamp*(ctx: CasperRef): EthTime =
|
|
|
|
ctx.timestamp
|
|
|
|
|
|
|
|
func prevRandao*(ctx: CasperRef): Hash256 =
|
|
|
|
ctx.prevRandao
|
|
|
|
|
2023-10-19 00:50:07 +00:00
|
|
|
proc withdrawals*(ctx: CasperRef): seq[Withdrawal] =
|
|
|
|
ctx.withdrawals
|
|
|
|
|
2023-08-30 16:29:48 +00:00
|
|
|
func parentBeaconBlockRoot*(ctx: CasperRef): Hash256 =
|
2023-10-19 00:50:07 +00:00
|
|
|
ctx.beaconRoot
|
2023-08-30 16:29:48 +00:00
|
|
|
|
2022-12-06 05:55:40 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Setters
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc `feeRecipient=`*(ctx: CasperRef, val: EthAddress) =
|
|
|
|
ctx.feeRecipient = val
|
|
|
|
|
|
|
|
proc `timestamp=`*(ctx: CasperRef, val: EthTime) =
|
|
|
|
ctx.timestamp = val
|
|
|
|
|
|
|
|
proc `prevRandao=`*(ctx: CasperRef, val: Hash256) =
|
|
|
|
ctx.prevRandao = val
|
2023-08-30 16:29:48 +00:00
|
|
|
|
2023-10-19 00:50:07 +00:00
|
|
|
proc `withdrawals=`*(ctx: CasperRef, val: sink seq[Withdrawal]) =
|
|
|
|
ctx.withdrawals = system.move(val)
|
|
|
|
|
2023-08-30 16:29:48 +00:00
|
|
|
proc `parentBeaconBlockRoot=`*(ctx: CasperRef, val: Hash256) =
|
2023-10-19 00:50:07 +00:00
|
|
|
ctx.beaconRoot = val
|