diff --git a/packages/subgraph/CHANGELOG.md b/packages/subgraph/CHANGELOG.md index dfaa232bb8..9b5694275a 100644 --- a/packages/subgraph/CHANGELOG.md +++ b/packages/subgraph/CHANGELOG.md @@ -6,6 +6,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +## [2.2.0] + +- Fix missing Token name/symbol in some cases +- Fix Pool's `totalAmountDistributed` being wrong in some cases +- Add `adminOfPoolCount` to AccountTokenSnapshot to count how many pools the account is admin of +- Add `balanceLastUpdatedFromRpcBlocknumber` to AccountTokenSnapshot to track when last RPC call was made +- Don't always make an RPC call when updating the balance of an AccountTokenSnapshot, use the balance delta for simple cases +- Account for GDA's adjustment flow when setting the `isLiquidationEstimateOptimistic` flag on AccountTokenSnapshot + ## [2.1.0] ## Breaking diff --git a/packages/subgraph/package.json b/packages/subgraph/package.json index 9dc34a4401..85eb398b2f 100644 --- a/packages/subgraph/package.json +++ b/packages/subgraph/package.json @@ -1,7 +1,7 @@ { "name": "@superfluid-finance/subgraph", "description": "Subgraph for the Superfluid Ethereum contracts.", - "version": "2.1.0", + "version": "2.2.0", "dependencies": { "@graphprotocol/graph-cli": "0.80.1", "@graphprotocol/graph-ts": "0.35.1",