Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Changelog

## v8

- Data requirements analysis
- Ability to handle multiple squid processors:
- [main.ts](src%2Fmain.ts)
- [processor.ts](src%2Fprocessor.ts)
- `curve` processor & template
- processing by day historically and then realtime thereafter
- schema spread out into multiple `graphql` files and built via `yarn codegen`
- created otoken processor to handle OUSD and OETH contract processing
- `ousd` processing added, however the data has not yet been validated
- We're unable to process as far back as we want to due to an archive server bug. (reported to them)

## v7

- APY numbers have been changed to return proper percentages. (v6 value / 100)
- APY numbers have been changed to return proper percentages. (v6 value / 100) **BREAKING**
- Added `ExchangeRate` entities.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,12 @@ Full description of `schema.graphql` dialect is available [here](https://docs.su

Mapping developers use TypeORM [EntityManager](https://typeorm.io/#/working-with-entity-manager)
to interact with target database during data processing. All necessary entity classes are
generated by the squid framework from `schema.graphql`. This is done by running `sqd codegen`
generated by the squid framework from `schema.graphql`. This is done by running `yarn codegen`
command.

NOTE: We don't directly use the `sqd codegen` command because we generate our schema.graphql file first in
the `yarn codegen` script.

### 3. Generate database migrations

All database changes are applied through migration files located at `db/migrations`.
Expand Down
File renamed without changes.
File renamed without changes.
101 changes: 0 additions & 101 deletions db/migrations/1696961254406-Data.js

This file was deleted.

Loading