agentwallet-sdk 2.4.0 → 2.4.1

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 (45) hide show
  1. package/dist/bridge/__tests__/bridge.test.d.ts +2 -0
  2. package/dist/bridge/__tests__/bridge.test.d.ts.map +1 -0
  3. package/dist/bridge/__tests__/bridge.test.js +508 -0
  4. package/dist/bridge/__tests__/bridge.test.js.map +1 -0
  5. package/dist/bridge/abis.d.ts +187 -0
  6. package/dist/bridge/abis.d.ts.map +1 -0
  7. package/dist/bridge/abis.js +129 -0
  8. package/dist/bridge/abis.js.map +1 -0
  9. package/dist/bridge/client.d.ts +106 -0
  10. package/dist/bridge/client.d.ts.map +1 -0
  11. package/dist/bridge/client.js +393 -0
  12. package/dist/bridge/client.js.map +1 -0
  13. package/dist/bridge/index.d.ts +4 -0
  14. package/dist/bridge/index.d.ts.map +1 -0
  15. package/dist/bridge/index.js +4 -0
  16. package/dist/bridge/index.js.map +1 -0
  17. package/dist/bridge/types.d.ts +107 -0
  18. package/dist/bridge/types.d.ts.map +1 -0
  19. package/dist/bridge/types.js +58 -0
  20. package/dist/bridge/types.js.map +1 -0
  21. package/dist/index.d.ts +504 -213
  22. package/dist/index.d.ts.map +1 -1
  23. package/dist/index.js +7 -0
  24. package/dist/index.js.map +1 -1
  25. package/dist/swap/SwapModule.d.ts +75 -0
  26. package/dist/swap/SwapModule.d.ts.map +1 -0
  27. package/dist/swap/SwapModule.js +267 -0
  28. package/dist/swap/SwapModule.js.map +1 -0
  29. package/dist/swap/__tests__/swap.test.d.ts +2 -0
  30. package/dist/swap/__tests__/swap.test.d.ts.map +1 -0
  31. package/dist/swap/__tests__/swap.test.js +272 -0
  32. package/dist/swap/__tests__/swap.test.js.map +1 -0
  33. package/dist/swap/abi.d.ts +169 -0
  34. package/dist/swap/abi.d.ts.map +1 -0
  35. package/dist/swap/abi.js +118 -0
  36. package/dist/swap/abi.js.map +1 -0
  37. package/dist/swap/index.d.ts +5 -0
  38. package/dist/swap/index.d.ts.map +1 -0
  39. package/dist/swap/index.js +5 -0
  40. package/dist/swap/index.js.map +1 -0
  41. package/dist/swap/types.d.ts +79 -0
  42. package/dist/swap/types.d.ts.map +1 -0
  43. package/dist/swap/types.js +18 -0
  44. package/dist/swap/types.js.map +1 -0
  45. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -4,8 +4,15 @@ export type { SpendPolicy, BudgetStatus, PendingTx, ExecuteResult, AgentWalletCo
4
4
  export { AgentAccountV2Abi, AgentAccountFactoryV2Abi } from './abi.js';
5
5
  export { ERC8004Client, ERC8004IdentityRegistryAbi, METADATA_KEYS, REGISTRATION_FILE_TYPE, KNOWN_REGISTRY_ADDRESSES, buildDataURI, parseDataURI, resolveAgentURI, validateRegistrationFile, formatAgentRegistry, } from './identity/erc8004.js';
6
6
  export type { AgentIdentity, AgentRegistrationFile, AgentServiceEndpoint, AgentRegistrationRef, AgentModelMetadata, ERC8004ClientConfig, MetadataEntry, RegistrationResult, SupportedTrustMechanism, } from './identity/erc8004.js';
7
+ export { SwapModule, attachSwap, calcProtocolFee, applySlippage, calcDeadline, } from './swap/index.js';
8
+ export { UniswapV3RouterAbi, UniswapV3QuoterV2Abi, ERC20Abi, } from './swap/index.js';
9
+ export { BASE_TOKENS, UNISWAP_V3_BASE, PROTOCOL_FEE_BPS, DEFAULT_SLIPPAGE_BPS, } from './swap/index.js';
10
+ export type { UniswapFeeTier, SwapQuote, SwapOptions, SwapResult, SwapModuleConfig, } from './swap/index.js';
7
11
  export { X402Client, X402BudgetTracker, X402PaymentError, X402BudgetExceededError, createX402Client, createX402Fetch, wrapWithX402, USDC_ADDRESSES, DEFAULT_SUPPORTED_NETWORKS, } from './x402/index.js';
8
12
  export type { X402PaymentRequired, X402PaymentRequirements, X402PaymentPayload, X402SettlementResponse, X402ResourceInfo, X402ServiceBudget, X402TransactionLog, X402ClientConfig, } from './x402/index.js';
13
+ export { BridgeModule, BridgeError, createBridge, CCTP_DOMAIN_IDS, BRIDGE_CHAIN_IDS, USDC_CONTRACT, TOKEN_MESSENGER_V2, MESSAGE_TRANSMITTER_V2, FINALITY_THRESHOLD, } from './bridge/index.js';
14
+ export type { BridgeChain, BridgeOptions, BurnResult, BridgeResult, AttestationResponse, AttestationStatus, } from './bridge/index.js';
15
+ export { TokenMessengerV2Abi, MessageTransmitterV2Abi, ERC20BridgeAbi } from './bridge/index.js';
9
16
  /** Native ETH token address (zero address) */
10
17
  export declare const NATIVE_TOKEN: Address;
11
18
  /**
@@ -137,9 +144,6 @@ export declare function createWallet(config: AgentWalletConfig & {
137
144
  readonly stateMutability: "view";
138
145
  readonly inputs: readonly [{
139
146
  readonly name: "txId";
140
- /**
141
- * Create a wallet client connected to an existing AgentAccountV2.
142
- */
143
147
  readonly type: "uint256";
144
148
  }];
