-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add Fee Adapter for total fees for LogX #2534
base: master
Are you sure you want to change the base?
Conversation
The logx adapter exports:
|
The logx adapter exports:
|
fees/logx/index.ts
Outdated
).toString(); | ||
|
||
return { | ||
totalFees: totalFees, |
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.
could you add dailyVolume
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.
We already have adaptor for that here which was merged
https://github.com/DefiLlama/dimension-adapters/blob/master/dexs/logx/index.ts
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.
sorry I mean dailyFees
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.
are you handle washtrading already ?
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.
Addressing wash trading is crucial for data accuracy.
Currently, the adapter does not filter out wash trading.
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.
To prevent wash trading and ensure fair trading practices, we have implemented the following measures:
-
Reward Slashing – Any rewards linked to wash trading are automatically slashed, thereby disincentivizing users against manipulation.
-
Solver-Based Liquidity Aggregation – Our solver model sources liquidity from top centralized exchanges and applies a 0.05% fee on every order (limit or market both). Therefore like traditional orderbooks where users can take market and limit orders both side to wash trade, in LogX it is not possible to do it without paying fees to the platform hence making wash trading impractical.
-
Fee Redistribution – All net fees are redistributed to stakers via a buyback and distribute mechanism. More details: Buyback Machine.
Let us know if any additional details are needed to get this through.
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.
Have added daily fees as well @0xy0k
The logx adapter exports:
|
No description provided.