@owney/sdk 0.7.25-beta.4 → 0.7.25-beta.7
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 -14
- package/dist/index.cjs +590 -181
- package/dist/index.d.cts +51 -9
- package/dist/index.d.ts +51 -9
- package/dist/index.js +531 -119
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,10 @@ npm install @owney/sdk
|
|
|
14
14
|
import { OwneySDK } from "@owney/sdk";
|
|
15
15
|
|
|
16
16
|
// Create the SDK instance
|
|
17
|
-
const sdk = new OwneySDK({
|
|
17
|
+
const sdk = new OwneySDK({
|
|
18
|
+
apiKey: "your-owney-api-key",
|
|
19
|
+
routingApiBaseUrl: "https://your-routing-api.example",
|
|
20
|
+
});
|
|
18
21
|
|
|
19
22
|
// Connect with an EIP-1193 wallet provider
|
|
20
23
|
await sdk.connect(provider);
|
|
@@ -35,33 +38,76 @@ Create a new SDK instance.
|
|
|
35
38
|
| Param | Type | Description |
|
|
36
39
|
| --------------------------------------- | ----------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
|
|
37
40
|
| `config.apiKey` | `string` | Your Owney API key, used to authenticate with the routing API and fetch agent-specific keys |
|
|
38
|
-
| `config.
|
|
41
|
+
| `config.routingApiBaseUrl` | `string` (optional) | Routing API URL; required for proxy reads unless the SDK build has `OWNEY_ROUTING_API_BASE_URL` or all `rpcUrls` are set |
|
|
42
|
+
| `config.rpcUrls` | `{ 1?: string; 8453?: string; 42161?: string }` (optional) | Per-chain RPC overrides used by agent reads and transaction-receipt polling |
|
|
43
|
+
| `config.zyfaiRpcUrls` | Same as `rpcUrls` (deprecated) | Legacy Zyfai-only override; use `rpcUrls` for all application-owned reads |
|
|
39
44
|
|
|
40
45
|
```typescript
|
|
41
46
|
import { OwneySDK } from "@owney/sdk";
|
|
42
47
|
|
|
43
|
-
const sdk = new OwneySDK({
|
|
48
|
+
const sdk = new OwneySDK({
|
|
49
|
+
apiKey: "your-owney-api-key",
|
|
50
|
+
routingApiBaseUrl: "https://your-routing-api.example",
|
|
51
|
+
});
|
|
44
52
|
```
|
|
45
53
|
|
|
46
|
-
####
|
|
54
|
+
#### Dedicated RPC URLs
|
|
47
55
|
|
|
48
|
-
Use `
|
|
56
|
+
Use `rpcUrls` for application-owned chain reads and transaction-receipt
|
|
57
|
+
polling. The connected wallet provider remains responsible for accounts, chain
|
|
58
|
+
switching, signatures, and transaction submission.
|
|
59
|
+
|
|
60
|
+
`rpcUrls` is optional. The SDK resolves an endpoint independently for each
|
|
61
|
+
supported chain using this precedence:
|
|
62
|
+
|
|
63
|
+
1. The caller-provided `rpcUrls[chainId]`, when present and non-empty.
|
|
64
|
+
2. The Owney routing API read-only RPC proxy for that chain.
|
|
65
|
+
|
|
66
|
+
The Alchemy credential stays on the routing API server. The SDK sends its
|
|
67
|
+
existing organization key to the proxy for per-organization rate limiting.
|
|
68
|
+
The proxy base URL must be provided through `routingApiBaseUrl` or the SDK
|
|
69
|
+
build's `OWNEY_ROUTING_API_BASE_URL`; there is no hardcoded production fallback.
|
|
49
70
|
|
|
50
71
|
```typescript
|
|
72
|
+
// All supported chains use the Owney routing API proxy.
|
|
51
73
|
const sdk = new OwneySDK({
|
|
52
74
|
apiKey: "your-owney-api-key",
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
75
|
+
routingApiBaseUrl: "https://your-routing-api.example",
|
|
76
|
+
});
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Overrides can be complete or partial:
|
|
80
|
+
|
|
81
|
+
```typescript
|
|
82
|
+
const sdk = new OwneySDK({
|
|
83
|
+
apiKey: "your-owney-api-key",
|
|
84
|
+
routingApiBaseUrl: "https://your-routing-api.example",
|
|
85
|
+
rpcUrls: {
|
|
86
|
+
// Ethereum and Arbitrum continue using the routing API proxy.
|
|
87
|
+
8453: "https://your-own-rpc.example/rpc",
|
|
56
88
|
},
|
|
57
89
|
});
|
|
58
90
|
```
|
|
59
91
|
|
|
92
|
+
The resolved URLs are shared across Owney-owned reads and agent integrations:
|
|
93
|
+
|
|
94
|
+
- Wagmi or application transports remain the consuming application's
|
|
95
|
+
responsibility; Owney mini-apps configure them from the same URL map.
|
|
96
|
+
- Zyfai receives the resolved Owney URL map, so its internal provider defaults
|
|
97
|
+
do not determine routing for Owney SDK consumers.
|
|
98
|
+
- Yieldseeker uses the resolved Base URL for transaction-receipt polling.
|
|
99
|
+
- Balance, allowance, module-state, and receipt reads use the resolved RPC.
|
|
100
|
+
- Account access, chain switching, signatures, approvals, and transaction
|
|
101
|
+
submission continue through the connected wallet provider.
|
|
102
|
+
|
|
60
103
|
Notes:
|
|
61
104
|
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
105
|
+
- Owney mini-apps pass the same routing API proxy URLs to Wagmi and the SDK.
|
|
106
|
+
- SDK consumers may override endpoints if they operate their own RPC provider.
|
|
107
|
+
- Partial maps override only the supplied chains; missing chains use Owney's
|
|
108
|
+
routing API proxy.
|
|
109
|
+
- HTTP reads use bounded retries and honor provider `Retry-After` responses.
|
|
110
|
+
- `zyfaiRpcUrls` remains available for compatibility but applies only to Zyfai.
|
|
65
111
|
|
|
66
112
|
### `connect(provider)`
|
|
67
113
|
|
|
@@ -125,7 +171,7 @@ await sdk.activateAgent(42161);
|
|
|
125
171
|
|
|
126
172
|
### `deposit(options)`
|
|
127
173
|
|
|
128
|
-
Deposit funds into a specific agent, or split equally across all agents if `agentId` is omitted. Validates that the asset is supported by the target agent(s) on the active chain, and per-agent minimum deposit amounts (defined per chain+asset on `agent.supportedAssets[].assets[].minDepositAmount`) are taken into account. Custom `depositCallback` implementations run once per final valid agent. The default Permit2 flow signs one recipient-bound batch authorization for every agent share.
|
|
174
|
+
Deposit funds into a specific agent, or split equally across all agents if `agentId` is omitted. Validates that the asset is supported by the target agent(s) on the active chain, and per-agent minimum deposit amounts (defined per chain+asset on `agent.supportedAssets[].assets[].minDepositAmount`) are taken into account. Custom `depositCallback` implementations run once per final valid agent. The default Permit2 flow signs one recipient-bound batch authorization for every agent share. On the first Base USDC deposit, the SDK first requests an ERC-2612 signature and atomically bundles the maximum Permit2 approval with that batch in one sponsored transaction; later deposits need only the batch signature.
|
|
129
175
|
|
|
130
176
|
| Param | Type | Description |
|
|
131
177
|
| ------------------------- | -------------------- | --------------------------------------------------------------- |
|
|
@@ -439,8 +485,8 @@ console.log(usdcBaseApy.agentApy.zyfai.averageApy); // APY scoped to USDC on Bas
|
|
|
439
485
|
type AgentId = "zyfai";
|
|
440
486
|
type Asset = string;
|
|
441
487
|
type DailyApyDays = "7D" | "14D" | "30D";
|
|
442
|
-
type OwneySupportedChainId = 8453 | 42161;
|
|
443
|
-
type OwneySupportedChains = "BASE" | "ARBITRUM";
|
|
488
|
+
type OwneySupportedChainId = 1 | 8453 | 42161;
|
|
489
|
+
type OwneySupportedChains = "ETHEREUM" | "BASE" | "ARBITRUM";
|
|
444
490
|
type OwneySupportedTokens = "USDC" | "WETH";
|
|
445
491
|
|
|
446
492
|
type AgentSupportedAsset = {
|
|
@@ -457,7 +503,14 @@ type AgentSupportedAssets = {
|
|
|
457
503
|
|
|
458
504
|
interface OwneySDKConfig {
|
|
459
505
|
apiKey: string;
|
|
506
|
+
rpcUrls?: {
|
|
507
|
+
1?: string;
|
|
508
|
+
8453?: string;
|
|
509
|
+
42161?: string;
|
|
510
|
+
};
|
|
511
|
+
/** @deprecated Use rpcUrls. */
|
|
460
512
|
zyfaiRpcUrls?: {
|
|
513
|
+
1?: string;
|
|
461
514
|
8453?: string;
|
|
462
515
|
42161?: string;
|
|
463
516
|
};
|