Weekly Update: Deploy V3 to mainnet
NFTX V3 was officially deployed to mainnet this week along with the first batch of updates from the Sepolia testnet feedback.
Documentation
SubGraph
Added some new queries for any subgraph users to take advantage.
Return the DailySnapshots for Pools relating to a vault.
query LPDailySnapshots {
liquidityPoolDailySnapshots(
orderBy: day,
orderDirection: desc,
where:{
pool_in: ["0x5daaeace8dd7cc1a3e1ec70dd5423be44f3c564d","0xb709a80b9955a39b21915798f8034e93c0a3d107"]
}
) {
day
timestamp
dailyTotalRevenueETH
dailyTotalRevenueUSD
dailyVolumeByTokenAmount
totalValueLockedETH
totalValueLockedUSD
tick
activeLiquidity
pool {
id
inputTokens {
id
}
}
}
}
Features
Bug Fixes
- pricing for collections with multiple vaults (343f613)
Loading...