Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
fcaa6eb
- reorganization
apexearth Sep 14, 2023
1bc2895
work on tracking token balances
apexearth Sep 15, 2023
8e011bc
handle rebaseOptIn and rebaseOptOut
apexearth Sep 15, 2023
5d21f55
FraxStaking
apexearth Sep 15, 2023
1c12098
FraxStaking
apexearth Sep 15, 2023
baab269
reorganize everything
apexearth Sep 16, 2023
f21fbac
Add MorphoAave and Dripper
apexearth Sep 16, 2023
16ee7d5
Add MorphoAave and Dripper
apexearth Sep 16, 2023
a14a992
optimize and simplify
apexearth Sep 16, 2023
29f398e
optimize and simplify
apexearth Sep 16, 2023
08cecc1
debug underflow issue
apexearth Sep 16, 2023
95b16ff
fix
apexearth Sep 16, 2023
b561856
fix
apexearth Sep 16, 2023
ebe4c66
use `.prettierrc`
apexearth Sep 18, 2023
245386f
add & run prettier scripts
apexearth Sep 18, 2023
16cf512
define the `from` in each of our sub processors
apexearth Sep 18, 2023
0ca299a
work on curve lp token
apexearth Sep 19, 2023
ad77399
accurate curve lp numbers
apexearth Sep 19, 2023
526de24
accurate curve lp numbers
apexearth Sep 19, 2023
75c39ec
compile the multiple financial statement components into FinancialSta…
apexearth Sep 19, 2023
c2edd2e
change how eth value is calculated in vault
apexearth Sep 19, 2023
65e9043
use enums instead of strings
apexearth Sep 19, 2023
d5988f9
fix stETH value by pulling the balance when rebases occur
apexearth Sep 20, 2023
f026261
update squid version and getLatest > getLatestEntity
apexearth Sep 25, 2023
6921157
fix which eth balance vault is looking at
apexearth Sep 26, 2023
00230d0
remove eth from vault and add OETH object to track OETH total supply …
apexearth Sep 27, 2023
fd13ea5
fix
apexearth Sep 27, 2023
d632882
fix
apexearth Sep 27, 2023
e880d51
missed
apexearth Sep 27, 2023
c1edb0f
attempt to fix, but still no good
apexearth Sep 27, 2023
c2f2fed
remove FinancialStatement and defer logic to the view
apexearth Sep 27, 2023
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
13 changes: 10 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"importOrder": ["^@core/(.*)$", "^@server/(.*)$", "^@ui/(.*)$", "^[./]"],
"semi": false,
"importOrder": [
"^@core/(.*)$",
"^@server/(.*)$",
"^@ui/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"plugins": ["@trivago/prettier-plugin-sort-imports"]
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
}
Loading