From be17e191962b83bfe33788ad227251cb20af46f8 Mon Sep 17 00:00:00 2001 From: tilacog Date: Mon, 15 Nov 2021 12:01:25 -0300 Subject: [PATCH 1/3] chain/ethereum: Add nonce field to Transaction class --- chain/ethereum.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/chain/ethereum.ts b/chain/ethereum.ts index bc43d4d..07f41ea 100644 --- a/chain/ethereum.ts +++ b/chain/ethereum.ts @@ -355,6 +355,7 @@ export namespace ethereum { public gasLimit: BigInt, public gasPrice: BigInt, public input: Bytes, + public nonce: Bytes, ) {} } From d967cd2bfac206d90285ee647378dc81e920667e Mon Sep 17 00:00:00 2001 From: tilacog Date: Mon, 15 Nov 2021 12:02:22 -0300 Subject: [PATCH 2/3] chain/ethereum: Add baseFeePerGas field to Block class --- chain/ethereum.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/chain/ethereum.ts b/chain/ethereum.ts index 07f41ea..b618100 100644 --- a/chain/ethereum.ts +++ b/chain/ethereum.ts @@ -339,6 +339,7 @@ export namespace ethereum { public difficulty: BigInt, public totalDifficulty: BigInt, public size: BigInt | null, + public baseFeePerGas: BigInt | null, ) {} } From 55ccb5ba4c485009acccdba01a6f698245ad77ff Mon Sep 17 00:00:00 2001 From: tilacog Date: Mon, 15 Nov 2021 12:03:17 -0300 Subject: [PATCH 3/3] 0.24.0-alpha.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9a3aacd..2bcadf3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@graphprotocol/graph-ts", "description": "TypeScript/AssemblyScript library for writing subgraph mappings for The Graph", - "version": "0.23.1", + "version": "0.24.0-alpha.0", "module": "index.ts", "types": "index.ts", "main": "index.ts",