# Nimbus # Copyright (c) 2022-2024 Status Research & Development GmbH # 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 feeRecipient: EthAddress timestamp : EthTime prevRandao : Hash256 withdrawals : seq[Withdrawal] ## EIP-4895 beaconRoot : Hash256 ## EIP-4788 # ------------------------------------------------------------------------------ # Getters # ------------------------------------------------------------------------------ func feeRecipient*(ctx: CasperRef): EthAddress = ctx.feeRecipient func timestamp*(ctx: CasperRef): EthTime = ctx.timestamp func prevRandao*(ctx: CasperRef): Hash256 = ctx.prevRandao proc withdrawals*(ctx: CasperRef): seq[Withdrawal] = ctx.withdrawals func parentBeaconBlockRoot*(ctx: CasperRef): Hash256 = ctx.beaconRoot # ------------------------------------------------------------------------------ # 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 proc `withdrawals=`*(ctx: CasperRef, val: sink seq[Withdrawal]) = ctx.withdrawals = system.move(val) proc `parentBeaconBlockRoot=`*(ctx: CasperRef, val: Hash256) = ctx.beaconRoot = val