Skip to content

Commit

Permalink
fix: add 10k tvl check
Browse files Browse the repository at this point in the history
  • Loading branch information
starketh25 committed Dec 27, 2024
1 parent b917861 commit 0d1ddfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/adaptors/fenix-finance/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const FNX_ADDRESS = '0x52f847356b38720B55ee18Cb3e094ca11C85A192';
const swapPairsQuery = (skip) => {
return gql`
query MyQuery {
pools(first: 100, skip: ${skip}, where: {totalValueLockedUSD_gt: 1000}) {
pools(first: 100, skip: ${skip}, where: {totalValueLockedUSD_gt: 10000}) {
totalValueLockedToken0
totalValueLockedToken1
totalValueLockedUSD
Expand Down
2 changes: 1 addition & 1 deletion src/adaptors/fenix-v2/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const FNX_ADDRESS = '0x52f847356b38720B55ee18Cb3e094ca11C85A192';
const swapPairsQuery = (skip) => {
return gql`
query MyQuery {
pairs(first: 100, skip: ${skip}, where: {reserveUSD_gt: 1000}) {
pairs(first: 100, skip: ${skip}, where: {reserveUSD_gt: 10000}) {
reserve0
reserve1
token1 {
Expand Down

0 comments on commit 0d1ddfa

Please sign in to comment.