-
Notifications
You must be signed in to change notification settings - Fork 2
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 partner fees verification query #29
Merged
Merged
Changes from 6 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4c76bd4
add partner fees verification query
harisang 988dc79
sqlfluff ignore some lines
harisang 60e719e
add new line before eof
harisang aeea09d
add description and invoke block range query
harisang 2579c16
fix typo
harisang 5c777aa
Merge branch 'main' into add_partner_fees_verification_query
harisang da77d98
addressed review comments
harisang fc35edf
remove comment about safe
harisang a26fe3d
some renaming
harisang 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
77 changes: 77 additions & 0 deletions
77
cowprotocol/accounting/rewards/mainnet/partner_fees_query_3602560.sql
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 | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,77 @@ | ||||||||||||||||||||||||||||||||||||||||||
-- This query computes the partner fees associated with each partner in a given time interval | ||||||||||||||||||||||||||||||||||||||||||
-- | ||||||||||||||||||||||||||||||||||||||||||
-- Parameters: | ||||||||||||||||||||||||||||||||||||||||||
-- {{start_time}} - the timestamp for which the accounting should start (inclusively) | ||||||||||||||||||||||||||||||||||||||||||
-- {{end_time}} - the timestamp for which the accounting should end (exclusively) | ||||||||||||||||||||||||||||||||||||||||||
-- {{result}} - two views of the result, one aggregated and one on a per tx basis | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
with | ||||||||||||||||||||||||||||||||||||||||||
per_settlement_prelim as ( | ||||||||||||||||||||||||||||||||||||||||||
select | ||||||||||||||||||||||||||||||||||||||||||
t.block_time, | ||||||||||||||||||||||||||||||||||||||||||
t.block_number, | ||||||||||||||||||||||||||||||||||||||||||
t.order_uid, | ||||||||||||||||||||||||||||||||||||||||||
t.tx_hash, | ||||||||||||||||||||||||||||||||||||||||||
r.data.partner_fee_recipient as partner_recipient, -- noqa: RF01 | ||||||||||||||||||||||||||||||||||||||||||
t.app_data, | ||||||||||||||||||||||||||||||||||||||||||
usd_value, | ||||||||||||||||||||||||||||||||||||||||||
cast(cast(r.data.protocol_fee as varchar) as int256) as protocol_fee, -- noqa: RF01 | ||||||||||||||||||||||||||||||||||||||||||
r.data.protocol_fee_token, -- noqa: RF01 | ||||||||||||||||||||||||||||||||||||||||||
json_extract(a.encode, '$.metadata.partnerFee.bps') as patnerFeeBps, | ||||||||||||||||||||||||||||||||||||||||||
json_extract(a.encode, '$.metadata.widget.appCode') as app_code, | ||||||||||||||||||||||||||||||||||||||||||
cast( | ||||||||||||||||||||||||||||||||||||||||||
usd_value * cast( | ||||||||||||||||||||||||||||||||||||||||||
json_extract(a.encode, '$.metadata.partnerFee.bps') as double | ||||||||||||||||||||||||||||||||||||||||||
) as double | ||||||||||||||||||||||||||||||||||||||||||
) / 10000 as est_partner_revenue, | ||||||||||||||||||||||||||||||||||||||||||
harisang marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||
cast( | ||||||||||||||||||||||||||||||||||||||||||
usd_value * cast( | ||||||||||||||||||||||||||||||||||||||||||
json_extract(a.encode, '$.metadata.partnerFee.bps') as double | ||||||||||||||||||||||||||||||||||||||||||
) as double | ||||||||||||||||||||||||||||||||||||||||||
) / 10000 * 0.15 as est_cow_revenue, | ||||||||||||||||||||||||||||||||||||||||||
harisang marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||
cast( | ||||||||||||||||||||||||||||||||||||||||||
cast( | ||||||||||||||||||||||||||||||||||||||||||
coalesce(r.data.partner_fee, r.data.protocol_fee) as varchar -- noqa: RF01 | ||||||||||||||||||||||||||||||||||||||||||
) as int256 | ||||||||||||||||||||||||||||||||||||||||||
) * r.data.protocol_fee_native_price / pow(10, 18) as raw_integrator_fee_in_eth -- noqa: RF01 | ||||||||||||||||||||||||||||||||||||||||||
from | ||||||||||||||||||||||||||||||||||||||||||
cow_protocol_ethereum.trades as t | ||||||||||||||||||||||||||||||||||||||||||
left join dune.cowprotocol.dataset_app_data_mainnet as a on t.app_data = a.contract_app_data | ||||||||||||||||||||||||||||||||||||||||||
left join cowswap.raw_order_rewards as r | ||||||||||||||||||||||||||||||||||||||||||
on | ||||||||||||||||||||||||||||||||||||||||||
r.order_uid = cast(t.order_uid as varchar) | ||||||||||||||||||||||||||||||||||||||||||
and t.tx_hash = from_hex(r.tx_hash) | ||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||
json_extract(a.encode, '$.metadata.partnerFee.recipient') is not null | ||||||||||||||||||||||||||||||||||||||||||
and t.block_number >= (select start_block from "query_3333356(start_time='{{start_time}}',end_time='{{end_time}}')") | ||||||||||||||||||||||||||||||||||||||||||
and t.block_number < (select end_block from "query_3333356(start_time='{{start_time}}',end_time='{{end_time}}')") | ||||||||||||||||||||||||||||||||||||||||||
harisang marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||
order by | ||||||||||||||||||||||||||||||||||||||||||
t.block_time desc | ||||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
per_settlement as ( | ||||||||||||||||||||||||||||||||||||||||||
select * | ||||||||||||||||||||||||||||||||||||||||||
from | ||||||||||||||||||||||||||||||||||||||||||
per_settlement_prelim | ||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||
raw_integrator_fee_in_eth > 0 | ||||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To get a per settlement value you would probably need
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
aggregate_per_recipient as ( | ||||||||||||||||||||||||||||||||||||||||||
fhenneke marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||
select | ||||||||||||||||||||||||||||||||||||||||||
partner_recipient, | ||||||||||||||||||||||||||||||||||||||||||
case | ||||||||||||||||||||||||||||||||||||||||||
when partner_recipient = '0x63695Eee2c3141BDE314C5a6f89B98E62808d716' then sum(0.9 * raw_integrator_fee_in_eth) -- this is for the Safe integration | ||||||||||||||||||||||||||||||||||||||||||
harisang marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||
else sum(0.85 * raw_integrator_fee_in_eth) | ||||||||||||||||||||||||||||||||||||||||||
end as partner_fee_part, | ||||||||||||||||||||||||||||||||||||||||||
case | ||||||||||||||||||||||||||||||||||||||||||
when partner_recipient = '0x63695Eee2c3141BDE314C5a6f89B98E62808d716' then sum(0.1 * raw_integrator_fee_in_eth) -- this is for the Safe integratio | ||||||||||||||||||||||||||||||||||||||||||
else sum(0.15 * raw_integrator_fee_in_eth) | ||||||||||||||||||||||||||||||||||||||||||
end as cow_dao_partner_fee_part | ||||||||||||||||||||||||||||||||||||||||||
from | ||||||||||||||||||||||||||||||||||||||||||
per_settlement | ||||||||||||||||||||||||||||||||||||||||||
group by | ||||||||||||||||||||||||||||||||||||||||||
partner_recipient | ||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
select * from {{result}} |
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.
this is probably not per settlement but per trade
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.
Good point. I did rename some of the tables. Let me know what you think.