@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,402 @@
|
|
|
1
|
+
// Oracle Control — ERC-4337 session-key on-chain adapter (Slice E).
|
|
2
|
+
//
|
|
3
|
+
// Wires the provider-neutral session grant produced by session-key-model.mjs
|
|
4
|
+
// to a real account-abstraction encoding stack (viem) so a grant can be
|
|
5
|
+
// turned into:
|
|
6
|
+
// 1. install calldata — enable a scoped session key on the owner's smart
|
|
7
|
+
// account (encodeSessionKeyInstall)
|
|
8
|
+
// 2. an unsigned ERC-4337 UserOperation envelope that carries that calldata
|
|
9
|
+
// (buildUserOperation)
|
|
10
|
+
// 3. revoke calldata — disable a session key on the smart account
|
|
11
|
+
// (revokeSessionKey)
|
|
12
|
+
//
|
|
13
|
+
// Hard boundaries (same posture as session-key-model.mjs / policy-schema.mjs):
|
|
14
|
+
// - No wallet/AA SDK holds or requests the owner's main key here. This
|
|
15
|
+
// module only ASSEMBLES UNSIGNED data. Signing is the user's wallet,
|
|
16
|
+
// off-infrastructure — never this adapter, never a server, never a log.
|
|
17
|
+
// - No live RPC/bundler calls. Any chain read this adapter needs (the
|
|
18
|
+
// account's current ERC-4337 nonce) goes through a caller-injected
|
|
19
|
+
// `client` object (duck-typed to viem's PublicClient.readContract shape)
|
|
20
|
+
// so tests can supply a fully offline mock and production code can pass
|
|
21
|
+
// a real viem PublicClient without this file changing.
|
|
22
|
+
// - Import ONLY from ./session-key-model.mjs (grant shape/lifecycle) and
|
|
23
|
+
// ./policy-schema.mjs (not currently needed here, left available) plus
|
|
24
|
+
// viem and node builtins. NEVER from the private executor stack
|
|
25
|
+
// (get-signer.mjs, keystore.mjs, exec-policy.mjs, local-signer/*,
|
|
26
|
+
// adapters/*, mint-capability.mjs) — this module must never be wired to
|
|
27
|
+
// private operator wallet.
|
|
28
|
+
// - Fail-closed: a grant that is not ACTIVE (per session-key-model's own
|
|
29
|
+
// sessionStatus — expired, revoked, or malformed) is refused BEFORE any
|
|
30
|
+
// calldata is computed. A tampered "grant-shaped" object whose id does
|
|
31
|
+
// not match its own fields is refused for the same reason.
|
|
32
|
+
//
|
|
33
|
+
// Session-key module ABI note: real deployed session-key modules differ
|
|
34
|
+
// per AA stack (Safe allowance/session module, Kernel/ZeroDev session
|
|
35
|
+
// validator, Biconomy Nexus session module, a bespoke
|
|
36
|
+
// permissionless/viem session account). This adapter defines the ERC-4337
|
|
37
|
+
// envelope and a documented, generic "install/revoke a scoped session key"
|
|
38
|
+
// function interface (DEFAULT_SESSION_MODULE_ABI) that mirrors the common
|
|
39
|
+
// shape those modules expose. Wiring to one specific deployed module is a
|
|
40
|
+
// matter of passing that module's real `abi`/`moduleAddress` via opts — the
|
|
41
|
+
// grant validation, determinism, and unsigned-userOp assembly below do not
|
|
42
|
+
// change. This file never invents a contract address: `moduleAddress` is a
|
|
43
|
+
// required caller-supplied parameter, not a hardcoded guess.
|
|
44
|
+
|
|
45
|
+
import {
|
|
46
|
+
encodeFunctionData,
|
|
47
|
+
keccak256,
|
|
48
|
+
stringToHex,
|
|
49
|
+
numberToHex,
|
|
50
|
+
isAddress,
|
|
51
|
+
isHex,
|
|
52
|
+
getAddress,
|
|
53
|
+
} from "viem";
|
|
54
|
+
|
|
55
|
+
import {
|
|
56
|
+
canonicalJson,
|
|
57
|
+
computeSessionId,
|
|
58
|
+
sessionStatus,
|
|
59
|
+
SESSION_STATUS,
|
|
60
|
+
} from "./session-key-model.mjs";
|
|
61
|
+
|
|
62
|
+
/** Canonical ERC-4337 EntryPoint v0.7 address (public, chain-agnostic
|
|
63
|
+
* constant — not private infrastructure). Callers may override
|
|
64
|
+
* via opts.entryPoint for a different EntryPoint version/deployment. */
|
|
65
|
+
export const ENTRYPOINT_V07 = "0x0000000071727De22E5E9d8BAf0edAc6f37da032";
|
|
66
|
+
|
|
67
|
+
/** Minimal EntryPoint ABI slice this adapter needs (nonce read only — this
|
|
68
|
+
* adapter never calls the EntryPoint's mutating methods). */
|
|
69
|
+
export const ENTRYPOINT_ABI = [
|
|
70
|
+
{
|
|
71
|
+
type: "function",
|
|
72
|
+
name: "getNonce",
|
|
73
|
+
stateMutability: "view",
|
|
74
|
+
inputs: [
|
|
75
|
+
{ name: "sender", type: "address" },
|
|
76
|
+
{ name: "key", type: "uint192" },
|
|
77
|
+
],
|
|
78
|
+
outputs: [{ name: "nonce", type: "uint256" }],
|
|
79
|
+
},
|
|
80
|
+
];
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Generic "session-key module" interface most ERC-4337 session-key
|
|
84
|
+
* validators expose in one shape or another. This is the DEFAULT abi used
|
|
85
|
+
* when the caller does not supply a provider-specific one via opts.abi — see
|
|
86
|
+
* the module-level doc comment above for why the exact selector is left
|
|
87
|
+
* swappable rather than hardcoded per provider.
|
|
88
|
+
*/
|
|
89
|
+
export const DEFAULT_SESSION_MODULE_ABI = [
|
|
90
|
+
{
|
|
91
|
+
type: "function",
|
|
92
|
+
name: "installSessionKey",
|
|
93
|
+
stateMutability: "nonpayable",
|
|
94
|
+
inputs: [
|
|
95
|
+
{ name: "sessionId", type: "bytes32" },
|
|
96
|
+
{ name: "agent", type: "address" },
|
|
97
|
+
{ name: "validAfter", type: "uint48" },
|
|
98
|
+
{ name: "validUntil", type: "uint48" },
|
|
99
|
+
{ name: "actionsHash", type: "bytes32" },
|
|
100
|
+
{ name: "targets", type: "address[]" },
|
|
101
|
+
{ name: "maxValueWei", type: "uint256" },
|
|
102
|
+
{ name: "maxGasWei", type: "uint256" },
|
|
103
|
+
],
|
|
104
|
+
outputs: [],
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
type: "function",
|
|
108
|
+
name: "revokeSessionKey",
|
|
109
|
+
stateMutability: "nonpayable",
|
|
110
|
+
inputs: [{ name: "sessionId", type: "bytes32" }],
|
|
111
|
+
outputs: [],
|
|
112
|
+
},
|
|
113
|
+
];
|
|
114
|
+
|
|
115
|
+
function fail(message) {
|
|
116
|
+
throw new Error(`aa-adapter: ${message}`);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
function requireModuleAddress(moduleAddress) {
|
|
120
|
+
if (typeof moduleAddress !== "string" || !isAddress(moduleAddress)) {
|
|
121
|
+
fail(
|
|
122
|
+
"opts.moduleAddress is required and must be a valid 0x address of the " +
|
|
123
|
+
"deployed session-key module on the owner's smart account (this " +
|
|
124
|
+
"adapter never guesses/hardcodes a contract address)"
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
return getAddress(moduleAddress);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/** Re-derive a grant's identity fields (everything except `id`) and confirm
|
|
131
|
+
* they hash to the grant's own `id`, defending against a hand-crafted
|
|
132
|
+
* "grant-shaped" object that never went through createSessionGrant(). */
|
|
133
|
+
function assertGrantIntegrity(grant) {
|
|
134
|
+
if (!grant || grant.mode !== "oracle-session-grant") {
|
|
135
|
+
fail("input is not a valid session-key-model grant (missing/wrong mode)");
|
|
136
|
+
}
|
|
137
|
+
const { id, ...identity } = grant;
|
|
138
|
+
const recomputed = computeSessionId(identity);
|
|
139
|
+
if (recomputed !== id) {
|
|
140
|
+
fail("grant integrity check failed: id does not match grant fields (tampered or hand-built object)");
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/** Refuse to touch out-of-policy grants (expired/revoked/invalid) before any
|
|
145
|
+
* calldata is computed. `opts` is forwarded to session-key-model's
|
|
146
|
+
* sessionStatus() (nowMs, revocation registry/Set/array). */
|
|
147
|
+
function assertGrantEncodable(grant, opts = {}) {
|
|
148
|
+
assertGrantIntegrity(grant);
|
|
149
|
+
const status = sessionStatus(grant, opts);
|
|
150
|
+
if (status !== SESSION_STATUS.ACTIVE) {
|
|
151
|
+
fail(`refusing to encode calldata for a ${status} session (${grant.id})`);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
function msToSecondsUint48(ms, label) {
|
|
156
|
+
const seconds = Math.floor(Number(ms) / 1000);
|
|
157
|
+
if (!Number.isFinite(seconds) || seconds < 0 || seconds > 0xffffffffffff) {
|
|
158
|
+
fail(`${label} does not fit a uint48 seconds timestamp`);
|
|
159
|
+
}
|
|
160
|
+
return BigInt(seconds);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Deterministic install calldata for enabling a session-key-model grant as a
|
|
165
|
+
* scoped session key on the owner's ERC-4337 smart account.
|
|
166
|
+
*
|
|
167
|
+
* Refuses (throws, no calldata returned) when the grant is not ACTIVE —
|
|
168
|
+
* expired, revoked, or fails its own integrity check — per assertGrantEncodable.
|
|
169
|
+
*
|
|
170
|
+
* @param {object} grant output of session-key-model.createSessionGrant()
|
|
171
|
+
* @param {object} opts
|
|
172
|
+
* @param {string} opts.moduleAddress REQUIRED — deployed session-key module address
|
|
173
|
+
* @param {Array} [opts.abi] override for DEFAULT_SESSION_MODULE_ABI
|
|
174
|
+
* @param {number} [opts.nowMs] forwarded to sessionStatus() for the active check
|
|
175
|
+
* @param {object|Set|string[]} [opts.revocation] forwarded to sessionStatus()
|
|
176
|
+
* @returns {{ to: string, data: `0x${string}`, value: string }}
|
|
177
|
+
*/
|
|
178
|
+
export function encodeSessionKeyInstall(grant, opts = {}) {
|
|
179
|
+
assertGrantEncodable(grant, opts);
|
|
180
|
+
const moduleAddress = requireModuleAddress(opts.moduleAddress);
|
|
181
|
+
const abi = opts.abi ?? DEFAULT_SESSION_MODULE_ABI;
|
|
182
|
+
|
|
183
|
+
const agent = getAddress(grant.agent);
|
|
184
|
+
const targets = grant.targets.map((t) => getAddress(t));
|
|
185
|
+
const validAfter = msToSecondsUint48(grant.issuedAtMs, "issuedAtMs");
|
|
186
|
+
const validUntil = msToSecondsUint48(grant.expiresAtMs, "expiresAtMs");
|
|
187
|
+
// actionsHash: keccak256 over the canonical (already-sorted, deduped) JSON
|
|
188
|
+
// of the granted action ids — same convention session-key-model.mjs uses
|
|
189
|
+
// for computeSessionId, so it hashes identically everywhere.
|
|
190
|
+
const actionsHash = keccak256(stringToHex(canonicalJson(grant.actions)));
|
|
191
|
+
const maxValueWei = BigInt(grant.maxValueWei);
|
|
192
|
+
// grant.maxGasWei may be null (no independent gas cap set at the
|
|
193
|
+
// session-key-model layer); encoded as 0. The deployed module's own
|
|
194
|
+
// convention decides how 0 is interpreted (commonly "not independently
|
|
195
|
+
// capped here" — see docs/public-self-custody-aa-adapter.md).
|
|
196
|
+
const maxGasWei = grant.maxGasWei == null ? 0n : BigInt(grant.maxGasWei);
|
|
197
|
+
|
|
198
|
+
const data = encodeFunctionData({
|
|
199
|
+
abi,
|
|
200
|
+
functionName: "installSessionKey",
|
|
201
|
+
args: [grant.id, agent, validAfter, validUntil, actionsHash, targets, maxValueWei, maxGasWei],
|
|
202
|
+
});
|
|
203
|
+
|
|
204
|
+
return { to: moduleAddress, data, value: "0x0" };
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Deterministic revoke calldata for disabling a session key on the owner's
|
|
209
|
+
* smart account. Accepts either a full grant object (its `.id` is used) or
|
|
210
|
+
* a raw session id string. Unlike install, revoke is allowed even for a
|
|
211
|
+
* grant that is already expired/revoked (revocation is idempotent per
|
|
212
|
+
* session-key-model's own createRevocationRegistry) — the only hard refusal
|
|
213
|
+
* here is a malformed session id.
|
|
214
|
+
*
|
|
215
|
+
* @param {object|string} grantOrSessionId
|
|
216
|
+
* @param {object} opts
|
|
217
|
+
* @param {string} opts.moduleAddress REQUIRED — deployed session-key module address
|
|
218
|
+
* @param {Array} [opts.abi] override for DEFAULT_SESSION_MODULE_ABI
|
|
219
|
+
* @returns {{ to: string, data: `0x${string}`, value: string }}
|
|
220
|
+
*/
|
|
221
|
+
export function revokeSessionKey(grantOrSessionId, opts = {}) {
|
|
222
|
+
let sessionId;
|
|
223
|
+
if (typeof grantOrSessionId === "string") {
|
|
224
|
+
sessionId = grantOrSessionId;
|
|
225
|
+
} else if (grantOrSessionId && grantOrSessionId.mode === "oracle-session-grant") {
|
|
226
|
+
assertGrantIntegrity(grantOrSessionId);
|
|
227
|
+
sessionId = grantOrSessionId.id;
|
|
228
|
+
} else {
|
|
229
|
+
fail("revokeSessionKey requires a session-key-model grant object or a raw session id string");
|
|
230
|
+
}
|
|
231
|
+
if (!isHex(sessionId) || sessionId.length !== 66) {
|
|
232
|
+
fail("session id must be a 0x-prefixed 32-byte hash (as produced by computeSessionId)");
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
const moduleAddress = requireModuleAddress(opts.moduleAddress);
|
|
236
|
+
const abi = opts.abi ?? DEFAULT_SESSION_MODULE_ABI;
|
|
237
|
+
|
|
238
|
+
const data = encodeFunctionData({
|
|
239
|
+
abi,
|
|
240
|
+
functionName: "revokeSessionKey",
|
|
241
|
+
args: [sessionId],
|
|
242
|
+
});
|
|
243
|
+
|
|
244
|
+
return { to: moduleAddress, data, value: "0x0" };
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
const REQUIRED_GAS_FIELDS = [
|
|
248
|
+
"callGasLimit",
|
|
249
|
+
"verificationGasLimit",
|
|
250
|
+
"preVerificationGas",
|
|
251
|
+
"maxFeePerGas",
|
|
252
|
+
"maxPriorityFeePerGas",
|
|
253
|
+
];
|
|
254
|
+
|
|
255
|
+
function toBigIntField(value, label) {
|
|
256
|
+
if (value == null) fail(`${label} is required`);
|
|
257
|
+
let n;
|
|
258
|
+
try {
|
|
259
|
+
n = typeof value === "bigint" ? value : BigInt(value);
|
|
260
|
+
} catch {
|
|
261
|
+
fail(`${label} must be an integer, bigint, or 0x-hex string`);
|
|
262
|
+
}
|
|
263
|
+
if (n < 0n) fail(`${label} must not be negative`);
|
|
264
|
+
return n;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* Assemble an UNSIGNED ERC-4337 v0.7 UserOperation envelope carrying the
|
|
269
|
+
* given callData (typically the output of encodeSessionKeyInstall /
|
|
270
|
+
* revokeSessionKey, but this function accepts any calldata — it does not
|
|
271
|
+
* re-check grant policy itself).
|
|
272
|
+
*
|
|
273
|
+
* This function never estimates gas and never fabricates fee data: every
|
|
274
|
+
* gas/fee field is a required, explicit caller input. The only chain read it
|
|
275
|
+
* performs is the ERC-4337 account nonce, and ONLY when `nonce` is not
|
|
276
|
+
* supplied directly — in that case it calls `client.readContract(...)`,
|
|
277
|
+
* duck-typed to viem's PublicClient shape, so:
|
|
278
|
+
* - production code passes a real viem PublicClient and gets a real nonce
|
|
279
|
+
* - tests pass a plain object with an async readContract() mock and NO
|
|
280
|
+
* network call ever happens
|
|
281
|
+
*
|
|
282
|
+
* The returned object always has signature: "0x" (empty) and carries no key
|
|
283
|
+
* material of any kind — signing happens in the user's own wallet, off this
|
|
284
|
+
* adapter.
|
|
285
|
+
*
|
|
286
|
+
* @param {object} params
|
|
287
|
+
* @param {object} [params.client] duck-typed viem PublicClient (readContract) — only used if nonce is omitted
|
|
288
|
+
* @param {string} [params.entryPoint] defaults to ENTRYPOINT_V07
|
|
289
|
+
* @param {string} params.sender smart account address
|
|
290
|
+
* @param {string} params.callData 0x-prefixed calldata to execute
|
|
291
|
+
* @param {string|number|bigint} [params.nonce] explicit nonce override (skips client read)
|
|
292
|
+
* @param {string|number|bigint} [params.nonceKey] EntryPoint nonce key (default 0)
|
|
293
|
+
* @param {string} [params.factory] smart-account factory address (counterfactual deploy)
|
|
294
|
+
* @param {string} [params.factoryData] factory calldata (required if factory is set)
|
|
295
|
+
* @param {string|number|bigint} params.callGasLimit
|
|
296
|
+
* @param {string|number|bigint} params.verificationGasLimit
|
|
297
|
+
* @param {string|number|bigint} params.preVerificationGas
|
|
298
|
+
* @param {string|number|bigint} params.maxFeePerGas
|
|
299
|
+
* @param {string|number|bigint} params.maxPriorityFeePerGas
|
|
300
|
+
* @param {string} [params.paymaster]
|
|
301
|
+
* @param {string|number|bigint} [params.paymasterVerificationGasLimit] required if paymaster is set
|
|
302
|
+
* @param {string|number|bigint} [params.paymasterPostOpGasLimit] required if paymaster is set
|
|
303
|
+
* @param {string} [params.paymasterData] defaults to "0x"
|
|
304
|
+
*/
|
|
305
|
+
export async function buildUserOperation(params = {}) {
|
|
306
|
+
const {
|
|
307
|
+
client,
|
|
308
|
+
entryPoint = ENTRYPOINT_V07,
|
|
309
|
+
sender,
|
|
310
|
+
callData,
|
|
311
|
+
nonce,
|
|
312
|
+
nonceKey = 0n,
|
|
313
|
+
factory,
|
|
314
|
+
factoryData,
|
|
315
|
+
paymaster,
|
|
316
|
+
paymasterVerificationGasLimit,
|
|
317
|
+
paymasterPostOpGasLimit,
|
|
318
|
+
paymasterData = "0x",
|
|
319
|
+
} = params;
|
|
320
|
+
|
|
321
|
+
if (typeof sender !== "string" || !isAddress(sender)) fail("params.sender must be a valid 0x address");
|
|
322
|
+
if (typeof callData !== "string" || !isHex(callData)) fail("params.callData must be 0x-prefixed hex");
|
|
323
|
+
if (typeof entryPoint !== "string" || !isAddress(entryPoint)) fail("params.entryPoint must be a valid 0x address");
|
|
324
|
+
|
|
325
|
+
const normalizedSender = getAddress(sender);
|
|
326
|
+
const normalizedEntryPoint = getAddress(entryPoint);
|
|
327
|
+
|
|
328
|
+
for (const field of REQUIRED_GAS_FIELDS) {
|
|
329
|
+
if (params[field] == null) fail(`params.${field} is required (this adapter does not estimate gas)`);
|
|
330
|
+
}
|
|
331
|
+
const callGasLimit = toBigIntField(params.callGasLimit, "callGasLimit");
|
|
332
|
+
const verificationGasLimit = toBigIntField(params.verificationGasLimit, "verificationGasLimit");
|
|
333
|
+
const preVerificationGas = toBigIntField(params.preVerificationGas, "preVerificationGas");
|
|
334
|
+
const maxFeePerGas = toBigIntField(params.maxFeePerGas, "maxFeePerGas");
|
|
335
|
+
const maxPriorityFeePerGas = toBigIntField(params.maxPriorityFeePerGas, "maxPriorityFeePerGas");
|
|
336
|
+
|
|
337
|
+
if ((factory == null) !== (factoryData == null)) {
|
|
338
|
+
fail("factory and factoryData must both be set (counterfactual deploy) or both omitted");
|
|
339
|
+
}
|
|
340
|
+
if (factory != null && (typeof factory !== "string" || !isAddress(factory))) {
|
|
341
|
+
fail("params.factory must be a valid 0x address");
|
|
342
|
+
}
|
|
343
|
+
if (factoryData != null && (typeof factoryData !== "string" || !isHex(factoryData))) {
|
|
344
|
+
fail("params.factoryData must be 0x-prefixed hex");
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
const hasPaymaster = paymaster != null;
|
|
348
|
+
if (hasPaymaster) {
|
|
349
|
+
if (typeof paymaster !== "string" || !isAddress(paymaster)) fail("params.paymaster must be a valid 0x address");
|
|
350
|
+
if (paymasterVerificationGasLimit == null || paymasterPostOpGasLimit == null) {
|
|
351
|
+
fail("paymasterVerificationGasLimit and paymasterPostOpGasLimit are required when paymaster is set");
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
if (paymasterData != null && (typeof paymasterData !== "string" || !isHex(paymasterData))) {
|
|
355
|
+
fail("params.paymasterData must be 0x-prefixed hex");
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
let resolvedNonce;
|
|
359
|
+
if (nonce != null) {
|
|
360
|
+
resolvedNonce = toBigIntField(nonce, "nonce");
|
|
361
|
+
} else {
|
|
362
|
+
if (!client || typeof client.readContract !== "function") {
|
|
363
|
+
fail(
|
|
364
|
+
"params.nonce was omitted and no usable client was provided — pass an explicit nonce or a " +
|
|
365
|
+
"client with an async readContract({address, abi, functionName, args}) method (a real viem " +
|
|
366
|
+
"PublicClient in production, a mock in tests; this adapter makes no network call itself)"
|
|
367
|
+
);
|
|
368
|
+
}
|
|
369
|
+
const key = toBigIntField(nonceKey, "nonceKey");
|
|
370
|
+
resolvedNonce = await client.readContract({
|
|
371
|
+
address: normalizedEntryPoint,
|
|
372
|
+
abi: ENTRYPOINT_ABI,
|
|
373
|
+
functionName: "getNonce",
|
|
374
|
+
args: [normalizedSender, key],
|
|
375
|
+
});
|
|
376
|
+
resolvedNonce = toBigIntField(resolvedNonce, "resolved nonce");
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
const userOp = {
|
|
380
|
+
sender: normalizedSender,
|
|
381
|
+
nonce: numberToHex(resolvedNonce),
|
|
382
|
+
factory: factory != null ? getAddress(factory) : null,
|
|
383
|
+
factoryData: factoryData ?? null,
|
|
384
|
+
callData,
|
|
385
|
+
callGasLimit: numberToHex(callGasLimit),
|
|
386
|
+
verificationGasLimit: numberToHex(verificationGasLimit),
|
|
387
|
+
preVerificationGas: numberToHex(preVerificationGas),
|
|
388
|
+
maxFeePerGas: numberToHex(maxFeePerGas),
|
|
389
|
+
maxPriorityFeePerGas: numberToHex(maxPriorityFeePerGas),
|
|
390
|
+
paymaster: hasPaymaster ? getAddress(paymaster) : null,
|
|
391
|
+
paymasterVerificationGasLimit: hasPaymaster ? numberToHex(toBigIntField(paymasterVerificationGasLimit, "paymasterVerificationGasLimit")) : null,
|
|
392
|
+
paymasterPostOpGasLimit: hasPaymaster ? numberToHex(toBigIntField(paymasterPostOpGasLimit, "paymasterPostOpGasLimit")) : null,
|
|
393
|
+
paymasterData: hasPaymaster ? paymasterData : null,
|
|
394
|
+
// Always empty: this adapter assembles UNSIGNED user operations only.
|
|
395
|
+
// No signature is computed, requested, or accepted here.
|
|
396
|
+
signature: "0x",
|
|
397
|
+
};
|
|
398
|
+
|
|
399
|
+
return Object.freeze(userOp);
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
export const _internal = { requireModuleAddress, assertGrantIntegrity, assertGrantEncodable, msToSecondsUint48 };
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
// Oracle BUILD registry — the deploy verb, bounded.
|
|
2
|
+
//
|
|
3
|
+
// Oracle's scope model was built for TRADING: read, watch, prepare:trade,
|
|
4
|
+
// prepare:mint, agent:execute. Every one of those moves value through contracts
|
|
5
|
+
// that ALREADY EXIST. "Build on Stable" is a different verb: it brings a new
|
|
6
|
+
// contract into existence.
|
|
7
|
+
//
|
|
8
|
+
// The danger of a deploy verb is that "deploy" normally means "run arbitrary
|
|
9
|
+
// bytecode", which no policy can meaningfully allowlist — a compromised agent
|
|
10
|
+
// just ships whatever it wants. So this module does NOT implement that.
|
|
11
|
+
//
|
|
12
|
+
// What it implements: deploy-through-a-pinned-factory. Oracle may call ONE
|
|
13
|
+
// allowlisted function on ONE allowlisted factory address per chain. The shape
|
|
14
|
+
// of what gets created, and its economics, live in that factory's audited code,
|
|
15
|
+
// not in anything the agent chooses. Bounded by construction.
|
|
16
|
+
//
|
|
17
|
+
// Hard rules enforced here:
|
|
18
|
+
// 1. No raw bytecode. A request carrying `bytecode`/`initCode`/`data` is
|
|
19
|
+
// rejected outright — that is the arbitrary-deploy path and it stays shut.
|
|
20
|
+
// 2. Factory must be explicitly allowlisted for that exact chainId.
|
|
21
|
+
// 3. Unknown chain -> reject. Unknown factory -> reject. Fail closed.
|
|
22
|
+
// 4. Building is a PROPOSAL by default. Executing needs a separate scope AND
|
|
23
|
+
// a separate global arm flag, mirroring how execute is gated today.
|
|
24
|
+
|
|
25
|
+
import { deployGloballyEnabled } from "../flags.mjs";
|
|
26
|
+
|
|
27
|
+
const ADDR_RE = /^0x[0-9a-fA-F]{40}$/;
|
|
28
|
+
|
|
29
|
+
/** Fields that would smuggle arbitrary-deploy authority through a build request. */
|
|
30
|
+
const FORBIDDEN_FIELDS = ["bytecode", "initCode", "init_code", "data", "creationCode", "salt"];
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Allowlisted build targets, per chain.
|
|
34
|
+
*
|
|
35
|
+
* `address: null` means "capability known, target not yet pinned" — Oracle
|
|
36
|
+
* understands how to build this thing but physically cannot until an operator
|
|
37
|
+
* supplies a verified factory address. Stable's TokenFactory is deliberately
|
|
38
|
+
* null: the contracts exist and are audited, but nothing is deployed to 988
|
|
39
|
+
* mainnet yet, so there is no address to trust.
|
|
40
|
+
*/
|
|
41
|
+
export const BUILD_REGISTRY = {
|
|
42
|
+
988: {
|
|
43
|
+
chainName: "Stable Mainnet",
|
|
44
|
+
factories: {
|
|
45
|
+
"stable.tokenFactory": {
|
|
46
|
+
address: envAddress("ORACLE_STABLE_TOKEN_FACTORY"),
|
|
47
|
+
// The ONLY function Oracle may call on it.
|
|
48
|
+
method: "createLaunch",
|
|
49
|
+
creates: ["token", "curve", "feeSplitter"],
|
|
50
|
+
// Economics are fixed in the audited contract, NOT chosen by the agent.
|
|
51
|
+
fixed: {
|
|
52
|
+
creatorFeeBps: 7000,
|
|
53
|
+
protocolFeeBps: 3000,
|
|
54
|
+
curveFeeBps: 100,
|
|
55
|
+
graduationReserveBps: 2000,
|
|
56
|
+
maxReflectionBps: 3000,
|
|
57
|
+
},
|
|
58
|
+
description:
|
|
59
|
+
"Create a bonding-curve token launch. Fee split, curve params, and " +
|
|
60
|
+
"graduation ratio are hardcoded in the audited factory.",
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
function envAddress(name) {
|
|
67
|
+
const v = String(process.env[name] || "").trim();
|
|
68
|
+
return ADDR_RE.test(v) ? v : null;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/** Every build target Oracle knows about, including unpinned ones. */
|
|
72
|
+
export function listBuildTargets() {
|
|
73
|
+
const out = [];
|
|
74
|
+
for (const [chainId, entry] of Object.entries(BUILD_REGISTRY)) {
|
|
75
|
+
for (const [key, f] of Object.entries(entry.factories)) {
|
|
76
|
+
out.push({
|
|
77
|
+
chainId: Number(chainId),
|
|
78
|
+
chainName: entry.chainName,
|
|
79
|
+
target: key,
|
|
80
|
+
method: f.method,
|
|
81
|
+
creates: f.creates,
|
|
82
|
+
fixed: f.fixed,
|
|
83
|
+
description: f.description,
|
|
84
|
+
address: f.address,
|
|
85
|
+
// A target with no pinned address cannot be built, by design.
|
|
86
|
+
available: Boolean(f.address),
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
return out;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Validate a build request. Returns a normalized plan or throws.
|
|
95
|
+
* Never touches the network. Never signs. Never broadcasts.
|
|
96
|
+
*/
|
|
97
|
+
export function validateBuildRequest(input = {}) {
|
|
98
|
+
if (!input || typeof input !== "object" || Array.isArray(input)) {
|
|
99
|
+
throw new Error("build request must be an object");
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// 1. Arbitrary-deploy attempt -> hard reject before anything else.
|
|
103
|
+
for (const f of FORBIDDEN_FIELDS) {
|
|
104
|
+
if (f in input) {
|
|
105
|
+
throw new Error(
|
|
106
|
+
`arbitrary deploy is not supported: remove "${f}". ` +
|
|
107
|
+
"Oracle builds only through allowlisted factories.",
|
|
108
|
+
);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
const chainId = Number(input.chainId);
|
|
113
|
+
if (!Number.isInteger(chainId)) throw new Error("chainId required");
|
|
114
|
+
|
|
115
|
+
const chain = BUILD_REGISTRY[chainId];
|
|
116
|
+
if (!chain) throw new Error(`chain ${chainId} has no build targets (fail closed)`);
|
|
117
|
+
|
|
118
|
+
const targetKey = String(input.target || "").trim();
|
|
119
|
+
if (!targetKey) throw new Error("target required");
|
|
120
|
+
|
|
121
|
+
const factory = chain.factories[targetKey];
|
|
122
|
+
if (!factory) {
|
|
123
|
+
throw new Error(
|
|
124
|
+
`unknown build target "${targetKey}" on chain ${chainId} (fail closed)`,
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
if (!factory.address) {
|
|
129
|
+
throw new Error(
|
|
130
|
+
`build target "${targetKey}" has no pinned factory address on chain ${chainId}. ` +
|
|
131
|
+
"An operator must supply a verified address before Oracle can build here.",
|
|
132
|
+
);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
// 2. Args are validated against the factory's own rules, not free-form.
|
|
136
|
+
const args = validateLaunchArgs(input.args || {}, factory);
|
|
137
|
+
|
|
138
|
+
return {
|
|
139
|
+
chainId,
|
|
140
|
+
chainName: chain.chainName,
|
|
141
|
+
target: targetKey,
|
|
142
|
+
factory: factory.address,
|
|
143
|
+
method: factory.method,
|
|
144
|
+
creates: factory.creates,
|
|
145
|
+
fixed: factory.fixed,
|
|
146
|
+
args,
|
|
147
|
+
};
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
/** Argument rules for the stable.tokenFactory createLaunch shape. */
|
|
151
|
+
function validateLaunchArgs(args, factory) {
|
|
152
|
+
const name = String(args.name || "").trim();
|
|
153
|
+
const symbol = String(args.symbol || "").trim();
|
|
154
|
+
const creator = String(args.creator || "").trim();
|
|
155
|
+
const imageURI = String(args.imageURI || "").trim();
|
|
156
|
+
const socialsURI = String(args.socialsURI || "").trim();
|
|
157
|
+
const reflectionBps = Number(args.reflectionBps ?? 0);
|
|
158
|
+
|
|
159
|
+
if (!name || name.length > 64) throw new Error("args.name required (1-64 chars)");
|
|
160
|
+
if (!symbol || symbol.length > 16) throw new Error("args.symbol required (1-16 chars)");
|
|
161
|
+
if (!ADDR_RE.test(creator)) throw new Error("args.creator must be a valid address");
|
|
162
|
+
if (imageURI.length > 512 || socialsURI.length > 512) throw new Error("args URI too long");
|
|
163
|
+
|
|
164
|
+
const maxRefl = factory.fixed?.maxReflectionBps ?? 0;
|
|
165
|
+
if (!Number.isInteger(reflectionBps) || reflectionBps < 0 || reflectionBps > maxRefl) {
|
|
166
|
+
throw new Error(`args.reflectionBps must be an integer 0-${maxRefl}`);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
return { name, symbol, imageURI, socialsURI, creator, reflectionBps };
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Turn a validated request into a PROPOSAL. This is what `prepare:build`
|
|
174
|
+
* produces: a fully-described, human-readable statement of what would be
|
|
175
|
+
* created. It carries no authority and cannot be executed.
|
|
176
|
+
*/
|
|
177
|
+
export function buildProposal(input) {
|
|
178
|
+
const plan = validateBuildRequest(input);
|
|
179
|
+
return {
|
|
180
|
+
kind: "build.proposal",
|
|
181
|
+
executable: false,
|
|
182
|
+
chainId: plan.chainId,
|
|
183
|
+
chainName: plan.chainName,
|
|
184
|
+
target: plan.target,
|
|
185
|
+
factory: plan.factory,
|
|
186
|
+
method: plan.method,
|
|
187
|
+
creates: plan.creates,
|
|
188
|
+
args: plan.args,
|
|
189
|
+
fixedEconomics: plan.fixed,
|
|
190
|
+
summary: renderBuildProposal(plan),
|
|
191
|
+
};
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/** Plain-English render so a user sees exactly what they authorize. */
|
|
195
|
+
export function renderBuildProposal(plan) {
|
|
196
|
+
const f = plan.fixed || {};
|
|
197
|
+
const lines = [
|
|
198
|
+
`Create "${plan.args.name}" ($${plan.args.symbol}) on ${plan.chainName}.`,
|
|
199
|
+
`Factory: ${plan.factory} (${plan.method})`,
|
|
200
|
+
`Creates: ${plan.creates.join(", ")}`,
|
|
201
|
+
`Creator: ${plan.args.creator}`,
|
|
202
|
+
];
|
|
203
|
+
if (plan.args.reflectionBps > 0) {
|
|
204
|
+
lines.push(`Reflections: ${(plan.args.reflectionBps / 100).toFixed(2)}% of trade fees to holders`);
|
|
205
|
+
}
|
|
206
|
+
lines.push(
|
|
207
|
+
`Fixed by the audited factory (agent cannot change): ` +
|
|
208
|
+
`creator ${(f.creatorFeeBps || 0) / 100}% / protocol ${(f.protocolFeeBps || 0) / 100}% of fees, ` +
|
|
209
|
+
`${(f.curveFeeBps || 0) / 100}% trade fee, ` +
|
|
210
|
+
`${(f.graduationReserveBps || 0) / 100}% of supply to LP at graduation.`,
|
|
211
|
+
);
|
|
212
|
+
lines.push("No arbitrary code is deployed. Only this factory call.");
|
|
213
|
+
return lines.join("\n");
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Whether an actual build broadcast is permitted right now.
|
|
218
|
+
* Requires BOTH the explicit scope AND the global arm flag — same
|
|
219
|
+
* belt-and-braces posture as execute.
|
|
220
|
+
*/
|
|
221
|
+
export function buildExecutionAllowed(scopes = []) {
|
|
222
|
+
const hasScope = Array.isArray(scopes) && scopes.includes(BUILD_EXECUTE_SCOPE);
|
|
223
|
+
return { allowed: hasScope && deployGloballyEnabled(), hasScope, armed: deployGloballyEnabled() };
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export const BUILD_PREPARE_SCOPE = "prepare:build";
|
|
227
|
+
export const BUILD_EXECUTE_SCOPE = "build:factory";
|