All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
4.0.1 - 2024-10-22
- Bump
@subql/types-core
dependency (#135)
3.6.1 - 2024-09-10
- Bump version with
@subql/types-core
3.5.0 - 2024-08-07
- Update dependencies (#130)
3.4.0 - 2024-07-03
- Bump version with
@subql/types-core
3.3.0 - 2024-05-02
- Update dependencies and apply changes to match (#115)
3.2.0 - 2024-04-10
- Update
@subql/types-core
3.1.2 - 2024-02-07
- Update
@subql/types-core
3.1.1 - 2023-11-30
- Sync with
@subql/types-core
0.4.0
3.1.0 - 2023-11-01
- Import
@subql/types-core
global into global so its no longer needed to update tsconfig in projects (#83)
3.0.1 - 2023-10-26
- Update types-core dependency
3.0.0 - 2023-10-04
- Use
@subql/types-core
2.2.0 - 2023-07-31
- Add
block
toAlgorandTransaction
(#67) - Add
getTransactionsByGroup
toAlgorandBlock
(#67) - Add
applicationArgs
toAlgorandTransactionFilter
(#67)
- Update license to GPL-3.0 (#70)
2.1.0 - 2023-05-17
- Sync with main SDK
2.0.0 - 2023-05-01
- Sync with main SDK for 2.0 release
1.6.0 - 2023-02-21
- Sync with main sdk
- Add
count
toStore
interface - Support for
bypassBlocks
- Add
1.5.0 - 2023-01-24
- Add
count
function to get the number of entities (#22)
1.4.0 - 2022-11-11
- Sync changes from main SDK, update
AlgorandBlockFilter
include timestamp.
1.3.0 - 2022-09-02
- Updated
store.getByField
to have limit and offset options:getByField(entity: string, field: string, value: any, options?: {offset?: number; limit?: number}): Promise<Entity[]>;
. - Added
bulkUpdate
andbulkGet
to the injected store. This can be used to optimise handlers and speed up indexing.