@edge-protocol/sdk 0.9.2 โ 0.9.3
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/README.md +67 -24
- package/dist/utils/constants.d.ts +8 -0
- package/dist/utils/constants.d.ts.map +1 -1
- package/dist/utils/constants.js +11 -0
- package/dist/utils/constants.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,11 +25,13 @@ import { EdgePass, MIST_PER_SUI } from '@edge-protocol/sdk';
|
|
|
25
25
|
|
|
26
26
|
const sdk = new EdgePass({ network: 'mainnet', enokiApiKey: 'YOUR_KEY' });
|
|
27
27
|
const pass = await sdk.create(EdgePass.fromTemplate('festival', { owner: userAddress }), signer);
|
|
28
|
-
const outcome = await sdk.execute(pass, { merchant: 'Hydra Bar', amount:
|
|
28
|
+
const outcome = await sdk.execute(pass, { merchant: 'Hydra Bar', amount: BigInt(32) * MIST_PER_SUI }, signer);
|
|
29
29
|
|
|
30
30
|
console.log(outcome.status); // 'approved' | 'escalated' | 'blocked'
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
> **Note:** BigInt literal syntax (`32n`) requires TypeScript targeting ES2020+. For ES2019 apps use `BigInt(32) * MIST_PER_SUI` instead.
|
|
34
|
+
|
|
33
35
|
---
|
|
34
36
|
|
|
35
37
|
## ๐ The 5-Dimensional Trust Primitive
|
|
@@ -56,6 +58,7 @@ EdgePass.fromTemplate('gaming', { owner }) // $50 ยท auto <$2 ยท esca
|
|
|
56
58
|
EdgePass.fromTemplate('subscription', { owner }) // $200 ยท auto <$20 ยท escalate >$50 ยท 30d
|
|
57
59
|
EdgePass.fromTemplate('defi', { owner }) // $10k ยท auto <$500 ยท escalate >$1k ยท 7d
|
|
58
60
|
EdgePass.fromTemplate('enterprise', { owner }) // $50k ยท auto <$1k ยท escalate >$5k ยท 30d
|
|
61
|
+
EdgePass.fromTemplate('x402', { owner }) // $1k ยท auto <$10 ยท escalate >$100 ยท 24h ยท x402 payments
|
|
59
62
|
```
|
|
60
63
|
|
|
61
64
|
Example โ brand licensing agent:
|
|
@@ -63,7 +66,7 @@ Example โ brand licensing agent:
|
|
|
63
66
|
```typescript
|
|
64
67
|
EdgePass.fromTemplate('enterprise', {
|
|
65
68
|
approvedMerchants: ['nike-licensing.sui', 'brand-registry.sui'],
|
|
66
|
-
escalateThreshold:
|
|
69
|
+
escalateThreshold: BigInt(10_000) * MIST_PER_SUI,
|
|
67
70
|
owner: cfoAddress,
|
|
68
71
|
})
|
|
69
72
|
// Enforce IP usage terms autonomously โ no lawyers, no monitoring, no surprises
|
|
@@ -77,9 +80,9 @@ Plan an agent's session without touching the chain. Zero network calls.
|
|
|
77
80
|
|
|
78
81
|
```typescript
|
|
79
82
|
const plan = sdk.simulate(pass, [
|
|
80
|
-
{ merchant: 'Shuttle Express', amount:
|
|
81
|
-
{ merchant: 'ShadyTokens.xyz', amount:
|
|
82
|
-
{ merchant: 'Stage Access VIP', amount:
|
|
83
|
+
{ merchant: 'Shuttle Express', amount: BigInt(45) * MIST_PER_SUI },
|
|
84
|
+
{ merchant: 'ShadyTokens.xyz', amount: BigInt(1) },
|
|
85
|
+
{ merchant: 'Stage Access VIP', amount: BigInt(220) * MIST_PER_SUI },
|
|
83
86
|
]);
|
|
84
87
|
|
|
85
88
|
console.log(plan.summary);
|
|
@@ -159,7 +162,7 @@ const safePurchase = EdgePass.withPolicy(pass, signer, sdk, async (request) => {
|
|
|
159
162
|
// blocked/escalated never reach your tool logic
|
|
160
163
|
const { outcome, result } = await safePurchase({
|
|
161
164
|
merchant: 'Hydra Bar',
|
|
162
|
-
amount:
|
|
165
|
+
amount: BigInt(32) * MIST_PER_SUI,
|
|
163
166
|
});
|
|
164
167
|
```
|
|
165
168
|
|
|
@@ -202,7 +205,7 @@ function AgentDashboard({ passId, signer }) {
|
|
|
202
205
|
return (
|
|
203
206
|
<div>
|
|
204
207
|
<progress value={budgetStatus?.utilizationPct} max={100} />
|
|
205
|
-
<button onClick={() => execute({ merchant: 'Hydra Bar', amount:
|
|
208
|
+
<button onClick={() => execute({ merchant: 'Hydra Bar', amount: BigInt(32) * MIST_PER_SUI })}>
|
|
206
209
|
Purchase
|
|
207
210
|
</button>
|
|
208
211
|
</div>
|
|
@@ -291,6 +294,52 @@ if (preview.requiresEscalation) showEscalationModal(preview.reason);
|
|
|
291
294
|
|
|
292
295
|
---
|
|
293
296
|
|
|
297
|
+
## ๐ x402 Integration
|
|
298
|
+
|
|
299
|
+
Edge and x402 are complementary layers in the autonomous payment stack.
|
|
300
|
+
|
|
301
|
+
x402 answers: *how does money move from agent to merchant?*
|
|
302
|
+
Edge answers: *should this agent be allowed to spend this money at all?*
|
|
303
|
+
|
|
304
|
+
```
|
|
305
|
+
Edge (policy layer) โ x402 (payment rail) โ Settlement
|
|
306
|
+
"is this allowed?" "move the money"
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
```typescript
|
|
310
|
+
import { EdgePass, MIST_PER_SUI } from '@edge-protocol/sdk';
|
|
311
|
+
|
|
312
|
+
// 1. Create a trust boundary scoped for x402 payments
|
|
313
|
+
const pass = await sdk.create(
|
|
314
|
+
EdgePass.fromTemplate('x402', {
|
|
315
|
+
approvedMerchants: ['api.example.com', 'data.provider.com'],
|
|
316
|
+
owner: agentAddress,
|
|
317
|
+
}),
|
|
318
|
+
signer
|
|
319
|
+
);
|
|
320
|
+
|
|
321
|
+
// 2. Edge validates policy before x402 moves money
|
|
322
|
+
const outcome = await sdk.execute(pass, {
|
|
323
|
+
merchant: endpoint,
|
|
324
|
+
amount: BigInt(Math.floor(amountUSD * 1e9)),
|
|
325
|
+
}, signer);
|
|
326
|
+
|
|
327
|
+
if (outcome.status === 'approved') {
|
|
328
|
+
// 3. x402 handles the actual payment
|
|
329
|
+
await fetch(endpoint, {
|
|
330
|
+
headers: { 'X-Payment': await createX402Payment(amount) }
|
|
331
|
+
});
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
if (outcome.status === 'escalated') {
|
|
335
|
+
await notifyUser('Payment requires your approval');
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
// blocked โ never reaches x402, policy rejected it
|
|
339
|
+
```
|
|
340
|
+
|
|
341
|
+
---
|
|
342
|
+
|
|
294
343
|
## ๐ Security Model
|
|
295
344
|
|
|
296
345
|
Edge has two enforcement layers:
|
|
@@ -358,35 +407,29 @@ yarn add @edge-protocol/sdk
|
|
|
358
407
|
```
|
|
359
408
|
|
|
360
409
|
React hook (requires React 18+):
|
|
361
|
-
```
|
|
410
|
+
```typescript
|
|
362
411
|
import { useEdgePass } from '@edge-protocol/sdk/react';
|
|
363
412
|
```
|
|
364
413
|
|
|
414
|
+
See [CHANGELOG.md](CHANGELOG.md) for version history.
|
|
415
|
+
|
|
365
416
|
---
|
|
366
417
|
|
|
367
418
|
## Competitive Positioning
|
|
368
419
|
|
|
369
420
|
Edge is the **policy layer** for the agentic economy. It is not a payment rail.
|
|
370
421
|
|
|
371
|
-
| Solution | Layer | Open Source | Sui Native | 3-line SDK |
|
|
372
|
-
|
|
373
|
-
| **Edge Protocol** | Policy enforcement | โ
| โ
| โ
|
|
|
374
|
-
| x402 (Coinbase) | Payment rail | โ
| โ | โ |
|
|
375
|
-
| ERC-4337 | Account abstraction | โ
| โ EVM only | โ |
|
|
376
|
-
| Trust Wallet Agent Kit | Wallet interactions | โ
| Partial | โ |
|
|
377
|
-
| Cobo Agentic Wallet | Custody | โ Enterprise | โ | โ |
|
|
378
|
-
| Skyfire | Identity + settlement | โ | โ | โ |
|
|
422
|
+
| Solution | Layer | Open Source | Sui Native | simulate() | 3-line SDK |
|
|
423
|
+
|----------|-------|-------------|------------|------------|------------|
|
|
424
|
+
| **Edge Protocol** | Policy enforcement | โ
| โ
| โ
| โ
|
|
|
425
|
+
| x402 (Coinbase) | Payment rail | โ
| โ | โ | โ |
|
|
426
|
+
| ERC-4337 | Account abstraction | โ
| โ EVM only | โ | โ |
|
|
427
|
+
| Trust Wallet Agent Kit | Wallet interactions | โ
| Partial | โ | โ |
|
|
428
|
+
| Cobo Agentic Wallet | Custody | โ Enterprise | โ | โ | โ |
|
|
429
|
+
| Skyfire | Identity + settlement | โ | โ | โ | โ |
|
|
379
430
|
|
|
380
431
|
**Edge complements x402, it does not compete with it.**
|
|
381
432
|
|
|
382
|
-
x402 answers: *how does money move from agent to merchant?*
|
|
383
|
-
Edge answers: *should this agent be allowed to spend this money at all?*
|
|
384
|
-
|
|
385
|
-
```
|
|
386
|
-
Edge (policy layer) โ x402 (payment rail) โ Settlement
|
|
387
|
-
"is this allowed?" "move the money"
|
|
388
|
-
```
|
|
389
|
-
|
|
390
433
|
---
|
|
391
434
|
|
|
392
435
|
*The best infrastructure is invisible.*
|
|
@@ -43,6 +43,14 @@ export declare const EDGE_TEMPLATES: {
|
|
|
43
43
|
readonly expiryMs: number;
|
|
44
44
|
readonly approvedMerchants: string[];
|
|
45
45
|
};
|
|
46
|
+
readonly x402: {
|
|
47
|
+
readonly budget: bigint;
|
|
48
|
+
readonly autoThreshold: bigint;
|
|
49
|
+
readonly escalateThreshold: bigint;
|
|
50
|
+
readonly maxPerTransaction: bigint;
|
|
51
|
+
readonly expiryMs: number;
|
|
52
|
+
readonly approvedMerchants: string[];
|
|
53
|
+
};
|
|
46
54
|
};
|
|
47
55
|
export type EdgePassTemplate = keyof typeof EDGE_TEMPLATES;
|
|
48
56
|
export declare const FESTIVAL_MERCHANTS: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/utils/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,QAAwB,CAAC;AAElD,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAI/C,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAIlD,CAAC;AAEF,eAAO,MAAM,kBAAkB,QAAqB,CAAC;AAIrD,eAAO,MAAM,cAAc;;;;;;;oCAOE,MAAM,EAAE;;;;;;;;oCAQR,MAAM,EAAE;;;;;;;;oCAQR,MAAM,EAAE;;;;;;;;oCAQR,MAAM,EAAE;;;;;;;;oCAQR,MAAM,EAAE;;CAE3B,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,MAAM,OAAO,cAAc,CAAC;AAI3D,eAAO,MAAM,kBAAkB,UAM9B,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;CAK3B,CAAC"}
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/utils/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,QAAwB,CAAC;AAElD,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAI/C,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAIlD,CAAC;AAEF,eAAO,MAAM,kBAAkB,QAAqB,CAAC;AAIrD,eAAO,MAAM,cAAc;;;;;;;oCAOE,MAAM,EAAE;;;;;;;;oCAQR,MAAM,EAAE;;;;;;;;oCAQR,MAAM,EAAE;;;;;;;;oCAQR,MAAM,EAAE;;;;;;;;oCAQR,MAAM,EAAE;;;;;;;;oCAWR,MAAM,EAAE;;CAE3B,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,MAAM,OAAO,cAAc,CAAC;AAI3D,eAAO,MAAM,kBAAkB,UAM9B,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;CAK3B,CAAC"}
|
package/dist/utils/constants.js
CHANGED
|
@@ -55,6 +55,17 @@ exports.EDGE_TEMPLATES = {
|
|
|
55
55
|
expiryMs: 30 * 24 * 60 * 60 * 1000,
|
|
56
56
|
approvedMerchants: [],
|
|
57
57
|
},
|
|
58
|
+
// x402 โ designed for Coinbase x402 payment protocol integration
|
|
59
|
+
// Edge validates policy (should this agent pay?), x402 moves the money (how does it pay?)
|
|
60
|
+
// Together they form a complete autonomous payment stack.
|
|
61
|
+
x402: {
|
|
62
|
+
budget: BigInt(1000) * exports.MIST_PER_SUI,
|
|
63
|
+
autoThreshold: BigInt(10) * exports.MIST_PER_SUI,
|
|
64
|
+
escalateThreshold: BigInt(100) * exports.MIST_PER_SUI,
|
|
65
|
+
maxPerTransaction: BigInt(200) * exports.MIST_PER_SUI,
|
|
66
|
+
expiryMs: 24 * 60 * 60 * 1000,
|
|
67
|
+
approvedMerchants: [],
|
|
68
|
+
},
|
|
58
69
|
};
|
|
59
70
|
// โโ Legacy festival constants (kept for backwards compat) โโโโโโโโโโโโโโโโโ
|
|
60
71
|
exports.FESTIVAL_MERCHANTS = [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/utils/constants.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/utils/constants.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED