-
Notifications
You must be signed in to change notification settings - Fork 18
Paul/add edge asset #207
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
Merged
Merged
Paul/add edge asset #207
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
891a40b
Refactor to use common processTx
paullinator 020317c
Include all moonpay txs
paullinator 817878c
Add EdgeAsset info for moonpay
paullinator 9cc9f60
Add EdgeAsset info for thorchain/maya
paullinator e2b79ad
Add EdgeAsset info for changenow
paullinator 0fb3c2e
Add EdgeAsset info for sideshift
paullinator de5d33f
Add EdgeAsset info for banxa
paullinator 0bd0a32
Add EdgeAsset info for godex
paullinator 4bbf029
Add EdgeAsset info for changehero
paullinator b8dfa43
Improve v3 rates logging
paullinator 8191772
Check pluginId/tokenId for updating transactions
paullinator 43b5b28
Fix ratesEngine bug
paullinator 88d6dd2
Add EdgeAsset info for letsexchange
paullinator 566e225
Add indices for pluginId/tokenId fields
paullinator 8f6a10a
Add EdgeAsset info for exolix
paullinator f4aea32
Add disablePartnerQuery feature
paullinator 12c7e1f
Use scoped logging
paullinator 27756f4
Fix rates server bookmarking
paullinator 69d59d4
Optimize rates engine
paullinator 443f96e
For a partner to run with soloPartnerId even if disabled in couch
paullinator 2c45cf4
Use semaphores for queryEngine
paullinator 7257ad4
Add EdgeAsset info for bitrefill
paullinator f3b709b
Add rango query plugin
paullinator f6dcc4b
Add max new transactions for letsexchange
paullinator 4697b0e
Add support for Binance Beacon Chain tokens for Letsexchange
paullinator b101364
Fix banxa by adding zcash.
paullinator fe07446
Add retry when writing progress cache.
paullinator 8d73046
Add opbnb to changenow
paullinator dfeb108
Add monad
paullinator be98182
Fix issue with testData.json
samholmes 9ba82bc
Fix API to use apiKey instead of appId
paullinator 6941862
Fix partner plugin logging, token normalization, and cache handling
cursoragent 233d8ba
Add scripts to patch invalid token IDs and reset USD values.
paullinator 6324d9d
Alphabetize networks
paullinator 99433bd
Add monad to changenow
paullinator bad5489
Show bitrefill error response when parsing fails
paullinator 99de886
Fix Thorchain
paullinator 31162d9
Update to use NPM instead of yarn.
paullinator 0e0e9b2
Fix MoonPay and Rango parsing.
paullinator 8db07b2
Add OPBNP chain type and chain ID
paullinator 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| npm run precommit | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ignore-scripts=true |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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.
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.
Pre-commit runs full prepare
Medium Severity
The new Husky hook runs
npm run precommit, which chains intonpm run prepare(clean, full builds,configure, andinitDbsagainst CouchDB). That turns every local commit into a full project bootstrap, so commits can fail or become very slow when CouchDB orconfig.jsonis unavailable, unlike a typical lint-only pre-commit.Reviewed by Cursor Bugbot for commit 8db07b2. Configure here.