@oracle-agent/oracle 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +98 -0
- package/LICENSE +202 -0
- package/README.md +384 -0
- package/SECURITY.md +89 -0
- package/SETUP.md +235 -0
- package/artifacts/inscription/oracle-was-here-preview.png +0 -0
- package/artifacts/inscription/oracle-was-here.svg +1 -0
- package/artifacts/specialist-packs/oracle-full-crypto.json +273 -0
- package/bin/desk-server.mjs +438 -0
- package/bin/oracle-data-mcp.mjs +603 -0
- package/bin/oracle-init.mjs +423 -0
- package/bin/oracle-public-server.mjs +36 -0
- package/bin/oracle-route.mjs +254 -0
- package/bin/oracle-scan.mjs +192 -0
- package/docs/adding-a-chain.md +229 -0
- package/docs/architecture.md +135 -0
- package/docs/profiles.md +132 -0
- package/examples/add-a-chain.mjs +65 -0
- package/examples/research-a-token.mjs +70 -0
- package/package.json +90 -0
- package/profiles/_template/SOUL.md +47 -0
- package/profiles/_template/profile.json +22 -0
- package/profiles/bitcoin-agent/SOUL.md +31 -0
- package/profiles/bitcoin-agent/profile.json +32 -0
- package/profiles/hyperliquid-agent/SOUL.md +34 -0
- package/profiles/hyperliquid-agent/profile.json +37 -0
- package/profiles/oracle/SOUL.md +65 -0
- package/profiles/oracle/profile.json +35 -0
- package/profiles/polymarket-agent/SOUL.md +35 -0
- package/profiles/polymarket-agent/profile.json +34 -0
- package/profiles/profile.schema.json +90 -0
- package/profiles/protocol-builder/SOUL.md +50 -0
- package/profiles/protocol-builder/profile.json +37 -0
- package/profiles/robinhood-agent/SOUL.md +45 -0
- package/profiles/robinhood-agent/profile.json +39 -0
- package/profiles/solana-agent/SOUL.md +37 -0
- package/profiles/solana-agent/profile.json +37 -0
- package/profiles/stable-agent/SOUL.md +43 -0
- package/profiles/stable-agent/profile.json +37 -0
- package/public/oracle-console/app.js +272 -0
- package/public/oracle-console/bitcoin-wallets.js +206 -0
- package/public/oracle-console/index.html +91 -0
- package/public/oracle-console/styles.css +239 -0
- package/public/oracle-splash/index.html +931 -0
- package/scripts/build-inscription.py +230 -0
- package/scripts/check-test-count.mjs +105 -0
- package/scripts/e2e-hl-markets.mjs +21 -0
- package/scripts/e2e-hl-perps.mjs +48 -0
- package/scripts/e2e-hypercore-staking.mjs +128 -0
- package/scripts/e2e-solana-bitcoin.mjs +183 -0
- package/scripts/public-api-scan.mjs +23 -0
- package/scripts/secret-scan.mjs +181 -0
- package/scripts/verify-v3-venues.mjs +192 -0
- package/skills/oracle-best-execution/SKILL.md +127 -0
- package/skills/oracle-bitcoin/SKILL.md +53 -0
- package/skills/oracle-chain-graphs-telegram-cards/SKILL.md +59 -0
- package/skills/oracle-circuit-breaker/SKILL.md +51 -0
- package/skills/oracle-contract-research/SKILL.md +55 -0
- package/skills/oracle-desk/SKILL.md +58 -0
- package/skills/oracle-dex-launch/SKILL.md +38 -0
- package/skills/oracle-grants/SKILL.md +69 -0
- package/skills/oracle-hypercore-staking/SKILL.md +57 -0
- package/skills/oracle-hyperliquid/SKILL.md +56 -0
- package/skills/oracle-meme-token-sniper/SKILL.md +73 -0
- package/skills/oracle-nft-gacha-launch/SKILL.md +48 -0
- package/skills/oracle-nft-mint-gas-war/SKILL.md +63 -0
- package/skills/oracle-polymarket/SKILL.md +60 -0
- package/skills/oracle-protocol-builder/SKILL.md +38 -0
- package/skills/oracle-protocol-security/SKILL.md +60 -0
- package/skills/oracle-public-product/SKILL.md +44 -0
- package/skills/oracle-receipts/SKILL.md +52 -0
- package/skills/oracle-rfq-tokenized-assets/SKILL.md +69 -0
- package/skills/oracle-smart-wallet-scanner/SKILL.md +49 -0
- package/skills/oracle-solana/SKILL.md +65 -0
- package/skills/oracle-solana-nft/SKILL.md +54 -0
- package/skills/oracle-token-research/SKILL.md +67 -0
- package/src/agent-auth.mjs +191 -0
- package/src/approval-guard.mjs +282 -0
- package/src/attestation-secret.mjs +88 -0
- package/src/audit-log.mjs +196 -0
- package/src/auto-slippage.mjs +378 -0
- package/src/capability-posture.mjs +125 -0
- package/src/chains.mjs +62 -0
- package/src/data/catalog.mjs +495 -0
- package/src/data/desk-data.mjs +623 -0
- package/src/data/http.mjs +200 -0
- package/src/data/provider-endpoint.mjs +94 -0
- package/src/data/providers/aerodrome.mjs +244 -0
- package/src/data/providers/balancer.mjs +208 -0
- package/src/data/providers/bitcoin-esplora.mjs +230 -0
- package/src/data/providers/bitcoin-meta.mjs +378 -0
- package/src/data/providers/blockscout.mjs +14 -0
- package/src/data/providers/bridges.mjs +241 -0
- package/src/data/providers/cowswap.mjs +501 -0
- package/src/data/providers/curve.mjs +200 -0
- package/src/data/providers/defillama.mjs +88 -0
- package/src/data/providers/dexscreener.mjs +43 -0
- package/src/data/providers/evm-rpc.mjs +203 -0
- package/src/data/providers/geckoterminal.mjs +34 -0
- package/src/data/providers/gmx.mjs +495 -0
- package/src/data/providers/hl-info.mjs +102 -0
- package/src/data/providers/hl-markets.mjs +210 -0
- package/src/data/providers/hl-perps.mjs +382 -0
- package/src/data/providers/hl-staking.mjs +352 -0
- package/src/data/providers/hl-ws.mjs +119 -0
- package/src/data/providers/hyperevm-dex.mjs +49 -0
- package/src/data/providers/jupiter.mjs +182 -0
- package/src/data/providers/lifi.mjs +150 -0
- package/src/data/providers/magiceden-sol.mjs +355 -0
- package/src/data/providers/morpho.mjs +173 -0
- package/src/data/providers/odos.mjs +155 -0
- package/src/data/providers/oneinch.mjs +173 -0
- package/src/data/providers/opensea-multichain.mjs +136 -0
- package/src/data/providers/opensea-nft.mjs +99 -0
- package/src/data/providers/paraswap.mjs +117 -0
- package/src/data/providers/pendle.mjs +187 -0
- package/src/data/providers/poly-public.mjs +96 -0
- package/src/data/providers/poly-ws.mjs +103 -0
- package/src/data/providers/rh-agent.mjs +59 -0
- package/src/data/providers/satflow.mjs +336 -0
- package/src/data/providers/solana-rpc.mjs +186 -0
- package/src/data/providers/uniswap-v3.mjs +303 -0
- package/src/data/providers/zerox.mjs +166 -0
- package/src/data/public-api-scan.mjs +61 -0
- package/src/data/quote-placeholder.mjs +31 -0
- package/src/exact-integer.mjs +72 -0
- package/src/exec-policy.mjs +444 -0
- package/src/flags.mjs +15 -0
- package/src/fresh-window.mjs +76 -0
- package/src/gmx-attestation.mjs +175 -0
- package/src/index.mjs +50 -0
- package/src/nft-gas-war-guard.mjs +139 -0
- package/src/onboarding/agent-keys.mjs +157 -0
- package/src/onboarding/index.mjs +18 -0
- package/src/onboarding/tiers.mjs +139 -0
- package/src/oracle-env.mjs +38 -0
- package/src/protocol-execution.mjs +84 -0
- package/src/public-api/buzz-integration.mjs +256 -0
- package/src/public-api/connect-agent.mjs +397 -0
- package/src/public-api/grants.mjs +142 -0
- package/src/public-api/http.mjs +374 -0
- package/src/public-control/aa-adapter.mjs +402 -0
- package/src/public-control/build-registry.mjs +227 -0
- package/src/public-control/bundler-client.mjs +372 -0
- package/src/public-control/grant-indexer.mjs +296 -0
- package/src/public-control/policy-render.mjs +69 -0
- package/src/public-control/policy-schema.mjs +318 -0
- package/src/public-control/runtime-config.mjs +265 -0
- package/src/public-control/session-key-model.mjs +374 -0
- package/src/public-control/session-orchestrator.mjs +412 -0
- package/src/route-attestation.mjs +132 -0
- package/src/router/best-execution.mjs +221 -0
- package/src/router/index.mjs +185 -0
- package/src/router/prepare-bridge.mjs +288 -0
- package/src/router/prepare-route.mjs +341 -0
- package/src/router/proposal.mjs +311 -0
- package/src/router/risk-classifier.mjs +119 -0
- package/src/router/route-sources.mjs +292 -0
- package/src/scanner/chains.config.mjs +381 -0
- package/src/scanner/contract.mjs +270 -0
- package/src/scanner/evm-scanner.mjs +394 -0
- package/src/scanner/index.mjs +9 -0
- package/src/scanner/v2-venue.mjs +335 -0
- package/src/scanner/v3-venue.mjs +290 -0
- package/src/scopes.mjs +44 -0
- package/src/sell-simulation.mjs +167 -0
- package/src/token-transfer-guard.mjs +188 -0
- package/src/vault-attestation.mjs +145 -0
- package/src/venues.mjs +206 -0
|
@@ -0,0 +1,394 @@
|
|
|
1
|
+
// Generic EVM scanner.
|
|
2
|
+
//
|
|
3
|
+
// This is the payoff of the contract: a chain becomes a CONFIG entry rather than a
|
|
4
|
+
// bespoke integration. Everything here works on any EVM chain that exposes standard
|
|
5
|
+
// JSON-RPC -- balances, ERC-20 metadata, log scanning, and pool discovery via the
|
|
6
|
+
// public market-data providers.
|
|
7
|
+
//
|
|
8
|
+
// What it deliberately does NOT do: sign, broadcast, or invent a venue. Routing and
|
|
9
|
+
// quoting need chain-specific verified addresses, so a chain supplies those in its
|
|
10
|
+
// config and anything absent stays fail-closed.
|
|
11
|
+
|
|
12
|
+
import { rpcCall, rpcBlockNumber, rpcGetBalance, erc20BalanceOf } from "../data/providers/evm-rpc.mjs";
|
|
13
|
+
import { dexscreenerToken } from "../data/providers/dexscreener.mjs";
|
|
14
|
+
import { EVIDENCE, RISK } from "./contract.mjs";
|
|
15
|
+
import { v2VenueCapabilities } from "./v2-venue.mjs";
|
|
16
|
+
import { v3VenueCapabilities } from "./v3-venue.mjs";
|
|
17
|
+
|
|
18
|
+
// --- minimal ABI encoding, so the scanner has no ABI-library dependency -------
|
|
19
|
+
|
|
20
|
+
const SELECTORS = {
|
|
21
|
+
decimals: "0x313ce567",
|
|
22
|
+
symbol: "0x95d89b41",
|
|
23
|
+
name: "0x06fdde03",
|
|
24
|
+
totalSupply: "0x18160ddd",
|
|
25
|
+
owner: "0x8da5cb5b",
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
function hexToBigInt(hex) {
|
|
29
|
+
if (!hex || hex === "0x") return null;
|
|
30
|
+
try {
|
|
31
|
+
return BigInt(hex);
|
|
32
|
+
} catch {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Decode a Solidity `string` return value.
|
|
39
|
+
*
|
|
40
|
+
* Handles both the ABI-encoded dynamic string and the legacy bytes32 form that some
|
|
41
|
+
* older tokens still return. Getting this wrong shows the user mojibake instead of a
|
|
42
|
+
* symbol, which erodes trust in every other number on the screen.
|
|
43
|
+
*/
|
|
44
|
+
function decodeString(hex) {
|
|
45
|
+
if (!hex || hex === "0x") return null;
|
|
46
|
+
const body = hex.slice(2);
|
|
47
|
+
|
|
48
|
+
// Dynamic string: offset(32) + length(32) + data
|
|
49
|
+
if (body.length >= 128) {
|
|
50
|
+
const len = Number(BigInt(`0x${body.slice(64, 128)}`));
|
|
51
|
+
if (len > 0 && len <= 256 && body.length >= 128 + len * 2) {
|
|
52
|
+
const bytes = body.slice(128, 128 + len * 2);
|
|
53
|
+
const s = Buffer.from(bytes, "hex").toString("utf8").replace(/\0+$/, "");
|
|
54
|
+
if (s) return s;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// bytes32: right-padded with zeros
|
|
59
|
+
const trimmed = Buffer.from(body.slice(0, 64), "hex")
|
|
60
|
+
.toString("utf8")
|
|
61
|
+
.replace(/\0+$/, "");
|
|
62
|
+
return trimmed || null;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
function padAddress(addr) {
|
|
66
|
+
return addr.toLowerCase().replace(/^0x/, "").padStart(64, "0");
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// --- capability implementations ----------------------------------------------
|
|
70
|
+
|
|
71
|
+
function makeCapabilities(config) {
|
|
72
|
+
const { chainId } = config;
|
|
73
|
+
|
|
74
|
+
async function call(to, data, opts) {
|
|
75
|
+
return rpcCall(chainId, "eth_call", [{ to, data }, "latest"], opts);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
return {
|
|
79
|
+
async blockNumber(opts = {}) {
|
|
80
|
+
const n = await rpcBlockNumber(chainId, opts);
|
|
81
|
+
return { chainId, blockNumber: n?.blockNumber ?? n, evidence: EVIDENCE.LIVE };
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
async nativeBalance(address, opts = {}) {
|
|
85
|
+
const r = await rpcGetBalance(chainId, address, opts);
|
|
86
|
+
return {
|
|
87
|
+
chainId,
|
|
88
|
+
address,
|
|
89
|
+
wei: r?.wei ?? r?.balance ?? null,
|
|
90
|
+
symbol: config.nativeCurrency?.symbol ?? null,
|
|
91
|
+
decimals: config.nativeCurrency?.decimals ?? 18,
|
|
92
|
+
evidence: EVIDENCE.LIVE,
|
|
93
|
+
};
|
|
94
|
+
},
|
|
95
|
+
|
|
96
|
+
async tokenBalance({ token, owner }, opts = {}) {
|
|
97
|
+
const r = await erc20BalanceOf({ chainId, token, owner }, opts);
|
|
98
|
+
return { chainId, token, owner, raw: r?.balance ?? r, evidence: EVIDENCE.LIVE };
|
|
99
|
+
},
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Resolve an ERC-20's on-chain identity.
|
|
103
|
+
*
|
|
104
|
+
* Reads metadata from the contract itself rather than a token list, because a
|
|
105
|
+
* token list can be stale or omit a two-hour-old launch -- and because the
|
|
106
|
+
* on-chain answer is the one that governs an actual transfer.
|
|
107
|
+
*/
|
|
108
|
+
async resolveToken(token, opts = {}) {
|
|
109
|
+
if (!/^0x[0-9a-fA-F]{40}$/.test(token || "")) {
|
|
110
|
+
return {
|
|
111
|
+
chainId,
|
|
112
|
+
token,
|
|
113
|
+
evidence: EVIDENCE.UNKNOWN,
|
|
114
|
+
error: "resolveToken needs a 20-byte address; symbol lookup is a market-data concern",
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const [dec, sym, nm, supply] = await Promise.all([
|
|
119
|
+
call(token, SELECTORS.decimals, opts).catch(() => null),
|
|
120
|
+
call(token, SELECTORS.symbol, opts).catch(() => null),
|
|
121
|
+
call(token, SELECTORS.name, opts).catch(() => null),
|
|
122
|
+
call(token, SELECTORS.totalSupply, opts).catch(() => null),
|
|
123
|
+
]);
|
|
124
|
+
|
|
125
|
+
const decimals = hexToBigInt(dec?.result ?? dec);
|
|
126
|
+
const isContract = decimals !== null || sym?.result || nm?.result;
|
|
127
|
+
|
|
128
|
+
return {
|
|
129
|
+
chainId,
|
|
130
|
+
address: token,
|
|
131
|
+
decimals: decimals === null ? null : Number(decimals),
|
|
132
|
+
symbol: decodeString(sym?.result ?? sym),
|
|
133
|
+
name: decodeString(nm?.result ?? nm),
|
|
134
|
+
totalSupply: (hexToBigInt(supply?.result ?? supply) ?? null)?.toString() ?? null,
|
|
135
|
+
// A "token" that answers none of the standard calls is not an ERC-20.
|
|
136
|
+
evidence: isContract ? EVIDENCE.LIVE : EVIDENCE.UNKNOWN,
|
|
137
|
+
warning: isContract
|
|
138
|
+
? undefined
|
|
139
|
+
: "no ERC-20 metadata returned -- may not be a token contract",
|
|
140
|
+
};
|
|
141
|
+
},
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Find tradeable pools via public market data.
|
|
145
|
+
*
|
|
146
|
+
* Deliberately routed through DexScreener rather than a factory walk: a factory
|
|
147
|
+
* walk finds pools that EXIST, while what a trader needs is pools with real
|
|
148
|
+
* liquidity. Pools with no liquidity are noise that gets people filled badly.
|
|
149
|
+
*/
|
|
150
|
+
async resolvePools(token, opts = {}) {
|
|
151
|
+
const slug = config.dexscreenerSlug;
|
|
152
|
+
if (!slug) {
|
|
153
|
+
return {
|
|
154
|
+
chainId,
|
|
155
|
+
token,
|
|
156
|
+
pools: [],
|
|
157
|
+
evidence: EVIDENCE.UNAVAILABLE,
|
|
158
|
+
reason:
|
|
159
|
+
"no dexscreenerSlug configured for this chain; pool discovery is unavailable rather than guessed",
|
|
160
|
+
};
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
const res = await dexscreenerToken(token, opts).catch(() => null);
|
|
164
|
+
const pairs = (res?.pairs || res?.data?.pairs || []).filter(
|
|
165
|
+
(p) => String(p.chainId).toLowerCase() === String(slug).toLowerCase(),
|
|
166
|
+
);
|
|
167
|
+
|
|
168
|
+
const pools = pairs
|
|
169
|
+
.map((p) => ({
|
|
170
|
+
pair: p.pairAddress,
|
|
171
|
+
dex: p.dexId,
|
|
172
|
+
base: p.baseToken?.address,
|
|
173
|
+
quote: p.quoteToken?.address,
|
|
174
|
+
liquidityUsd: p.liquidity?.usd ?? null,
|
|
175
|
+
priceUsd: p.priceUsd ?? null,
|
|
176
|
+
volume24hUsd: p.volume?.h24 ?? null,
|
|
177
|
+
createdAt: p.pairCreatedAt ?? null,
|
|
178
|
+
}))
|
|
179
|
+
.sort((a, b) => (b.liquidityUsd ?? 0) - (a.liquidityUsd ?? 0));
|
|
180
|
+
|
|
181
|
+
return {
|
|
182
|
+
chainId,
|
|
183
|
+
token,
|
|
184
|
+
pools,
|
|
185
|
+
evidence: pools.length ? EVIDENCE.LIVE : EVIDENCE.UNKNOWN,
|
|
186
|
+
};
|
|
187
|
+
},
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* Scan a block range for logs.
|
|
191
|
+
*
|
|
192
|
+
* Chunked, because every public RPC caps range width and an unchunked scan fails
|
|
193
|
+
* confusingly at the provider rather than here.
|
|
194
|
+
*/
|
|
195
|
+
async scanBlocks({ fromBlock, toBlock, address, topics, chunkSize = 2000 } = {}, opts = {}) {
|
|
196
|
+
if (!Number.isInteger(fromBlock) || !Number.isInteger(toBlock)) {
|
|
197
|
+
throw new Error("scanBlocks requires integer fromBlock and toBlock");
|
|
198
|
+
}
|
|
199
|
+
if (toBlock < fromBlock) throw new Error("toBlock must be >= fromBlock");
|
|
200
|
+
|
|
201
|
+
const logs = [];
|
|
202
|
+
const chunks = [];
|
|
203
|
+
for (let start = fromBlock; start <= toBlock; start += chunkSize) {
|
|
204
|
+
const end = Math.min(start + chunkSize - 1, toBlock);
|
|
205
|
+
chunks.push([start, end]);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
for (const [start, end] of chunks) {
|
|
209
|
+
const filter = {
|
|
210
|
+
fromBlock: `0x${start.toString(16)}`,
|
|
211
|
+
toBlock: `0x${end.toString(16)}`,
|
|
212
|
+
};
|
|
213
|
+
if (address) filter.address = address;
|
|
214
|
+
if (topics) filter.topics = topics;
|
|
215
|
+
|
|
216
|
+
const res = await rpcCall(chainId, "eth_getLogs", [filter], opts).catch((e) => ({
|
|
217
|
+
error: String(e?.message || e),
|
|
218
|
+
}));
|
|
219
|
+
if (res?.error) {
|
|
220
|
+
// Report the partial scan honestly instead of pretending the range was clean.
|
|
221
|
+
return {
|
|
222
|
+
chainId,
|
|
223
|
+
fromBlock,
|
|
224
|
+
toBlock,
|
|
225
|
+
logs,
|
|
226
|
+
complete: false,
|
|
227
|
+
failedAt: [start, end],
|
|
228
|
+
error: res.error,
|
|
229
|
+
evidence: EVIDENCE.UNKNOWN,
|
|
230
|
+
};
|
|
231
|
+
}
|
|
232
|
+
for (const l of res?.result ?? res ?? []) logs.push(l);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
return {
|
|
236
|
+
chainId,
|
|
237
|
+
fromBlock,
|
|
238
|
+
toBlock,
|
|
239
|
+
logs,
|
|
240
|
+
complete: true,
|
|
241
|
+
chunks: chunks.length,
|
|
242
|
+
evidence: EVIDENCE.LIVE,
|
|
243
|
+
};
|
|
244
|
+
},
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* Structural risk assessment.
|
|
248
|
+
*
|
|
249
|
+
* Returns UNKNOWN rather than PASS when checks could not run -- the distinction
|
|
250
|
+
* that keeps "we couldn't tell" from reading as "it's fine".
|
|
251
|
+
*/
|
|
252
|
+
async scoreRisk(token, opts = {}) {
|
|
253
|
+
const checks = [];
|
|
254
|
+
let verdict = RISK.PASS;
|
|
255
|
+
|
|
256
|
+
const downgrade = (v) => {
|
|
257
|
+
const order = { [RISK.PASS]: 0, [RISK.CAUTION]: 1, [RISK.UNKNOWN]: 2, [RISK.FAIL]: 3 };
|
|
258
|
+
if (order[v] > order[verdict]) verdict = v;
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
const meta = await this.resolveToken(token, opts);
|
|
262
|
+
if (meta.evidence !== EVIDENCE.LIVE) {
|
|
263
|
+
checks.push({ check: "erc20-metadata", result: RISK.UNKNOWN, detail: meta.warning });
|
|
264
|
+
downgrade(RISK.UNKNOWN);
|
|
265
|
+
} else {
|
|
266
|
+
checks.push({ check: "erc20-metadata", result: RISK.PASS, detail: `${meta.symbol} / ${meta.decimals}d` });
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
const pools = await this.resolvePools(token, opts);
|
|
270
|
+
if (pools.evidence === EVIDENCE.UNAVAILABLE) {
|
|
271
|
+
checks.push({ check: "liquidity", result: RISK.UNKNOWN, detail: pools.reason });
|
|
272
|
+
downgrade(RISK.UNKNOWN);
|
|
273
|
+
} else if (!pools.pools.length) {
|
|
274
|
+
checks.push({ check: "liquidity", result: RISK.FAIL, detail: "no pool with liquidity found" });
|
|
275
|
+
downgrade(RISK.FAIL);
|
|
276
|
+
} else {
|
|
277
|
+
const top = pools.pools[0];
|
|
278
|
+
const liq = top.liquidityUsd ?? 0;
|
|
279
|
+
if (liq < 5_000) {
|
|
280
|
+
checks.push({ check: "liquidity", result: RISK.CAUTION, detail: `top pool only $${liq}` });
|
|
281
|
+
downgrade(RISK.CAUTION);
|
|
282
|
+
} else {
|
|
283
|
+
checks.push({ check: "liquidity", result: RISK.PASS, detail: `$${liq} on ${top.dex}` });
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
if (top.createdAt && Date.now() - top.createdAt < 24 * 3600 * 1000) {
|
|
287
|
+
checks.push({ check: "age", result: RISK.CAUTION, detail: "pool under 24h old" });
|
|
288
|
+
downgrade(RISK.CAUTION);
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
// Sellability. This is the check that actually separates a tradeable token
|
|
293
|
+
// from a trap, so run it for real when the chain has a verified router and say
|
|
294
|
+
// plainly that it is unproven when it does not.
|
|
295
|
+
if (typeof this.sellSimulation === "function") {
|
|
296
|
+
const sim = await this.sellSimulation(
|
|
297
|
+
{ token, amountIn: (10n ** 16n).toString() },
|
|
298
|
+
opts,
|
|
299
|
+
).catch((e) => ({ verdict: RISK.UNKNOWN, reason: String(e?.message || e) }));
|
|
300
|
+
|
|
301
|
+
checks.push({
|
|
302
|
+
check: "sellability",
|
|
303
|
+
result: sim.verdict,
|
|
304
|
+
detail:
|
|
305
|
+
sim.retentionBps != null
|
|
306
|
+
? `round trip returns ${(sim.retentionBps / 100).toFixed(2)}% -- ${sim.reason}`
|
|
307
|
+
: sim.reason,
|
|
308
|
+
});
|
|
309
|
+
downgrade(sim.verdict);
|
|
310
|
+
} else {
|
|
311
|
+
checks.push({
|
|
312
|
+
check: "sellability",
|
|
313
|
+
result: RISK.UNKNOWN,
|
|
314
|
+
detail:
|
|
315
|
+
"no verified router on this chain, so a round-trip sell simulation cannot " +
|
|
316
|
+
"run. Treat as unproven -- a buy path is not an exit path.",
|
|
317
|
+
});
|
|
318
|
+
downgrade(RISK.UNKNOWN);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
return {
|
|
322
|
+
chainId,
|
|
323
|
+
token,
|
|
324
|
+
verdict,
|
|
325
|
+
checks,
|
|
326
|
+
note:
|
|
327
|
+
"Structural checks only. UNKNOWN is not PASS. A token is not tradeable " +
|
|
328
|
+
"until a sell simulation succeeds.",
|
|
329
|
+
};
|
|
330
|
+
},
|
|
331
|
+
};
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* Build a scanner definition for any EVM chain from config alone.
|
|
336
|
+
*
|
|
337
|
+
* @param {object} config
|
|
338
|
+
* @param {string} config.key lowercase slug
|
|
339
|
+
* @param {number} config.chainId
|
|
340
|
+
* @param {string} config.name
|
|
341
|
+
* @param {string[]} config.rpcEnv env var names holding the RPC url
|
|
342
|
+
* @param {object} [config.nativeCurrency] { symbol, decimals }
|
|
343
|
+
* @param {string} [config.explorer]
|
|
344
|
+
* @param {string} [config.dexscreenerSlug] enables pool discovery
|
|
345
|
+
* @param {object[]} [config.venues] verified routers/quoters/factories
|
|
346
|
+
*/
|
|
347
|
+
export function defineEvmScanner(config) {
|
|
348
|
+
const caps = makeCapabilities(config);
|
|
349
|
+
|
|
350
|
+
// Single object holding BOTH generic and venue capabilities, so every capability
|
|
351
|
+
// sees the others through `this`. This matters for scoreRisk: it calls
|
|
352
|
+
// this.sellSimulation, which only exists once venue caps are merged in. Binding
|
|
353
|
+
// generic caps to their own object first would leave scoreRisk permanently blind to
|
|
354
|
+
// the real sell check and silently report sellability as UNKNOWN on a chain that
|
|
355
|
+
// can actually prove it.
|
|
356
|
+
const surface = { ...caps };
|
|
357
|
+
|
|
358
|
+
// Venue adapters are selected by declared shape. V3 cannot reuse the V2 adapter --
|
|
359
|
+
// it has no getAmountsOut, prices through a separate Quoter, and needs an explicit
|
|
360
|
+
// fee tier -- so encoding one with the other's assumptions yields a transaction
|
|
361
|
+
// that reverts or routes through the wrong pool.
|
|
362
|
+
const kinds = new Set((config.venues || []).map((v) => v.kind));
|
|
363
|
+
if (config.venueKind === "uniswap-v3" && kinds.has("quoter") && kinds.has("router")) {
|
|
364
|
+
Object.assign(
|
|
365
|
+
surface,
|
|
366
|
+
v3VenueCapabilities({
|
|
367
|
+
chainId: config.chainId,
|
|
368
|
+
wrappedNative: config.wrappedNative,
|
|
369
|
+
}),
|
|
370
|
+
);
|
|
371
|
+
} else if (config.venueKind === "uniswap-v2" && kinds.has("router")) {
|
|
372
|
+
Object.assign(
|
|
373
|
+
surface,
|
|
374
|
+
v2VenueCapabilities({
|
|
375
|
+
chainId: config.chainId,
|
|
376
|
+
wrappedNative: config.wrappedNative,
|
|
377
|
+
}),
|
|
378
|
+
);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
const bound = {};
|
|
382
|
+
for (const [k, fn] of Object.entries(surface)) bound[k] = fn.bind(surface);
|
|
383
|
+
|
|
384
|
+
return {
|
|
385
|
+
key: config.key,
|
|
386
|
+
chainId: config.chainId,
|
|
387
|
+
name: config.name,
|
|
388
|
+
rpcEnv: config.rpcEnv,
|
|
389
|
+
nativeCurrency: config.nativeCurrency,
|
|
390
|
+
explorer: config.explorer,
|
|
391
|
+
venues: config.venues || [],
|
|
392
|
+
capabilities: bound,
|
|
393
|
+
};
|
|
394
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// Public scanner package subpath.
|
|
2
|
+
//
|
|
3
|
+
// Keep this as the stable API for README examples. `contract.mjs` defines the
|
|
4
|
+
// scanner contract/registry; `chains.config.mjs` defines built-in and custom EVM
|
|
5
|
+
// registration helpers. Export both here so package consumers do not need to know
|
|
6
|
+
// the internal file split.
|
|
7
|
+
|
|
8
|
+
export * from "./contract.mjs";
|
|
9
|
+
export { CHAIN_CONFIGS, registerBuiltinScanners, registerCustomChain } from "./chains.config.mjs";
|