From e523d073818e9f7bdb035d2c581c82f601c961f4 Mon Sep 17 00:00:00 2001 From: tilacog Date: Wed, 24 Nov 2021 17:27:14 -0300 Subject: [PATCH 1/2] chain: Use BigInt for Transaction.nonce field --- chain/ethereum.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chain/ethereum.ts b/chain/ethereum.ts index b618100..9effc73 100644 --- a/chain/ethereum.ts +++ b/chain/ethereum.ts @@ -356,7 +356,7 @@ export namespace ethereum { public gasLimit: BigInt, public gasPrice: BigInt, public input: Bytes, - public nonce: Bytes, + public nonce: BigInt, ) {} } From 2a77f2e2210d07efab3029d658c07a6144ff845f Mon Sep 17 00:00:00 2001 From: tilacog Date: Wed, 24 Nov 2021 17:28:04 -0300 Subject: [PATCH 2/2] 0.24.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index faa8c97..aaf742d 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.24.0", + "version": "0.24.1", "module": "index.ts", "types": "index.ts", "main": "index.ts",