@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.
Files changed (169) hide show
  1. package/CONTRIBUTING.md +98 -0
  2. package/LICENSE +202 -0
  3. package/README.md +384 -0
  4. package/SECURITY.md +89 -0
  5. package/SETUP.md +235 -0
  6. package/artifacts/inscription/oracle-was-here-preview.png +0 -0
  7. package/artifacts/inscription/oracle-was-here.svg +1 -0
  8. package/artifacts/specialist-packs/oracle-full-crypto.json +273 -0
  9. package/bin/desk-server.mjs +438 -0
  10. package/bin/oracle-data-mcp.mjs +603 -0
  11. package/bin/oracle-init.mjs +423 -0
  12. package/bin/oracle-public-server.mjs +36 -0
  13. package/bin/oracle-route.mjs +254 -0
  14. package/bin/oracle-scan.mjs +192 -0
  15. package/docs/adding-a-chain.md +229 -0
  16. package/docs/architecture.md +135 -0
  17. package/docs/profiles.md +132 -0
  18. package/examples/add-a-chain.mjs +65 -0
  19. package/examples/research-a-token.mjs +70 -0
  20. package/package.json +90 -0
  21. package/profiles/_template/SOUL.md +47 -0
  22. package/profiles/_template/profile.json +22 -0
  23. package/profiles/bitcoin-agent/SOUL.md +31 -0
  24. package/profiles/bitcoin-agent/profile.json +32 -0
  25. package/profiles/hyperliquid-agent/SOUL.md +34 -0
  26. package/profiles/hyperliquid-agent/profile.json +37 -0
  27. package/profiles/oracle/SOUL.md +65 -0
  28. package/profiles/oracle/profile.json +35 -0
  29. package/profiles/polymarket-agent/SOUL.md +35 -0
  30. package/profiles/polymarket-agent/profile.json +34 -0
  31. package/profiles/profile.schema.json +90 -0
  32. package/profiles/protocol-builder/SOUL.md +50 -0
  33. package/profiles/protocol-builder/profile.json +37 -0
  34. package/profiles/robinhood-agent/SOUL.md +45 -0
  35. package/profiles/robinhood-agent/profile.json +39 -0
  36. package/profiles/solana-agent/SOUL.md +37 -0
  37. package/profiles/solana-agent/profile.json +37 -0
  38. package/profiles/stable-agent/SOUL.md +43 -0
  39. package/profiles/stable-agent/profile.json +37 -0
  40. package/public/oracle-console/app.js +272 -0
  41. package/public/oracle-console/bitcoin-wallets.js +206 -0
  42. package/public/oracle-console/index.html +91 -0
  43. package/public/oracle-console/styles.css +239 -0
  44. package/public/oracle-splash/index.html +931 -0
  45. package/scripts/build-inscription.py +230 -0
  46. package/scripts/check-test-count.mjs +105 -0
  47. package/scripts/e2e-hl-markets.mjs +21 -0
  48. package/scripts/e2e-hl-perps.mjs +48 -0
  49. package/scripts/e2e-hypercore-staking.mjs +128 -0
  50. package/scripts/e2e-solana-bitcoin.mjs +183 -0
  51. package/scripts/public-api-scan.mjs +23 -0
  52. package/scripts/secret-scan.mjs +181 -0
  53. package/scripts/verify-v3-venues.mjs +192 -0
  54. package/skills/oracle-best-execution/SKILL.md +127 -0
  55. package/skills/oracle-bitcoin/SKILL.md +53 -0
  56. package/skills/oracle-chain-graphs-telegram-cards/SKILL.md +59 -0
  57. package/skills/oracle-circuit-breaker/SKILL.md +51 -0
  58. package/skills/oracle-contract-research/SKILL.md +55 -0
  59. package/skills/oracle-desk/SKILL.md +58 -0
  60. package/skills/oracle-dex-launch/SKILL.md +38 -0
  61. package/skills/oracle-grants/SKILL.md +69 -0
  62. package/skills/oracle-hypercore-staking/SKILL.md +57 -0
  63. package/skills/oracle-hyperliquid/SKILL.md +56 -0
  64. package/skills/oracle-meme-token-sniper/SKILL.md +73 -0
  65. package/skills/oracle-nft-gacha-launch/SKILL.md +48 -0
  66. package/skills/oracle-nft-mint-gas-war/SKILL.md +63 -0
  67. package/skills/oracle-polymarket/SKILL.md +60 -0
  68. package/skills/oracle-protocol-builder/SKILL.md +38 -0
  69. package/skills/oracle-protocol-security/SKILL.md +60 -0
  70. package/skills/oracle-public-product/SKILL.md +44 -0
  71. package/skills/oracle-receipts/SKILL.md +52 -0
  72. package/skills/oracle-rfq-tokenized-assets/SKILL.md +69 -0
  73. package/skills/oracle-smart-wallet-scanner/SKILL.md +49 -0
  74. package/skills/oracle-solana/SKILL.md +65 -0
  75. package/skills/oracle-solana-nft/SKILL.md +54 -0
  76. package/skills/oracle-token-research/SKILL.md +67 -0
  77. package/src/agent-auth.mjs +191 -0
  78. package/src/approval-guard.mjs +282 -0
  79. package/src/attestation-secret.mjs +88 -0
  80. package/src/audit-log.mjs +196 -0
  81. package/src/auto-slippage.mjs +378 -0
  82. package/src/capability-posture.mjs +125 -0
  83. package/src/chains.mjs +62 -0
  84. package/src/data/catalog.mjs +495 -0
  85. package/src/data/desk-data.mjs +623 -0
  86. package/src/data/http.mjs +200 -0
  87. package/src/data/provider-endpoint.mjs +94 -0
  88. package/src/data/providers/aerodrome.mjs +244 -0
  89. package/src/data/providers/balancer.mjs +208 -0
  90. package/src/data/providers/bitcoin-esplora.mjs +230 -0
  91. package/src/data/providers/bitcoin-meta.mjs +378 -0
  92. package/src/data/providers/blockscout.mjs +14 -0
  93. package/src/data/providers/bridges.mjs +241 -0
  94. package/src/data/providers/cowswap.mjs +501 -0
  95. package/src/data/providers/curve.mjs +200 -0
  96. package/src/data/providers/defillama.mjs +88 -0
  97. package/src/data/providers/dexscreener.mjs +43 -0
  98. package/src/data/providers/evm-rpc.mjs +203 -0
  99. package/src/data/providers/geckoterminal.mjs +34 -0
  100. package/src/data/providers/gmx.mjs +495 -0
  101. package/src/data/providers/hl-info.mjs +102 -0
  102. package/src/data/providers/hl-markets.mjs +210 -0
  103. package/src/data/providers/hl-perps.mjs +382 -0
  104. package/src/data/providers/hl-staking.mjs +352 -0
  105. package/src/data/providers/hl-ws.mjs +119 -0
  106. package/src/data/providers/hyperevm-dex.mjs +49 -0
  107. package/src/data/providers/jupiter.mjs +182 -0
  108. package/src/data/providers/lifi.mjs +150 -0
  109. package/src/data/providers/magiceden-sol.mjs +355 -0
  110. package/src/data/providers/morpho.mjs +173 -0
  111. package/src/data/providers/odos.mjs +155 -0
  112. package/src/data/providers/oneinch.mjs +173 -0
  113. package/src/data/providers/opensea-multichain.mjs +136 -0
  114. package/src/data/providers/opensea-nft.mjs +99 -0
  115. package/src/data/providers/paraswap.mjs +117 -0
  116. package/src/data/providers/pendle.mjs +187 -0
  117. package/src/data/providers/poly-public.mjs +96 -0
  118. package/src/data/providers/poly-ws.mjs +103 -0
  119. package/src/data/providers/rh-agent.mjs +59 -0
  120. package/src/data/providers/satflow.mjs +336 -0
  121. package/src/data/providers/solana-rpc.mjs +186 -0
  122. package/src/data/providers/uniswap-v3.mjs +303 -0
  123. package/src/data/providers/zerox.mjs +166 -0
  124. package/src/data/public-api-scan.mjs +61 -0
  125. package/src/data/quote-placeholder.mjs +31 -0
  126. package/src/exact-integer.mjs +72 -0
  127. package/src/exec-policy.mjs +444 -0
  128. package/src/flags.mjs +15 -0
  129. package/src/fresh-window.mjs +76 -0
  130. package/src/gmx-attestation.mjs +175 -0
  131. package/src/index.mjs +50 -0
  132. package/src/nft-gas-war-guard.mjs +139 -0
  133. package/src/onboarding/agent-keys.mjs +157 -0
  134. package/src/onboarding/index.mjs +18 -0
  135. package/src/onboarding/tiers.mjs +139 -0
  136. package/src/oracle-env.mjs +38 -0
  137. package/src/protocol-execution.mjs +84 -0
  138. package/src/public-api/buzz-integration.mjs +256 -0
  139. package/src/public-api/connect-agent.mjs +397 -0
  140. package/src/public-api/grants.mjs +142 -0
  141. package/src/public-api/http.mjs +374 -0
  142. package/src/public-control/aa-adapter.mjs +402 -0
  143. package/src/public-control/build-registry.mjs +227 -0
  144. package/src/public-control/bundler-client.mjs +372 -0
  145. package/src/public-control/grant-indexer.mjs +296 -0
  146. package/src/public-control/policy-render.mjs +69 -0
  147. package/src/public-control/policy-schema.mjs +318 -0
  148. package/src/public-control/runtime-config.mjs +265 -0
  149. package/src/public-control/session-key-model.mjs +374 -0
  150. package/src/public-control/session-orchestrator.mjs +412 -0
  151. package/src/route-attestation.mjs +132 -0
  152. package/src/router/best-execution.mjs +221 -0
  153. package/src/router/index.mjs +185 -0
  154. package/src/router/prepare-bridge.mjs +288 -0
  155. package/src/router/prepare-route.mjs +341 -0
  156. package/src/router/proposal.mjs +311 -0
  157. package/src/router/risk-classifier.mjs +119 -0
  158. package/src/router/route-sources.mjs +292 -0
  159. package/src/scanner/chains.config.mjs +381 -0
  160. package/src/scanner/contract.mjs +270 -0
  161. package/src/scanner/evm-scanner.mjs +394 -0
  162. package/src/scanner/index.mjs +9 -0
  163. package/src/scanner/v2-venue.mjs +335 -0
  164. package/src/scanner/v3-venue.mjs +290 -0
  165. package/src/scopes.mjs +44 -0
  166. package/src/sell-simulation.mjs +167 -0
  167. package/src/token-transfer-guard.mjs +188 -0
  168. package/src/vault-attestation.mjs +145 -0
  169. package/src/venues.mjs +206 -0
