Skip to content

Commit 6cba090

Browse files
committed
docs: update changelog for v-1.1.0
1 parent 0142024 commit 6cba090

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# Changelog
22

3+
## Aug 13 - Sep 11, 2025
4+
5+
- fix: remove unnecessary error throwing in dataloaders
6+
- refactor: removed CORS origin handler
7+
- fix: remove token price cache, causing inaccurate usd prices
8+
- feat: added errors monitoring for Kadena report
9+
- fix: liquidity can be object or number
10+
- fix: reverted orphan blocks algorithm behavior
11+
- refactor: changed indexes approach and graphql resolvers to make transfers query faster for all use cases
12+
- fix: tvl history query to better capture daily tvl values
13+
- refactor: improved transactions count when using minHeight and maxHeight
14+
- fix: added hasTokenId to all transfers fields and their counters
15+
- feat: add optional code field to TransactionSummary and related repository updates
16+
- refactor: improved blocks-from-height query
17+
- feat: optional port for migration
18+
- fix: created a missing migration to add an index on the module and chainId columns in the Events table
19+
- feat: added module as a new param in events query and improved the indexes to make the query performance better
20+
- fix: dex metrics tvl history query
21+
- refactor: transactions query improvement
22+
- refactor: separated pairCreation process from indexing
23+
- feat: created a query to get the token price based on its latest swap
24+
- feat: allowing to query holders of certain fungible module
25+
- fix: manually upsert poolstats to not overwrite db transaction
26+
- fix: added badResult field to the transactions-by-pact-code query and changed the creationTime field to DateTime type
27+
- fix: created a migration to add an index on the code column in the TransactionDetails table
28+
- refactor: added token id field in the transfers query for the case where isNft = true
29+
- refactor: started to track RECONCILE events and transform them in NFT transfers
30+
- refactor: changed the totalGasUsed field name to totalGasUsedInKda
31+
- refactor: created the transactionsByPactCode query to avoid performance issues
32+
- feat: balances queries
33+
- feat: added counters to the network info query
34+
- feat: added total count in blocksFromHeight query
35+
- fix: adjusted orphaned transactions field to use the canonical flag
36+
- feat: added total gas used in block type of graphql
37+
- tests: improved api parity tests to use random block hashes in queries like block, transactions, transfers and events
38+
339
## Jul 28 - Aug 13, 2025
440

541
- refactor: removed unnecessary environment variables and made some previously required variables optional

indexer/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const options = program.opts();
4949
*/
5050
async function main() {
5151
try {
52-
console.info('Starting v1.0.2.2 with pair creation');
52+
console.info('Starting v1.1.0');
5353
initializeErrorMonitoring();
5454
setupAssociations();
5555
PriceUpdaterService.getInstance();

0 commit comments

Comments
 (0)