145
149
  readonly outputs: readonly [{
@@ -211,6 +215,9 @@ export declare function createWallet(config: AgentWalletConfig & {
211
215
  }];
212
216
  }, {
213
217
  readonly name: "nonce";
218
+ /**
219
+ * Create a wallet client connected to an existing AgentAccountV2.
220
+ */
214
221
  readonly type: "function";
215
222
  readonly stateMutability: "view";
216
223
  readonly inputs: readonly [];
@@ -282,6 +289,10 @@ export declare function createWallet(config: AgentWalletConfig & {
282
289
  readonly type: "event";
283
290
  readonly inputs: readonly [{
284
291
  readonly name: "token";
292
+ /**
293
+ * Execute a transaction as the agent. If within limits, executes immediately.
294
+ * If over limits, queues for owner approval and returns the pending tx ID.
295
+ */
285
296
  readonly type: "address";
286
297
  readonly indexed: true;
287
298
  }, {
@@ -470,9 +481,6 @@ export declare function createWallet(config: AgentWalletConfig & {
470
481
  readonly stateMutability: "view";
471
482
  readonly inputs: readonly [{
472
483
  readonly name: "txId";
473
- /**
474
- * Create a wallet client connected to an existing AgentAccountV2.
475
- */
476
484
  readonly type: "uint256";
477
485
  }];
478
486
  readonly outputs: readonly [{
@@ -544,6 +552,9 @@ export declare function createWallet(config: AgentWalletConfig & {
544
552
  }];
545
553
  }, {
546
554
  readonly name: "nonce";
555
+ /**
556
+ * Create a wallet client connected to an existing AgentAccountV2.
557
+ */
547
558
  readonly type: "function";
548
559
  readonly stateMutability: "view";
549
560
  readonly inputs: readonly [];
@@ -615,6 +626,10 @@ export declare function createWallet(config: AgentWalletConfig & {
615
626
  readonly type: "event";
616
627
  readonly inputs: readonly [{
617
628
  readonly name: "token";
629
+ /**
630
+ * Execute a transaction as the agent. If within limits, executes immediately.
631
+ * If over limits, queues for owner approval and returns the pending tx ID.
632
+ */
618
633
  readonly type: "address";
619
634
  readonly indexed: true;
620
635
  }, {
@@ -803,9 +818,6 @@ export declare function createWallet(config: AgentWalletConfig & {
803
818
  readonly stateMutability: "view";
804
819
  readonly inputs: readonly [{
805
820
  readonly name: "txId";
806
- /**
807
- * Create a wallet client connected to an existing AgentAccountV2.
808
- */
809
821
  readonly type: "uint256";
810
822
  }];
811
823
  readonly outputs: readonly [{
@@ -877,6 +889,9 @@ export declare function createWallet(config: AgentWalletConfig & {
877
889
  }];
878
890
  }, {
879
891
  readonly name: "nonce";
892
+ /**
893
+ * Create a wallet client connected to an existing AgentAccountV2.
894
+ */
880
895
  readonly type: "function";
881
896
  readonly stateMutability: "view";
882
897
  readonly inputs: readonly [];
@@ -948,6 +963,10 @@ export declare function createWallet(config: AgentWalletConfig & {
948
963
  readonly type: "event";
949
964
  readonly inputs: readonly [{
950
965
  readonly name: "token";
966
+ /**
967
+ * Execute a transaction as the agent. If within limits, executes immediately.
968
+ * If over limits, queues for owner approval and returns the pending tx ID.
969
+ */
951
970
  readonly type: "address";
952
971
  readonly indexed: true;
953
972
  }, {
@@ -1136,9 +1155,6 @@ export declare function createWallet(config: AgentWalletConfig & {
1136
1155
  readonly stateMutability: "view";
1137
1156
  readonly inputs: readonly [{
1138
1157
  readonly name: "txId";
1139
- /**
1140
- * Create a wallet client connected to an existing AgentAccountV2.
1141
- */
1142
1158
  readonly type: "uint256";
1143
1159
  }];
1144
1160
  readonly outputs: readonly [{
@@ -1210,6 +1226,9 @@ export declare function createWallet(config: AgentWalletConfig & {
1210
1226
  }];
1211
1227
  }, {
1212
1228
  readonly name: "nonce";
1229
+ /**
1230
+ * Create a wallet client connected to an existing AgentAccountV2.
1231
+ */
1213
1232
  readonly type: "function";
1214
1233
  readonly stateMutability: "view";
1215
1234
  readonly inputs: readonly [];
@@ -1281,6 +1300,10 @@ export declare function createWallet(config: AgentWalletConfig & {
1281
1300
  readonly type: "event";
1282
1301
  readonly inputs: readonly [{
1283
1302
  readonly name: "token";
1303
+ /**
1304
+ * Execute a transaction as the agent. If within limits, executes immediately.
1305
+ * If over limits, queues for owner approval and returns the pending tx ID.
1306
+ */
1284
1307
  readonly type: "address";
1285
1308
  readonly indexed: true;
1286
1309
  }, {
@@ -1469,9 +1492,6 @@ export declare function createWallet(config: AgentWalletConfig & {
1469
1492
  readonly stateMutability: "view";
1470
1493
  readonly inputs: readonly [{
1471
1494
  readonly name: "txId";
1472
- /**
1473
- * Create a wallet client connected to an existing AgentAccountV2.
1474
- */
1475
1495
  readonly type: "uint256";
1476
1496
  }];
1477
1497
  readonly outputs: readonly [{
@@ -1543,6 +1563,9 @@ export declare function createWallet(config: AgentWalletConfig & {
1543
1563
  }];
1544
1564
  }, {
1545
1565
  readonly name: "nonce";
1566
+ /**
1567
+ * Create a wallet client connected to an existing AgentAccountV2.
1568
+ */
1546
1569
  readonly type: "function";
1547
1570
  readonly stateMutability: "view";
1548
1571
  readonly inputs: readonly [];
@@ -1614,6 +1637,10 @@ export declare function createWallet(config: AgentWalletConfig & {
1614
1637
  readonly type: "event";
1615
1638
  readonly inputs: readonly [{
1616
1639
  readonly name: "token";
1640
+ /**
1641
+ * Execute a transaction as the agent. If within limits, executes immediately.
1642
+ * If over limits, queues for owner approval and returns the pending tx ID.
1643
+ */
1617
1644
  readonly type: "address";
1618
1645
  readonly indexed: true;
1619
1646
  }, {
@@ -1802,9 +1829,6 @@ export declare function createWallet(config: AgentWalletConfig & {
1802
1829
  readonly stateMutability: "view";
1803
1830
  readonly inputs: readonly [{
1804
1831
  readonly name: "txId";
1805
- /**
1806
- * Create a wallet client connected to an existing AgentAccountV2.
1807
- */
1808
1832
  readonly type: "uint256";
1809
1833
  }];
1810
1834
  readonly outputs: readonly [{
@@ -1876,6 +1900,9 @@ export declare function createWallet(config: AgentWalletConfig & {
1876
1900
  }];
1877
1901
  }, {
1878
1902
  readonly name: "nonce";
1903
+ /**
1904
+ * Create a wallet client connected to an existing AgentAccountV2.
1905
+ */
1879
1906
  readonly type: "function";
1880
1907
  readonly stateMutability: "view";
1881
1908
  readonly inputs: readonly [];
@@ -1947,6 +1974,10 @@ export declare function createWallet(config: AgentWalletConfig & {
1947
1974
  readonly type: "event";
1948
1975
  readonly inputs: readonly [{
1949
1976
  readonly name: "token";
1977
+ /**
1978
+ * Execute a transaction as the agent. If within limits, executes immediately.
1979
+ * If over limits, queues for owner approval and returns the pending tx ID.
1980
+ */
1950
1981
  readonly type: "address";
1951
1982
  readonly indexed: true;
1952
1983
  }, {
@@ -2135,9 +2166,6 @@ export declare function createWallet(config: AgentWalletConfig & {
2135
2166
  readonly stateMutability: "view";
2136
2167
  readonly inputs: readonly [{
2137
2168
  readonly name: "txId";
2138
- /**
2139
- * Create a wallet client connected to an existing AgentAccountV2.
2140
- */
2141
2169
  readonly type: "uint256";
2142
2170
  }];
2143
2171
  readonly outputs: readonly [{
@@ -2209,6 +2237,9 @@ export declare function createWallet(config: AgentWalletConfig & {
2209
2237
  }];
2210
2238
  }, {
2211
2239
  readonly name: "nonce";
2240
+ /**
2241
+ * Create a wallet client connected to an existing AgentAccountV2.
2242
+ */
2212
2243
  readonly type: "function";
2213
2244
  readonly stateMutability: "view";
2214
2245
  readonly inputs: readonly [];
@@ -2280,6 +2311,10 @@ export declare function createWallet(config: AgentWalletConfig & {
2280
2311
  readonly type: "event";
2281
2312
  readonly inputs: readonly [{
2282
2313
  readonly name: "token";
2314
+ /**
2315
+ * Execute a transaction as the agent. If within limits, executes immediately.
2316
+ * If over limits, queues for owner approval and returns the pending tx ID.
2317
+ */
2283
2318
  readonly type: "address";
2284
2319
  readonly indexed: true;
2285
2320
  }, {
@@ -2468,9 +2503,6 @@ export declare function createWallet(config: AgentWalletConfig & {
2468
2503
  readonly stateMutability: "view";
2469
2504
  readonly inputs: readonly [{
2470
2505
  readonly name: "txId";
2471
- /**
2472
- * Create a wallet client connected to an existing AgentAccountV2.
2473
- */
2474
2506
  readonly type: "uint256";
2475
2507
  }];
2476
2508
  readonly outputs: readonly [{
@@ -2542,6 +2574,9 @@ export declare function createWallet(config: AgentWalletConfig & {
2542
2574
  }];
2543
2575
  }, {
2544
2576
  readonly name: "nonce";
2577
+ /**
2578
+ * Create a wallet client connected to an existing AgentAccountV2.
2579
+ */
2545
2580
  readonly type: "function";
2546
2581
  readonly stateMutability: "view";
2547
2582
  readonly inputs: readonly [];
@@ -2613,6 +2648,10 @@ export declare function createWallet(config: AgentWalletConfig & {
2613
2648
  readonly type: "event";
2614
2649
  readonly inputs: readonly [{
2615
2650
  readonly name: "token";
2651
+ /**
2652
+ * Execute a transaction as the agent. If within limits, executes immediately.
2653
+ * If over limits, queues for owner approval and returns the pending tx ID.
2654
+ */
2616
2655
  readonly type: "address";
2617
2656
  readonly indexed: true;
2618
2657
  }, {
@@ -2801,9 +2840,6 @@ export declare function createWallet(config: AgentWalletConfig & {
2801
2840
  readonly stateMutability: "view";
2802
2841
  readonly inputs: readonly [{
2803
2842
  readonly name: "txId";
2804
- /**
2805
- * Create a wallet client connected to an existing AgentAccountV2.
2806
- */
2807
2843
  readonly type: "uint256";
2808
2844
  }];
2809
2845
  readonly outputs: readonly [{
@@ -2875,6 +2911,9 @@ export declare function createWallet(config: AgentWalletConfig & {
2875
2911
  }];
2876
2912
  }, {
2877
2913
  readonly name: "nonce";
2914
+ /**
2915
+ * Create a wallet client connected to an existing AgentAccountV2.
2916
+ */
2878
2917
  readonly type: "function";
2879
2918
  readonly stateMutability: "view";
2880
2919
  readonly inputs: readonly [];
@@ -2946,6 +2985,10 @@ export declare function createWallet(config: AgentWalletConfig & {
2946
2985
  readonly type: "event";
2947
2986
  readonly inputs: readonly [{
2948
2987
  readonly name: "token";
2988
+ /**
2989
+ * Execute a transaction as the agent. If within limits, executes immediately.
2990
+ * If over limits, queues for owner approval and returns the pending tx ID.
2991
+ */
2949
2992
  readonly type: "address";
2950
2993
  readonly indexed: true;
2951
2994
  }, {
@@ -3134,9 +3177,6 @@ export declare function createWallet(config: AgentWalletConfig & {
3134
3177
  readonly stateMutability: "view";
3135
3178
  readonly inputs: readonly [{
3136
3179
  readonly name: "txId";
3137
- /**
3138
- * Create a wallet client connected to an existing AgentAccountV2.
3139
- */
3140
3180
  readonly type: "uint256";
3141
3181
  }];
3142
3182
  readonly outputs: readonly [{
@@ -3208,6 +3248,9 @@ export declare function createWallet(config: AgentWalletConfig & {
3208
3248
  }];
3209
3249
  }, {
3210
3250
  readonly name: "nonce";
3251
+ /**
3252
+ * Create a wallet client connected to an existing AgentAccountV2.
3253
+ */
3211
3254
  readonly type: "function";
3212
3255
  readonly stateMutability: "view";
3213
3256
  readonly inputs: readonly [];
@@ -3279,6 +3322,10 @@ export declare function createWallet(config: AgentWalletConfig & {
3279
3322
  readonly type: "event";
3280
3323
  readonly inputs: readonly [{
3281
3324
  readonly name: "token";
3325
+ /**
3326
+ * Execute a transaction as the agent. If within limits, executes immediately.
3327
+ * If over limits, queues for owner approval and returns the pending tx ID.
3328
+ */
3282
3329
  readonly type: "address";
3283
3330
  readonly indexed: true;
3284
3331
  }, {
@@ -3469,9 +3516,6 @@ export declare function createWallet(config: AgentWalletConfig & {
3469
3516
  readonly stateMutability: "view";
3470
3517
  readonly inputs: readonly [{
3471
3518
  readonly name: "txId";
3472
- /**
3473
- * Create a wallet client connected to an existing AgentAccountV2.
3474
- */
3475
3519
  readonly type: "uint256";
3476
3520
  }];
3477
3521
  readonly outputs: readonly [{
@@ -3543,6 +3587,9 @@ export declare function createWallet(config: AgentWalletConfig & {
3543
3587
  }];
3544
3588
  }, {
3545
3589
  readonly name: "nonce";
3590
+ /**
3591
+ * Create a wallet client connected to an existing AgentAccountV2.
3592
+ */
3546
3593
  readonly type: "function";
3547
3594
  readonly stateMutability: "view";
3548
3595
  readonly inputs: readonly [];
@@ -3614,6 +3661,10 @@ export declare function createWallet(config: AgentWalletConfig & {
3614
3661
  readonly type: "event";
3615
3662
  readonly inputs: readonly [{
3616
3663
  readonly name: "token";
3664
+ /**
3665
+ * Execute a transaction as the agent. If within limits, executes immediately.
3666
+ * If over limits, queues for owner approval and returns the pending tx ID.
3667
+ */
3617
3668
  readonly type: "address";
3618
3669
  readonly indexed: true;
3619
3670
  }, {
@@ -3802,9 +3853,6 @@ export declare function createWallet(config: AgentWalletConfig & {
3802
3853
  readonly stateMutability: "view";
3803
3854
  readonly inputs: readonly [{
3804
3855
  readonly name: "txId";
3805
- /**
3806
- * Create a wallet client connected to an existing AgentAccountV2.
3807
- */
3808
3856
  readonly type: "uint256";
3809
3857
  }];
3810
3858
  readonly outputs: readonly [{
@@ -3876,6 +3924,9 @@ export declare function createWallet(config: AgentWalletConfig & {
3876
3924
  }];
3877
3925
  }, {
3878
3926
  readonly name: "nonce";
3927
+ /**
3928
+ * Create a wallet client connected to an existing AgentAccountV2.
3929
+ */
3879
3930
  readonly type: "function";
3880
3931
  readonly stateMutability: "view";
3881
3932
  readonly inputs: readonly [];
@@ -3947,6 +3998,10 @@ export declare function createWallet(config: AgentWalletConfig & {
3947
3998
  readonly type: "event";
3948
3999
  readonly inputs: readonly [{
3949
4000
  readonly name: "token";
4001
+ /**
4002
+ * Execute a transaction as the agent. If within limits, executes immediately.
4003
+ * If over limits, queues for owner approval and returns the pending tx ID.
4004
+ */
3950
4005
  readonly type: "address";
3951
4006
  readonly indexed: true;
3952
4007
  }, {
@@ -4135,9 +4190,6 @@ export declare function createWallet(config: AgentWalletConfig & {
4135
4190
  readonly stateMutability: "view";
4136
4191
  readonly inputs: readonly [{
4137
4192
  readonly name: "txId";
4138
- /**
4139
- * Create a wallet client connected to an existing AgentAccountV2.
4140
- */
4141
4193
  readonly type: "uint256";
4142
4194
  }];
4143
4195
  readonly outputs: readonly [{
@@ -4209,6 +4261,9 @@ export declare function createWallet(config: AgentWalletConfig & {
4209
4261
  }];
4210
4262
  }, {
4211
4263
  readonly name: "nonce";
4264
+ /**
4265
+ * Create a wallet client connected to an existing AgentAccountV2.
4266
+ */
4212
4267
  readonly type: "function";
4213
4268
  readonly stateMutability: "view";
4214
4269
  readonly inputs: readonly [];
@@ -4280,6 +4335,10 @@ export declare function createWallet(config: AgentWalletConfig & {
4280
4335
  readonly type: "event";
4281
4336
  readonly inputs: readonly [{
4282
4337
  readonly name: "token";
4338
+ /**
4339
+ * Execute a transaction as the agent. If within limits, executes immediately.
4340
+ * If over limits, queues for owner approval and returns the pending tx ID.
4341
+ */
4283
4342
  readonly type: "address";
4284
4343
  readonly indexed: true;
4285
4344
  }, {
@@ -4468,9 +4527,6 @@ export declare function createWallet(config: AgentWalletConfig & {
4468
4527
  readonly stateMutability: "view";
4469
4528
  readonly inputs: readonly [{
4470
4529
  readonly name: "txId";
4471
- /**
4472
- * Create a wallet client connected to an existing AgentAccountV2.
4473
- */
4474
4530
  readonly type: "uint256";
4475
4531
  }];
4476
4532
  readonly outputs: readonly [{
@@ -4542,6 +4598,9 @@ export declare function createWallet(config: AgentWalletConfig & {
4542
4598
  }];
4543
4599
  }, {
4544
4600
  readonly name: "nonce";
4601
+ /**
4602
+ * Create a wallet client connected to an existing AgentAccountV2.
4603
+ */
4545
4604
  readonly type: "function";
4546
4605
  readonly stateMutability: "view";
4547
4606
  readonly inputs: readonly [];
@@ -4613,6 +4672,10 @@ export declare function createWallet(config: AgentWalletConfig & {
4613
4672
  readonly type: "event";
4614
4673
  readonly inputs: readonly [{
4615
4674
  readonly name: "token";
4675
+ /**
4676
+ * Execute a transaction as the agent. If within limits, executes immediately.
4677
+ * If over limits, queues for owner approval and returns the pending tx ID.
4678
+ */
4616
4679
  readonly type: "address";
4617
4680
  readonly indexed: true;
4618
4681
  }, {
@@ -4801,9 +4864,6 @@ export declare function createWallet(config: AgentWalletConfig & {
4801
4864
  readonly stateMutability: "view";
4802
4865
  readonly inputs: readonly [{
4803
4866
  readonly name: "txId";
4804
- /**
4805
- * Create a wallet client connected to an existing AgentAccountV2.
4806
- */
4807
4867
  readonly type: "uint256";
4808
4868
  }];
4809
4869
  readonly outputs: readonly [{
@@ -4875,6 +4935,9 @@ export declare function createWallet(config: AgentWalletConfig & {
4875
4935
  }];
4876
4936
  }, {
4877
4937
  readonly name: "nonce";
4938
+ /**
4939
+ * Create a wallet client connected to an existing AgentAccountV2.
4940
+ */
4878
4941
  readonly type: "function";
4879
4942
  readonly stateMutability: "view";
4880
4943
  readonly inputs: readonly [];
@@ -4946,6 +5009,10 @@ export declare function createWallet(config: AgentWalletConfig & {
4946
5009
  readonly type: "event";
4947
5010
  readonly inputs: readonly [{
4948
5011
  readonly name: "token";
5012
+ /**
5013
+ * Execute a transaction as the agent. If within limits, executes immediately.
5014
+ * If over limits, queues for owner approval and returns the pending tx ID.
5015
+ */
4949
5016
  readonly type: "address";
4950
5017
  readonly indexed: true;
4951
5018
  }, {
@@ -5134,9 +5201,6 @@ export declare function createWallet(config: AgentWalletConfig & {
5134
5201
  readonly stateMutability: "view";
5135
5202
  readonly inputs: readonly [{
5136
5203
  readonly name: "txId";
5137
- /**
5138
- * Create a wallet client connected to an existing AgentAccountV2.
5139
- */
5140
5204
  readonly type: "uint256";
5141
5205
  }];
5142
5206
  readonly outputs: readonly [{
@@ -5208,6 +5272,9 @@ export declare function createWallet(config: AgentWalletConfig & {
5208
5272
  }];
5209
5273
  }, {
5210
5274
  readonly name: "nonce";
5275
+ /**
5276
+ * Create a wallet client connected to an existing AgentAccountV2.
5277
+ */
5211
5278
  readonly type: "function";
5212
5279
  readonly stateMutability: "view";
5213
5280
  readonly inputs: readonly [];
@@ -5279,6 +5346,10 @@ export declare function createWallet(config: AgentWalletConfig & {
5279
5346
  readonly type: "event";
5280
5347
  readonly inputs: readonly [{
5281
5348
  readonly name: "token";
5349
+ /**
5350
+ * Execute a transaction as the agent. If within limits, executes immediately.
5351
+ * If over limits, queues for owner approval and returns the pending tx ID.
5352
+ */
5282
5353
  readonly type: "address";
5283
5354
  readonly indexed: true;
5284
5355
  }, {
@@ -5467,9 +5538,6 @@ export declare function createWallet(config: AgentWalletConfig & {
5467
5538
  readonly stateMutability: "view";
5468
5539
  readonly inputs: readonly [{
5469
5540
  readonly name: "txId";
5470
- /**
5471
- * Create a wallet client connected to an existing AgentAccountV2.
5472
- */
5473
5541
  readonly type: "uint256";
5474
5542
  }];
5475
5543
  readonly outputs: readonly [{
@@ -5541,6 +5609,9 @@ export declare function createWallet(config: AgentWalletConfig & {
5541
5609
  }];
5542
5610
  }, {
5543
5611
  readonly name: "nonce";
5612
+ /**
5613
+ * Create a wallet client connected to an existing AgentAccountV2.
5614
+ */
5544
5615
  readonly type: "function";
5545
5616
  readonly stateMutability: "view";
5546
5617
  readonly inputs: readonly [];
@@ -5612,6 +5683,10 @@ export declare function createWallet(config: AgentWalletConfig & {
5612
5683
  readonly type: "event";
5613
5684
  readonly inputs: readonly [{
5614
5685
  readonly name: "token";
5686
+ /**
5687
+ * Execute a transaction as the agent. If within limits, executes immediately.
5688
+ * If over limits, queues for owner approval and returns the pending tx ID.
5689
+ */
5615
5690
  readonly type: "address";
5616
5691
  readonly indexed: true;
5617
5692
  }, {
@@ -5801,9 +5876,6 @@ export declare function createWallet(config: AgentWalletConfig & {
5801
5876
  readonly stateMutability: "view";
5802
5877
  readonly inputs: readonly [{
5803
5878
  readonly name: "txId";
5804
- /**
5805
- * Create a wallet client connected to an existing AgentAccountV2.
5806
- */
5807
5879
  readonly type: "uint256";
5808
5880
  }];
5809
5881
  readonly outputs: readonly [{
@@ -5875,6 +5947,9 @@ export declare function createWallet(config: AgentWalletConfig & {
5875
5947
  }];
5876
5948
  }, {
5877
5949
  readonly name: "nonce";
5950
+ /**
5951
+ * Create a wallet client connected to an existing AgentAccountV2.
5952
+ */
5878
5953
  readonly type: "function";
5879
5954
  readonly stateMutability: "view";
5880
5955
  readonly inputs: readonly [];
@@ -5946,6 +6021,10 @@ export declare function createWallet(config: AgentWalletConfig & {
5946
6021
  readonly type: "event";
5947
6022
  readonly inputs: readonly [{
5948
6023
  readonly name: "token";
6024
+ /**
6025
+ * Execute a transaction as the agent. If within limits, executes immediately.
6026
+ * If over limits, queues for owner approval and returns the pending tx ID.
6027
+ */
5949
6028
  readonly type: "address";
5950
6029
  readonly indexed: true;
5951
6030
  }, {
@@ -6134,9 +6213,6 @@ export declare function createWallet(config: AgentWalletConfig & {
6134
6213
  readonly stateMutability: "view";
6135
6214
  readonly inputs: readonly [{
6136
6215
  readonly name: "txId";
6137
- /**
6138
- * Create a wallet client connected to an existing AgentAccountV2.
6139
- */
6140
6216
  readonly type: "uint256";
6141
6217
  }];
6142
6218
  readonly outputs: readonly [{
@@ -6208,6 +6284,9 @@ export declare function createWallet(config: AgentWalletConfig & {
6208
6284
  }];
6209
6285
  }, {
6210
6286
  readonly name: "nonce";
6287
+ /**
6288
+ * Create a wallet client connected to an existing AgentAccountV2.
6289
+ */
6211
6290
  readonly type: "function";
6212
6291
  readonly stateMutability: "view";
6213
6292
  readonly inputs: readonly [];
@@ -6279,6 +6358,10 @@ export declare function createWallet(config: AgentWalletConfig & {
6279
6358
  readonly type: "event";
6280
6359
  readonly inputs: readonly [{
6281
6360
  readonly name: "token";
6361
+ /**
6362
+ * Execute a transaction as the agent. If within limits, executes immediately.
6363
+ * If over limits, queues for owner approval and returns the pending tx ID.
6364
+ */
6282
6365
  readonly type: "address";
6283
6366
  readonly indexed: true;
6284
6367
  }, {
@@ -6467,9 +6550,6 @@ export declare function createWallet(config: AgentWalletConfig & {
6467
6550
  readonly stateMutability: "view";
6468
6551
  readonly inputs: readonly [{
6469
6552
  readonly name: "txId";
6470
- /**
6471
- * Create a wallet client connected to an existing AgentAccountV2.
6472
- */
6473
6553
  readonly type: "uint256";
6474
6554
  }];
6475
6555
  readonly outputs: readonly [{
@@ -6541,6 +6621,9 @@ export declare function createWallet(config: AgentWalletConfig & {
6541
6621
  }];
6542
6622
  }, {
6543
6623
  readonly name: "nonce";
6624
+ /**
6625
+ * Create a wallet client connected to an existing AgentAccountV2.
6626
+ */
6544
6627
  readonly type: "function";
6545
6628
  readonly stateMutability: "view";
6546
6629
  readonly inputs: readonly [];
@@ -6612,6 +6695,10 @@ export declare function createWallet(config: AgentWalletConfig & {
6612
6695
  readonly type: "event";
6613
6696
  readonly inputs: readonly [{
6614
6697
  readonly name: "token";
6698
+ /**
6699
+ * Execute a transaction as the agent. If within limits, executes immediately.
6700
+ * If over limits, queues for owner approval and returns the pending tx ID.
6701
+ */
6615
6702
  readonly type: "address";
6616
6703
  readonly indexed: true;
6617
6704
  }, {
@@ -6800,9 +6887,6 @@ export declare function createWallet(config: AgentWalletConfig & {
6800
6887
  readonly stateMutability: "view";
6801
6888
  readonly inputs: readonly [{
6802
6889
  readonly name: "txId";
6803
- /**
6804
- * Create a wallet client connected to an existing AgentAccountV2.
6805
- */
6806
6890
  readonly type: "uint256";
6807
6891
  }];
6808
6892
  readonly outputs: readonly [{
@@ -6874,6 +6958,9 @@ export declare function createWallet(config: AgentWalletConfig & {
6874
6958
  }];
6875
6959
  }, {
6876
6960
  readonly name: "nonce";
6961
+ /**
6962
+ * Create a wallet client connected to an existing AgentAccountV2.
6963
+ */
6877
6964
  readonly type: "function";
6878
6965
  readonly stateMutability: "view";
6879
6966
  readonly inputs: readonly [];
@@ -6945,6 +7032,10 @@ export declare function createWallet(config: AgentWalletConfig & {
6945
7032
  readonly type: "event";
6946
7033
  readonly inputs: readonly [{
6947
7034
  readonly name: "token";
7035
+ /**
7036
+ * Execute a transaction as the agent. If within limits, executes immediately.
7037
+ * If over limits, queues for owner approval and returns the pending tx ID.
7038
+ */
6948
7039
  readonly type: "address";
6949
7040
  readonly indexed: true;
6950
7041
  }, {
@@ -7133,9 +7224,6 @@ export declare function createWallet(config: AgentWalletConfig & {
7133
7224
  readonly stateMutability: "view";
7134
7225
  readonly inputs: readonly [{
7135
7226
  readonly name: "txId";
7136
- /**
7137
- * Create a wallet client connected to an existing AgentAccountV2.
7138
- */
7139
7227
  readonly type: "uint256";
7140
7228
  }];
7141
7229
  readonly outputs: readonly [{
@@ -7207,6 +7295,9 @@ export declare function createWallet(config: AgentWalletConfig & {
7207
7295
  }];
7208
7296
  }, {
7209
7297
  readonly name: "nonce";
7298
+ /**
7299
+ * Create a wallet client connected to an existing AgentAccountV2.
7300
+ */
7210
7301
  readonly type: "function";
7211
7302
  readonly stateMutability: "view";
7212
7303
  readonly inputs: readonly [];
@@ -7278,6 +7369,10 @@ export declare function createWallet(config: AgentWalletConfig & {
7278
7369
  readonly type: "event";
7279
7370
  readonly inputs: readonly [{
7280
7371
  readonly name: "token";
7372
+ /**
7373
+ * Execute a transaction as the agent. If within limits, executes immediately.
7374
+ * If over limits, queues for owner approval and returns the pending tx ID.
7375
+ */
7281
7376
  readonly type: "address";
7282
7377
  readonly indexed: true;
7283
7378
  }, {
@@ -7466,9 +7561,6 @@ export declare function createWallet(config: AgentWalletConfig & {
7466
7561
  readonly stateMutability: "view";
7467
7562
  readonly inputs: readonly [{
7468
7563
  readonly name: "txId";
7469
- /**
7470
- * Create a wallet client connected to an existing AgentAccountV2.
7471
- */
7472
7564
  readonly type: "uint256";
7473
7565
  }];
7474
7566
  readonly outputs: readonly [{
@@ -7540,6 +7632,9 @@ export declare function createWallet(config: AgentWalletConfig & {
7540
7632
  }];
7541
7633
  }, {
7542
7634
  readonly name: "nonce";
7635
+ /**
7636
+ * Create a wallet client connected to an existing AgentAccountV2.
7637
+ */
7543
7638
  readonly type: "function";
7544
7639
  readonly stateMutability: "view";
7545
7640
  readonly inputs: readonly [];
@@ -7611,6 +7706,10 @@ export declare function createWallet(config: AgentWalletConfig & {
7611
7706
  readonly type: "event";
7612
7707
  readonly inputs: readonly [{
7613
7708
  readonly name: "token";
7709
+ /**
7710
+ * Execute a transaction as the agent. If within limits, executes immediately.
7711
+ * If over limits, queues for owner approval and returns the pending tx ID.
7712
+ */
7614
7713
  readonly type: "address";
7615
7714
  readonly indexed: true;
7616
7715
  }, {
@@ -7799,9 +7898,6 @@ export declare function createWallet(config: AgentWalletConfig & {
7799
7898
  readonly stateMutability: "view";
7800
7899
  readonly inputs: readonly [{
7801
7900
  readonly name: "txId";
7802
- /**
7803
- * Create a wallet client connected to an existing AgentAccountV2.
7804
- */
7805
7901
  readonly type: "uint256";
7806
7902
  }];
7807
7903
  readonly outputs: readonly [{
@@ -7873,6 +7969,9 @@ export declare function createWallet(config: AgentWalletConfig & {
7873
7969
  }];
7874
7970
  }, {
7875
7971
  readonly name: "nonce";
7972
+ /**
7973
+ * Create a wallet client connected to an existing AgentAccountV2.
7974
+ */
7876
7975
  readonly type: "function";
7877
7976
  readonly stateMutability: "view";
7878
7977
  readonly inputs: readonly [];
@@ -7944,6 +8043,10 @@ export declare function createWallet(config: AgentWalletConfig & {
7944
8043
  readonly type: "event";
7945
8044
  readonly inputs: readonly [{
7946
8045
  readonly name: "token";
8046
+ /**
8047
+ * Execute a transaction as the agent. If within limits, executes immediately.
8048
+ * If over limits, queues for owner approval and returns the pending tx ID.
8049
+ */
7947
8050
  readonly type: "address";
7948
8051
  readonly indexed: true;
7949
8052
  }, {
@@ -8134,9 +8237,6 @@ export declare function createWallet(config: AgentWalletConfig & {
8134
8237
  readonly stateMutability: "view";
8135
8238
  readonly inputs: readonly [{
8136
8239
  readonly name: "txId";
8137
- /**
8138
- * Create a wallet client connected to an existing AgentAccountV2.
8139
- */
8140
8240
  readonly type: "uint256";
8141
8241
  }];
8142
8242
  readonly outputs: readonly [{
@@ -8208,6 +8308,9 @@ export declare function createWallet(config: AgentWalletConfig & {
8208
8308
  }];
8209
8309
  }, {
8210
8310
  readonly name: "nonce";
8311
+ /**
8312
+ * Create a wallet client connected to an existing AgentAccountV2.
8313
+ */
8211
8314
  readonly type: "function";
8212
8315
  readonly stateMutability: "view";
8213
8316
  readonly inputs: readonly [];
@@ -8279,6 +8382,10 @@ export declare function createWallet(config: AgentWalletConfig & {
8279
8382
  readonly type: "event";
8280
8383
  readonly inputs: readonly [{
8281
8384
  readonly name: "token";
8385
+ /**
8386
+ * Execute a transaction as the agent. If within limits, executes immediately.
8387
+ * If over limits, queues for owner approval and returns the pending tx ID.
8388
+ */
8282
8389
  readonly type: "address";
8283
8390
  readonly indexed: true;
8284
8391
  }, {
@@ -8466,9 +8573,6 @@ export declare function createWallet(config: AgentWalletConfig & {
8466
8573
  readonly stateMutability: "view";
8467
8574
  readonly inputs: readonly [{
8468
8575
  readonly name: "txId";
8469
- /**
8470
- * Create a wallet client connected to an existing AgentAccountV2.
8471
- */
8472
8576
  readonly type: "uint256";
8473
8577
  }];
8474
8578
  readonly outputs: readonly [{
@@ -8540,6 +8644,9 @@ export declare function createWallet(config: AgentWalletConfig & {
8540
8644
  }];
8541
8645
  }, {
8542
8646
  readonly name: "nonce";
8647
+ /**
8648
+ * Create a wallet client connected to an existing AgentAccountV2.
8649
+ */
8543
8650
  readonly type: "function";
8544
8651
  readonly stateMutability: "view";
8545
8652
  readonly inputs: readonly [];
@@ -8611,6 +8718,10 @@ export declare function createWallet(config: AgentWalletConfig & {
8611
8718
  readonly type: "event";
8612
8719
  readonly inputs: readonly [{
8613
8720
  readonly name: "token";
8721
+ /**
8722
+ * Execute a transaction as the agent. If within limits, executes immediately.
8723
+ * If over limits, queues for owner approval and returns the pending tx ID.
8724
+ */
8614
8725
  readonly type: "address";
8615
8726
  readonly indexed: true;
8616
8727
  }, {
@@ -8799,9 +8910,6 @@ export declare function createWallet(config: AgentWalletConfig & {
8799
8910
  readonly stateMutability: "view";
8800
8911
  readonly inputs: readonly [{
8801
8912
  readonly name: "txId";
8802
- /**
8803
- * Create a wallet client connected to an existing AgentAccountV2.
8804
- */
8805
8913
  readonly type: "uint256";
8806
8914
  }];
8807
8915
  readonly outputs: readonly [{
@@ -8873,6 +8981,9 @@ export declare function createWallet(config: AgentWalletConfig & {
8873
8981
  }];
8874
8982
  }, {
8875
8983
  readonly name: "nonce";
8984
+ /**
8985
+ * Create a wallet client connected to an existing AgentAccountV2.
8986
+ */
8876
8987
  readonly type: "function";
8877
8988
  readonly stateMutability: "view";
8878
8989
  readonly inputs: readonly [];
@@ -8944,6 +9055,10 @@ export declare function createWallet(config: AgentWalletConfig & {
8944
9055
  readonly type: "event";
8945
9056
  readonly inputs: readonly [{
8946
9057
  readonly name: "token";
9058
+ /**
9059
+ * Execute a transaction as the agent. If within limits, executes immediately.
9060
+ * If over limits, queues for owner approval and returns the pending tx ID.
9061
+ */
8947
9062
  readonly type: "address";
8948
9063
  readonly indexed: true;
8949
9064
  }, {
@@ -9131,9 +9246,6 @@ export declare function createWallet(config: AgentWalletConfig & {
9131
9246
  readonly stateMutability: "view";
9132
9247
  readonly inputs: readonly [{
9133
9248
  readonly name: "txId";
9134
- /**
9135
- * Create a wallet client connected to an existing AgentAccountV2.
9136
- */
9137
9249
  readonly type: "uint256";
9138
9250
  }];
9139
9251
  readonly outputs: readonly [{
@@ -9205,6 +9317,9 @@ export declare function createWallet(config: AgentWalletConfig & {
9205
9317
  }];
9206
9318
  }, {
9207
9319
  readonly name: "nonce";
9320
+ /**
9321
+ * Create a wallet client connected to an existing AgentAccountV2.
9322
+ */
9208
9323
  readonly type: "function";
9209
9324
  readonly stateMutability: "view";
9210
9325
  readonly inputs: readonly [];
@@ -9276,6 +9391,10 @@ export declare function createWallet(config: AgentWalletConfig & {
9276
9391
  readonly type: "event";
9277
9392
  readonly inputs: readonly [{
9278
9393
  readonly name: "token";
9394
+ /**
9395
+ * Execute a transaction as the agent. If within limits, executes immediately.
9396
+ * If over limits, queues for owner approval and returns the pending tx ID.
9397
+ */
9279
9398
  readonly type: "address";
9280
9399
  readonly indexed: true;
9281
9400
  }, {
@@ -9464,9 +9583,6 @@ export declare function createWallet(config: AgentWalletConfig & {
9464
9583
  readonly stateMutability: "view";
9465
9584
  readonly inputs: readonly [{
9466
9585
  readonly name: "txId";
9467
- /**
9468
- * Create a wallet client connected to an existing AgentAccountV2.
9469
- */
9470
9586
  readonly type: "uint256";
9471
9587
  }];
9472
9588
  readonly outputs: readonly [{
@@ -9538,6 +9654,9 @@ export declare function createWallet(config: AgentWalletConfig & {
9538
9654
  }];
9539
9655
  }, {
9540
9656
  readonly name: "nonce";
9657
+ /**
9658
+ * Create a wallet client connected to an existing AgentAccountV2.
9659
+ */
9541
9660
  readonly type: "function";
9542
9661
  readonly stateMutability: "view";
9543
9662
  readonly inputs: readonly [];
@@ -9609,6 +9728,10 @@ export declare function createWallet(config: AgentWalletConfig & {
9609
9728
  readonly type: "event";
9610
9729
  readonly inputs: readonly [{
9611
9730
  readonly name: "token";
9731
+ /**
9732
+ * Execute a transaction as the agent. If within limits, executes immediately.
9733
+ * If over limits, queues for owner approval and returns the pending tx ID.
9734
+ */
9612
9735
  readonly type: "address";
9613
9736
  readonly indexed: true;
9614
9737
  }, {
@@ -9796,9 +9919,6 @@ export declare function createWallet(config: AgentWalletConfig & {
9796
9919
  readonly stateMutability: "view";
9797
9920
  readonly inputs: readonly [{
9798
9921
  readonly name: "txId";
9799
- /**
9800
- * Create a wallet client connected to an existing AgentAccountV2.
9801
- */
9802
9922
  readonly type: "uint256";
9803
9923
  }];
9804
9924
  readonly outputs: readonly [{
@@ -9870,6 +9990,9 @@ export declare function createWallet(config: AgentWalletConfig & {
9870
9990
  }];
9871
9991
  }, {
9872
9992
  readonly name: "nonce";
9993
+ /**
9994
+ * Create a wallet client connected to an existing AgentAccountV2.
9995
+ */
9873
9996
  readonly type: "function";
9874
9997
  readonly stateMutability: "view";
9875
9998
  readonly inputs: readonly [];
@@ -9941,6 +10064,10 @@ export declare function createWallet(config: AgentWalletConfig & {
9941
10064
  readonly type: "event";
9942
10065
  readonly inputs: readonly [{
9943
10066
  readonly name: "token";
10067
+ /**
10068
+ * Execute a transaction as the agent. If within limits, executes immediately.
10069
+ * If over limits, queues for owner approval and returns the pending tx ID.
10070
+ */
9944
10071
  readonly type: "address";
9945
10072
  readonly indexed: true;
9946
10073
  }, {
@@ -10129,9 +10256,6 @@ export declare function createWallet(config: AgentWalletConfig & {
10129
10256
  readonly stateMutability: "view";
10130
10257
  readonly inputs: readonly [{
10131
10258
  readonly name: "txId";
10132
- /**
10133
- * Create a wallet client connected to an existing AgentAccountV2.
10134
- */
10135
10259
  readonly type: "uint256";
10136
10260
  }];
10137
10261
  readonly outputs: readonly [{
@@ -10203,6 +10327,9 @@ export declare function createWallet(config: AgentWalletConfig & {
10203
10327
  }];
10204
10328
  }, {
10205
10329
  readonly name: "nonce";
10330
+ /**
10331
+ * Create a wallet client connected to an existing AgentAccountV2.
10332
+ */
10206
10333
  readonly type: "function";
10207
10334
  readonly stateMutability: "view";
10208
10335
  readonly inputs: readonly [];
@@ -10274,6 +10401,10 @@ export declare function createWallet(config: AgentWalletConfig & {
10274
10401
  readonly type: "event";
10275
10402
  readonly inputs: readonly [{
10276
10403
  readonly name: "token";
10404
+ /**
10405
+ * Execute a transaction as the agent. If within limits, executes immediately.
10406
+ * If over limits, queues for owner approval and returns the pending tx ID.
10407
+ */
10277
10408
  readonly type: "address";
10278
10409
  readonly indexed: true;
10279
10410
  }, {
@@ -10461,9 +10592,6 @@ export declare function createWallet(config: AgentWalletConfig & {
10461
10592
  readonly stateMutability: "view";
10462
10593
  readonly inputs: readonly [{
10463
10594
  readonly name: "txId";
10464
- /**
10465
- * Create a wallet client connected to an existing AgentAccountV2.
10466
- */
10467
10595
  readonly type: "uint256";
10468
10596
  }];
10469
10597
  readonly outputs: readonly [{
@@ -10535,6 +10663,9 @@ export declare function createWallet(config: AgentWalletConfig & {
10535
10663
  }];
10536
10664
  }, {
10537
10665
  readonly name: "nonce";
10666
+ /**
10667
+ * Create a wallet client connected to an existing AgentAccountV2.
10668
+ */
10538
10669
  readonly type: "function";
10539
10670
  readonly stateMutability: "view";
10540
10671
  readonly inputs: readonly [];
@@ -10606,6 +10737,10 @@ export declare function createWallet(config: AgentWalletConfig & {
10606
10737
  readonly type: "event";
10607
10738
  readonly inputs: readonly [{
10608
10739
  readonly name: "token";
10740
+ /**
10741
+ * Execute a transaction as the agent. If within limits, executes immediately.
10742
+ * If over limits, queues for owner approval and returns the pending tx ID.
10743
+ */
10609
10744
  readonly type: "address";
10610
10745
  readonly indexed: true;
10611
10746
  }, {
@@ -10794,9 +10929,6 @@ export declare function createWallet(config: AgentWalletConfig & {
10794
10929
  readonly stateMutability: "view";
10795
10930
  readonly inputs: readonly [{
10796
10931
  readonly name: "txId";
10797
- /**
10798
- * Create a wallet client connected to an existing AgentAccountV2.
10799
- */
10800
10932
  readonly type: "uint256";
10801
10933
  }];
10802
10934
  readonly outputs: readonly [{
@@ -10868,6 +11000,9 @@ export declare function createWallet(config: AgentWalletConfig & {
10868
11000
  }];
10869
11001
  }, {
10870
11002
  readonly name: "nonce";
11003
+ /**
11004
+ * Create a wallet client connected to an existing AgentAccountV2.
11005
+ */
10871
11006
  readonly type: "function";
10872
11007
  readonly stateMutability: "view";
10873
11008
  readonly inputs: readonly [];
@@ -10939,6 +11074,10 @@ export declare function createWallet(config: AgentWalletConfig & {
10939
11074
  readonly type: "event";
10940
11075
  readonly inputs: readonly [{
10941
11076
  readonly name: "token";
11077
+ /**
11078
+ * Execute a transaction as the agent. If within limits, executes immediately.
11079
+ * If over limits, queues for owner approval and returns the pending tx ID.
11080
+ */
10942
11081
  readonly type: "address";
10943
11082
  readonly indexed: true;
10944
11083
  }, {
@@ -11126,9 +11265,6 @@ export declare function createWallet(config: AgentWalletConfig & {
11126
11265
  readonly stateMutability: "view";
11127
11266
  readonly inputs: readonly [{
11128
11267
  readonly name: "txId";
11129
- /**
11130
- * Create a wallet client connected to an existing AgentAccountV2.
11131
- */
11132
11268
  readonly type: "uint256";
11133
11269
  }];
11134
11270
  readonly outputs: readonly [{
@@ -11200,6 +11336,9 @@ export declare function createWallet(config: AgentWalletConfig & {
11200
11336
  }];
11201
11337
  }, {
11202
11338
  readonly name: "nonce";
11339
+ /**
11340
+ * Create a wallet client connected to an existing AgentAccountV2.
11341
+ */
11203
11342
  readonly type: "function";
11204
11343
  readonly stateMutability: "view";
11205
11344
  readonly inputs: readonly [];
@@ -11271,6 +11410,10 @@ export declare function createWallet(config: AgentWalletConfig & {
11271
11410
  readonly type: "event";
11272
11411
  readonly inputs: readonly [{
11273
11412
  readonly name: "token";
11413
+ /**
11414
+ * Execute a transaction as the agent. If within limits, executes immediately.
11415
+ * If over limits, queues for owner approval and returns the pending tx ID.
11416
+ */
11274
11417
  readonly type: "address";
11275
11418
  readonly indexed: true;
11276
11419
  }, {
@@ -11459,9 +11602,6 @@ export declare function createWallet(config: AgentWalletConfig & {
11459
11602
  readonly stateMutability: "view";
11460
11603
  readonly inputs: readonly [{
11461
11604
  readonly name: "txId";
11462
- /**
11463
- * Create a wallet client connected to an existing AgentAccountV2.
11464
- */
11465
11605
  readonly type: "uint256";
11466
11606
  }];
11467
11607
  readonly outputs: readonly [{
@@ -11533,6 +11673,9 @@ export declare function createWallet(config: AgentWalletConfig & {
11533
11673
  }];
11534
11674
  }, {
11535
11675
  readonly name: "nonce";
11676
+ /**
11677
+ * Create a wallet client connected to an existing AgentAccountV2.
11678
+ */
11536
11679
  readonly type: "function";
11537
11680
  readonly stateMutability: "view";
11538
11681
  readonly inputs: readonly [];
@@ -11604,6 +11747,10 @@ export declare function createWallet(config: AgentWalletConfig & {
11604
11747
  readonly type: "event";
11605
11748
  readonly inputs: readonly [{
11606
11749
  readonly name: "token";
11750
+ /**
11751
+ * Execute a transaction as the agent. If within limits, executes immediately.
11752
+ * If over limits, queues for owner approval and returns the pending tx ID.
11753
+ */
11607
11754
  readonly type: "address";
11608
11755
  readonly indexed: true;
11609
11756
  }, {
@@ -11791,9 +11938,6 @@ export declare function createWallet(config: AgentWalletConfig & {
11791
11938
  readonly stateMutability: "view";
11792
11939
  readonly inputs: readonly [{
11793
11940
  readonly name: "txId";
11794
- /**
11795
- * Create a wallet client connected to an existing AgentAccountV2.
11796
- */
11797
11941
  readonly type: "uint256";
11798
11942
  }];
11799
11943
  readonly outputs: readonly [{
@@ -11865,6 +12009,9 @@ export declare function createWallet(config: AgentWalletConfig & {
11865
12009
  }];
11866
12010
  }, {
11867
12011
  readonly name: "nonce";
12012
+ /**
12013
+ * Create a wallet client connected to an existing AgentAccountV2.
12014
+ */
11868
12015
  readonly type: "function";
11869
12016
  readonly stateMutability: "view";
11870
12017
  readonly inputs: readonly [];
@@ -11936,6 +12083,10 @@ export declare function createWallet(config: AgentWalletConfig & {
11936
12083
  readonly type: "event";
11937
12084
  readonly inputs: readonly [{
11938
12085
  readonly name: "token";
12086
+ /**
12087
+ * Execute a transaction as the agent. If within limits, executes immediately.
12088
+ * If over limits, queues for owner approval and returns the pending tx ID.
12089
+ */
11939
12090
  readonly type: "address";
11940
12091
  readonly indexed: true;
11941
12092
  }, {
@@ -12124,9 +12275,6 @@ export declare function createWallet(config: AgentWalletConfig & {
12124
12275
  readonly stateMutability: "view";
12125
12276
  readonly inputs: readonly [{
12126
12277
  readonly name: "txId";
12127
- /**
12128
- * Create a wallet client connected to an existing AgentAccountV2.
12129
- */
12130
12278
  readonly type: "uint256";
12131
12279
  }];
12132
12280
  readonly outputs: readonly [{
@@ -12198,6 +12346,9 @@ export declare function createWallet(config: AgentWalletConfig & {
12198
12346
  }];
12199
12347
  }, {
12200
12348
  readonly name: "nonce";
12349
+ /**
12350
+ * Create a wallet client connected to an existing AgentAccountV2.
12351
+ */
12201
12352
  readonly type: "function";
12202
12353
  readonly stateMutability: "view";
12203
12354
  readonly inputs: readonly [];
@@ -12269,6 +12420,10 @@ export declare function createWallet(config: AgentWalletConfig & {
12269
12420
  readonly type: "event";
12270
12421
  readonly inputs: readonly [{
12271
12422
  readonly name: "token";
12423
+ /**
12424
+ * Execute a transaction as the agent. If within limits, executes immediately.
12425
+ * If over limits, queues for owner approval and returns the pending tx ID.
12426
+ */
12272
12427
  readonly type: "address";
12273
12428
  readonly indexed: true;
12274
12429
  }, {
@@ -12456,9 +12611,6 @@ export declare function createWallet(config: AgentWalletConfig & {
12456
12611
  readonly stateMutability: "view";
12457
12612
  readonly inputs: readonly [{
12458
12613
  readonly name: "txId";
12459
- /**
12460
- * Create a wallet client connected to an existing AgentAccountV2.
12461
- */
12462
12614
  readonly type: "uint256";
12463
12615
  }];
12464
12616
  readonly outputs: readonly [{
@@ -12530,6 +12682,9 @@ export declare function createWallet(config: AgentWalletConfig & {
12530
12682
  }];
12531
12683
  }, {
12532
12684
  readonly name: "nonce";
12685
+ /**
12686
+ * Create a wallet client connected to an existing AgentAccountV2.
12687
+ */
12533
12688
  readonly type: "function";
12534
12689
  readonly stateMutability: "view";
12535
12690
  readonly inputs: readonly [];
@@ -12601,6 +12756,10 @@ export declare function createWallet(config: AgentWalletConfig & {
12601
12756
  readonly type: "event";
12602
12757
  readonly inputs: readonly [{
12603
12758
  readonly name: "token";
12759
+ /**
12760
+ * Execute a transaction as the agent. If within limits, executes immediately.
12761
+ * If over limits, queues for owner approval and returns the pending tx ID.
12762
+ */
12604
12763
  readonly type: "address";
12605
12764
  readonly indexed: true;
12606
12765
  }, {
@@ -12808,9 +12967,6 @@ export declare function createWallet(config: AgentWalletConfig & {
12808
12967
  readonly stateMutability: "view";
12809
12968
  readonly inputs: readonly [{
12810
12969
  readonly name: "txId";
12811
- /**
12812
- * Create a wallet client connected to an existing AgentAccountV2.
12813
- */
12814
12970
  readonly type: "uint256";
12815
12971
  }];
12816
12972
  readonly outputs: readonly [{
@@ -12882,6 +13038,9 @@ export declare function createWallet(config: AgentWalletConfig & {
12882
13038
  }];
12883
13039
  }, {
12884
13040
  readonly name: "nonce";
13041
+ /**
13042
+ * Create a wallet client connected to an existing AgentAccountV2.
13043
+ */
12885
13044
  readonly type: "function";
12886
13045
  readonly stateMutability: "view";
12887
13046
  readonly inputs: readonly [];
@@ -12953,6 +13112,10 @@ export declare function createWallet(config: AgentWalletConfig & {
12953
13112
  readonly type: "event";
12954
13113
  readonly inputs: readonly [{
12955
13114
  readonly name: "token";
13115
+ /**
13116
+ * Execute a transaction as the agent. If within limits, executes immediately.
13117
+ * If over limits, queues for owner approval and returns the pending tx ID.
13118
+ */
12956
13119
  readonly type: "address";
12957
13120
  readonly indexed: true;
12958
13121
  }, {
@@ -13154,9 +13317,6 @@ export declare function createWallet(config: AgentWalletConfig & {
13154
13317
  readonly stateMutability: "view";
13155
13318
  readonly inputs: readonly [{
13156
13319
  readonly name: "txId";
13157
- /**
13158
- * Create a wallet client connected to an existing AgentAccountV2.
13159
- */
13160
13320
  readonly type: "uint256";
13161
13321
  }];
13162
13322
  readonly outputs: readonly [{
@@ -13228,6 +13388,9 @@ export declare function createWallet(config: AgentWalletConfig & {
13228
13388
  }];
13229
13389
  }, {
13230
13390
  readonly name: "nonce";
13391
+ /**
13392
+ * Create a wallet client connected to an existing AgentAccountV2.
13393
+ */
13231
13394
  readonly type: "function";
13232
13395
  readonly stateMutability: "view";
13233
13396
  readonly inputs: readonly [];
@@ -13299,6 +13462,10 @@ export declare function createWallet(config: AgentWalletConfig & {
13299
13462
  readonly type: "event";
13300
13463
  readonly inputs: readonly [{
13301
13464
  readonly name: "token";
13465
+ /**
13466
+ * Execute a transaction as the agent. If within limits, executes immediately.
13467
+ * If over limits, queues for owner approval and returns the pending tx ID.
13468
+ */
13302
13469
  readonly type: "address";
13303
13470
  readonly indexed: true;
13304
13471
  }, {
@@ -13500,9 +13667,6 @@ export declare function createWallet(config: AgentWalletConfig & {
13500
13667
  readonly stateMutability: "view";
13501
13668
  readonly inputs: readonly [{
13502
13669
  readonly name: "txId";
13503
- /**
13504
- * Create a wallet client connected to an existing AgentAccountV2.
13505
- */
13506
13670
  readonly type: "uint256";
13507
13671
  }];
13508
13672
  readonly outputs: readonly [{
@@ -13574,6 +13738,9 @@ export declare function createWallet(config: AgentWalletConfig & {
13574
13738
  }];
13575
13739
  }, {
13576
13740
  readonly name: "nonce";
13741
+ /**
13742
+ * Create a wallet client connected to an existing AgentAccountV2.
13743
+ */
13577
13744
  readonly type: "function";
13578
13745
  readonly stateMutability: "view";
13579
13746
  readonly inputs: readonly [];
@@ -13645,6 +13812,10 @@ export declare function createWallet(config: AgentWalletConfig & {
13645
13812
  readonly type: "event";
13646
13813
  readonly inputs: readonly [{
13647
13814
  readonly name: "token";
13815
+ /**
13816
+ * Execute a transaction as the agent. If within limits, executes immediately.
13817
+ * If over limits, queues for owner approval and returns the pending tx ID.
13818
+ */
13648
13819
  readonly type: "address";
13649
13820
  readonly indexed: true;
13650
13821
  }, {
@@ -13850,9 +14021,6 @@ export declare function createWallet(config: AgentWalletConfig & {
13850
14021
  readonly stateMutability: "view";
13851
14022
  readonly inputs: readonly [{
13852
14023
  readonly name: "txId";
13853
- /**
13854
- * Create a wallet client connected to an existing AgentAccountV2.
13855
- */
13856
14024
  readonly type: "uint256";
13857
14025
  }];
13858
14026
  readonly outputs: readonly [{
@@ -13924,6 +14092,9 @@ export declare function createWallet(config: AgentWalletConfig & {
13924
14092
  }];
13925
14093
  }, {
13926
14094
  readonly name: "nonce";
14095
+ /**
14096
+ * Create a wallet client connected to an existing AgentAccountV2.
14097
+ */
13927
14098
  readonly type: "function";
13928
14099
  readonly stateMutability: "view";
13929
14100
  readonly inputs: readonly [];
@@ -13995,6 +14166,10 @@ export declare function createWallet(config: AgentWalletConfig & {
13995
14166
  readonly type: "event";
13996
14167
  readonly inputs: readonly [{
13997
14168
  readonly name: "token";
14169
+ /**
14170
+ * Execute a transaction as the agent. If within limits, executes immediately.
14171
+ * If over limits, queues for owner approval and returns the pending tx ID.
14172
+ */
13998
14173
  readonly type: "address";
13999
14174
  readonly indexed: true;
14000
14175
  }, {
@@ -14196,9 +14371,6 @@ export declare function createWallet(config: AgentWalletConfig & {
14196
14371
  readonly stateMutability: "view";
14197
14372
  readonly inputs: readonly [{
14198
14373
  readonly name: "txId";
14199
- /**
14200
- * Create a wallet client connected to an existing AgentAccountV2.
14201
- */
14202
14374
  readonly type: "uint256";
14203
14375
  }];
14204
14376
  readonly outputs: readonly [{
@@ -14270,6 +14442,9 @@ export declare function createWallet(config: AgentWalletConfig & {
14270
14442
  }];
14271
14443
  }, {
14272
14444
  readonly name: "nonce";
14445
+ /**
14446
+ * Create a wallet client connected to an existing AgentAccountV2.
14447
+ */
14273
14448
  readonly type: "function";
14274
14449
  readonly stateMutability: "view";
14275
14450
  readonly inputs: readonly [];
@@ -14341,6 +14516,10 @@ export declare function createWallet(config: AgentWalletConfig & {
14341
14516
  readonly type: "event";
14342
14517
  readonly inputs: readonly [{
14343
14518
  readonly name: "token";
14519
+ /**
14520
+ * Execute a transaction as the agent. If within limits, executes immediately.
14521
+ * If over limits, queues for owner approval and returns the pending tx ID.
14522
+ */
14344
14523
  readonly type: "address";
14345
14524
  readonly indexed: true;
14346
14525
  }, {
@@ -14542,9 +14721,6 @@ export declare function createWallet(config: AgentWalletConfig & {
14542
14721
  readonly stateMutability: "view";
14543
14722
  readonly inputs: readonly [{
14544
14723
  readonly name: "txId";
14545
- /**
14546
- * Create a wallet client connected to an existing AgentAccountV2.
14547
- */
14548
14724
  readonly type: "uint256";
14549
14725
  }];
14550
14726
  readonly outputs: readonly [{
@@ -14616,6 +14792,9 @@ export declare function createWallet(config: AgentWalletConfig & {
14616
14792
  }];
14617
14793
  }, {
14618
14794
  readonly name: "nonce";
14795
+ /**
14796
+ * Create a wallet client connected to an existing AgentAccountV2.
14797
+ */
14619
14798
  readonly type: "function";
14620
14799
  readonly stateMutability: "view";
14621
14800
  readonly inputs: readonly [];
@@ -14687,6 +14866,10 @@ export declare function createWallet(config: AgentWalletConfig & {
14687
14866
  readonly type: "event";
14688
14867
  readonly inputs: readonly [{
14689
14868
  readonly name: "token";
14869
+ /**
14870
+ * Execute a transaction as the agent. If within limits, executes immediately.
14871
+ * If over limits, queues for owner approval and returns the pending tx ID.
14872
+ */
14690
14873
  readonly type: "address";
14691
14874
  readonly indexed: true;
14692
14875
  }, {
@@ -14885,9 +15068,6 @@ export declare function createWallet(config: AgentWalletConfig & {
14885
15068
  readonly stateMutability: "view";
14886
15069
  readonly inputs: readonly [{
14887
15070
  readonly name: "txId";
14888
- /**
14889
- * Create a wallet client connected to an existing AgentAccountV2.
14890
- */
14891
15071
  readonly type: "uint256";
14892
15072
  }];
14893
15073
  readonly outputs: readonly [{
@@ -14959,6 +15139,9 @@ export declare function createWallet(config: AgentWalletConfig & {
14959
15139
  }];
14960
15140
  }, {
14961
15141
  readonly name: "nonce";
15142
+ /**
15143
+ * Create a wallet client connected to an existing AgentAccountV2.
15144
+ */
14962
15145
  readonly type: "function";
14963
15146
  readonly stateMutability: "view";
14964
15147
  readonly inputs: readonly [];
@@ -15030,6 +15213,10 @@ export declare function createWallet(config: AgentWalletConfig & {
15030
15213
  readonly type: "event";
15031
15214
  readonly inputs: readonly [{
15032
15215
  readonly name: "token";
15216
+ /**
15217
+ * Execute a transaction as the agent. If within limits, executes immediately.
15218
+ * If over limits, queues for owner approval and returns the pending tx ID.
15219
+ */
15033
15220
  readonly type: "address";
15034
15221
  readonly indexed: true;
15035
15222
  }, {
@@ -15225,9 +15412,6 @@ export declare function createWallet(config: AgentWalletConfig & {
15225
15412
  readonly stateMutability: "view";
15226
15413
  readonly inputs: readonly [{
15227
15414
  readonly name: "txId";
15228
- /**
15229
- * Create a wallet client connected to an existing AgentAccountV2.
15230
- */
15231
15415
  readonly type: "uint256";
15232
15416
  }];
15233
15417
  readonly outputs: readonly [{
@@ -15299,6 +15483,9 @@ export declare function createWallet(config: AgentWalletConfig & {
15299
15483
  }];
15300
15484
  }, {
15301
15485
  readonly name: "nonce";
15486
+ /**
15487
+ * Create a wallet client connected to an existing AgentAccountV2.
15488
+ */
15302
15489
  readonly type: "function";
15303
15490
  readonly stateMutability: "view";
15304
15491
  readonly inputs: readonly [];
@@ -15370,6 +15557,10 @@ export declare function createWallet(config: AgentWalletConfig & {
15370
15557
  readonly type: "event";
15371
15558
  readonly inputs: readonly [{
15372
15559
  readonly name: "token";
15560
+ /**
15561
+ * Execute a transaction as the agent. If within limits, executes immediately.
15562
+ * If over limits, queues for owner approval and returns the pending tx ID.
15563
+ */
15373
15564
  readonly type: "address";
15374
15565
  readonly indexed: true;
15375
15566
  }, {
@@ -15565,9 +15756,6 @@ export declare function createWallet(config: AgentWalletConfig & {
15565
15756
  readonly stateMutability: "view";
15566
15757
  readonly inputs: readonly [{
15567
15758
  readonly name: "txId";
15568
- /**
15569
- * Create a wallet client connected to an existing AgentAccountV2.
15570
- */
15571
15759
  readonly type: "uint256";
15572
15760
  }];
15573
15761
  readonly outputs: readonly [{
@@ -15639,6 +15827,9 @@ export declare function createWallet(config: AgentWalletConfig & {
15639
15827
  }];
15640
15828
  }, {
15641
15829
  readonly name: "nonce";
15830
+ /**
15831
+ * Create a wallet client connected to an existing AgentAccountV2.
15832
+ */
15642
15833
  readonly type: "function";
15643
15834
  readonly stateMutability: "view";
15644
15835
  readonly inputs: readonly [];
@@ -15710,6 +15901,10 @@ export declare function createWallet(config: AgentWalletConfig & {
15710
15901
  readonly type: "event";
15711
15902
  readonly inputs: readonly [{
15712
15903
  readonly name: "token";
15904
+ /**
15905
+ * Execute a transaction as the agent. If within limits, executes immediately.
15906
+ * If over limits, queues for owner approval and returns the pending tx ID.
15907
+ */
15713
15908
  readonly type: "address";
15714
15909
  readonly indexed: true;
15715
15910
  }, {
@@ -15906,9 +16101,6 @@ export declare function createWallet(config: AgentWalletConfig & {
15906
16101
  readonly stateMutability: "view";
15907
16102
  readonly inputs: readonly [{
15908
16103
  readonly name: "txId";
15909
- /**
15910
- * Create a wallet client connected to an existing AgentAccountV2.
15911
- */
15912
16104
  readonly type: "uint256";
15913
16105
  }];
15914
16106
  readonly outputs: readonly [{
@@ -15980,6 +16172,9 @@ export declare function createWallet(config: AgentWalletConfig & {
15980
16172
  }];
15981
16173
  }, {
15982
16174
  readonly name: "nonce";
16175
+ /**
16176
+ * Create a wallet client connected to an existing AgentAccountV2.
16177
+ */
15983
16178
  readonly type: "function";
15984
16179
  readonly stateMutability: "view";
15985
16180
  readonly inputs: readonly [];
@@ -16051,6 +16246,10 @@ export declare function createWallet(config: AgentWalletConfig & {
16051
16246
  readonly type: "event";
16052
16247
  readonly inputs: readonly [{
16053
16248
  readonly name: "token";
16249
+ /**
16250
+ * Execute a transaction as the agent. If within limits, executes immediately.
16251
+ * If over limits, queues for owner approval and returns the pending tx ID.
16252
+ */
16054
16253
  readonly type: "address";
16055
16254
  readonly indexed: true;
16056
16255
  }, {
@@ -16246,9 +16445,6 @@ export declare function createWallet(config: AgentWalletConfig & {
16246
16445
  readonly stateMutability: "view";
16247
16446
  readonly inputs: readonly [{
16248
16447
  readonly name: "txId";
16249
- /**
16250
- * Create a wallet client connected to an existing AgentAccountV2.
16251
- */
16252
16448
  readonly type: "uint256";
16253
16449
  }];
16254
16450
  readonly outputs: readonly [{
@@ -16320,6 +16516,9 @@ export declare function createWallet(config: AgentWalletConfig & {
16320
16516
  }];
16321
16517
  }, {
16322
16518
  readonly name: "nonce";
16519
+ /**
16520
+ * Create a wallet client connected to an existing AgentAccountV2.
16521
+ */
16323
16522
  readonly type: "function";
16324
16523
  readonly stateMutability: "view";
16325
16524
  readonly inputs: readonly [];
@@ -16391,6 +16590,10 @@ export declare function createWallet(config: AgentWalletConfig & {
16391
16590
  readonly type: "event";
16392
16591
  readonly inputs: readonly [{
16393
16592
  readonly name: "token";
16593
+ /**
16594
+ * Execute a transaction as the agent. If within limits, executes immediately.
16595
+ * If over limits, queues for owner approval and returns the pending tx ID.
16596
+ */
16394
16597
  readonly type: "address";
16395
16598
  readonly indexed: true;
16396
16599
  }, {
@@ -16586,9 +16789,6 @@ export declare function createWallet(config: AgentWalletConfig & {
16586
16789
  readonly stateMutability: "view";
16587
16790
  readonly inputs: readonly [{
16588
16791
  readonly name: "txId";
16589
- /**
16590
- * Create a wallet client connected to an existing AgentAccountV2.
16591
- */
16592
16792
  readonly type: "uint256";
16593
16793
  }];
16594
16794
  readonly outputs: readonly [{
@@ -16660,6 +16860,9 @@ export declare function createWallet(config: AgentWalletConfig & {
16660
16860
  }];
16661
16861
  }, {
16662
16862
  readonly name: "nonce";
16863
+ /**
16864
+ * Create a wallet client connected to an existing AgentAccountV2.
16865
+ */
16663
16866
  readonly type: "function";
16664
16867
  readonly stateMutability: "view";
16665
16868
  readonly inputs: readonly [];
@@ -16731,6 +16934,10 @@ export declare function createWallet(config: AgentWalletConfig & {
16731
16934
  readonly type: "event";
16732
16935
  readonly inputs: readonly [{
16733
16936
  readonly name: "token";
16937
+ /**
16938
+ * Execute a transaction as the agent. If within limits, executes immediately.
16939
+ * If over limits, queues for owner approval and returns the pending tx ID.
16940
+ */
16734
16941
  readonly type: "address";
16735
16942
  readonly indexed: true;
16736
16943
  }, {
@@ -16930,9 +17137,6 @@ export declare function createWallet(config: AgentWalletConfig & {
16930
17137
  readonly stateMutability: "view";
16931
17138
  readonly inputs: readonly [{
16932
17139
  readonly name: "txId";
16933
- /**
16934
- * Create a wallet client connected to an existing AgentAccountV2.
16935
- */
16936
17140
  readonly type: "uint256";
16937
17141
  }];
16938
17142
  readonly outputs: readonly [{
@@ -17004,6 +17208,9 @@ export declare function createWallet(config: AgentWalletConfig & {
17004
17208
  }];
17005
17209
  }, {
17006
17210
  readonly name: "nonce";
17211
+ /**
17212
+ * Create a wallet client connected to an existing AgentAccountV2.
17213
+ */
17007
17214
  readonly type: "function";
17008
17215
  readonly stateMutability: "view";
17009
17216
  readonly inputs: readonly [];
@@ -17075,6 +17282,10 @@ export declare function createWallet(config: AgentWalletConfig & {
17075
17282
  readonly type: "event";
17076
17283
  readonly inputs: readonly [{
17077
17284
  readonly name: "token";
17285
+ /**
17286
+ * Execute a transaction as the agent. If within limits, executes immediately.
17287
+ * If over limits, queues for owner approval and returns the pending tx ID.
17288
+ */
17078
17289
  readonly type: "address";
17079
17290
  readonly indexed: true;
17080
17291
  }, {
@@ -17273,9 +17484,6 @@ export declare function createWallet(config: AgentWalletConfig & {
17273
17484
  readonly stateMutability: "view";
17274
17485
  readonly inputs: readonly [{
17275
17486
  readonly name: "txId";
17276
- /**
17277
- * Create a wallet client connected to an existing AgentAccountV2.
17278
- */
17279
17487
  readonly type: "uint256";
17280
17488
  }];
17281
17489
  readonly outputs: readonly [{
@@ -17347,6 +17555,9 @@ export declare function createWallet(config: AgentWalletConfig & {
17347
17555
  }];
17348
17556
  }, {
17349
17557
  readonly name: "nonce";
17558
+ /**
17559
+ * Create a wallet client connected to an existing AgentAccountV2.
17560
+ */
17350
17561
  readonly type: "function";
17351
17562
  readonly stateMutability: "view";
17352
17563
  readonly inputs: readonly [];
@@ -17418,6 +17629,10 @@ export declare function createWallet(config: AgentWalletConfig & {
17418
17629
  readonly type: "event";
17419
17630
  readonly inputs: readonly [{
17420
17631
  readonly name: "token";
17632
+ /**
17633
+ * Execute a transaction as the agent. If within limits, executes immediately.
17634
+ * If over limits, queues for owner approval and returns the pending tx ID.
17635
+ */
17421
17636
  readonly type: "address";
17422
17637
  readonly indexed: true;
17423
17638
  }, {
@@ -17616,9 +17831,6 @@ export declare function createWallet(config: AgentWalletConfig & {
17616
17831
  readonly stateMutability: "view";
17617
17832
  readonly inputs: readonly [{
17618
17833
  readonly name: "txId";
17619
- /**
17620
- * Create a wallet client connected to an existing AgentAccountV2.
17621
- */
17622
17834
  readonly type: "uint256";
17623
17835
  }];
17624
17836
  readonly outputs: readonly [{
@@ -17690,6 +17902,9 @@ export declare function createWallet(config: AgentWalletConfig & {
17690
17902
  }];
17691
17903
  }, {
17692
17904
  readonly name: "nonce";
17905
+ /**
17906
+ * Create a wallet client connected to an existing AgentAccountV2.
17907
+ */
17693
17908
  readonly type: "function";
17694
17909
  readonly stateMutability: "view";
17695
17910
  readonly inputs: readonly [];
@@ -17761,6 +17976,10 @@ export declare function createWallet(config: AgentWalletConfig & {
17761
17976
  readonly type: "event";
17762
17977
  readonly inputs: readonly [{
17763
17978
  readonly name: "token";
17979
+ /**
17980
+ * Execute a transaction as the agent. If within limits, executes immediately.
17981
+ * If over limits, queues for owner approval and returns the pending tx ID.
17982
+ */
17764
17983
  readonly type: "address";
17765
17984
  readonly indexed: true;
17766
17985
  }, {
@@ -17960,9 +18179,6 @@ export declare function createWallet(config: AgentWalletConfig & {
17960
18179
  readonly stateMutability: "view";
17961
18180
  readonly inputs: readonly [{
17962
18181
  readonly name: "txId";
17963
- /**
17964
- * Create a wallet client connected to an existing AgentAccountV2.
17965
- */
17966
18182
  readonly type: "uint256";
17967
18183
  }];
17968
18184
  readonly outputs: readonly [{
@@ -18034,6 +18250,9 @@ export declare function createWallet(config: AgentWalletConfig & {
18034
18250
  }];
18035
18251
  }, {
18036
18252
  readonly name: "nonce";
18253
+ /**
18254
+ * Create a wallet client connected to an existing AgentAccountV2.
18255
+ */
18037
18256
  readonly type: "function";
18038
18257
  readonly stateMutability: "view";
18039
18258
  readonly inputs: readonly [];
@@ -18105,6 +18324,10 @@ export declare function createWallet(config: AgentWalletConfig & {
18105
18324
  readonly type: "event";
18106
18325
  readonly inputs: readonly [{
18107
18326
  readonly name: "token";
18327
+ /**
18328
+ * Execute a transaction as the agent. If within limits, executes immediately.
18329
+ * If over limits, queues for owner approval and returns the pending tx ID.
18330
+ */
18108
18331
  readonly type: "address";
18109
18332
  readonly indexed: true;
18110
18333
  }, {
@@ -18303,9 +18526,6 @@ export declare function createWallet(config: AgentWalletConfig & {
18303
18526
  readonly stateMutability: "view";
18304
18527
  readonly inputs: readonly [{
18305
18528
  readonly name: "txId";
18306
- /**
18307
- * Create a wallet client connected to an existing AgentAccountV2.
18308
- */
18309
18529
  readonly type: "uint256";
18310
18530
  }];
18311
18531
  readonly outputs: readonly [{
@@ -18377,6 +18597,9 @@ export declare function createWallet(config: AgentWalletConfig & {
18377
18597
  }];
18378
18598
  }, {
18379
18599
  readonly name: "nonce";
18600
+ /**
18601
+ * Create a wallet client connected to an existing AgentAccountV2.
18602
+ */
18380
18603
  readonly type: "function";
18381
18604
  readonly stateMutability: "view";
18382
18605
  readonly inputs: readonly [];
@@ -18448,6 +18671,10 @@ export declare function createWallet(config: AgentWalletConfig & {
18448
18671
  readonly type: "event";
18449
18672
  readonly inputs: readonly [{
18450
18673
  readonly name: "token";
18674
+ /**
18675
+ * Execute a transaction as the agent. If within limits, executes immediately.
18676
+ * If over limits, queues for owner approval and returns the pending tx ID.
18677
+ */
18451
18678
  readonly type: "address";
18452
18679
  readonly indexed: true;
18453
18680
  }, {
@@ -18646,9 +18873,6 @@ export declare function createWallet(config: AgentWalletConfig & {
18646
18873
  readonly stateMutability: "view";
18647
18874
  readonly inputs: readonly [{
18648
18875
  readonly name: "txId";
18649
- /**
18650
- * Create a wallet client connected to an existing AgentAccountV2.
18651
- */
18652
18876
  readonly type: "uint256";
18653
18877
  }];
18654
18878
  readonly outputs: readonly [{
@@ -18720,6 +18944,9 @@ export declare function createWallet(config: AgentWalletConfig & {
18720
18944
  }];
18721
18945
  }, {
18722
18946
  readonly name: "nonce";
18947
+ /**
18948
+ * Create a wallet client connected to an existing AgentAccountV2.
18949
+ */
18723
18950
  readonly type: "function";
18724
18951
  readonly stateMutability: "view";
18725
18952
  readonly inputs: readonly [];
@@ -18791,6 +19018,10 @@ export declare function createWallet(config: AgentWalletConfig & {
18791
19018
  readonly type: "event";
18792
19019
  readonly inputs: readonly [{
18793
19020
  readonly name: "token";
19021
+ /**
19022
+ * Execute a transaction as the agent. If within limits, executes immediately.
19023
+ * If over limits, queues for owner approval and returns the pending tx ID.
19024
+ */
18794
19025
  readonly type: "address";
18795
19026
  readonly indexed: true;
18796
19027
  }, {
@@ -18983,9 +19214,6 @@ export declare function createWallet(config: AgentWalletConfig & {
18983
19214
  readonly stateMutability: "view";
18984
19215
  readonly inputs: readonly [{
18985
19216
  readonly name: "txId";
18986
- /**
18987
- * Create a wallet client connected to an existing AgentAccountV2.
18988
- */
18989
19217
  readonly type: "uint256";
18990
19218
  }];
18991
19219
  readonly outputs: readonly [{
@@ -19057,6 +19285,9 @@ export declare function createWallet(config: AgentWalletConfig & {
19057
19285
  }];
19058
19286
  }, {
19059
19287
  readonly name: "nonce";
19288
+ /**
19289
+ * Create a wallet client connected to an existing AgentAccountV2.
19290
+ */
19060
19291
  readonly type: "function";
19061
19292
  readonly stateMutability: "view";
19062
19293
  readonly inputs: readonly [];
@@ -19128,6 +19359,10 @@ export declare function createWallet(config: AgentWalletConfig & {
19128
19359
  readonly type: "event";
19129
19360
  readonly inputs: readonly [{
19130
19361
  readonly name: "token";
19362
+ /**
19363
+ * Execute a transaction as the agent. If within limits, executes immediately.
19364
+ * If over limits, queues for owner approval and returns the pending tx ID.
19365
+ */
19131
19366
  readonly type: "address";
19132
19367
  readonly indexed: true;
19133
19368
  }, {
@@ -19315,9 +19550,6 @@ export declare function createWallet(config: AgentWalletConfig & {
19315
19550
  readonly stateMutability: "view";
19316
19551
  readonly inputs: readonly [{
19317
19552
  readonly name: "txId";
19318
- /**
19319
- * Create a wallet client connected to an existing AgentAccountV2.
19320
- */
19321
19553
  readonly type: "uint256";
19322
19554
  }];
19323
19555
  readonly outputs: readonly [{
@@ -19389,6 +19621,9 @@ export declare function createWallet(config: AgentWalletConfig & {
19389
19621
  }];
19390
19622
  }, {
19391
19623
  readonly name: "nonce";
19624
+ /**
19625
+ * Create a wallet client connected to an existing AgentAccountV2.
19626
+ */
19392
19627
  readonly type: "function";
19393
19628
  readonly stateMutability: "view";
19394
19629
  readonly inputs: readonly [];
@@ -19460,6 +19695,10 @@ export declare function createWallet(config: AgentWalletConfig & {
19460
19695
  readonly type: "event";
19461
19696
  readonly inputs: readonly [{
19462
19697
  readonly name: "token";
19698
+ /**
19699
+ * Execute a transaction as the agent. If within limits, executes immediately.
19700
+ * If over limits, queues for owner approval and returns the pending tx ID.
19701
+ */
19463
19702
  readonly type: "address";
19464
19703
  readonly indexed: true;
19465
19704
  }, {
@@ -19648,9 +19887,6 @@ export declare function createWallet(config: AgentWalletConfig & {
19648
19887
  readonly stateMutability: "view";
19649
19888
  readonly inputs: readonly [{
19650
19889
  readonly name: "txId";
19651
- /**
19652
- * Create a wallet client connected to an existing AgentAccountV2.
19653
- */
19654
19890
  readonly type: "uint256";
19655
19891
  }];
19656
19892
  readonly outputs: readonly [{
@@ -19722,6 +19958,9 @@ export declare function createWallet(config: AgentWalletConfig & {
19722
19958
  }];
19723
19959
  }, {
19724
19960
  readonly name: "nonce";
19961
+ /**
19962
+ * Create a wallet client connected to an existing AgentAccountV2.
19963
+ */
19725
19964
  readonly type: "function";
19726
19965
  readonly stateMutability: "view";
19727
19966
  readonly inputs: readonly [];
@@ -19793,6 +20032,10 @@ export declare function createWallet(config: AgentWalletConfig & {
19793
20032
  readonly type: "event";
19794
20033
  readonly inputs: readonly [{
19795
20034
  readonly name: "token";
20035
+ /**
20036
+ * Execute a transaction as the agent. If within limits, executes immediately.
20037
+ * If over limits, queues for owner approval and returns the pending tx ID.
20038
+ */
19796
20039
  readonly type: "address";
19797
20040
  readonly indexed: true;
19798
20041
  }, {
@@ -19980,9 +20223,6 @@ export declare function createWallet(config: AgentWalletConfig & {
19980
20223
  readonly stateMutability: "view";
19981
20224
  readonly inputs: readonly [{
19982
20225
  readonly name: "txId";
19983
- /**
19984
- * Create a wallet client connected to an existing AgentAccountV2.
19985
- */
19986
20226
  readonly type: "uint256";
19987
20227
  }];
19988
20228
  readonly outputs: readonly [{
@@ -20054,6 +20294,9 @@ export declare function createWallet(config: AgentWalletConfig & {
20054
20294
  }];
20055
20295
  }, {
20056
20296
  readonly name: "nonce";
20297
+ /**
20298
+ * Create a wallet client connected to an existing AgentAccountV2.
20299
+ */
20057
20300
  readonly type: "function";
20058
20301
  readonly stateMutability: "view";
20059
20302
  readonly inputs: readonly [];
@@ -20125,6 +20368,10 @@ export declare function createWallet(config: AgentWalletConfig & {
20125
20368
  readonly type: "event";
20126
20369
  readonly inputs: readonly [{
20127
20370
  readonly name: "token";
20371
+ /**
20372
+ * Execute a transaction as the agent. If within limits, executes immediately.
20373
+ * If over limits, queues for owner approval and returns the pending tx ID.
20374
+ */
20128
20375
  readonly type: "address";
20129
20376
  readonly indexed: true;
20130
20377
  }, {
@@ -20313,9 +20560,6 @@ export declare function createWallet(config: AgentWalletConfig & {
20313
20560
  readonly stateMutability: "view";
20314
20561
  readonly inputs: readonly [{
20315
20562
  readonly name: "txId";
20316
- /**
20317
- * Create a wallet client connected to an existing AgentAccountV2.
20318
- */
20319
20563
  readonly type: "uint256";
20320
20564
  }];
20321
20565
  readonly outputs: readonly [{
@@ -20387,6 +20631,9 @@ export declare function createWallet(config: AgentWalletConfig & {
20387
20631
  }];
20388
20632
  }, {
20389
20633
  readonly name: "nonce";
20634
+ /**
20635
+ * Create a wallet client connected to an existing AgentAccountV2.
20636
+ */
20390
20637
  readonly type: "function";
20391
20638
  readonly stateMutability: "view";
20392
20639
  readonly inputs: readonly [];
@@ -20458,6 +20705,10 @@ export declare function createWallet(config: AgentWalletConfig & {
20458
20705
  readonly type: "event";
20459
20706
  readonly inputs: readonly [{
20460
20707
  readonly name: "token";
20708
+ /**
20709
+ * Execute a transaction as the agent. If within limits, executes immediately.
20710
+ * If over limits, queues for owner approval and returns the pending tx ID.
20711
+ */
20461
20712
  readonly type: "address";
20462
20713
  readonly indexed: true;
20463
20714
  }, {
@@ -20645,9 +20896,6 @@ export declare function createWallet(config: AgentWalletConfig & {
20645
20896
  readonly stateMutability: "view";
20646
20897
  readonly inputs: readonly [{
20647
20898
  readonly name: "txId";
20648
- /**
20649
- * Create a wallet client connected to an existing AgentAccountV2.
20650
- */
20651
20899
  readonly type: "uint256";
20652
20900
  }];
20653
20901
  readonly outputs: readonly [{
@@ -20719,6 +20967,9 @@ export declare function createWallet(config: AgentWalletConfig & {
20719
20967
  }];
20720
20968
  }, {
20721
20969
  readonly name: "nonce";
20970
+ /**
20971
+ * Create a wallet client connected to an existing AgentAccountV2.
20972
+ */
20722
20973
  readonly type: "function";
20723
20974
  readonly stateMutability: "view";
20724
20975
  readonly inputs: readonly [];
@@ -20790,6 +21041,10 @@ export declare function createWallet(config: AgentWalletConfig & {
20790
21041
  readonly type: "event";
20791
21042
  readonly inputs: readonly [{
20792
21043
  readonly name: "token";
21044
+ /**
21045
+ * Execute a transaction as the agent. If within limits, executes immediately.
21046
+ * If over limits, queues for owner approval and returns the pending tx ID.
21047
+ */
20793
21048
  readonly type: "address";
20794
21049
  readonly indexed: true;
20795
21050
  }, {
@@ -20978,9 +21233,6 @@ export declare function createWallet(config: AgentWalletConfig & {
20978
21233
  readonly stateMutability: "view";
20979
21234
  readonly inputs: readonly [{
20980
21235
  readonly name: "txId";
20981
- /**
20982
- * Create a wallet client connected to an existing AgentAccountV2.
20983
- */
20984
21236
  readonly type: "uint256";
20985
21237
  }];
20986
21238
  readonly outputs: readonly [{
@@ -21052,6 +21304,9 @@ export declare function createWallet(config: AgentWalletConfig & {
21052
21304
  }];
21053
21305
  }, {
21054
21306
  readonly name: "nonce";
21307
+ /**
21308
+ * Create a wallet client connected to an existing AgentAccountV2.
21309
+ */
21055
21310
  readonly type: "function";
21056
21311
  readonly stateMutability: "view";
21057
21312
  readonly inputs: readonly [];
@@ -21123,6 +21378,10 @@ export declare function createWallet(config: AgentWalletConfig & {
21123
21378
  readonly type: "event";
21124
21379
  readonly inputs: readonly [{
21125
21380
  readonly name: "token";
21381
+ /**
21382
+ * Execute a transaction as the agent. If within limits, executes immediately.
21383
+ * If over limits, queues for owner approval and returns the pending tx ID.
21384
+ */
21126
21385
  readonly type: "address";
21127
21386
  readonly indexed: true;
21128
21387
  }, {
@@ -21310,9 +21569,6 @@ export declare function createWallet(config: AgentWalletConfig & {
21310
21569
  readonly stateMutability: "view";
21311
21570
  readonly inputs: readonly [{
21312
21571
  readonly name: "txId";
21313
- /**
21314
- * Create a wallet client connected to an existing AgentAccountV2.
21315
- */
21316
21572
  readonly type: "uint256";
21317
21573
  }];
21318
21574
  readonly outputs: readonly [{
@@ -21384,6 +21640,9 @@ export declare function createWallet(config: AgentWalletConfig & {
21384
21640
  }];
21385
21641
  }, {
21386
21642
  readonly name: "nonce";
21643
+ /**
21644
+ * Create a wallet client connected to an existing AgentAccountV2.
21645
+ */
21387
21646
  readonly type: "function";
21388
21647
  readonly stateMutability: "view";
21389
21648
  readonly inputs: readonly [];
@@ -21455,6 +21714,10 @@ export declare function createWallet(config: AgentWalletConfig & {
21455
21714
  readonly type: "event";
21456
21715
  readonly inputs: readonly [{
21457
21716
  readonly name: "token";
21717
+ /**
21718
+ * Execute a transaction as the agent. If within limits, executes immediately.
21719
+ * If over limits, queues for owner approval and returns the pending tx ID.
21720
+ */
21458
21721
  readonly type: "address";
21459
21722
  readonly indexed: true;
21460
21723
  }, {
@@ -21643,9 +21906,6 @@ export declare function createWallet(config: AgentWalletConfig & {
21643
21906
  readonly stateMutability: "view";
21644
21907
  readonly inputs: readonly [{
21645
21908
  readonly name: "txId";
21646
- /**
21647
- * Create a wallet client connected to an existing AgentAccountV2.
21648
- */
21649
21909
  readonly type: "uint256";
21650
21910
  }];
21651
21911
  readonly outputs: readonly [{
@@ -21717,6 +21977,9 @@ export declare function createWallet(config: AgentWalletConfig & {
21717
21977
  }];
21718
21978
  }, {
21719
21979
  readonly name: "nonce";
21980
+ /**
21981
+ * Create a wallet client connected to an existing AgentAccountV2.
21982
+ */
21720
21983
  readonly type: "function";
21721
21984
  readonly stateMutability: "view";
21722
21985
  readonly inputs: readonly [];
@@ -21788,6 +22051,10 @@ export declare function createWallet(config: AgentWalletConfig & {
21788
22051
  readonly type: "event";
21789
22052
  readonly inputs: readonly [{
21790
22053
  readonly name: "token";
22054
+ /**
22055
+ * Execute a transaction as the agent. If within limits, executes immediately.
22056
+ * If over limits, queues for owner approval and returns the pending tx ID.
22057
+ */
21791
22058
  readonly type: "address";
21792
22059
  readonly indexed: true;
21793
22060
  }, {
@@ -21975,9 +22242,6 @@ export declare function createWallet(config: AgentWalletConfig & {
21975
22242
  readonly stateMutability: "view";
21976
22243
  readonly inputs: readonly [{
21977
22244
  readonly name: "txId";
21978
- /**
21979
- * Create a wallet client connected to an existing AgentAccountV2.
21980
- */
21981
22245
  readonly type: "uint256";
21982
22246
  }];
21983
22247
  readonly outputs: readonly [{
@@ -22049,6 +22313,9 @@ export declare function createWallet(config: AgentWalletConfig & {
22049
22313
  }];
22050
22314
  }, {
22051
22315
  readonly name: "nonce";
22316
+ /**
22317
+ * Create a wallet client connected to an existing AgentAccountV2.
22318
+ */
22052
22319
  readonly type: "function";
22053
22320
  readonly stateMutability: "view";
22054
22321
  readonly inputs: readonly [];
@@ -22120,6 +22387,10 @@ export declare function createWallet(config: AgentWalletConfig & {
22120
22387
  readonly type: "event";
22121
22388
  readonly inputs: readonly [{
22122
22389
  readonly name: "token";
22390
+ /**
22391
+ * Execute a transaction as the agent. If within limits, executes immediately.
22392
+ * If over limits, queues for owner approval and returns the pending tx ID.
22393
+ */
22123
22394
  readonly type: "address";
22124
22395
  readonly indexed: true;
22125
22396
  }, {
@@ -22308,9 +22579,6 @@ export declare function createWallet(config: AgentWalletConfig & {
22308
22579
  readonly stateMutability: "view";
22309
22580
  readonly inputs: readonly [{
22310
22581
  readonly name: "txId";
22311
- /**
22312
- * Create a wallet client connected to an existing AgentAccountV2.
22313
- */
22314
22582
  readonly type: "uint256";
22315
22583
  }];
22316
22584
  readonly outputs: readonly [{
@@ -22382,6 +22650,9 @@ export declare function createWallet(config: AgentWalletConfig & {
22382
22650
  }];
22383
22651
  }, {
22384
22652
  readonly name: "nonce";
22653
+ /**
22654
+ * Create a wallet client connected to an existing AgentAccountV2.
22655
+ */
22385
22656
  readonly type: "function";
22386
22657
  readonly stateMutability: "view";
22387
22658
  readonly inputs: readonly [];
@@ -22453,6 +22724,10 @@ export declare function createWallet(config: AgentWalletConfig & {
22453
22724
  readonly type: "event";
22454
22725
  readonly inputs: readonly [{
22455
22726
  readonly name: "token";
22727
+ /**
22728
+ * Execute a transaction as the agent. If within limits, executes immediately.
22729
+ * If over limits, queues for owner approval and returns the pending tx ID.
22730
+ */
22456
22731
  readonly type: "address";
22457
22732
  readonly indexed: true;
22458
22733
  }, {
@@ -22640,9 +22915,6 @@ export declare function createWallet(config: AgentWalletConfig & {
22640
22915
  readonly stateMutability: "view";
22641
22916
  readonly inputs: readonly [{
22642
22917
  readonly name: "txId";
22643
- /**
22644
- * Create a wallet client connected to an existing AgentAccountV2.
22645
- */
22646
22918
  readonly type: "uint256";
22647
22919
  }];
22648
22920
  readonly outputs: readonly [{
@@ -22714,6 +22986,9 @@ export declare function createWallet(config: AgentWalletConfig & {
22714
22986
  }];
22715
22987
  }, {
22716
22988
  readonly name: "nonce";
22989
+ /**
22990
+ * Create a wallet client connected to an existing AgentAccountV2.
22991
+ */
22717
22992
  readonly type: "function";
22718
22993
  readonly stateMutability: "view";
22719
22994
  readonly inputs: readonly [];
@@ -22785,6 +23060,10 @@ export declare function createWallet(config: AgentWalletConfig & {
22785
23060
  readonly type: "event";
22786
23061
  readonly inputs: readonly [{
22787
23062
  readonly name: "token";
23063
+ /**
23064
+ * Execute a transaction as the agent. If within limits, executes immediately.
23065
+ * If over limits, queues for owner approval and returns the pending tx ID.
23066
+ */
22788
23067
  readonly type: "address";
22789
23068
  readonly indexed: true;
22790
23069
  }, {
@@ -22973,9 +23252,6 @@ export declare function createWallet(config: AgentWalletConfig & {
22973
23252
  readonly stateMutability: "view";
22974
23253
  readonly inputs: readonly [{
22975
23254
  readonly name: "txId";
22976
- /**
22977
- * Create a wallet client connected to an existing AgentAccountV2.
22978
- */
22979
23255
  readonly type: "uint256";
22980
23256
  }];
22981
23257
  readonly outputs: readonly [{
@@ -23047,6 +23323,9 @@ export declare function createWallet(config: AgentWalletConfig & {
23047
23323
  }];
23048
23324
  }, {
23049
23325
  readonly name: "nonce";
23326
+ /**
23327
+ * Create a wallet client connected to an existing AgentAccountV2.
23328
+ */
23050
23329
  readonly type: "function";
23051
23330
  readonly stateMutability: "view";
23052
23331
  readonly inputs: readonly [];
@@ -23118,6 +23397,10 @@ export declare function createWallet(config: AgentWalletConfig & {
23118
23397
  readonly type: "event";
23119
23398
  readonly inputs: readonly [{
23120
23399
  readonly name: "token";
23400
+ /**
23401
+ * Execute a transaction as the agent. If within limits, executes immediately.
23402
+ * If over limits, queues for owner approval and returns the pending tx ID.
23403
+ */
23121
23404
  readonly type: "address";
23122
23405
  readonly indexed: true;
23123
23406
  }, {
@@ -23305,9 +23588,6 @@ export declare function createWallet(config: AgentWalletConfig & {
23305
23588
  readonly stateMutability: "view";
23306
23589
  readonly inputs: readonly [{
23307
23590
  readonly name: "txId";
23308
- /**
23309
- * Create a wallet client connected to an existing AgentAccountV2.
23310
- */
23311
23591
  readonly type: "uint256";
23312
23592
  }];
23313
23593
  readonly outputs: readonly [{
@@ -23379,6 +23659,9 @@ export declare function createWallet(config: AgentWalletConfig & {
23379
23659
  }];
23380
23660
  }, {
23381
23661
  readonly name: "nonce";
23662
+ /**
23663
+ * Create a wallet client connected to an existing AgentAccountV2.
23664
+ */
23382
23665
  readonly type: "function";
23383
23666
  readonly stateMutability: "view";
23384
23667
  readonly inputs: readonly [];
@@ -23450,6 +23733,10 @@ export declare function createWallet(config: AgentWalletConfig & {
23450
23733
  readonly type: "event";
23451
23734
  readonly inputs: readonly [{
23452
23735
  readonly name: "token";
23736
+ /**
23737
+ * Execute a transaction as the agent. If within limits, executes immediately.
23738
+ * If over limits, queues for owner approval and returns the pending tx ID.
23739
+ */
23453
23740
  readonly type: "address";
23454
23741
  readonly indexed: true;
23455
23742
  }, {
@@ -23640,9 +23927,6 @@ export declare function createWallet(config: AgentWalletConfig & {
23640
23927
  readonly stateMutability: "view";
23641
23928
  readonly inputs: readonly [{
23642
23929
  readonly name: "txId";
23643
- /**
23644
- * Create a wallet client connected to an existing AgentAccountV2.
23645
- */
23646
23930
  readonly type: "uint256";
23647
23931
  }];
23648
23932
  readonly outputs: readonly [{
@@ -23714,6 +23998,9 @@ export declare function createWallet(config: AgentWalletConfig & {
23714
23998
  }];
23715
23999
  }, {
23716
24000
  readonly name: "nonce";
24001
+ /**
24002
+ * Create a wallet client connected to an existing AgentAccountV2.
24003
+ */
23717
24004
  readonly type: "function";
23718
24005
  readonly stateMutability: "view";
23719
24006
  readonly inputs: readonly [];
@@ -23785,6 +24072,10 @@ export declare function createWallet(config: AgentWalletConfig & {
23785
24072
  readonly type: "event";
23786
24073
  readonly inputs: readonly [{
23787
24074
  readonly name: "token";
24075
+ /**
24076
+ * Execute a transaction as the agent. If within limits, executes immediately.
24077
+ * If over limits, queues for owner approval and returns the pending tx ID.
24078
+ */
23788
24079
  readonly type: "address";
23789
24080
  readonly indexed: true;
23790
24081
  }, {