@@ -0,0 +1,444 @@
1
+ // Transaction policy layer — enforced INSIDE the exec-server before any sign or
2
+ // broadcast, so token possession alone (stolen from /proc, a peer agent process,
3
+ // an injected subagent, or a tailnet peer) cannot produce an arbitrary drain.
4
+ // This is the belt that bounds the blast radius of every gate/token bypass.
5
+ //
6
+ // All limits are config via exec.env (loaded into the exec-server env):
7
+ // MAD_ALLOWED_CHAINS csv chainIds (default: the registered set)
8
+ // MAD_MAX_TX_VALUE_WEI max native value per tx (default: 0.05 ETH-scale)
9
+ // MAD_MAX_DAILY_VALUE_WEI max native value per rolling 24h (default: 0.15)
10
+ // MAD_MAX_GAS_LIMIT max gasLimit per signed/broadcast tx (default: 5m)
11
+ // MAD_MAX_TX_FEE_WEI max gasLimit*feePerGas when fee fields are present
12
+ // MAD_DEST_ALLOWLIST csv lowercased addresses; empty = any dest allowed
13
+ // MAD_POLICY_STATE path to the daily-spend ledger (default alongside env)
14
+ //
15
+ // Native-value caps bound native drains. The destination allowlist (when set)
16
+ // is the strong control for arbitrary-contract/ERC20 drains — enable it with the
17
+ // venues you actually trade through for a hard bound.
18
+
19
+ import { readFileSync, writeFileSync, mkdirSync, renameSync, unlinkSync, rmdirSync, statSync, rmSync } from "node:fs";
20
+ import { dirname, join } from "node:path";
21
+ import { isSwapVenue, venuesFor } from "./venues.mjs";
22
+ import { csvEnv, env, configPath } from "./oracle-env.mjs";
23
+ import { assertAutoSlippageGuard } from "./auto-slippage.mjs";
24
+ import { assertApprovalGuard, isApprovalCall } from "./approval-guard.mjs";
25
+ import { assertTokenTransferGuard, isTokenTransferCall } from "./token-transfer-guard.mjs";
26
+ import { assertRouteAttestation } from "./route-attestation.mjs";
27
+ import { assertVaultAttestation } from "./vault-attestation.mjs";
28
+ import { assertGmxOrderAttestation, isGmxExchangeRouter } from "./gmx-attestation.mjs";
29
+
30
+ const DEFAULT_CHAINS = [1, 8453, 42161, 137, 10, 56, 43114, 999, 4663, 2741, 988];
31
+
32
+ function csvSet(primary, legacy) {
33
+ return new Set(
34
+ csvEnv(primary, legacy)
35
+ .split(",")
36
+ .map((s) => s.trim().toLowerCase())
37
+ .filter(Boolean)
38
+ );
39
+ }
40
+
41
+ function allowedChains() {
42
+ const raw = String(env("ORACLE_ALLOWED_CHAINS", "MAD_ALLOWED_CHAINS", "")).trim();
43
+ if (!raw) return new Set(DEFAULT_CHAINS.map(Number));
44
+ return new Set(raw.split(",").map((s) => Number(s.trim())).filter(Number.isFinite));
45
+ }
46
+
47
+ function bigEnv(primary, legacy, fallback) {
48
+ const v = String(env(primary, legacy, "")).trim();
49
+ try {
50
+ return v ? BigInt(v) : BigInt(fallback);
51
+ } catch {
52
+ return BigInt(fallback);
53
+ }
54
+ }
55
+
56
+ // 0.05 / 0.15 in 1e18 units — generous but bounds a catastrophic drain. Tune in exec.env.
57
+ function maxTxValue() {
58
+ return bigEnv("ORACLE_MAX_TX_VALUE_WEI", "MAD_MAX_TX_VALUE_WEI", "50000000000000000");
59
+ }
60
+ function maxDailyValue() {
61
+ return bigEnv("ORACLE_MAX_DAILY_VALUE_WEI", "MAD_MAX_DAILY_VALUE_WEI", "150000000000000000");
62
+ }
63
+ function maxGasLimit() {
64
+ return bigEnv("ORACLE_MAX_GAS_LIMIT", "MAD_MAX_GAS_LIMIT", "5000000");
65
+ }
66
+ function maxTxFeeWei() {
67
+ return bigEnv("ORACLE_MAX_TX_FEE_WEI", "MAD_MAX_TX_FEE_WEI", "5000000000000000");
68
+ }
69
+
70
+ function statePath() {
71
+ return configPath("policy-daily.json", "ORACLE_POLICY_STATE", "MAD_POLICY_STATE");
72
+ }
73
+
74
+ function toWei(v) {
75
+ if (v == null) return 0n;
76
+ // A value this function cannot parse must NOT be treated as zero. Returning
77
+ // 0n on failure made every native-value cap fail OPEN: a tx carrying
78
+ // "999999999999999999999999.5" was scored as value=0 and sailed past the
79
+ // per-tx and daily ceilings. An unparseable amount is a policy error.
80
+ if (typeof v === "number") {
81
+ if (!Number.isInteger(v) || !Number.isSafeInteger(v)) {
82
+ throw new Error(
83
+ `exec-policy: value ${v} is not an exact integer — pass wei as a decimal string or BigInt`
84
+ );
85
+ }
86
+ }
87
+ try {
88
+ if (typeof v === "string" && v.startsWith("0x")) return BigInt(v);
89
+ return BigInt(v);
90
+ } catch {
91
+ throw new Error(`exec-policy: cannot interpret ${JSON.stringify(String(v))} as an integer wei amount`);
92
+ }
93
+ }
94
+
95
+ function optionalBig(value, label) {
96
+ if (value == null || value === "") return null;
97
+ try {
98
+ const n = typeof value === "string" && value.startsWith("0x") ? BigInt(value) : BigInt(value);
99
+ if (n < 0n) throw new Error("negative");
100
+ return n;
101
+ } catch {
102
+ throw new Error(`policy: ${label} must be a non-negative integer`);
103
+ }
104
+ }
105
+
106
+ function enforceGasPolicy(tx = {}) {
107
+ const gasLimit = optionalBig(tx.gasLimit ?? tx.gas, "gasLimit");
108
+ if (gasLimit != null) {
109
+ const cap = maxGasLimit();
110
+ if (gasLimit > cap) {
111
+ throw new Error(`policy: gasLimit ${gasLimit} exceeds cap ${cap} (ORACLE_MAX_GAS_LIMIT)`);
112
+ }
113
+ }
114
+
115
+ const feePerGas = optionalBig(tx.maxFeePerGas ?? tx.gasPrice, "maxFeePerGas/gasPrice");
116
+ if (gasLimit != null && feePerGas != null) {
117
+ const maxFee = gasLimit * feePerGas;
118
+ const cap = maxTxFeeWei();
119
+ if (maxFee > cap) {
120
+ throw new Error(`policy: gas fee ceiling ${maxFee} exceeds max tx fee ${cap} (ORACLE_MAX_TX_FEE_WEI)`);
121
+ }
122
+ }
123
+ }
124
+
125
+ let ledgerDegraded = false;
126
+
127
+ function readDaily() {
128
+ const fresh = () => ({ windowStart: Date.now(), spentWei: "0" });
129
+ let onDisk;
130
+ try {
131
+ onDisk = JSON.parse(readFileSync(statePath(), "utf8"));
132
+ } catch (error) {
133
+ if (error?.code === "ENOENT") return fresh();
134
+ ledgerDegraded = true;
135
+ throw new Error(`policy: daily spend ledger cannot be read or is corrupt: ${error?.message || error}`);
136
+ }
137
+ const windowStart = Number(onDisk?.windowStart);
138
+ let spentWei;
139
+ try {
140
+ spentWei = BigInt(onDisk?.spentWei);
141
+ } catch {
142
+ ledgerDegraded = true;
143
+ throw new Error("policy: daily spend ledger is corrupt: invalid spentWei");
144
+ }
145
+ if (!Number.isFinite(windowStart) || windowStart <= 0 || spentWei < 0n) {
146
+ ledgerDegraded = true;
147
+ throw new Error("policy: daily spend ledger is corrupt: invalid window");
148
+ }
149
+ if (Date.now() - windowStart > 24 * 60 * 60 * 1000) return fresh();
150
+ ledgerDegraded = false;
151
+ return { windowStart, spentWei: spentWei.toString() };
152
+ }
153
+
154
+ function writeDaily(d) {
155
+ const target = statePath();
156
+ const temp = `${target}.${process.pid}.tmp`;
157
+ try {
158
+ mkdirSync(dirname(target), { recursive: true });
159
+ writeFileSync(temp, JSON.stringify(d), { mode: 0o600 });
160
+ renameSync(temp, target);
161
+ ledgerDegraded = false;
162
+ } catch (err) {
163
+ ledgerDegraded = true;
164
+ try { unlinkSync(temp); } catch {}
165
+ throw new Error(`policy: daily spend ledger cannot be written or persisted: ${err?.message || err}`);
166
+ }
167
+ }
168
+
169
+ function withDailyLedgerLock(fn) {
170
+ const target = statePath();
171
+ const lock = `${target}.lock`;
172
+ const ownerPath = join(lock, "owner.json");
173
+ const ttlMs = ledgerLockTtlMs();
174
+
175
+ function writeOwner() {
176
+ writeFileSync(
177
+ ownerPath,
178
+ JSON.stringify({ pid: process.pid, createdAtMs: Date.now() }),
179
+ { mode: 0o600 },
180
+ );
181
+ }
182
+
183
+ function readOwner() {
184
+ try {
185
+ return JSON.parse(readFileSync(ownerPath, "utf8"));
186
+ } catch {
187
+ return null;
188
+ }
189
+ }
190
+
191
+ function lockAgeMs() {
192
+ try {
193
+ return Date.now() - Number(statSync(lock).mtimeMs);
194
+ } catch {
195
+ return Number.POSITIVE_INFINITY;
196
+ }
197
+ }
198
+
199
+ function pidAlive(pid) {
200
+ const n = Number(pid);
201
+ if (!Number.isInteger(n) || n <= 0) return false;
202
+ try {
203
+ process.kill(n, 0);
204
+ return true;
205
+ } catch {
206
+ return false;
207
+ }
208
+ }
209
+
210
+ function removeLockTree() {
211
+ try {
212
+ rmSync(lock, { recursive: true, force: true });
213
+ } catch {
214
+ try { unlinkSync(ownerPath); } catch {}
215
+ try { rmdirSync(lock); } catch {}
216
+ }
217
+ }
218
+
219
+ function tryAcquire() {
220
+ mkdirSync(dirname(target), { recursive: true });
221
+ mkdirSync(lock, { mode: 0o700 });
222
+ writeOwner();
223
+ }
224
+
225
+ try {
226
+ tryAcquire();
227
+ } catch (error) {
228
+ if (error?.code !== "EEXIST") {
229
+ throw new Error(`policy: daily spend ledger lock cannot be acquired: ${error?.message || error}`);
230
+ }
231
+ const owner = readOwner();
232
+ const age = lockAgeMs();
233
+ const stale =
234
+ age > ttlMs ||
235
+ !owner ||
236
+ !pidAlive(owner.pid);
237
+ if (!stale) {
238
+ throw new Error(`policy: daily spend ledger lock is busy at ${lock}`);
239
+ }
240
+ removeLockTree();
241
+ try {
242
+ tryAcquire();
243
+ } catch (retryError) {
244
+ if (retryError?.code === "EEXIST") {
245
+ throw new Error(`policy: daily spend ledger lock is busy at ${lock}`);
246
+ }
247
+ throw new Error(`policy: daily spend ledger lock cannot be acquired: ${retryError?.message || retryError}`);
248
+ }
249
+ }
250
+
251
+ try {
252
+ return fn();
253
+ } finally {
254
+ try {
255
+ removeLockTree();
256
+ } catch (error) {
257
+ ledgerDegraded = true;
258
+ throw new Error(`policy: daily spend ledger lock cannot be released: ${error?.message || error}`);
259
+ }
260
+ }
261
+ }
262
+
263
+ function ledgerLockTtlMs() {
264
+ const raw = Number(process.env.ORACLE_LEDGER_LOCK_TTL_MS || process.env.MAD_LEDGER_LOCK_TTL_MS || 30_000);
265
+ if (!Number.isFinite(raw) || raw < 1_000) return 30_000;
266
+ return Math.min(Math.floor(raw), 300_000);
267
+ }
268
+
269
+ /** True when the on-disk ledger could not be persisted this run. */
270
+ export function dailyLedgerDegraded() {
271
+ return ledgerDegraded;
272
+ }
273
+
274
+ /**
275
+ * When the durable ledger cannot be committed, the daily cap survives only as
276
+ * long as this process. A restart silently resets it to a fresh zero-spend
277
+ * window — so "degraded" is a cap that an attacker (or a crash loop) can clear
278
+ * on demand. Default to REFUSING to sign in that state; an operator who
279
+ * genuinely wants memory-only accounting must say so explicitly.
280
+ */
281
+ function assertLedgerDurable(phase) {
282
+ if (!ledgerDegraded) return;
283
+ if (String(process.env.ORACLE_ALLOW_EPHEMERAL_CAPS || "") === "1") return;
284
+ throw new Error(
285
+ `policy: refusing to ${phase} — the daily spend ledger at ${statePath()} is not writable, ` +
286
+ `so the daily cap would reset on restart. Fix the path, or set ` +
287
+ `ORACLE_ALLOW_EPHEMERAL_CAPS=1 to accept memory-only caps.`
288
+ );
289
+ }
290
+
291
+ /**
292
+ * Enforce policy on a would-be sign/broadcast. Throws on violation.
293
+ * @param {object} tx { chainId, to, value, data }
294
+ * @param {"sign"|"broadcast"} phase
295
+ */
296
+ export function enforceTxPolicy(tx = {}, phase = "broadcast") {
297
+ assertLedgerDurable(phase);
298
+ const chainId = Number(tx.chainId);
299
+ if (!allowedChains().has(chainId)) {
300
+ throw new Error(`policy: chainId ${chainId} not in ORACLE_ALLOWED_CHAINS`);
301
+ }
302
+
303
+ // Effective destination allowlist = env global allowlist UNION this chain's
304
+ // vetted venues (venues.mjs). Venues come from a curated, code-reviewed map,
305
+ // never from the tx itself -- so a new chain "just works" once its venues are
306
+ // added, without ever auto-trusting an arbitrary destination. If BOTH sources
307
+ // are empty, no dest restriction applies (env-empty semantics preserved).
308
+ const to = String(tx.to || "").toLowerCase();
309
+ const data = String(tx.data || "0x").toLowerCase();
310
+ const approvalLike = data !== "0x" && isApprovalCall(data);
311
+
312
+ // Native tx.value caps are not enough: a malicious signed transaction can try
313
+ // to drain through oversized gasLimit / fee fields even with value=0.
314
+ enforceGasPolicy(tx);
315
+
316
+ // ERC-20 approvals are value=0 calls to the token contract, not the swap
317
+ // router. They cannot be authorized by the token destination alone. Require a
318
+ // bounded approval guard that binds exact token/spender/amount/chain/expiry,
319
+ // and require the spender/route venue to be in the reviewed venue registry.
320
+ if (approvalLike) {
321
+ assertApprovalGuard(tx.madApproval || tx.approvalGuard, { ...tx, chainId, to, data }, { chainId });
322
+ }
323
+
324
+ // ERC-20 transfers are the other value=0 drain path. Native caps never see
325
+ // them, and a token address in the venue registry is not consent to send its
326
+ // balance anywhere. Bind the exact recipient + amount at the final policy gate.
327
+ if (!approvalLike && data !== "0x" && isTokenTransferCall(data)) {
328
+ assertTokenTransferGuard(tx.madTokenTransfer || tx.tokenTransferGuard, { ...tx, chainId, to, data }, { chainId });
329
+ }
330
+
331
+ // GMX v2 ExchangeRouter orders are asynchronous, keeper-executed intents. The
332
+ // ExchangeRouter is a vetted destination, but raw multicall calldata there can
333
+ // create/cancel/update orders with account risk. Require a signer-bound order
334
+ // attestation that binds the exact multicall hash, account, collateral,
335
+ // acceptable price, size, execution fee, and chain before signing.
336
+ if (!approvalLike && to && isGmxExchangeRouter(chainId, to)) {
337
+ assertGmxOrderAttestation(tx.madGmx || tx.gmxGuard, { ...tx, chainId, to, data }, { chainId });
338
+ }
339
+
340
+ const destAllow = csvSet("ORACLE_DEST_ALLOWLIST", "MAD_DEST_ALLOWLIST");
341
+ for (const v of venuesFor(chainId)) destAllow.add(v);
342
+
343
+ // Contract CREATION (no `to`) has no destination to check, so it fell through
344
+ // the allowlist entirely — the one shape that skips the strongest control we
345
+ // have. A deploy can carry native value and, once mined, the resulting
346
+ // contract is an arbitrary destination that was never reviewed. /exec/prepare
347
+ // rejects a missing `to`, but /exec/sign and /exec/broadcast accept a raw tx
348
+ // object, so prepare's check is not a real boundary.
349
+ //
350
+ // Deploys are therefore opt-in: ORACLE_ALLOW_CREATE=1 (or MAD_ALLOW_CREATE=1),
351
+ // and even when allowed they may not carry native value.
352
+ const isCreate = !tx.to || String(tx.to).trim() === "";
353
+ if (isCreate) {
354
+ const createAllowed =
355
+ String(env("ORACLE_ALLOW_CREATE", "MAD_ALLOW_CREATE", "0")).trim() === "1";
356
+ if (!createAllowed) {
357
+ throw new Error(
358
+ "policy: contract creation (tx without `to`) is disabled — set ORACLE_ALLOW_CREATE=1 to permit deploys"
359
+ );
360
+ }
361
+ if (toWei(tx.value) > 0n) {
362
+ throw new Error("policy: contract creation may not carry native value");
363
+ }
364
+ }
365
+
366
+ // Fail CLOSED. README and SECURITY both state that an empty allowlist refuses
367
+ // everything; the previous "no dest restriction applies" branch made an
368
+ // unconfigured deployment maximally permissive at exactly the moment the
369
+ // operator had configured the least. A destination must be positively
370
+ // allowlisted, or carry a route/vault attestation.
371
+ //
372
+ // Approvals used to skip this check (`!approvalLike`). That meant any
373
+ // unreviewed contract whose calldata started with an allowance selector
374
+ // bypassed the strongest control in the file — assertApprovalGuard binds the
375
+ // spender, not the `to` address. The token being approved is a destination
376
+ // like any other: it must be allowlisted or carry a route/vault attestation.
377
+ if (to && !destAllow.has(to)) {
378
+ const madRoute = tx.madRoute || tx.routeAttestation;
379
+ const madVault = tx.madVault || tx.vaultGuard;
380
+ if (!madRoute && !madVault) {
381
+ if (destAllow.size === 0) {
382
+ throw new Error(
383
+ `policy: no destination allowlist configured for chain ${chainId} — set ORACLE_DEST_ALLOWLIST or add the chain's venues before sending`
384
+ );
385
+ }
386
+ throw new Error(`policy: destination ${to} not allowlisted for chain ${chainId} (env ORACLE_DEST_ALLOWLIST or venues.mjs)`);
387
+ }
388
+ if (madRoute) assertRouteAttestation(madRoute, { ...tx, chainId, to, data }, { chainId });
389
+ else assertVaultAttestation(madVault, { ...tx, chainId, to, data }, { chainId });
390
+ }
391
+
392
+ // Every market-sensitive contract call must prove that its output floor came
393
+ // from a fresh automatic quote and is bounded to <= 100 bps. This check runs
394
+ // at both sign and broadcast, so raw prepared calldata cannot bypass it.
395
+ if (to && data !== "0x" && isSwapVenue(chainId, to)) {
396
+ try {
397
+ // Bind the guard to THIS calldata, not just to the venue. Without the tx
398
+ // the guard only proved internal consistency, so one correctly signed
399
+ // guard from a trivial quote authorized a swap of any size with zero
400
+ // output protection at the same venue.
401
+ assertAutoSlippageGuard(tx.slippageGuard ?? tx.madSlippage, {
402
+ chainId,
403
+ venue: to,
404
+ tx: { ...tx, chainId, to, data },
405
+ requireSigned: true,
406
+ });
407
+ } catch (error) {
408
+ const message = String(error?.message || error);
409
+ if (/required/.test(message)) throw error;
410
+ throw new Error(`policy: ${message}`);
411
+ }
412
+ }
413
+
414
+ // Spending caps toggle. Set MAD_VALUE_CAPS_ENABLED=0 in exec.env to lift the
415
+ // per-tx + daily native caps (chain/dest allowlists still enforced). Flip back
416
+ // to 1 to re-arm the cap wall. Default = ON when unset.
417
+ const capsOn = String(env("ORACLE_VALUE_CAPS_ENABLED", "MAD_VALUE_CAPS_ENABLED", "1")).trim() !== "0";
418
+ if (!capsOn) return true;
419
+
420
+ const value = toWei(tx.value);
421
+ const perTx = maxTxValue();
422
+ if (value > perTx) {
423
+ throw new Error(
424
+ `policy: tx value ${value} exceeds per-tx cap ${perTx} (ORACLE_MAX_TX_VALUE_WEI)`
425
+ );
426
+ }
427
+
428
+ // Daily aggregate only meaningfully applies to actual broadcast.
429
+ if (phase === "broadcast" && value > 0n) {
430
+ withDailyLedgerLock(() => {
431
+ const daily = readDaily();
432
+ const spent = toWei(daily.spentWei);
433
+ const cap = maxDailyValue();
434
+ if (spent + value > cap) {
435
+ throw new Error(
436
+ `policy: daily native spend ${spent + value} would exceed cap ${cap} (ORACLE_MAX_DAILY_VALUE_WEI)`
437
+ );
438
+ }
439
+ writeDaily({ windowStart: daily.windowStart, spentWei: (spent + value).toString() });
440
+ });
441
+ }
442
+
443
+ return true;
444
+ }
package/src/flags.mjs ADDED
@@ -0,0 +1,15 @@
1
+ /** Global kill-switch shared by sign adapters + local signer. */
2
+ import { envFlag } from "./oracle-env.mjs";
3
+
4
+ export function executeGloballyEnabled() {
5
+ return envFlag("ORACLE_EXECUTE_ENABLED", "MAD_EXECUTE_ENABLED", false);
6
+ }
7
+
8
+ /**
9
+ * Separate kill-switch for the BUILD verb (deploying new contracts through
10
+ * allowlisted factories). Deliberately NOT the same flag as execute: arming
11
+ * trading must never silently arm contract creation. Off by default.
12
+ */
13
+ export function deployGloballyEnabled() {
14
+ return envFlag("ORACLE_DEPLOY_ENABLED", "MAD_DEPLOY_ENABLED", false);
15
+ }
@@ -0,0 +1,76 @@
1
+ // One shared freshness check for every time-bounded authorization.
2
+ //
3
+ // This defect class has now been found FIVE separate times by four different
4
+ // auditors, in five different files: token-transfer-guard, auto-slippage,
5
+ // approval-guard, session grants, and the attestation modules. The shape is
6
+ // always the same — `Number(nowMs) > Number(expiresAtMs)` is false when nowMs
7
+ // is NaN, null, a non-numeric string, or -Infinity, so a broken or attacker-
8
+ // influenced clock silently converts a short-lived authorization into a
9
+ // permanent one.
10
+ //
11
+ // Fixing it once per file guarantees the sixth file will have it too. So it
12
+ // lives here, and every guard calls this.
13
+
14
+ /**
15
+ * Assert a time-bounded window is present, coherent, and currently open.
16
+ * Fails CLOSED on any unusable clock or missing bound.
17
+ *
18
+ * @param {object} window { issuedAtMs, expiresAtMs }
19
+ * @param {number} nowMs current time
20
+ * @param {string} label prefix for error messages
21
+ */
22
+ export function assertFreshWindow(window, nowMs, label = "guard") {
23
+ const now = Number(nowMs);
24
+ // `null` deserves special mention: it slips past a `= Date.now()` default
25
+ // because it is a *supplied* value, and Number(null) === 0 — which makes
26
+ // every expiry comparison pass.
27
+ if (nowMs == null || !Number.isFinite(now)) {
28
+ throw new Error(`${label}: current time must be a finite number (got ${describe(nowMs)})`);
29
+ }
30
+
31
+ const issuedAtMs = Number(window?.issuedAtMs);
32
+ const expiresAtMs = Number(window?.expiresAtMs);
33
+ if (!Number.isFinite(expiresAtMs)) {
34
+ throw new Error(`${label}: expiresAtMs is required and must be a finite number`);
35
+ }
36
+ // Expiry is checked BEFORE coherence: an already-expired window is the more
37
+ // useful thing to report, and a test (or caller) that hand-builds an expired
38
+ // window by pulling expiresAtMs back past issuedAtMs still gets "expired"
39
+ // rather than a shape complaint.
40
+ if (now > expiresAtMs) {
41
+ throw new Error(`${label} expired at ${expiresAtMs}, now ${now}`);
42
+ }
43
+ if (window?.issuedAtMs != null) {
44
+ if (!Number.isFinite(issuedAtMs)) {
45
+ throw new Error(`${label}: issuedAtMs must be a finite number when present`);
46
+ }
47
+ if (expiresAtMs <= issuedAtMs) {
48
+ throw new Error(`${label}: expiry must be after issuance`);
49
+ }
50
+ }
51
+ return { now, issuedAtMs, expiresAtMs };
52
+ }
53
+
54
+ /**
55
+ * Non-throwing form for status reporting. Returns false when the clock is
56
+ * unusable, so a caller asking "is this still live?" gets NO rather than a
57
+ * confident yes derived from a broken clock.
58
+ */
59
+ export function isWindowOpen(window, nowMs, { inclusive = false } = {}) {
60
+ try {
61
+ const { now, expiresAtMs } = assertFreshWindow(window, nowMs);
62
+ // `inclusive` treats the expiry instant itself as closed, which is what
63
+ // session grants mean by "expired at/after expiresAtMs".
64
+ if (inclusive && now >= expiresAtMs) return false;
65
+ return true;
66
+ } catch {
67
+ return false;
68
+ }
69
+ }
70
+
71
+ function describe(v) {
72
+ if (v === null) return "null";
73
+ if (v === undefined) return "undefined";
74
+ if (typeof v === "number") return String(v);
75
+ return `${typeof v} ${JSON.stringify(String(v)).slice(0, 24)}`;
76
+ }