Skip to content

Commit

Permalink
Merge pull request #296 from AffineLabs/main
Browse files Browse the repository at this point in the history
Affine DeFi : Restaking : Removed 0 balance entries
0xroll authored Aug 26, 2024
2 parents d476beb + c19f947 commit c65fb3f
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion adapters/affine/hourly_blocks.csv
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
number,timestamp
8431382,1722948881
8516509,1722948881
2 changes: 1 addition & 1 deletion adapters/affine/src/index.ts
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ const makeBalancesQuery = (blockNumber: number, next = "") => `query {
tokenBalances(
block: {number: ${blockNumber}},
first: 1000,
where: { id_gt: "${next}" }
where: { id_gt: "${next}", value_gt: 0 }
) {
token {
id

0 comments on commit c65fb3f

Please sign in to comment.