Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions benchmarks/token-quote-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,15 +180,3 @@ providers:
sample_size: sum(increase(token_quote_coverage_attempts_total{provider="kyberswap"}[24h]))
series: sum(rate(token_quote_coverage_success_total{provider="kyberswap"}[1h])) / sum(rate(token_quote_coverage_attempts_total{provider="kyberswap"}[1h])) * 100

- slug: odos
name: Odos
tag: EVM multi-chain, Base + BNB + Ethereum
formula: "Rolling 24h ratio for provider=odos. EVM launchpads only. Solana cells null."
queries:
p50: sum(increase(token_quote_coverage_success_total{provider="odos"}[24h])) / sum(increase(token_quote_coverage_attempts_total{provider="odos"}[24h])) * 100
p90: sum(increase(token_quote_coverage_attempts_total{provider="odos"}[24h]))
p99: sum(increase(token_quote_coverage_success_total{provider="odos"}[24h])) / sum(increase(token_quote_coverage_attempts_total{provider="odos"}[24h])) * 100
mean: sum(increase(token_quote_coverage_success_total{provider="odos"}[24h])) / sum(increase(token_quote_coverage_attempts_total{provider="odos"}[24h])) * 100
success: clamp_max(sum(increase(token_quote_coverage_success_total{provider="odos"}[24h])) / sum(increase(token_quote_coverage_attempts_total{provider="odos"}[24h])), 1)
sample_size: sum(increase(token_quote_coverage_attempts_total{provider="odos"}[24h]))
series: sum(rate(token_quote_coverage_success_total{provider="odos"}[1h])) / sum(rate(token_quote_coverage_attempts_total{provider="odos"}[1h])) * 100
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,15 @@ var headLagPools = []HeadLagPool{
ChainName: "solana",
},
{
// Uniswap V3 WETH/USDC 0.05% — high-activity native USDC pool.
// Previous address 0x4c36…4b18 was WETH/USDbC (deprecated bridged
// legacy USDC, ~17 swaps/hour, ~$27k liquidity) which routinely
// went >5 min between trades and stalled AggregatorHeadLagStale
// on chain="base" (2026-07-25 incident).
Name: "WETH/USDC Base",
Blockchain: "evm:8453",
NetworkID: 8453,
Address: "0x4c36388be6f416a29c8d8eee81c771ce6be14b18",
Address: "0xd0b53d9277642d899df5c87a3966a349a798f224",
ChainName: "base",
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var fastTradePools = []struct {
},
{
Blockchain: "evm:8453",
Address: "0x4c36388be6f416a29c8d8eee81c771ce6be14b18", // WETH/USDC Base
Address: "0xd0b53d9277642d899df5c87a3966a349a798f224", // Uniswap V3 WETH/USDC 0.05% Base (was 0x4c36…4b18 = WETH/USDbC dead)
ChainName: "base",
},
{
Expand Down
1 change: 0 additions & 1 deletion harnesses/token-quote-coverage/cmd/monitor/scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ func buildProviders(cfg *Config) []Provider {
NewJupiterProvider(),
NewMobulaProvider(cfg.MobulaAPIKey),
NewKyberSwapProvider(),
NewOdosProvider(),
}
return providers
}
Expand Down
Loading