Skip to content

fix(genius-protocol): swallow transient errors to prevent failed day …#6288

Closed
brihu23 wants to merge 2 commits intoDefiLlama:masterfrom
Shuttle-Labs:master
Closed

fix(genius-protocol): swallow transient errors to prevent failed day …#6288
brihu23 wants to merge 2 commits intoDefiLlama:masterfrom
Shuttle-Labs:master

Conversation

@brihu23
Copy link
Copy Markdown
Contributor

@brihu23 brihu23 commented Mar 28, 2026

…fetches

  • fees: wrap getETHReceived and getSolanaReceived in try/catch so Allium timeouts/errors dont

NOTE

Please enable "Allow edits by maintainers" while putting up the PR.


  • If you would like to add a tvl adapter please submit the PR here.
  1. Once your adapter has been merged, it takes time to show on the UI. If more than 24 hours have passed, please let us know in Discord.
  2. Please fill the form below only if the PR is for listing a new protocol else it can be ignored/replaced with reason/details about the PR
  3. For updating listing info It is a different repo, you can find your listing in this file: https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/data4.ts, you can edit it there and put up a PR
  4. Do not edit/push package.json/package-lock.json file as part of your changes
  5. No need to go to our discord/other channel and announce that you've created a PR, we monitor all PRs and will review it asap

