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
31 changes: 26 additions & 5 deletions harnesses/evm-exec/internal/platform/platforms.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,38 @@ var PlatformConfig = map[string]map[string]EVMPlatform{
BootstrapDays: 30,
},
},
// FOMO — Gnosis Safe multisig 0x9fc4e320 confirmed via Relay API appFees field (30/37 fee txs)
// Same address on BSC/Base/ETH; EVM-native trades only (Solana→EVM fees collected on Solana side)
"fomo": {
// Maestro — confirmed via DeFiLlama fees/maestro adapter, same address all EVM chains
"maestro": {
"ethereum": {
FeeCollector: "0xb0999731f7c2581844658a9d2ced1be0077b7397",
NativeEnabled: true,
ERC20Tokens: []string{USDC_ETH},
BootstrapDays: 30,
},
"bsc": {
FeeCollector: "0x9fc4e320a181e88644a302d11f1f158ef0699e37",
FeeCollector: "0xb0999731f7c2581844658a9d2ced1be0077b7397",
NativeEnabled: true,
ERC20Tokens: []string{USDC_BSC},
BootstrapDays: 30,
},
"base": {
FeeCollector: "0x9fc4e320a181e88644a302d11f1f158ef0699e37",
FeeCollector: "0xb0999731f7c2581844658a9d2ced1be0077b7397",
NativeEnabled: false,
ERC20Tokens: []string{USDC_BASE},
BootstrapDays: 30,
},
},
// Banana Gun — bananagun-fees.eth resolves to this address, confirmed via Etherscan/Basescan labels
// BSC fee wallet unconfirmed — skipped until verified
"banana-gun": {
"ethereum": {
FeeCollector: "0x72172c02da4c39d6d05c2b9458501faf671d8ef8",
NativeEnabled: true,
ERC20Tokens: []string{USDC_ETH},
BootstrapDays: 30,
},
"base": {
FeeCollector: "0x72172c02da4c39d6d05c2b9458501faf671d8ef8",
NativeEnabled: false,
ERC20Tokens: []string{USDC_BASE},
BootstrapDays: 30,
Expand Down
Binary file added public/logos/dex-screener.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions public/logos/moonshot.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/logos/phantom.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/logos/pumpfun.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/lib/brand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@ const BRANDS: Record<string, Brand> = {
relay: { color: "#26D49B" }, // mint
across: { color: "#6CF9D8" }, // across aqua

// ─── Crypto trading apps (bench № 202) ───
pumpfun: { color: "#00C851" }, // pump.fun green
phantom: { color: "#AB9FF2" }, // phantom purple
moonshot: { color: "#F97316" }, // moonshot orange
"dex-screener": { color: "#1C1C1C", dark: true }, // dex screener dark
fomo: { color: "#7C3AED" }, // fomo violet

// ─── Trading / perps ───
hyperliquid: { color: "#22D3EE" }, // cyan
dydx: { color: "#C084FC" }, // bright violet
Expand Down
6 changes: 6 additions & 0 deletions src/lib/logo-manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,12 @@ const RAW: Record<string, string> = {
trojan: "/logos/trojan.jpg",
gmgn: "/logos/gmgn.jpg",
maestro: "/logos/maestro.jpg",

// ─── App Store ratings (bench № 202) ───
pumpfun: "/logos/pumpfun.svg",
phantom: "/logos/phantom.svg",
moonshot: "/logos/moonshot.svg",
"dex-screener": "/logos/dex-screener.png",
// ─── Hyperliquid frontends (bench № 030) ───
"phantom-perps": "/logos/phantom-perps.svg",
axiom: "/logos/axiom.png",
Expand Down
Loading