Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
v0.24.1 (#234)
Browse files Browse the repository at this point in the history
* chain: Use BigInt for Transaction.nonce field

* 0.24.1
  • Loading branch information
tilacog authored Nov 24, 2021
1 parent a522261 commit 0812c95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chain/ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ export namespace ethereum {
public gasLimit: BigInt,
public gasPrice: BigInt,
public input: Bytes,
public nonce: Bytes,
public nonce: BigInt,
) {}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 0812c95

Please sign in to comment.