INTEGRATOR | TX_COUNT | INTEGRATOR_FEE | LIFI_FEE | |
---|---|---|---|---|
1 | exodus | 28798 | 472386.75 | 83362.25 |
2 | phantom | 295796 | 1193770.83 | 62829.99 |
3 | safepal | 68243 | 23851.12 | 29806.83 |
4 | _ledger | 4389 | 95746.5 | 27356.14 |
5 | defiapphome | 36944 | 0.03 | 26885.21 |
6 | xportal | 5597 | 100287.76 | 23597.12 |
7 | exodusus | 11876 | 124708.76 | 22007.39 |
8 | sushi | 18811 | 51477.14 | 12869.2 |
9 | invity | 5094 | 393170.35 | 10712.74 |
10 | cdcdefi | 16244 | 46916.56 | 8796.84 |
11 | jumper.exchange | 6417 | 0 | 7083.04 |
12 | apeswap | 8763 | 34202.08 | 6035.66 |
13 | den | 45 | 418.65 | 3834.94 |
14 | zapper | 9985 | 13819.63 | 3420.45 |
15 | seif | 1009 | 33981.19 | 3077.92 |
16 | benqi | 195 | 20.71 | 2957.62 |
17 | integrator-test-123-123 | 201753 | 7844.49 | 2614.26 |
18 | test | 68 | 0 | 2313.29 |
19 | bcdc | 3091 | 5963.21 | 2288.65 |
20 | magic_eden-io-mobile | 3572 | 9632.27 | 1699.07 |
LI.FICollectedFees by Integrators
Updated 2025-05-07
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with all_txns as (
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'Arbitrum' as src_chain FROM arbitrum.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
UNION ALL
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'OP' as src_chain FROM optimism.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
UNION ALL
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'BSC' as src_chain FROM bsc.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
UNION ALL
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'BASE' as src_chain FROM base.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
UNION ALL
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'Ethereum' as src_chain FROM ethereum.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
UNION ALL
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'Polygon' as src_chain FROM polygon.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
UNION ALL
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'Gnosis' as src_chain FROM gnosis.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
UNION ALL
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'Avalanche' as src_chain FROM avalanche.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
UNION ALL
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'Blast' as src_chain FROM blast.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
UNION ALL
SELECT contract_address, event_name, block_timestamp, tx_hash, decoded_log, 'Ink' as src_chain FROM ink.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - {{past_n_days}}
),
prices as (
SELECT hour, price, decimals, symbol, iff(is_native,'0x0000000000000000000000000000000000000000', token_address) as token_address, 'Arbitrum' AS chain FROM arbitrum.price.ez_prices_hourly
UNION ALL
SELECT hour, price, decimals, symbol, iff(is_native,'0x0000000000000000000000000000000000000000', token_address) as token_address, 'OP' AS chain FROM optimism.price.ez_prices_hourly
UNION ALL
Last run: 23 days ago
...
247
7KB
512s