From 7700a2eb68d300176cb2701eb14645f85d2b124e Mon Sep 17 00:00:00 2001 From: David Mihal Date: Tue, 27 Jul 2021 07:14:58 -0300 Subject: [PATCH] Add baseFee to Block class Adds an optional baseFee to the Block class, following EIP-3044 --- chain/ethereum.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/chain/ethereum.ts b/chain/ethereum.ts index f92ae93..6c2d19a 100644 --- a/chain/ethereum.ts +++ b/chain/ethereum.ts @@ -355,6 +355,7 @@ export namespace ethereum { number: BigInt gasUsed: BigInt gasLimit: BigInt + baseFeePerGas: BigInt | null timestamp: BigInt difficulty: BigInt totalDifficulty: BigInt