Name (to be shown on DefiLlama):
Twitter Link:
List of audit links if any:
Website Link:
Logo (High resolution, will be shown with rounded borders):
Current TVL:
Treasury Addresses (if the protocol has treasury)
Chain:
Coingecko ID (so your TVL can appear on Coingecko, leave empty if not listed): (https://api.coingecko.com/api/v3/coins/list)
Coinmarketcap ID (so your TVL can appear on Coinmarketcap, leave empty if not listed): (https://api.coinmarketcap.com/data-api/v3/map/all?listing_status=active,inactive,untracked&start=1&limit=10000)
Short Description (to be shown on DefiLlama):
Token address and ticker if any:
Category (full list at https://defillama.com/categories) *Please choose only one:
Oracle Provider(s): Specify the oracle(s) used (e.g., Chainlink, Band, API3, TWAP, etc.):
Implementation Details: Briefly describe how the oracle is integrated into your project:
Documentation/Proof: Provide links to documentation or any other resources that verify the oracle's usage:
forkedFrom (Does your project originate from another project):
methodology (what is being counted as tvl, how is tvl being calculated):
Github org/user (Optional, if your code is open source, we can track activity):
Does this project have a referral program?

Summary by CodeRabbit

  • Bug Fixes
    • Enhanced error handling for data fetching operations. The system now gracefully manages failures when retrieving fee and volume data, logging warnings instead of interrupting service. This improves overall application stability and reliability.

…fetches

  - fees: wrap getETHReceived and getSolanaReceived in try/catch so Allium
    timeouts/errors dont
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Mar 28, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 20f10da3-9c7e-4078-b62c-e54ebb577933

📥 Commits

Reviewing files that changed from the base of the PR and between 8ddbc2b and d7d3d5c.

📒 Files selected for processing (2)
  • dexs/genius-protocol/index.ts
  • fees/genius-protocol/index.ts

📝 Walkthrough

Walkthrough

Error handling enhancements added to two genius-protocol modules. The dexs module's prefetch function now catches fetchURL exceptions and logs warnings, returning null on failure. The fees module's native inflow retrieval functions in fetchEVM and fetchSolana now catch exceptions during inflow collection and log warnings instead of propagating errors.

Changes

Cohort / File(s) Summary
Dexs Module Error Handling
dexs/genius-protocol/index.ts
Wrapped fetchURL call in prefetch with try/catch; logs [genius-protocol] warning with dateString and error message on failure, returns null instead of throwing.
Fees Module Native Inflow Resilience
fees/genius-protocol/index.ts
Added try/catch blocks around getETHReceived() in fetchEVM and getSolanaReceived() in fetchSolana; exceptions logged as warnings indicating native inflows were skipped, functions continue returning fee data.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~15 minutes

Poem

🐰 A rabbit hops through error zones,
Catching falls with gentle moans,
No more crashes, just a warn,
The protocol, now gracefully born!
Try and catch, we gently cope,
Genius code with stronger hope! 🌟

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main change: adding error handling (swallowing transient errors) to prevent failed day fetches for the genius-protocol adapter.
Description check ✅ Passed The description includes a brief explanation of the purpose and specific changes, but the rest of the pull request template is left blank/unused since this is a bug fix, not a new protocol listing.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@llamabutler
Copy link
Copy Markdown

The genius-protocol adapter exports:

> adapters@1.0.0 test
> ts-node --transpile-only cli/testAdapter.ts dexs genius-protocol

🦙 Running GENIUS-PROTOCOL adapter 🦙
---------------------------------------------------
Start Date:	Fri, 27 Mar 2026 00:00:00 GMT
End Date:	Sat, 28 Mar 2026 00:00:00 GMT
---------------------------------------------------

chain       | Daily volume | Start Time
---         | ---          | ---       
ethereum    | 1.58 k       | 1/1/2026  
optimism    | 3.58 M       | 1/1/2026  
bsc         | 51.73 M      | 1/1/2026  
polygon     | 4.13 k       | 1/1/2026  
sonic       | 1.05 k       | 1/1/2026  
hyperliquid | 0.00         | 1/1/2026  
base        | 314.14 k     | 1/1/2026  
arbitrum    | 452.23 k     | 1/1/2026  
avax        | 10.29 k      | 1/1/2026  
solana      | 2.35 M       | 1/1/2026  
Aggregate   | 58.44 M      |           

@llamabutler
Copy link
Copy Markdown

The genius-protocol adapter exports:

> adapters@1.0.0 test
> ts-node --transpile-only cli/testAdapter.ts fees genius-protocol

🦙 Running GENIUS-PROTOCOL adapter 🦙
---------------------------------------------------
Start Date:	Fri, 27 Mar 2026 19:00:00 GMT
End Date:	Sat, 28 Mar 2026 19:00:00 GMT
---------------------------------------------------

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Slice 0:
Start Date:	Fri, 27 Mar 2026 19:00:00 GMT
End Date:	Fri, 27 Mar 2026 20:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 0.00       | 0.00          | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 1.00       | 1.00          | 1/1/2026  
optimism    | 62.00      | 62.00         | 1/1/2026  
base        | 4.00       | 4.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 67.00      | 67.00         |           

Slice 1:
Start Date:	Fri, 27 Mar 2026 20:00:00 GMT
End Date:	Fri, 27 Mar 2026 21:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 928.00     | 928.00        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 1.00       | 1.00          | 1/1/2026  
optimism    | 29.00      | 29.00         | 1/1/2026  
base        | 0.00       | 0.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 958.00     | 958.00        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 2:
Start Date:	Fri, 27 Mar 2026 21:00:00 GMT
End Date:	Fri, 27 Mar 2026 22:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 164.00     | 164.00        | 1/1/2026  
polygon     | 2.00       | 2.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 2.00       | 2.00          | 1/1/2026  
optimism    | 2.00       | 2.00          | 1/1/2026  
base        | 2.00       | 2.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 172.00     | 172.00        |           

Slice 3:
Start Date:	Fri, 27 Mar 2026 22:00:00 GMT
End Date:	Fri, 27 Mar 2026 23:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 16.00      | 16.00         | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 13.00      | 13.00         | 1/1/2026  
optimism    | 1.00       | 1.00          | 1/1/2026  
base        | 1.00       | 1.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 31.00      | 31.00         |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 4:
Start Date:	Fri, 27 Mar 2026 23:00:00 GMT
End Date:	Sat, 28 Mar 2026 00:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 55.00      | 55.00         | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 1.00       | 1.00          | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 0.00       | 0.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 56.00      | 56.00         |           

Slice 5:
Start Date:	Sat, 28 Mar 2026 00:00:00 GMT
End Date:	Sat, 28 Mar 2026 01:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 207.00     | 207.00        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 1.00       | 1.00          | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 1.00       | 1.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 209.00     | 209.00        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 6:
Start Date:	Sat, 28 Mar 2026 01:00:00 GMT
End Date:	Sat, 28 Mar 2026 02:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 351.00     | 351.00        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 28.00      | 28.00         | 1/1/2026  
optimism    | 321.00     | 321.00        | 1/1/2026  
base        | 1.00       | 1.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 701.00     | 701.00        |           

Slice 7:
Start Date:	Sat, 28 Mar 2026 02:00:00 GMT
End Date:	Sat, 28 Mar 2026 03:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 1.44 k     | 1.44 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 0.00       | 0.00          | 1/1/2026  
optimism    | 277.00     | 277.00        | 1/1/2026  
base        | 7.00       | 7.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 1.73 k     | 1.73 k        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 8:
Start Date:	Sat, 28 Mar 2026 03:00:00 GMT
End Date:	Sat, 28 Mar 2026 04:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 2.00       | 2.00          | 1/1/2026  
bsc         | 2.05 k     | 2.05 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 1.00       | 1.00          | 1/1/2026  
optimism    | 36.00      | 36.00         | 1/1/2026  
base        | 6.00       | 6.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 2.10 k     | 2.10 k        |           

Slice 9:
Start Date:	Sat, 28 Mar 2026 04:00:00 GMT
End Date:	Sat, 28 Mar 2026 05:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 2.38 k     | 2.38 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 16.00      | 16.00         | 1/1/2026  
optimism    | 168.00     | 168.00        | 1/1/2026  
base        | 11.00      | 11.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 2.57 k     | 2.57 k        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 10:
Start Date:	Sat, 28 Mar 2026 05:00:00 GMT
End Date:	Sat, 28 Mar 2026 06:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 3.28 k     | 3.28 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 4.00       | 4.00          | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 7.00       | 7.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 3.29 k     | 3.29 k        |           

Slice 11:
Start Date:	Sat, 28 Mar 2026 06:00:00 GMT
End Date:	Sat, 28 Mar 2026 07:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 8.72 k     | 8.72 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 2.00       | 2.00          | 1/1/2026  
optimism    | 38.00      | 38.00         | 1/1/2026  
base        | 7.00       | 7.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 8.77 k     | 8.77 k        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 12:
Start Date:	Sat, 28 Mar 2026 07:00:00 GMT
End Date:	Sat, 28 Mar 2026 08:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 1.00       | 1.00          | 1/1/2026  
bsc         | 6.11 k     | 6.11 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 5.00       | 5.00          | 1/1/2026  
optimism    | 37.00      | 37.00         | 1/1/2026  
base        | 5.00       | 5.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 6.15 k     | 6.15 k        |           

Slice 13:
Start Date:	Sat, 28 Mar 2026 08:00:00 GMT
End Date:	Sat, 28 Mar 2026 09:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 7.30 k     | 7.30 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 138.00     | 138.00        | 1/1/2026  
optimism    | 461.00     | 461.00        | 1/1/2026  
base        | 1.00       | 1.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 7.90 k     | 7.90 k        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 14:
Start Date:	Sat, 28 Mar 2026 09:00:00 GMT
End Date:	Sat, 28 Mar 2026 10:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 2.70 k     | 2.70 k        | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 1.44 k     | 1.44 k        | 1/1/2026  
optimism    | 45.00      | 45.00         | 1/1/2026  
base        | 1.00       | 1.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 4.18 k     | 4.18 k        |           

Slice 15:
Start Date:	Sat, 28 Mar 2026 10:00:00 GMT
End Date:	Sat, 28 Mar 2026 11:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 3.75 k     | 3.75 k        | 1/1/2026  
polygon     | 3.00       | 3.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 289.00     | 289.00        | 1/1/2026  
optimism    | 64.00      | 64.00         | 1/1/2026  
base        | 4.00       | 4.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 4.11 k     | 4.11 k        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Slice 16:
Start Date:	Sat, 28 Mar 2026 11:00:00 GMT
End Date:	Sat, 28 Mar 2026 12:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 0.00       | 0.00          | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 1.00       | 1.00          | 1/1/2026  
optimism    | 1.00       | 1.00          | 1/1/2026  
base        | 5.00       | 5.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 8.00       | 8.00          |           

Slice 17:
Start Date:	Sat, 28 Mar 2026 12:00:00 GMT
End Date:	Sat, 28 Mar 2026 13:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 15.56 k    | 15.56 k       | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 2.00       | 2.00          | 1/1/2026  
optimism    | 188.00     | 188.00        | 1/1/2026  
base        | 12.00      | 12.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 15.77 k    | 15.77 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 18:
Start Date:	Sat, 28 Mar 2026 13:00:00 GMT
End Date:	Sat, 28 Mar 2026 14:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 8.76 k     | 8.76 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 723.00     | 723.00        | 1/1/2026  
optimism    | 13.00      | 13.00         | 1/1/2026  
base        | 27.00      | 27.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 9.52 k     | 9.52 k        |           

Slice 19:
Start Date:	Sat, 28 Mar 2026 14:00:00 GMT
End Date:	Sat, 28 Mar 2026 15:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 3.07 k     | 3.07 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 4.00       | 4.00          | 1/1/2026  
optimism    | 116.00     | 116.00        | 1/1/2026  
base        | 7.00       | 7.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 3.19 k     | 3.19 k        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 20:
Start Date:	Sat, 28 Mar 2026 15:00:00 GMT
End Date:	Sat, 28 Mar 2026 16:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 13.77 k    | 13.77 k       | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 2.00       | 2.00          | 1/1/2026  
optimism    | 59.00      | 59.00         | 1/1/2026  
base        | 12.00      | 12.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 13.84 k    | 13.84 k       |           

Slice 21:
Start Date:	Sat, 28 Mar 2026 16:00:00 GMT
End Date:	Sat, 28 Mar 2026 17:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 10.07 k    | 10.07 k       | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 14.00      | 14.00         | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 9.00       | 9.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 10.10 k    | 10.10 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 22:
Start Date:	Sat, 28 Mar 2026 17:00:00 GMT
End Date:	Sat, 28 Mar 2026 18:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 1.00       | 1.00          | 1/1/2026  
bsc         | 2.91 k     | 2.91 k        | 1/1/2026  
polygon     | 15.00      | 15.00         | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 44.00      | 44.00         | 1/1/2026  
optimism    | 34.00      | 34.00         | 1/1/2026  
base        | 4.00       | 4.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 3.01 k     | 3.01 k        |           

Slice 23:
Start Date:	Sat, 28 Mar 2026 18:00:00 GMT
End Date:	Sat, 28 Mar 2026 19:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 2.64 k     | 2.64 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 39.00      | 39.00         | 1/1/2026  
optimism    | 40.00      | 40.00         | 1/1/2026  
base        | 1.00       | 1.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 2.72 k     | 2.72 k        |           


====== TOTAL DAILY AGGREGATED (sum of slots per chain) ======

chain       | Daily fees | Daily revenue
---         | ---        | ---          
ethereum    | 4.00       | 4.00         
bsc         | 96.24 k    | 96.24 k      
polygon     | 23.00      | 23.00        
avax        | 0.00       | 0.00         
arbitrum    | 2.77 k     | 2.77 k       
optimism    | 1.99 k     | 1.99 k       
base        | 135.00     | 135.00       
sonic       | 0.00       | 0.00         
hyperliquid | 0.00       | 0.00         
solana      | 0.00       | 0.00         
Aggregate   | 101.17 k   | 101.17 k     

@bheluga bheluga self-assigned this Mar 29, 2026
Copy link
Copy Markdown
Member

@bheluga bheluga left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@brihu23 thanks for the PR.
Its ok for errors to be thrown as we get notification on failure, if we catch errors it would get ignored.
Also wrt allium errors, we have API key in prod, so this error isnt an issue
Let me know if your intention was something else

@brihu23
Copy link
Copy Markdown
Contributor Author

brihu23 commented Mar 29, 2026

Captura de pantalla 2026-03-29 a la(s) 11 07 17 a m Captura de pantalla 2026-03-29 a la(s) 11 07 29 a m Hi @bheluga, thank you! We have a few missing days this last month on fees + volume and were aiming to start the data from ~Jan 10th. What would you suggest is the best way to resolve this? Thank you!

@bheluga
Copy link
Copy Markdown
Member

bheluga commented Mar 29, 2026

Captura de pantalla 2026-03-29 a la(s) 11 07 17 a m Captura de pantalla 2026-03-29 a la(s) 11 07 29 a m Hi @bheluga, thank you! We have a few missing days this last month on fees + volume and were aiming to start the data from ~Jan 10th. What would you suggest is the best way to resolve this? Thank you!

@brihu23 I ll refill, but how do you have 2B in volume on 21st Jan with 1B + on BSC alone?

@brihu23
Copy link
Copy Markdown
Contributor Author

brihu23 commented Mar 29, 2026

@bheluga We had a 0 fees promo during that period and were about to turn on fees so people were using platform heavily to get last bit of free points

https://dune.com/geniusterminal/geniusdata
Captura de pantalla 2026-03-29 a la(s) 12 47 36 p m
there was a strong and immediate drop off after fees were introduced 😅 - which was kicked off by this - https://x.com/GeniusTerminal/status/2011081231497048421 - happy to jump on quick call to verify data if helpful!

https://www.theblock.co/post/385366/yzi-labs-invests-genius-trading-cz-advisor

@bheluga
Copy link
Copy Markdown
Member

bheluga commented Mar 29, 2026

@bheluga We had a 0 fees promo during that period and were about to turn on fees so people were using platform heavily to get last bit of free points

https://dune.com/geniusterminal/geniusdata Captura de pantalla 2026-03-29 a la(s) 12 47 36 p m there was a strong and immediate drop off after fees were introduced 😅 - which was kicked off by this - https://x.com/GeniusTerminal/status/2011081231497048421 - happy to jump on quick call to verify data if helpful!

https://www.theblock.co/post/385366/yzi-labs-invests-genius-trading-cz-advisor

Well, if you can query volume onchain, that would be much better as it would be highly transparent over api.
Would appreciate a PR

@brihu23
Copy link
Copy Markdown
Contributor Author

brihu23 commented Mar 30, 2026

Hi @bheluga, we'll be deploying a router shortly that should help with this!
image
For the fees however, we are fully on-chain but still have a few missing days - any ideas around this?

@llamabutler
Copy link
Copy Markdown

The genius-protocol adapter exports:

> adapters@1.0.0 test
> ts-node --transpile-only cli/testAdapter.ts dexs genius-protocol

🦙 Running GENIUS-PROTOCOL adapter 🦙
---------------------------------------------------
Start Date:	Sun, 29 Mar 2026 00:00:00 GMT
End Date:	Mon, 30 Mar 2026 00:00:00 GMT
---------------------------------------------------

chain       | Daily volume | Start Time
---         | ---          | ---       
ethereum    | 1.43 k       | 1/1/2026  
optimism    | 2.93 M       | 1/1/2026  
bsc         | 146.74 M     | 1/1/2026  
polygon     | 12.84 k      | 1/1/2026  
sonic       | 4.22 k       | 1/1/2026  
hyperliquid | 99.00        | 1/1/2026  
base        | 520.68 k     | 1/1/2026  
arbitrum    | 1.33 M       | 1/1/2026  
avax        | 685.00       | 1/1/2026  
solana      | 1.94 M       | 1/1/2026  
Aggregate   | 153.48 M     |           

@llamabutler
Copy link
Copy Markdown

The genius-protocol adapter exports:

> adapters@1.0.0 test
> ts-node --transpile-only cli/testAdapter.ts fees genius-protocol

🦙 Running GENIUS-PROTOCOL adapter 🦙
---------------------------------------------------
Start Date:	Sun, 29 Mar 2026 16:00:00 GMT
End Date:	Mon, 30 Mar 2026 16:00:00 GMT
---------------------------------------------------

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 0:
Start Date:	Sun, 29 Mar 2026 16:00:00 GMT
End Date:	Sun, 29 Mar 2026 17:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 11.01 k    | 11.01 k       | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 2.00       | 2.00          | 1/1/2026  
optimism    | 232.00     | 232.00        | 1/1/2026  
base        | 8.00       | 8.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 11.25 k    | 11.25 k       |           

Slice 1:
Start Date:	Sun, 29 Mar 2026 17:00:00 GMT
End Date:	Sun, 29 Mar 2026 18:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 11.07 k    | 11.07 k       | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 15.00      | 15.00         | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 1.00       | 1.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 11.09 k    | 11.09 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 2:
Start Date:	Sun, 29 Mar 2026 18:00:00 GMT
End Date:	Sun, 29 Mar 2026 19:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 4.76 k     | 4.76 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 13.00      | 13.00         | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 1.00       | 1.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 4.77 k     | 4.77 k        |           

Slice 3:
Start Date:	Sun, 29 Mar 2026 19:00:00 GMT
End Date:	Sun, 29 Mar 2026 20:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 10.49 k    | 10.49 k       | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 5.00       | 5.00          | 1/1/2026  
optimism    | 323.00     | 323.00        | 1/1/2026  
base        | 1.00       | 1.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 10.82 k    | 10.82 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 4:
Start Date:	Sun, 29 Mar 2026 20:00:00 GMT
End Date:	Sun, 29 Mar 2026 21:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 6.22 k     | 6.22 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 0.00       | 0.00          | 1/1/2026  
optimism    | 50.00      | 50.00         | 1/1/2026  
base        | 2.00       | 2.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 6.27 k     | 6.27 k        |           

Slice 5:
Start Date:	Sun, 29 Mar 2026 21:00:00 GMT
End Date:	Sun, 29 Mar 2026 22:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 1.69 k     | 1.69 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 0.00       | 0.00          | 1/1/2026  
optimism    | 68.00      | 68.00         | 1/1/2026  
base        | 8.00       | 8.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 1.77 k     | 1.77 k        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 6:
Start Date:	Sun, 29 Mar 2026 22:00:00 GMT
End Date:	Sun, 29 Mar 2026 23:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 1.17 k     | 1.17 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 6.00       | 6.00          | 1/1/2026  
optimism    | 3.00       | 3.00          | 1/1/2026  
base        | 22.00      | 22.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 1.20 k     | 1.20 k        |           

Slice 7:
Start Date:	Sun, 29 Mar 2026 23:00:00 GMT
End Date:	Mon, 30 Mar 2026 00:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 1.13 k     | 1.13 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 6.00       | 6.00          | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 22.00      | 22.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 1.15 k     | 1.15 k        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Slice 8:
Start Date:	Mon, 30 Mar 2026 00:00:00 GMT
End Date:	Mon, 30 Mar 2026 01:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 247.00     | 247.00        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 8.00       | 8.00          | 1/1/2026  
optimism    | 1.00       | 1.00          | 1/1/2026  
base        | 8.00       | 8.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 264.00     | 264.00        |           

Slice 9:
Start Date:	Mon, 30 Mar 2026 01:00:00 GMT
End Date:	Mon, 30 Mar 2026 02:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 3.06 k     | 3.06 k        | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 4.00       | 4.00          | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 7.00       | 7.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 3.08 k     | 3.08 k        |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 10:
Start Date:	Mon, 30 Mar 2026 02:00:00 GMT
End Date:	Mon, 30 Mar 2026 03:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 18.88 k    | 18.88 k       | 1/1/2026  
polygon     | 5.00       | 5.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 0.00       | 0.00          | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 9.00       | 9.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 18.89 k    | 18.89 k       |           

Slice 11:
Start Date:	Mon, 30 Mar 2026 03:00:00 GMT
End Date:	Mon, 30 Mar 2026 04:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 40.60 k    | 40.60 k       | 1/1/2026  
polygon     | 6.00       | 6.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 23.00      | 23.00         | 1/1/2026  
optimism    | 3.00       | 3.00          | 1/1/2026  
base        | 34.00      | 34.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 40.67 k    | 40.67 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Slice 12:
Start Date:	Mon, 30 Mar 2026 04:00:00 GMT
End Date:	Mon, 30 Mar 2026 05:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 23.24 k    | 23.24 k       | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 6.00       | 6.00          | 1/1/2026  
optimism    | 99.00      | 99.00         | 1/1/2026  
base        | 34.00      | 34.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 23.38 k    | 23.38 k       |           

Slice 13:
Start Date:	Mon, 30 Mar 2026 05:00:00 GMT
End Date:	Mon, 30 Mar 2026 06:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 20.20 k    | 20.20 k       | 1/1/2026  
polygon     | 2.00       | 2.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 12.00      | 12.00         | 1/1/2026  
optimism    | 3.00       | 3.00          | 1/1/2026  
base        | 28.00      | 28.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 20.25 k    | 20.25 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Slice 14:
Start Date:	Mon, 30 Mar 2026 06:00:00 GMT
End Date:	Mon, 30 Mar 2026 07:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 51.31 k    | 51.31 k       | 1/1/2026  
polygon     | 2.00       | 2.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 16.00      | 16.00         | 1/1/2026  
optimism    | 116.00     | 116.00        | 1/1/2026  
base        | 12.00      | 12.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 51.45 k    | 51.45 k       |           

Slice 15:
Start Date:	Mon, 30 Mar 2026 07:00:00 GMT
End Date:	Mon, 30 Mar 2026 08:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 42.30 k    | 42.30 k       | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 8.00       | 8.00          | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 13.00      | 13.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 42.32 k    | 42.32 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Slice 16:
Start Date:	Mon, 30 Mar 2026 08:00:00 GMT
End Date:	Mon, 30 Mar 2026 09:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 29.67 k    | 29.67 k       | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 20.00      | 20.00         | 1/1/2026  
optimism    | 0.00       | 0.00          | 1/1/2026  
base        | 9.00       | 9.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 29.70 k    | 29.70 k       |           

Slice 17:
Start Date:	Mon, 30 Mar 2026 09:00:00 GMT
End Date:	Mon, 30 Mar 2026 10:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 2.00       | 2.00          | 1/1/2026  
bsc         | 19.82 k    | 19.82 k       | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 11.00      | 11.00         | 1/1/2026  
optimism    | 520.00     | 520.00        | 1/1/2026  
base        | 8.00       | 8.00          | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 20.36 k    | 20.36 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Slice 18:
Start Date:	Mon, 30 Mar 2026 10:00:00 GMT
End Date:	Mon, 30 Mar 2026 11:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 24.61 k    | 24.61 k       | 1/1/2026  
polygon     | 2.00       | 2.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 2.00       | 2.00          | 1/1/2026  
optimism    | 472.00     | 472.00        | 1/1/2026  
base        | 20.00      | 20.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 25.10 k    | 25.10 k       |           

Slice 19:
Start Date:	Mon, 30 Mar 2026 11:00:00 GMT
End Date:	Mon, 30 Mar 2026 12:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 26.04 k    | 26.04 k       | 1/1/2026  
polygon     | 0.00       | 0.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 2.00       | 2.00          | 1/1/2026  
optimism    | 483.00     | 483.00        | 1/1/2026  
base        | 30.00      | 30.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 26.55 k    | 26.55 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Slice 20:
Start Date:	Mon, 30 Mar 2026 12:00:00 GMT
End Date:	Mon, 30 Mar 2026 13:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 29.19 k    | 29.19 k       | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 13.00      | 13.00         | 1/1/2026  
optimism    | 2.31 k     | 2.31 k        | 1/1/2026  
base        | 22.00      | 22.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 31.54 k    | 31.54 k       |           

Slice 21:
Start Date:	Mon, 30 Mar 2026 13:00:00 GMT
End Date:	Mon, 30 Mar 2026 14:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 33.74 k    | 33.74 k       | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 23.00      | 23.00         | 1/1/2026  
optimism    | 216.00     | 216.00        | 1/1/2026  
base        | 28.00      | 28.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 34.01 k    | 34.01 k       |           

[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (solana): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs optimism Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs sonic Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs avax Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs bsc Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (optimism): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (sonic): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs polygon Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs hyperliquid Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs ethereum Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (ethereum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (polygon): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs arbitrum Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (avax): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (arbitrum): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (bsc): Allium API Key is required[Ignore this error for github bot]
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
Token transfers: Failed to use indexer, falling back to logs base Llama Indexer URL/api key is not set
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
[genius-protocol] native inflows skipped (base): Allium API Key is required[Ignore this error for github bot]
Slice 22:
Start Date:	Mon, 30 Mar 2026 14:00:00 GMT
End Date:	Mon, 30 Mar 2026 15:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 25.95 k    | 25.95 k       | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 47.00      | 47.00         | 1/1/2026  
optimism    | 564.00     | 564.00        | 1/1/2026  
base        | 49.00      | 49.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 26.61 k    | 26.61 k       |           

Slice 23:
Start Date:	Mon, 30 Mar 2026 15:00:00 GMT
End Date:	Mon, 30 Mar 2026 16:00:00 GMT
---------------------------------------------------

chain       | Daily fees | Daily revenue | Start Time
---         | ---        | ---           | ---       
ethereum    | 0.00       | 0.00          | 1/1/2026  
bsc         | 20.37 k    | 20.37 k       | 1/1/2026  
polygon     | 1.00       | 1.00          | 1/1/2026  
avax        | 0.00       | 0.00          | 1/1/2026  
arbitrum    | 21.00      | 21.00         | 1/1/2026  
optimism    | 1.52 k     | 1.52 k        | 1/1/2026  
base        | 15.00      | 15.00         | 1/1/2026  
sonic       | 0.00       | 0.00          | 1/1/2026  
hyperliquid | 0.00       | 0.00          | 1/1/2026  
solana      | 0.00       | 0.00          | 1/1/2026  
Aggregate   | 21.93 k    | 21.93 k       |           


====== TOTAL DAILY AGGREGATED (sum of slots per chain) ======

chain       | Daily fees | Daily revenue
---         | ---        | ---          
ethereum    | 2.00       | 2.00         
bsc         | 456.76 k   | 456.76 k     
polygon     | 24.00      | 24.00        
avax        | 0.00       | 0.00         
arbitrum    | 263.00     | 263.00       
optimism    | 6.98 k     | 6.98 k       
base        | 391.00     | 391.00       
sonic       | 0.00       | 0.00         
hyperliquid | 0.00       | 0.00         
solana      | 0.00       | 0.00         
Aggregate   | 464.42 k   | 464.42 k     

@bheluga
Copy link
Copy Markdown
Member

bheluga commented Mar 30, 2026

Hi @bheluga, we'll be deploying a router shortly that should help with this! image For the fees however, we are fully on-chain but still have a few missing days - any ideas around this?

I have started refilling fees for missing days, allium adapters are bit slow compared to others, so will take some time

@brihu23
Copy link
Copy Markdown
Contributor Author

brihu23 commented Mar 30, 2026

thank you!

@brihu23 brihu23 closed this Mar 30, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants