-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(bonsai-ui): migrate positions table to abacus-ts #1375
Open
tyleroooo
wants to merge
86
commits into
main
Choose a base branch
from
tu/migrate-positions
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
86 commits
Select commit
Hold shift + click to select a range
d2f3489
abacus-ts-types
tyleroooo f887e6c
add codegen and helpers and manual types
tyleroooo 94ef1e3
Merge remote-tracking branch 'origin/main' into tu/abacus-ts-types
tyleroooo 71f8dd8
fixes
tyleroooo e0e05ff
fix
tyleroooo 6ddeb68
add websocket layer
tyleroooo 7c25ca7
fix
tyleroooo 8305f2e
fix
tyleroooo 202f169
add market tracker and helpers
tyleroooo 27acae5
fix
tyleroooo 7cd5506
fix
tyleroooo 595e1a0
bunch of fixes and refactors
tyleroooo 306b31b
fix
tyleroooo 7a85a86
Merge remote-tracking branch 'origin/main' into tu/abacus-ts-types
tyleroooo 91f1196
fix
tyleroooo 15621c1
add all new
tyleroooo d0855de
Merge remote-tracking branch 'origin/main' into tu/abacus-ts-types
tyleroooo fd1a39d
fixes
tyleroooo 0da5633
add more data
tyleroooo 3cadec2
went wild
tyleroooo 1c516a3
fixes
tyleroooo f0cfc7a
fix
tyleroooo 0198c59
move files around, fix logging
tyleroooo 6189fa1
fix
tyleroooo dcc53a8
fix
tyleroooo 75ff184
fix
tyleroooo 6856775
fix
tyleroooo 88cb956
fix
tyleroooo 4f4e061
fix
tyleroooo e965fb5
fix
tyleroooo 74f78ef
start
tyleroooo 5172c36
fix
tyleroooo 134567d
Merge branch 'tu/abacus-ts-types' into tu/abacus-ts-2
tyleroooo 5486c65
fix
tyleroooo a6fe44f
fix
tyleroooo 07ce170
Merge branch 'tu/abacus-ts-types' into tu/abacus-ts-2
tyleroooo 13e0acb
more types
tyleroooo 59a27a0
updates
tyleroooo bfc405e
fix
tyleroooo 917832c
fixes
tyleroooo 9772e4d
merge
tyleroooo 41bb0af
fix
tyleroooo e27402c
Merge branch 'tu/abacus-ts-types' into tu/abacus-ts-2
tyleroooo 73d52e8
fix
tyleroooo 2487d1d
fix horrible stupid mistake
tyleroooo a58d832
Merge branch 'tu/abacus-ts-types' into tu/abacus-ts-2
tyleroooo c419034
more calc
tyleroooo eadb0b4
fixes
tyleroooo e7d5a2a
order calculations
tyleroooo 2c7563a
fix
tyleroooo dc2500a
move stuff around
tyleroooo d1e187c
fix
tyleroooo 2bbe7af
add validator calls
tyleroooo 32beb8b
Merge branch 'tu/abacus-ts-types' into tu/abacus-ts-2
tyleroooo 4882993
fix order calcs
tyleroooo 75c9297
Merge remote-tracking branch 'origin/main' into tu/abacus-ts-types
tyleroooo 4399e36
dedupe
tyleroooo 3c7a33c
Merge remote-tracking branch 'origin/tu/abacus-ts-types' into tu/abac…
tyleroooo a226648
fix
tyleroooo 684de6b
fix
tyleroooo 5fbe076
add
tyleroooo f3ec57f
Merge remote-tracking branch 'origin/tu/abacus-ts-types' into tu/abac…
tyleroooo 517bd47
fix
tyleroooo c868496
fix
tyleroooo d628fd0
fix
tyleroooo 1a9928c
fix
tyleroooo 6e2dff3
fix
tyleroooo c52f8d0
migrate to positions table
tyleroooo 97aa59d
fix
tyleroooo 3f02331
fix
tyleroooo 2c3419d
small fix
tyleroooo bd867e9
assets, immerjs, more changes
tyleroooo 2ee4069
fix
tyleroooo 0c567b7
Merge remote-tracking branch 'origin/tu/abacus-ts-types' into tu/abac…
tyleroooo 91ff095
Merge remote-tracking branch 'origin/tu/abacus-ts-2' into tu/migrate-…
tyleroooo 730a055
fix
tyleroooo d03efed
fix
tyleroooo fcc5306
fix
tyleroooo c9b8375
fix
tyleroooo 7d7d7cb
Merge remote-tracking branch 'origin/tu/abacus-ts-types' into tu/abac…
tyleroooo 8c4e1b0
Merge remote-tracking branch 'origin/tu/abacus-ts-2' into tu/migrate-…
tyleroooo 281d112
Merge remote-tracking branch 'origin/main' into tu/migrate-positions
tyleroooo 2db49d5
fix
tyleroooo 212f323
use numb
tyleroooo 7b38400
number on portfolio
tyleroooo 1d27a79
force log
tyleroooo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { log } from '@/lib/telemetry'; | ||
|
||
export function logAbacusTsError(source: string, message: string, ...args: any[]) { | ||
log(`${source}: ${message}`, undefined, { context: args }); | ||
log(`${source}: ${message}`, undefined, { context: args }, true); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok for now. but i feel like we get this num in multiple places. might be good to move to a hook