@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,372 @@
1
+ // Oracle Control — ERC-4337 bundler/paymaster runtime submit path (Slice H).
2
+ //
3
+ // Takes a USER-SIGNED UserOperation (produced off this infrastructure — the
4
+ // user's own wallet signs it, never Oracle) and submits it to an ERC-4337
5
+ // bundler via an INJECTED client. This module never talks to a real network
6
+ // itself: every RPC call goes through a caller-supplied `bundlerClient` /
7
+ // `paymasterClient`, duck-typed to the viem/permissionless BundlerClient
8
+ // action shape ({ sendUserOperation, waitForUserOperationReceipt,
9
+ // estimateUserOperationGas }) or a thin equivalent. Tests inject a fully
10
+ // offline mock; production code injects a real viem/permissionless client.
11
+ //
12
+ // Hard boundaries (same posture as aa-adapter.mjs / connect-agent.mjs):
13
+ // - This module holds no keys and requests no signature. It only forwards
14
+ // an ALREADY-SIGNED userOp (or, for estimateAndFill/applyPaymaster, an
15
+ // unsigned userOp being prepared BEFORE the user signs it) to an
16
+ // injected client's methods.
17
+ // - submitUserOperation refuses an unsigned userOp outright — a missing or
18
+ // placeholder ("0x") signature must never reach a bundler.
19
+ // - submitUserOperation/estimateAndFill/applyPaymaster all refuse an
20
+ // entryPoint that does not match ENTRYPOINT_V07 (imported from
21
+ // aa-adapter.mjs, the single source of truth for the deployed EntryPoint
22
+ // address this codebase targets) unless the caller explicitly overrides
23
+ // it, and even then the value must still be a valid checksummed address
24
+ // — this stops an accidental/mismatched EntryPoint submit.
25
+ // - Before any payload is handed to an injected client, it is rebuilt from
26
+ // an explicit field allowlist (canonicalizeUserOpForSubmit) and then
27
+ // recursively scanned by assertNoSecretPayload() for anything shaped
28
+ // like a private key, mnemonic, bearer token, keystore path, or signer
29
+ // URL. Fail closed: throws before the call is ever made.
30
+ // - Imports ONLY from ./aa-adapter.mjs (ENTRYPOINT_V07, buildUserOperation)
31
+ // and viem/node builtins. NEVER from the private executor stack
32
+ // (get-signer.mjs, keystore.mjs, exec-policy.mjs, local-signer/*,
33
+ // adapters/*, mint-capability.mjs) — this module must never be wired to
34
+ // private operator wallet, and never makes a live network call of its own.
35
+
36
+ import { isAddress, isHex, getAddress } from "viem";
37
+
38
+ import { ENTRYPOINT_V07, buildUserOperation } from "./aa-adapter.mjs";
39
+
40
+ // Re-exported for convenience so callers of this module don't need a second
41
+ // import from aa-adapter just to read the default EntryPoint constant.
42
+ export { ENTRYPOINT_V07 };
43
+
44
+ function fail(message) {
45
+ throw new Error(`bundler-client: ${message}`);
46
+ }
47
+
48
+ // ---------------------------------------------------------------------------
49
+ // No-secret invariant (fail closed) — scoped to what a bundler/paymaster
50
+ // payload could plausibly carry. Mirrors the posture of
51
+ // public-api/connect-agent.mjs's assertNoSecretMaterial without importing
52
+ // across slices.
53
+ // ---------------------------------------------------------------------------
54
+
55
+ export class SecretLeakError extends Error {
56
+ constructor(path, rule) {
57
+ super(`secret material must never appear in a bundler/paymaster payload (at ${path}, rule: ${rule})`);
58
+ this.name = "SecretLeakError";
59
+ this.path = path;
60
+ this.rule = rule;
61
+ }
62
+ }
63
+
64
+ const FORBIDDEN_KEY_RE =
65
+ /(private[_-]?key|secret|bearer|keystore|mnemonic|seed[_-]?phrase|passphrase|password|api[_-]?key|access[_-]?token|auth[_-]?token|session[_-]?token|signer[_-]?url)/i;
66
+
67
+ const FORBIDDEN_VALUE_RULES = Object.freeze([
68
+ // 32-byte hex — the shape of a raw EVM private key / session secret.
69
+ { rule: "raw-32-byte-hex-key", re: /^0x[0-9a-fA-F]{64}$/ },
70
+ { rule: "bearer-token", re: /bearer\s+[A-Za-z0-9._~+/=-]+/i },
71
+ { rule: "pem-private-key", re: /-----BEGIN[A-Z ]*PRIVATE KEY-----/ },
72
+ { rule: "keystore-path", re: /keystore/i },
73
+ { rule: "signer-url", re: /https?:\/\/\S*sign/i },
74
+ { rule: "authorization-header", re: /authorization\s*:/i },
75
+ ]);
76
+
77
+ /**
78
+ * Recursively scan a value for anything shaped like secret material. Throws
79
+ * SecretLeakError on the first hit — fail closed. Note: this intentionally
80
+ * does NOT flag `signature` as a forbidden key (unlike connect-agent's
81
+ * variant) — a signed userOp's `signature` field is a public, submittable
82
+ * ECDSA/contract signature, not a secret, and this module's whole job is to
83
+ * submit it.
84
+ */
85
+ export function assertNoSecretPayload(value, path = "$", seen = new Set()) {
86
+ if (value == null) return value;
87
+ if (typeof value === "string") {
88
+ for (const { rule, re } of FORBIDDEN_VALUE_RULES) {
89
+ if (re.test(value)) throw new SecretLeakError(path, rule);
90
+ }
91
+ return value;
92
+ }
93
+ if (typeof value !== "object") return value;
94
+ if (seen.has(value)) return value;
95
+ seen.add(value);
96
+
97
+ if (ArrayBuffer.isView(value) || value instanceof ArrayBuffer) return value;
98
+ if (Array.isArray(value)) {
99
+ value.forEach((v, i) => assertNoSecretPayload(v, `${path}[${i}]`, seen));
100
+ return value;
101
+ }
102
+ for (const [k, v] of Object.entries(value)) {
103
+ if (FORBIDDEN_KEY_RE.test(k)) {
104
+ throw new SecretLeakError(`${path}.${k}`, "forbidden-key-name");
105
+ }
106
+ assertNoSecretPayload(v, `${path}.${k}`, seen);
107
+ }
108
+ return value;
109
+ }
110
+
111
+ // ---------------------------------------------------------------------------
112
+ // Helpers
113
+ // ---------------------------------------------------------------------------
114
+
115
+ /** Explicit field allowlist for an ERC-4337 v0.7 UserOperation, matching the
116
+ * exact shape aa-adapter.buildUserOperation() returns. Rebuilding from this
117
+ * allowlist (rather than spreading the caller's object) means any stray
118
+ * extra property on a hand-built/tampered userOp — however it got there —
119
+ * is dropped before it can ever reach an injected client. */
120
+ const USEROP_FIELDS = [
121
+ "sender",
122
+ "nonce",
123
+ "factory",
124
+ "factoryData",
125
+ "callData",
126
+ "callGasLimit",
127
+ "verificationGasLimit",
128
+ "preVerificationGas",
129
+ "maxFeePerGas",
130
+ "maxPriorityFeePerGas",
131
+ "paymaster",
132
+ "paymasterVerificationGasLimit",
133
+ "paymasterPostOpGasLimit",
134
+ "paymasterData",
135
+ "signature",
136
+ ];
137
+
138
+ function canonicalizeUserOpForSubmit(userOp) {
139
+ if (!userOp || typeof userOp !== "object") {
140
+ fail("userOp must be an object (typically the output of aa-adapter.buildUserOperation)");
141
+ }
142
+ const out = {};
143
+ for (const field of USEROP_FIELDS) out[field] = userOp[field] ?? null;
144
+ if (typeof out.sender !== "string" || !isAddress(out.sender)) {
145
+ fail("userOp.sender must be a valid 0x address");
146
+ }
147
+ if (typeof out.callData !== "string" || !isHex(out.callData)) {
148
+ fail("userOp.callData must be 0x-prefixed hex");
149
+ }
150
+ return Object.freeze(out);
151
+ }
152
+
153
+ function requireSignedUserOp(userOp) {
154
+ const sig = userOp && userOp.signature;
155
+ if (sig == null || sig === "" || sig === "0x") {
156
+ fail("refusing to submit a userOp with a missing/placeholder signature — sign it in the user's own wallet first");
157
+ }
158
+ if (typeof sig !== "string" || !isHex(sig)) {
159
+ fail("userOp.signature must be 0x-prefixed hex when present");
160
+ }
161
+ }
162
+
163
+ function resolveEntryPoint(entryPoint) {
164
+ const value = entryPoint ?? ENTRYPOINT_V07;
165
+ if (typeof value !== "string" || !isAddress(value)) {
166
+ fail("entryPoint must be a valid 0x address");
167
+ }
168
+ const normalized = getAddress(value);
169
+ if (normalized !== getAddress(ENTRYPOINT_V07)) {
170
+ fail(
171
+ `entryPoint ${normalized} does not match the expected EntryPoint ${getAddress(ENTRYPOINT_V07)} ` +
172
+ "(ENTRYPOINT_V07 from aa-adapter.mjs) — refusing to submit to an unexpected EntryPoint"
173
+ );
174
+ }
175
+ return normalized;
176
+ }
177
+
178
+ function requireClientMethod(client, methodName, clientLabel) {
179
+ if (!client || typeof client[methodName] !== "function") {
180
+ fail(
181
+ `${clientLabel} must expose an async ${methodName}(...) method (viem/permissionless BundlerClient shape, ` +
182
+ "or a thin { sendUserOperation, waitForUserOperationReceipt, estimateUserOperationGas } interface) — " +
183
+ "this module never makes a network call of its own"
184
+ );
185
+ }
186
+ }
187
+
188
+ function toHexIfBigIntLike(value) {
189
+ if (value == null) return value;
190
+ if (typeof value === "string") return value;
191
+ if (typeof value === "bigint") return `0x${value.toString(16)}`;
192
+ if (typeof value === "number" && Number.isSafeInteger(value)) return `0x${BigInt(value).toString(16)}`;
193
+ fail("gas/fee field returned by client must be a 0x-hex string, bigint, or safe integer");
194
+ }
195
+
196
+ // ---------------------------------------------------------------------------
197
+ // Public contract
198
+ // ---------------------------------------------------------------------------
199
+
200
+ /**
201
+ * Submit an already user-signed UserOperation to an ERC-4337 bundler via an
202
+ * injected client. This is the only function in this module that is allowed
203
+ * to move a userOp onto a bundler's mempool, and it refuses to do so unless
204
+ * the userOp actually carries a real signature.
205
+ *
206
+ * @param {object} params
207
+ * @param {object} params.userOp a signed UserOperation (signature != "0x")
208
+ * @param {object} params.bundlerClient injected client exposing async
209
+ * sendUserOperation({ userOperation, entryPoint }) -> userOpHash
210
+ * @param {string} [params.entryPoint] defaults to ENTRYPOINT_V07; refused
211
+ * if it does not resolve to ENTRYPOINT_V07
212
+ * @returns {Promise<string>} userOpHash returned by the bundler client
213
+ */
214
+ export async function submitUserOperation(params = {}) {
215
+ const { userOp, bundlerClient, entryPoint } = params;
216
+ requireSignedUserOp(userOp);
217
+ const resolvedEntryPoint = resolveEntryPoint(entryPoint);
218
+ requireClientMethod(bundlerClient, "sendUserOperation", "bundlerClient");
219
+
220
+ const payload = canonicalizeUserOpForSubmit(userOp);
221
+ assertNoSecretPayload(payload);
222
+
223
+ const userOpHash = await bundlerClient.sendUserOperation({
224
+ userOperation: payload,
225
+ entryPoint: resolvedEntryPoint,
226
+ });
227
+
228
+ if (typeof userOpHash !== "string" || !isHex(userOpHash)) {
229
+ fail("bundlerClient.sendUserOperation must resolve to a 0x-hex userOpHash");
230
+ }
231
+ return userOpHash;
232
+ }
233
+
234
+ /**
235
+ * Fill gas fields on an UNSIGNED (pre-signature) UserOperation via an
236
+ * injected bundler client's estimateUserOperationGas. Never submits
237
+ * anything and never requires a signature — this runs BEFORE the user
238
+ * signs, so it can supply real gas numbers to sign over. Returns a new
239
+ * frozen userOp; the input is never mutated.
240
+ *
241
+ * @param {object} params
242
+ * @param {object} params.userOp unsigned or placeholder-gas UserOperation
243
+ * (typically straight out of aa-adapter.buildUserOperation)
244
+ * @param {object} params.bundlerClient injected client exposing async
245
+ * estimateUserOperationGas({ userOperation, entryPoint }) -> gas fields
246
+ * @param {string} [params.entryPoint] defaults to ENTRYPOINT_V07
247
+ * @returns {Promise<object>} frozen userOp with gas fields filled from the
248
+ * client's estimate (falls back to the input's own values for any field
249
+ * the client did not return)
250
+ */
251
+ export async function estimateAndFill(params = {}) {
252
+ const { userOp, bundlerClient, entryPoint } = params;
253
+ const payload = canonicalizeUserOpForSubmit(userOp);
254
+ const resolvedEntryPoint = resolveEntryPoint(entryPoint);
255
+ requireClientMethod(bundlerClient, "estimateUserOperationGas", "bundlerClient");
256
+
257
+ assertNoSecretPayload(payload);
258
+ const estimate = await bundlerClient.estimateUserOperationGas({
259
+ userOperation: payload,
260
+ entryPoint: resolvedEntryPoint,
261
+ });
262
+ if (!estimate || typeof estimate !== "object") {
263
+ fail("bundlerClient.estimateUserOperationGas must resolve to a gas-fields object");
264
+ }
265
+
266
+ const filled = {
267
+ ...payload,
268
+ callGasLimit: toHexIfBigIntLike(estimate.callGasLimit ?? payload.callGasLimit),
269
+ verificationGasLimit: toHexIfBigIntLike(estimate.verificationGasLimit ?? payload.verificationGasLimit),
270
+ preVerificationGas: toHexIfBigIntLike(estimate.preVerificationGas ?? payload.preVerificationGas),
271
+ };
272
+ if (payload.paymaster != null) {
273
+ if (estimate.paymasterVerificationGasLimit != null) {
274
+ filled.paymasterVerificationGasLimit = toHexIfBigIntLike(estimate.paymasterVerificationGasLimit);
275
+ }
276
+ if (estimate.paymasterPostOpGasLimit != null) {
277
+ filled.paymasterPostOpGasLimit = toHexIfBigIntLike(estimate.paymasterPostOpGasLimit);
278
+ }
279
+ }
280
+
281
+ return Object.freeze(assertNoSecretPayload(filled));
282
+ }
283
+
284
+ /**
285
+ * Attach (or explicitly omit) paymaster sponsorship on an UNSIGNED
286
+ * UserOperation via an injected paymasterClient. If `paymasterClient` is
287
+ * absent/null, this is a no-op that returns the self-funded path — the
288
+ * userOp is returned with its paymaster fields explicitly nulled out, never
289
+ * left ambiguous. This module never holds paymaster credentials; whatever
290
+ * auth the paymaster needs lives inside the injected client, off this file.
291
+ *
292
+ * @param {object} params
293
+ * @param {object} params.userOp unsigned UserOperation
294
+ * @param {object} [params.paymasterClient] injected client exposing async
295
+ * getPaymasterData({ userOperation, entryPoint }) -> paymaster fields.
296
+ * Omit for the self-funded path (no paymaster).
297
+ * @param {string} [params.entryPoint] defaults to ENTRYPOINT_V07
298
+ * @returns {Promise<object>} frozen userOp with paymaster fields set
299
+ */
300
+ export async function applyPaymaster(params = {}) {
301
+ const { userOp, paymasterClient, entryPoint } = params;
302
+ const payload = canonicalizeUserOpForSubmit(userOp);
303
+ const resolvedEntryPoint = resolveEntryPoint(entryPoint);
304
+
305
+ if (paymasterClient == null) {
306
+ // Self-funded path: no paymaster involved, fields explicitly nulled.
307
+ return Object.freeze({
308
+ ...payload,
309
+ paymaster: null,
310
+ paymasterData: null,
311
+ paymasterVerificationGasLimit: null,
312
+ paymasterPostOpGasLimit: null,
313
+ });
314
+ }
315
+
316
+ requireClientMethod(paymasterClient, "getPaymasterData", "paymasterClient");
317
+ assertNoSecretPayload(payload);
318
+ const sponsorship = await paymasterClient.getPaymasterData({
319
+ userOperation: payload,
320
+ entryPoint: resolvedEntryPoint,
321
+ });
322
+ if (!sponsorship || typeof sponsorship.paymaster !== "string" || !isAddress(sponsorship.paymaster)) {
323
+ fail("paymasterClient.getPaymasterData must resolve to an object with a valid paymaster address");
324
+ }
325
+
326
+ const filled = {
327
+ ...payload,
328
+ paymaster: getAddress(sponsorship.paymaster),
329
+ paymasterData: sponsorship.paymasterData ?? "0x",
330
+ paymasterVerificationGasLimit: toHexIfBigIntLike(sponsorship.paymasterVerificationGasLimit ?? 0n),
331
+ paymasterPostOpGasLimit: toHexIfBigIntLike(sponsorship.paymasterPostOpGasLimit ?? 0n),
332
+ };
333
+
334
+ return Object.freeze(assertNoSecretPayload(filled));
335
+ }
336
+
337
+ /**
338
+ * Passthrough to an injected bundler client's receipt-polling method. This
339
+ * module adds no retry/timeout logic of its own — that belongs to the
340
+ * injected client (viem/permissionless already implement polling with
341
+ * backoff); this is a thin, testable seam.
342
+ *
343
+ * @param {object} params
344
+ * @param {string} params.hash userOpHash returned by submitUserOperation
345
+ * @param {object} params.bundlerClient injected client exposing async
346
+ * waitForUserOperationReceipt({ hash, ...rest }) -> receipt
347
+ * @param {object} [params.opts] extra options forwarded verbatim (e.g.
348
+ * pollingInterval, timeout) — passed through untouched, never inspected
349
+ * for secrets since this module trusts caller-supplied polling knobs are
350
+ * not where key material would ever live
351
+ * @returns {Promise<object>} whatever the injected client resolves to
352
+ */
353
+ export async function waitForReceipt(params = {}) {
354
+ const { hash, bundlerClient, opts = {} } = params;
355
+ if (typeof hash !== "string" || !isHex(hash)) {
356
+ fail("hash is required and must be 0x-prefixed hex (the userOpHash from submitUserOperation)");
357
+ }
358
+ requireClientMethod(bundlerClient, "waitForUserOperationReceipt", "bundlerClient");
359
+ return bundlerClient.waitForUserOperationReceipt({ hash, ...opts });
360
+ }
361
+
362
+ export const _internal = {
363
+ canonicalizeUserOpForSubmit,
364
+ requireSignedUserOp,
365
+ resolveEntryPoint,
366
+ requireClientMethod,
367
+ toHexIfBigIntLike,
368
+ };
369
+
370
+ // Re-exported so callers building a fresh userOp before submit don't need a
371
+ // second import from aa-adapter for the common "build then submit" flow.
372
+ export { buildUserOperation };
@@ -0,0 +1,296 @@
1
+ // Oracle Control — grant audit + active-permission indexer (Slice F).
2
+ //
3
+ // Deterministic, storage-agnostic reconstruction of grant state from an
4
+ // append-only event log. Oracle Control is DETERMINISTIC AUTHORIZATION: this
5
+ // module never guesses, never consults Oracle Router (advisory), and never
6
+ // keeps its own mutable state. The chain (or whatever emits the event log)
7
+ // is the sole source of truth; this file is a pure projection of that log
8
+ // plus an explicit reference `now`.
9
+ //
10
+ // Hard boundaries for this file:
11
+ // - No imports outside src/public-control/policy-schema.mjs (grant identity
12
+ // + expiry helpers are reused from there, never duplicated).
13
+ // - No import from the private executor stack, no RPC/chain calls, no I/O.
14
+ // - Pure functions only: reconstructGrantIndex(events, opts) always returns
15
+ // the same result for the same (events, opts.now) — same events replayed
16
+ // after a "restart" (fresh process, no cache, no prior in-memory state)
17
+ // reconstruct the identical active set. Input array order never matters.
18
+ // - Audit/output records are built from an explicit field whitelist only.
19
+ // Unknown/extra properties on raw events (or on a rejected grant payload)
20
+ // are NEVER copied into output, so a poisoned event can't smuggle a
21
+ // secret (API key, session key, keystore path, ...) into the index.
22
+ //
23
+ // Event log shape (each entry is a plain object; unknown extra fields are
24
+ // ignored, never echoed):
25
+ // { type: "grantCreated", at: <unix seconds>, grant: <raw grant>, grantId?: <string> }
26
+ // { type: "grantActivated", at: <unix seconds>, grantId: <string> }
27
+ // { type: "grantRevoked", at: <unix seconds>, grantId: <string>, reason?: <string> }
28
+ // { type: "grantExpired", at: <unix seconds>, grantId: <string> }
29
+ //
30
+ // `grantId` on a grantCreated event is optional: when omitted it is derived
31
+ // from the grant payload itself via policy-schema's grantId() (content
32
+ // addressed identity). When supplied it is cross-checked against the derived
33
+ // id and the event is rejected on mismatch (fail closed, no id spoofing).
34
+ //
35
+ // Status precedence (revocation beats expiry beats activity — mirrors the
36
+ // same precedence used by session-key-model.mjs's sessionStatus): a grant
37
+ // that was revoked and later would also have expired still reports revoked.
38
+ // REVOKED > EXPIRED > ACTIVE > PENDING > UNKNOWN
39
+ // Only ACTIVE grants are ever included in the `active` set.
40
+
41
+ import { normalizeGrant, grantId as computeGrantId, isExpired, GrantValidationError } from "./policy-schema.mjs";
42
+
43
+ export const GRANT_EVENT_TYPES = Object.freeze([
44
+ "grantCreated",
45
+ "grantActivated",
46
+ "grantRevoked",
47
+ "grantExpired",
48
+ ]);
49
+
50
+ export const GRANT_STATUS = Object.freeze({
51
+ ACTIVE: "active",
52
+ PENDING: "pending",
53
+ REVOKED: "revoked",
54
+ EXPIRED: "expired",
55
+ UNKNOWN: "unknown",
56
+ INVALID: "invalid",
57
+ });
58
+
59
+ /** Fields ever allowed into an audit/output record. Nothing outside this
60
+ * whitelist can reach the returned index, no matter what a raw event or
61
+ * grant payload carries. All of these are public-by-design fields already
62
+ * enforced by policy-schema.mjs's REQUIRED_FIELDS. */
63
+ const GRANT_SUMMARY_FIELDS = Object.freeze([
64
+ "chainId",
65
+ "agentAddress",
66
+ "accountAddress",
67
+ "actions",
68
+ "targets",
69
+ "maxValueWei",
70
+ "maxGasWei",
71
+ "maxSlippageBps",
72
+ "expiresAt",
73
+ "nonce",
74
+ "revocationKey",
75
+ ]);
76
+
77
+ function isPlainObject(v) {
78
+ return v != null && typeof v === "object" && !Array.isArray(v);
79
+ }
80
+
81
+ function toUnixSeconds(v) {
82
+ if (typeof v === "bigint") return Number(v);
83
+ if (typeof v === "number" && Number.isFinite(v)) return v;
84
+ if (typeof v === "string" && v.trim() !== "" && Number.isFinite(Number(v.trim()))) {
85
+ return Number(v.trim());
86
+ }
87
+ return null;
88
+ }
89
+
90
+ function toSafeString(v, maxLen = 512) {
91
+ if (typeof v !== "string") return null;
92
+ const s = v.trim();
93
+ if (!s) return null;
94
+ return s.length > maxLen ? s.slice(0, maxLen) : s;
95
+ }
96
+
97
+ function grantSummary(normalizedGrant) {
98
+ const out = {};
99
+ for (const field of GRANT_SUMMARY_FIELDS) out[field] = normalizedGrant[field];
100
+ return out;
101
+ }
102
+
103
+ /**
104
+ * Parse one raw event into a strictly-whitelisted internal shape. Never
105
+ * throws. Extra/unknown properties on `raw` are silently dropped (this is
106
+ * the point — it's the no-secret-leak boundary for whatever noise a chain
107
+ * indexer/relay might attach to an event object).
108
+ *
109
+ * Returns { ok: true, event } or { ok: false, error: { type, at, grantId, message } }.
110
+ */
111
+ function parseEvent(raw, opts) {
112
+ if (!isPlainObject(raw)) {
113
+ return { ok: false, error: { type: null, at: null, grantId: null, message: "event must be a plain object" } };
114
+ }
115
+
116
+ const type = typeof raw.type === "string" ? raw.type : null;
117
+ const at = toUnixSeconds(raw.at);
118
+ const grantIdHint = typeof raw.grantId === "string" && raw.grantId.trim() ? raw.grantId.trim() : null;
119
+
120
+ if (!GRANT_EVENT_TYPES.includes(type)) {
121
+ return { ok: false, error: { type, at, grantId: grantIdHint, message: `unknown event type "${String(type)}"` } };
122
+ }
123
+ if (at == null) {
124
+ return { ok: false, error: { type, at: null, grantId: grantIdHint, message: "event.at must be a unix-seconds number" } };
125
+ }
126
+
127
+ if (type === "grantCreated") {
128
+ if (!isPlainObject(raw.grant)) {
129
+ return { ok: false, error: { type, at, grantId: grantIdHint, message: "grantCreated requires a grant payload" } };
130
+ }
131
+ let normalized;
132
+ try {
133
+ // Identity + shape validation only — deliberately WITHOUT opts.now, so
134
+ // a grant that has since expired can still be identified/reconstructed
135
+ // (liveness is evaluated separately against the caller's `now`).
136
+ normalized = normalizeGrant(raw.grant, { allowWildcardActions: opts.allowWildcardActions });
137
+ } catch (e) {
138
+ const message = e instanceof GrantValidationError ? e.message : String(e?.message || e);
139
+ return { ok: false, error: { type, at, grantId: grantIdHint, message } };
140
+ }
141
+ const derivedId = computeGrantId(raw.grant, { allowWildcardActions: opts.allowWildcardActions });
142
+ if (grantIdHint && grantIdHint !== derivedId) {
143
+ return {
144
+ ok: false,
145
+ error: { type, at, grantId: grantIdHint, message: "grantId does not match content-derived grant identity (fail closed)" },
146
+ };
147
+ }
148
+ return { ok: true, event: { type, at, grantId: derivedId, grant: normalized } };
149
+ }
150
+
151
+ // grantActivated / grantRevoked / grantExpired all reference an existing
152
+ // grant purely by id — they never carry grant material.
153
+ if (!grantIdHint) {
154
+ return { ok: false, error: { type, at, grantId: null, message: `${type} requires a grantId` } };
155
+ }
156
+ const reason = type === "grantRevoked" ? toSafeString(raw.reason) : null;
157
+ return { ok: true, event: { type, at, grantId: grantIdHint, reason } };
158
+ }
159
+
160
+ function minOf(list) {
161
+ return list.length ? list.reduce((a, b) => Math.min(a, b)) : null;
162
+ }
163
+
164
+ /**
165
+ * Reconstruct the deterministic grant index from a raw event log.
166
+ *
167
+ * @param {object[]} events raw event log (any order, any origin)
168
+ * @param {object} opts
169
+ * @param {number} opts.now REQUIRED unix-seconds reference time. All
170
+ * reconstruction is relative to this instant;
171
+ * pass the same `now` to get the same result.
172
+ * @param {boolean} [opts.allowWildcardActions] forwarded to policy-schema.
173
+ *
174
+ * @returns {{
175
+ * active: object[], grants currently ACTIVE, sorted by grantId
176
+ * historical: object[], everything else (pending/revoked/expired/unknown/invalid), sorted by grantId
177
+ * all: object[], active + historical, sorted by grantId
178
+ * invalidEvents: object[] malformed/rejected raw events (whitelisted fields only)
179
+ * }}
180
+ */
181
+ export function reconstructGrantIndex(events, opts = {}) {
182
+ const now = toUnixSeconds(opts.now);
183
+ if (now == null) throw new Error("grant-indexer: opts.now (unix seconds) is required");
184
+ if (!Array.isArray(events)) throw new Error("grant-indexer: events must be an array");
185
+
186
+ const invalidEvents = [];
187
+ /** grantId -> { created: [], activated: [], revoked: [], expired: [] } */
188
+ const byId = new Map();
189
+
190
+ function bucket(id) {
191
+ if (!byId.has(id)) {
192
+ byId.set(id, { created: [], activated: [], revoked: [], expired: [] });
193
+ }
194
+ return byId.get(id);
195
+ }
196
+
197
+ for (const raw of events) {
198
+ const parsed = parseEvent(raw, opts);
199
+ if (!parsed.ok) {
200
+ invalidEvents.push(parsed.error);
201
+ continue;
202
+ }
203
+ const ev = parsed.event;
204
+ // Chain is source of truth for what has already happened: an event dated
205
+ // after the reconstruction instant hasn't occurred *yet* from this
206
+ // vantage point, so it is excluded rather than applied early.
207
+ if (ev.at > now) continue;
208
+
209
+ const b = bucket(ev.grantId);
210
+ if (ev.type === "grantCreated") {
211
+ // Same content-derived id => identical normalized grant; duplicate
212
+ // creations are idempotent. Keep the earliest-by-time occurrence so
213
+ // createdAt is stable and order-independent.
214
+ const existing = b.created[0];
215
+ if (!existing || ev.at < existing.at) b.created = [ev];
216
+ } else if (ev.type === "grantActivated") {
217
+ b.activated.push(ev);
218
+ } else if (ev.type === "grantRevoked") {
219
+ b.revoked.push(ev);
220
+ } else if (ev.type === "grantExpired") {
221
+ b.expired.push(ev);
222
+ }
223
+ }
224
+
225
+ const records = [];
226
+ for (const [id, b] of byId.entries()) {
227
+ const createdEvent = b.created[0] || null;
228
+ const createdAt = createdEvent ? createdEvent.at : null;
229
+ const activatedAt = minOf(b.activated.map((e) => e.at));
230
+ const revokedAt = minOf(b.revoked.map((e) => e.at));
231
+ const explicitExpiredAt = minOf(b.expired.map((e) => e.at));
232
+
233
+ const grant = createdEvent ? createdEvent.grant : null;
234
+ const schemaExpired = grant ? isExpired(grant, now) : false;
235
+ const expiredAt = explicitExpiredAt != null ? explicitExpiredAt : schemaExpired ? grant.expiresAt : null;
236
+
237
+ let status;
238
+ if (!createdEvent) {
239
+ // Lifecycle events (activated/revoked/expired) referencing a grantId
240
+ // we never saw a valid grantCreated for. Never active — there is no
241
+ // grant content to authorize against.
242
+ status = GRANT_STATUS.UNKNOWN;
243
+ } else if (b.revoked.length > 0) {
244
+ status = GRANT_STATUS.REVOKED;
245
+ } else if (explicitExpiredAt != null || schemaExpired) {
246
+ status = GRANT_STATUS.EXPIRED;
247
+ } else if (b.activated.length > 0) {
248
+ status = GRANT_STATUS.ACTIVE;
249
+ } else {
250
+ status = GRANT_STATUS.PENDING;
251
+ }
252
+
253
+ const record = {
254
+ grantId: id,
255
+ status,
256
+ createdAt,
257
+ activatedAt,
258
+ revokedAt,
259
+ expiredAt,
260
+ reason: b.revoked.length > 0 ? toSafeString(b.revoked.map((e) => e.reason).find(Boolean) || null) : null,
261
+ grant: grant ? grantSummary(grant) : null,
262
+ };
263
+ records.push(record);
264
+ }
265
+
266
+ records.sort((a, b) => (a.grantId < b.grantId ? -1 : a.grantId > b.grantId ? 1 : 0));
267
+ invalidEvents.sort((a, b) => {
268
+ const at = (a.at ?? -Infinity) - (b.at ?? -Infinity);
269
+ if (at !== 0) return at;
270
+ const ai = a.grantId || "";
271
+ const bi = b.grantId || "";
272
+ return ai < bi ? -1 : ai > bi ? 1 : 0;
273
+ });
274
+
275
+ const active = records.filter((r) => r.status === GRANT_STATUS.ACTIVE);
276
+ const historical = records.filter((r) => r.status !== GRANT_STATUS.ACTIVE);
277
+
278
+ return Object.freeze({
279
+ active: Object.freeze(active),
280
+ historical: Object.freeze(historical),
281
+ all: Object.freeze(records),
282
+ invalidEvents: Object.freeze(invalidEvents),
283
+ });
284
+ }
285
+
286
+ /** Convenience: is a single grant id active right now, per the given log? */
287
+ export function isGrantActive(events, grantId, opts = {}) {
288
+ const { active } = reconstructGrantIndex(events, opts);
289
+ return active.some((r) => r.grantId === grantId);
290
+ }
291
+
292
+ /** Convenience: look up one grant's reconstructed record (or null). */
293
+ export function getGrantRecord(events, grantId, opts = {}) {
294
+ const { all } = reconstructGrantIndex(events, opts);
295
+ return all.find((r) => r.grantId === grantId) || null;
296
+ }