diff --git a/CHANGES.md b/CHANGES.md index c0f38d220e..8a9b24254d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,7 +3,7 @@ ## Schema Update 1.3.0 Main PR: [#310](https://github.com/messari/subgraphs/pull/310) -Fixes: [#320](https://github.com/messari/subgraphs/pull/320), [#325](https://github.com/messari/subgraphs/pull/325), [#330](https://github.com/messari/subgraphs/pull/330) +Fixes: [#320](https://github.com/messari/subgraphs/pull/320), [#325](https://github.com/messari/subgraphs/pull/325), [#330](https://github.com/messari/subgraphs/pull/330), [#331](https://github.com/messari/subgraphs/pull/331) ### Common @@ -21,6 +21,7 @@ Fixes: [#320](https://github.com/messari/subgraphs/pull/320), [#325](https://git - Changed `fixed_term` to `fixed` in `InterestRateType` entity to be more precise. - Added daily/hourly withdraw/repay aggregates into snapshots. - Fixed a couple `AmountUSD` fields (they were accidentally left as nullable before). +- Updated `Liquidate` entity to include `liquidatee` (the address that got liquidated). ## Schema Update 1.2.1 diff --git a/schema-lending.graphql b/schema-lending.graphql index fca2a5a258..82a251e16b 100644 --- a/schema-lending.graphql +++ b/schema-lending.graphql @@ -994,6 +994,9 @@ type Liquidate implements Event @entity { " Address that carried out the liquidation " from: String! + " Address that got liquidated " + liquidatee: String! + " Block number of this event " blockNumber: BigInt!