agentwallet-sdk 2.4.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/README.md +46 -19
  2. package/dist/bridge/abis.d.ts +187 -0
  3. package/dist/bridge/abis.d.ts.map +1 -0
  4. package/dist/bridge/abis.js +129 -0
  5. package/dist/bridge/abis.js.map +1 -0
  6. package/dist/bridge/client.d.ts +106 -0
  7. package/dist/bridge/client.d.ts.map +1 -0
  8. package/dist/bridge/client.js +393 -0
  9. package/dist/bridge/client.js.map +1 -0
  10. package/dist/bridge/index.d.ts +4 -0
  11. package/dist/bridge/index.d.ts.map +1 -0
  12. package/dist/bridge/index.js +4 -0
  13. package/dist/bridge/index.js.map +1 -0
  14. package/dist/bridge/types.d.ts +107 -0
  15. package/dist/bridge/types.d.ts.map +1 -0
  16. package/dist/bridge/types.js +58 -0
  17. package/dist/bridge/types.js.map +1 -0
  18. package/dist/chains.d.ts +37 -0
  19. package/dist/chains.d.ts.map +1 -0
  20. package/dist/chains.js +75 -0
  21. package/dist/chains.js.map +1 -0
  22. package/dist/index.d.ts +11 -215
  23. package/dist/index.d.ts.map +1 -1
  24. package/dist/index.js +11 -1
  25. package/dist/index.js.map +1 -1
  26. package/dist/swap/SwapModule.d.ts +78 -0
  27. package/dist/swap/SwapModule.d.ts.map +1 -0
  28. package/dist/swap/SwapModule.js +272 -0
  29. package/dist/swap/SwapModule.js.map +1 -0
  30. package/dist/swap/abi.d.ts +169 -0
  31. package/dist/swap/abi.d.ts.map +1 -0
  32. package/dist/swap/abi.js +118 -0
  33. package/dist/swap/abi.js.map +1 -0
  34. package/dist/swap/index.d.ts +5 -0
  35. package/dist/swap/index.d.ts.map +1 -0
  36. package/dist/swap/index.js +5 -0
  37. package/dist/swap/index.js.map +1 -0
  38. package/dist/swap/types.d.ts +81 -0
  39. package/dist/swap/types.d.ts.map +1 -0
  40. package/dist/swap/types.js +18 -0
  41. package/dist/swap/types.js.map +1 -0
  42. package/dist/types.d.ts +2 -1
  43. package/dist/types.d.ts.map +1 -1
  44. package/dist/types.js +1 -0
  45. package/dist/types.js.map +1 -1
  46. package/dist/x402/types.d.ts +2 -2
  47. package/dist/x402/types.d.ts.map +1 -1
  48. package/dist/x402/types.js +6 -2
  49. package/dist/x402/types.js.map +1 -1
  50. package/package.json +27 -12
  51. package/dist/x402/__tests__/budget.test.d.ts +0 -2
  52. package/dist/x402/__tests__/budget.test.d.ts.map +0 -1
  53. package/dist/x402/__tests__/budget.test.js +0 -114
  54. package/dist/x402/__tests__/budget.test.js.map +0 -1
  55. package/dist/x402/__tests__/client.test.d.ts +0 -2
  56. package/dist/x402/__tests__/client.test.d.ts.map +0 -1
  57. package/dist/x402/__tests__/client.test.js +0 -107
  58. package/dist/x402/__tests__/client.test.js.map +0 -1
package/dist/index.d.ts CHANGED
@@ -2,10 +2,19 @@ import { type Address, type Hash, type Hex, type WalletClient, type Chain } from
2
2
  import type { AgentWalletConfig, SpendPolicy, BudgetStatus, PendingTx, ExecuteResult, QueuedEvent, BudgetForecast, WalletHealth, ActivityEntry, BatchTransfer } from './types.js';
3
3
  export type { SpendPolicy, BudgetStatus, PendingTx, ExecuteResult, AgentWalletConfig, QueuedEvent, BudgetForecast, WalletHealth, ActivityEntry, BatchTransfer, } from './types.js';
4
4
  export { AgentAccountV2Abi, AgentAccountFactoryV2Abi } from './abi.js';
5
+ export { CHAIN_CONFIG, getChainConfig, chainFromId, } from './chains.js';
6
+ export type { SupportedChain, ChainConfig } from './chains.js';
5
7
  export { ERC8004Client, ERC8004IdentityRegistryAbi, METADATA_KEYS, REGISTRATION_FILE_TYPE, KNOWN_REGISTRY_ADDRESSES, buildDataURI, parseDataURI, resolveAgentURI, validateRegistrationFile, formatAgentRegistry, } from './identity/erc8004.js';
6
8
  export type { AgentIdentity, AgentRegistrationFile, AgentServiceEndpoint, AgentRegistrationRef, AgentModelMetadata, ERC8004ClientConfig, MetadataEntry, RegistrationResult, SupportedTrustMechanism, } from './identity/erc8004.js';
9
+ export { SwapModule, attachSwap, calcProtocolFee, applySlippage, calcDeadline, } from './swap/index.js';
10
+ export { UniswapV3RouterAbi, UniswapV3QuoterV2Abi, ERC20Abi, } from './swap/index.js';
11
+ export { BASE_TOKENS, UNISWAP_V3_BASE, PROTOCOL_FEE_BPS, DEFAULT_SLIPPAGE_BPS, } from './swap/index.js';
12
+ export type { UniswapFeeTier, SwapQuote, SwapOptions, SwapResult, SwapModuleConfig, } from './swap/index.js';
7
13
  export { X402Client, X402BudgetTracker, X402PaymentError, X402BudgetExceededError, createX402Client, createX402Fetch, wrapWithX402, USDC_ADDRESSES, DEFAULT_SUPPORTED_NETWORKS, } from './x402/index.js';
8
14
  export type { X402PaymentRequired, X402PaymentRequirements, X402PaymentPayload, X402SettlementResponse, X402ResourceInfo, X402ServiceBudget, X402TransactionLog, X402ClientConfig, } from './x402/index.js';
15
+ export { BridgeModule, BridgeError, createBridge, CCTP_DOMAIN_IDS, BRIDGE_CHAIN_IDS, USDC_CONTRACT, TOKEN_MESSENGER_V2, MESSAGE_TRANSMITTER_V2, FINALITY_THRESHOLD, } from './bridge/index.js';
16
+ export type { BridgeChain, BridgeOptions, BurnResult, BridgeResult, AttestationResponse, AttestationStatus, } from './bridge/index.js';
17
+ export { TokenMessengerV2Abi, MessageTransmitterV2Abi, ERC20BridgeAbi } from './bridge/index.js';
9
18
  /** Native ETH token address (zero address) */
10
19
  export declare const NATIVE_TOKEN: Address;
11
20
  /**
@@ -137,9 +146,6 @@ export declare function createWallet(config: AgentWalletConfig & {
137
146
  readonly stateMutability: "view";
138
147
  readonly inputs: readonly [{
139
148
  readonly name: "txId";
140
- /**
141
- * Create a wallet client connected to an existing AgentAccountV2.
142
- */
143
149
  readonly type: "uint256";
144
150
  }];
145
151
  readonly outputs: readonly [{
@@ -470,9 +476,6 @@ export declare function createWallet(config: AgentWalletConfig & {
470
476
  readonly stateMutability: "view";
471
477
  readonly inputs: readonly [{
472
478
  readonly name: "txId";
473
- /**
474
- * Create a wallet client connected to an existing AgentAccountV2.
475
- */
476
479
  readonly type: "uint256";
477
480
  }];
478
481
  readonly outputs: readonly [{
@@ -803,9 +806,6 @@ export declare function createWallet(config: AgentWalletConfig & {
803
806
  readonly stateMutability: "view";
804
807
  readonly inputs: readonly [{
805
808
  readonly name: "txId";
806
- /**
807
- * Create a wallet client connected to an existing AgentAccountV2.
808
- */
809
809
  readonly type: "uint256";
810
810
  }];
811
811
  readonly outputs: readonly [{
@@ -1136,9 +1136,6 @@ export declare function createWallet(config: AgentWalletConfig & {
1136
1136
  readonly stateMutability: "view";
1137
1137
  readonly inputs: readonly [{
1138
1138
  readonly name: "txId";
1139
- /**
1140
- * Create a wallet client connected to an existing AgentAccountV2.
1141
- */
1142
1139
  readonly type: "uint256";
1143
1140
  }];
1144
1141
  readonly outputs: readonly [{
@@ -1469,9 +1466,6 @@ export declare function createWallet(config: AgentWalletConfig & {
1469
1466
  readonly stateMutability: "view";
1470
1467
  readonly inputs: readonly [{
1471
1468
  readonly name: "txId";
1472
- /**
1473
- * Create a wallet client connected to an existing AgentAccountV2.
1474
- */
1475
1469
  readonly type: "uint256";
1476
1470
  }];
1477
1471
  readonly outputs: readonly [{
@@ -1802,9 +1796,6 @@ export declare function createWallet(config: AgentWalletConfig & {
1802
1796
  readonly stateMutability: "view";
1803
1797
  readonly inputs: readonly [{
1804
1798
  readonly name: "txId";
1805
- /**
1806
- * Create a wallet client connected to an existing AgentAccountV2.
1807
- */
1808
1799
  readonly type: "uint256";
1809
1800
  }];
1810
1801
  readonly outputs: readonly [{
@@ -2135,9 +2126,6 @@ export declare function createWallet(config: AgentWalletConfig & {
2135
2126
  readonly stateMutability: "view";
2136
2127
  readonly inputs: readonly [{
2137
2128
  readonly name: "txId";
2138
- /**
2139
- * Create a wallet client connected to an existing AgentAccountV2.
2140
- */
2141
2129
  readonly type: "uint256";
2142
2130
  }];
2143
2131
  readonly outputs: readonly [{
@@ -2468,9 +2456,6 @@ export declare function createWallet(config: AgentWalletConfig & {
2468
2456
  readonly stateMutability: "view";
2469
2457
  readonly inputs: readonly [{
2470
2458
  readonly name: "txId";
2471
- /**
2472
- * Create a wallet client connected to an existing AgentAccountV2.
2473
- */
2474
2459
  readonly type: "uint256";
2475
2460
  }];
2476
2461
  readonly outputs: readonly [{
@@ -2801,9 +2786,6 @@ export declare function createWallet(config: AgentWalletConfig & {
2801
2786
  readonly stateMutability: "view";
2802
2787
  readonly inputs: readonly [{
2803
2788
  readonly name: "txId";
2804
- /**
2805
- * Create a wallet client connected to an existing AgentAccountV2.
2806
- */
2807
2789
  readonly type: "uint256";
2808
2790
  }];
2809
2791
  readonly outputs: readonly [{
@@ -3134,9 +3116,6 @@ export declare function createWallet(config: AgentWalletConfig & {
3134
3116
  readonly stateMutability: "view";
3135
3117
  readonly inputs: readonly [{
3136
3118
  readonly name: "txId";
3137
- /**
3138
- * Create a wallet client connected to an existing AgentAccountV2.
3139
- */
3140
3119
  readonly type: "uint256";
3141
3120
  }];
3142
3121
  readonly outputs: readonly [{
@@ -3469,9 +3448,6 @@ export declare function createWallet(config: AgentWalletConfig & {
3469
3448
  readonly stateMutability: "view";
3470
3449
  readonly inputs: readonly [{
3471
3450
  readonly name: "txId";
3472
- /**
3473
- * Create a wallet client connected to an existing AgentAccountV2.
3474
- */
3475
3451
  readonly type: "uint256";
3476
3452
  }];
3477
3453
  readonly outputs: readonly [{
@@ -3802,9 +3778,6 @@ export declare function createWallet(config: AgentWalletConfig & {
3802
3778
  readonly stateMutability: "view";
3803
3779
  readonly inputs: readonly [{
3804
3780
  readonly name: "txId";
3805
- /**
3806
- * Create a wallet client connected to an existing AgentAccountV2.
3807
- */
3808
3781
  readonly type: "uint256";
3809
3782
  }];
3810
3783
  readonly outputs: readonly [{
@@ -4135,9 +4108,6 @@ export declare function createWallet(config: AgentWalletConfig & {
4135
4108
  readonly stateMutability: "view";
4136
4109
  readonly inputs: readonly [{
4137
4110
  readonly name: "txId";
4138
- /**
4139
- * Create a wallet client connected to an existing AgentAccountV2.
4140
- */
4141
4111
  readonly type: "uint256";
4142
4112
  }];
4143
4113
  readonly outputs: readonly [{
@@ -4468,9 +4438,6 @@ export declare function createWallet(config: AgentWalletConfig & {
4468
4438
  readonly stateMutability: "view";
4469
4439
  readonly inputs: readonly [{
4470
4440
  readonly name: "txId";
4471
- /**
4472
- * Create a wallet client connected to an existing AgentAccountV2.
4473
- */
4474
4441
  readonly type: "uint256";
4475
4442
  }];
4476
4443
  readonly outputs: readonly [{
@@ -4801,9 +4768,6 @@ export declare function createWallet(config: AgentWalletConfig & {
4801
4768
  readonly stateMutability: "view";
4802
4769
  readonly inputs: readonly [{
4803
4770
  readonly name: "txId";
4804
- /**
4805
- * Create a wallet client connected to an existing AgentAccountV2.
4806
- */
4807
4771
  readonly type: "uint256";
4808
4772
  }];
4809
4773
  readonly outputs: readonly [{
@@ -5134,9 +5098,6 @@ export declare function createWallet(config: AgentWalletConfig & {
5134
5098
  readonly stateMutability: "view";
5135
5099
  readonly inputs: readonly [{
5136
5100
  readonly name: "txId";
5137
- /**
5138
- * Create a wallet client connected to an existing AgentAccountV2.
5139
- */
5140
5101
  readonly type: "uint256";
5141
5102
  }];
5142
5103
  readonly outputs: readonly [{
@@ -5467,9 +5428,6 @@ export declare function createWallet(config: AgentWalletConfig & {
5467
5428
  readonly stateMutability: "view";
5468
5429
  readonly inputs: readonly [{
5469
5430
  readonly name: "txId";
5470
- /**
5471
- * Create a wallet client connected to an existing AgentAccountV2.
5472
- */
5473
5431
  readonly type: "uint256";
5474
5432
  }];
5475
5433
  readonly outputs: readonly [{
@@ -5801,9 +5759,6 @@ export declare function createWallet(config: AgentWalletConfig & {
5801
5759
  readonly stateMutability: "view";
5802
5760
  readonly inputs: readonly [{
5803
5761
  readonly name: "txId";
5804
- /**
5805
- * Create a wallet client connected to an existing AgentAccountV2.
5806
- */
5807
5762
  readonly type: "uint256";
5808
5763
  }];
5809
5764
  readonly outputs: readonly [{
@@ -6134,9 +6089,6 @@ export declare function createWallet(config: AgentWalletConfig & {
6134
6089
  readonly stateMutability: "view";
6135
6090
  readonly inputs: readonly [{
6136
6091
  readonly name: "txId";
6137
- /**
6138
- * Create a wallet client connected to an existing AgentAccountV2.
6139
- */
6140
6092
  readonly type: "uint256";
6141
6093
  }];
6142
6094
  readonly outputs: readonly [{
@@ -6467,9 +6419,6 @@ export declare function createWallet(config: AgentWalletConfig & {
6467
6419
  readonly stateMutability: "view";
6468
6420
  readonly inputs: readonly [{
6469
6421
  readonly name: "txId";
6470
- /**
6471
- * Create a wallet client connected to an existing AgentAccountV2.
6472
- */
6473
6422
  readonly type: "uint256";
6474
6423
  }];
6475
6424
  readonly outputs: readonly [{
@@ -6800,9 +6749,6 @@ export declare function createWallet(config: AgentWalletConfig & {
6800
6749
  readonly stateMutability: "view";
6801
6750
  readonly inputs: readonly [{
6802
6751
  readonly name: "txId";
6803
- /**
6804
- * Create a wallet client connected to an existing AgentAccountV2.
6805
- */
6806
6752
  readonly type: "uint256";
6807
6753
  }];
6808
6754
  readonly outputs: readonly [{
@@ -7133,9 +7079,6 @@ export declare function createWallet(config: AgentWalletConfig & {
7133
7079
  readonly stateMutability: "view";
7134
7080
  readonly inputs: readonly [{
7135
7081
  readonly name: "txId";
7136
- /**
7137
- * Create a wallet client connected to an existing AgentAccountV2.
7138
- */
7139
7082
  readonly type: "uint256";
7140
7083
  }];
7141
7084
  readonly outputs: readonly [{
@@ -7466,9 +7409,6 @@ export declare function createWallet(config: AgentWalletConfig & {
7466
7409
  readonly stateMutability: "view";
7467
7410
  readonly inputs: readonly [{
7468
7411
  readonly name: "txId";
7469
- /**
7470
- * Create a wallet client connected to an existing AgentAccountV2.
7471
- */
7472
7412
  readonly type: "uint256";
7473
7413
  }];
7474
7414
  readonly outputs: readonly [{
@@ -7799,9 +7739,6 @@ export declare function createWallet(config: AgentWalletConfig & {
7799
7739
  readonly stateMutability: "view";
7800
7740
  readonly inputs: readonly [{
7801
7741
  readonly name: "txId";
7802
- /**
7803
- * Create a wallet client connected to an existing AgentAccountV2.
7804
- */
7805
7742
  readonly type: "uint256";
7806
7743
  }];
7807
7744
  readonly outputs: readonly [{
@@ -8134,9 +8071,6 @@ export declare function createWallet(config: AgentWalletConfig & {
8134
8071
  readonly stateMutability: "view";
8135
8072
  readonly inputs: readonly [{
8136
8073
  readonly name: "txId";
8137
- /**
8138
- * Create a wallet client connected to an existing AgentAccountV2.
8139
- */
8140
8074
  readonly type: "uint256";
8141
8075
  }];
8142
8076
  readonly outputs: readonly [{
@@ -8466,9 +8400,6 @@ export declare function createWallet(config: AgentWalletConfig & {
8466
8400
  readonly stateMutability: "view";
8467
8401
  readonly inputs: readonly [{
8468
8402
  readonly name: "txId";
8469
- /**
8470
- * Create a wallet client connected to an existing AgentAccountV2.
8471
- */
8472
8403
  readonly type: "uint256";
8473
8404
  }];
8474
8405
  readonly outputs: readonly [{
@@ -8799,9 +8730,6 @@ export declare function createWallet(config: AgentWalletConfig & {
8799
8730
  readonly stateMutability: "view";
8800
8731
  readonly inputs: readonly [{
8801
8732
  readonly name: "txId";
8802
- /**
8803
- * Create a wallet client connected to an existing AgentAccountV2.
8804
- */
8805
8733
  readonly type: "uint256";
8806
8734
  }];
8807
8735
  readonly outputs: readonly [{
@@ -9131,9 +9059,6 @@ export declare function createWallet(config: AgentWalletConfig & {
9131
9059
  readonly stateMutability: "view";
9132
9060
  readonly inputs: readonly [{
9133
9061
  readonly name: "txId";
9134
- /**
9135
- * Create a wallet client connected to an existing AgentAccountV2.
9136
- */
9137
9062
  readonly type: "uint256";
9138
9063
  }];
9139
9064
  readonly outputs: readonly [{
@@ -9464,9 +9389,6 @@ export declare function createWallet(config: AgentWalletConfig & {
9464
9389
  readonly stateMutability: "view";
9465
9390
  readonly inputs: readonly [{
9466
9391
  readonly name: "txId";
9467
- /**
9468
- * Create a wallet client connected to an existing AgentAccountV2.
9469
- */
9470
9392
  readonly type: "uint256";
9471
9393
  }];
9472
9394
  readonly outputs: readonly [{
@@ -9796,9 +9718,6 @@ export declare function createWallet(config: AgentWalletConfig & {
9796
9718
  readonly stateMutability: "view";
9797
9719
  readonly inputs: readonly [{
9798
9720
  readonly name: "txId";
9799
- /**
9800
- * Create a wallet client connected to an existing AgentAccountV2.
9801
- */
9802
9721
  readonly type: "uint256";
9803
9722
  }];
9804
9723
  readonly outputs: readonly [{
@@ -10129,9 +10048,6 @@ export declare function createWallet(config: AgentWalletConfig & {
10129
10048
  readonly stateMutability: "view";
10130
10049
  readonly inputs: readonly [{
10131
10050
  readonly name: "txId";
10132
- /**
10133
- * Create a wallet client connected to an existing AgentAccountV2.
10134
- */
10135
10051
  readonly type: "uint256";
10136
10052
  }];
10137
10053
  readonly outputs: readonly [{
@@ -10461,9 +10377,6 @@ export declare function createWallet(config: AgentWalletConfig & {
10461
10377
  readonly stateMutability: "view";
10462
10378
  readonly inputs: readonly [{
10463
10379
  readonly name: "txId";
10464
- /**
10465
- * Create a wallet client connected to an existing AgentAccountV2.
10466
- */
10467
10380
  readonly type: "uint256";
10468
10381
  }];
10469
10382
  readonly outputs: readonly [{
@@ -10794,9 +10707,6 @@ export declare function createWallet(config: AgentWalletConfig & {
10794
10707
  readonly stateMutability: "view";
10795
10708
  readonly inputs: readonly [{
10796
10709
  readonly name: "txId";
10797
- /**
10798
- * Create a wallet client connected to an existing AgentAccountV2.
10799
- */
10800
10710
  readonly type: "uint256";
10801
10711
  }];
10802
10712
  readonly outputs: readonly [{
@@ -11126,9 +11036,6 @@ export declare function createWallet(config: AgentWalletConfig & {
11126
11036
  readonly stateMutability: "view";
11127
11037
  readonly inputs: readonly [{
11128
11038
  readonly name: "txId";
11129
- /**
11130
- * Create a wallet client connected to an existing AgentAccountV2.
11131
- */
11132
11039
  readonly type: "uint256";
11133
11040
  }];
11134
11041
  readonly outputs: readonly [{
@@ -11459,9 +11366,6 @@ export declare function createWallet(config: AgentWalletConfig & {
11459
11366
  readonly stateMutability: "view";
11460
11367
  readonly inputs: readonly [{
11461
11368
  readonly name: "txId";
11462
- /**
11463
- * Create a wallet client connected to an existing AgentAccountV2.
11464
- */
11465
11369
  readonly type: "uint256";
11466
11370
  }];
11467
11371
  readonly outputs: readonly [{
@@ -11791,9 +11695,6 @@ export declare function createWallet(config: AgentWalletConfig & {
11791
11695
  readonly stateMutability: "view";
11792
11696
  readonly inputs: readonly [{
11793
11697
  readonly name: "txId";
11794
- /**
11795
- * Create a wallet client connected to an existing AgentAccountV2.
11796
- */
11797
11698
  readonly type: "uint256";
11798
11699
  }];
11799
11700
  readonly outputs: readonly [{
@@ -12124,9 +12025,6 @@ export declare function createWallet(config: AgentWalletConfig & {
12124
12025
  readonly stateMutability: "view";
12125
12026
  readonly inputs: readonly [{
12126
12027
  readonly name: "txId";
12127
- /**
12128
- * Create a wallet client connected to an existing AgentAccountV2.
12129
- */
12130
12028
  readonly type: "uint256";
12131
12029
  }];
12132
12030
  readonly outputs: readonly [{
@@ -12456,9 +12354,6 @@ export declare function createWallet(config: AgentWalletConfig & {
12456
12354
  readonly stateMutability: "view";
12457
12355
  readonly inputs: readonly [{
12458
12356
  readonly name: "txId";
12459
- /**
12460
- * Create a wallet client connected to an existing AgentAccountV2.
12461
- */
12462
12357
  readonly type: "uint256";
12463
12358
  }];
12464
12359
  readonly outputs: readonly [{
@@ -12808,9 +12703,6 @@ export declare function createWallet(config: AgentWalletConfig & {
12808
12703
  readonly stateMutability: "view";
12809
12704
  readonly inputs: readonly [{
12810
12705
  readonly name: "txId";
12811
- /**
12812
- * Create a wallet client connected to an existing AgentAccountV2.
12813
- */
12814
12706
  readonly type: "uint256";
12815
12707
  }];
12816
12708
  readonly outputs: readonly [{
@@ -13154,9 +13046,6 @@ export declare function createWallet(config: AgentWalletConfig & {
13154
13046
  readonly stateMutability: "view";
13155
13047
  readonly inputs: readonly [{
13156
13048
  readonly name: "txId";
13157
- /**
13158
- * Create a wallet client connected to an existing AgentAccountV2.
13159
- */
13160
13049
  readonly type: "uint256";
13161
13050
  }];
13162
13051
  readonly outputs: readonly [{
@@ -13500,9 +13389,6 @@ export declare function createWallet(config: AgentWalletConfig & {
13500
13389
  readonly stateMutability: "view";
13501
13390
  readonly inputs: readonly [{
13502
13391
  readonly name: "txId";
13503
- /**
13504
- * Create a wallet client connected to an existing AgentAccountV2.
13505
- */
13506
13392
  readonly type: "uint256";
13507
13393
  }];
13508
13394
  readonly outputs: readonly [{
@@ -13850,9 +13736,6 @@ export declare function createWallet(config: AgentWalletConfig & {
13850
13736
  readonly stateMutability: "view";
13851
13737
  readonly inputs: readonly [{
13852
13738
  readonly name: "txId";
13853
- /**
13854
- * Create a wallet client connected to an existing AgentAccountV2.
13855
- */
13856
13739
  readonly type: "uint256";
13857
13740
  }];
13858
13741
  readonly outputs: readonly [{
@@ -14196,9 +14079,6 @@ export declare function createWallet(config: AgentWalletConfig & {
14196
14079
  readonly stateMutability: "view";
14197
14080
  readonly inputs: readonly [{
14198
14081
  readonly name: "txId";
14199
- /**
14200
- * Create a wallet client connected to an existing AgentAccountV2.
14201
- */
14202
14082
  readonly type: "uint256";
14203
14083
  }];
14204
14084
  readonly outputs: readonly [{
@@ -14542,9 +14422,6 @@ export declare function createWallet(config: AgentWalletConfig & {
14542
14422
  readonly stateMutability: "view";
14543
14423
  readonly inputs: readonly [{
14544
14424
  readonly name: "txId";
14545
- /**
14546
- * Create a wallet client connected to an existing AgentAccountV2.
14547
- */
14548
14425
  readonly type: "uint256";
14549
14426
  }];
14550
14427
  readonly outputs: readonly [{
@@ -14885,9 +14762,6 @@ export declare function createWallet(config: AgentWalletConfig & {
14885
14762
  readonly stateMutability: "view";
14886
14763
  readonly inputs: readonly [{
14887
14764
  readonly name: "txId";
14888
- /**
14889
- * Create a wallet client connected to an existing AgentAccountV2.
14890
- */
14891
14765
  readonly type: "uint256";
14892
14766
  }];
14893
14767
  readonly outputs: readonly [{
@@ -15225,9 +15099,6 @@ export declare function createWallet(config: AgentWalletConfig & {
15225
15099
  readonly stateMutability: "view";
15226
15100
  readonly inputs: readonly [{
15227
15101
  readonly name: "txId";
15228
- /**
15229
- * Create a wallet client connected to an existing AgentAccountV2.
15230
- */
15231
15102
  readonly type: "uint256";
15232
15103
  }];
15233
15104
  readonly outputs: readonly [{
@@ -15565,9 +15436,6 @@ export declare function createWallet(config: AgentWalletConfig & {
15565
15436
  readonly stateMutability: "view";
15566
15437
  readonly inputs: readonly [{
15567
15438
  readonly name: "txId";
15568
- /**
15569
- * Create a wallet client connected to an existing AgentAccountV2.
15570
- */
15571
15439
  readonly type: "uint256";
15572
15440
  }];
15573
15441
  readonly outputs: readonly [{
@@ -15906,9 +15774,6 @@ export declare function createWallet(config: AgentWalletConfig & {
15906
15774
  readonly stateMutability: "view";
15907
15775
  readonly inputs: readonly [{
15908
15776
  readonly name: "txId";
15909
- /**
15910
- * Create a wallet client connected to an existing AgentAccountV2.
15911
- */
15912
15777
  readonly type: "uint256";
15913
15778
  }];
15914
15779
  readonly outputs: readonly [{
@@ -16246,9 +16111,6 @@ export declare function createWallet(config: AgentWalletConfig & {
16246
16111
  readonly stateMutability: "view";
16247
16112
  readonly inputs: readonly [{
16248
16113
  readonly name: "txId";
16249
- /**
16250
- * Create a wallet client connected to an existing AgentAccountV2.
16251
- */
16252
16114
  readonly type: "uint256";
16253
16115
  }];
16254
16116
  readonly outputs: readonly [{
@@ -16586,9 +16448,6 @@ export declare function createWallet(config: AgentWalletConfig & {
16586
16448
  readonly stateMutability: "view";
16587
16449
  readonly inputs: readonly [{
16588
16450
  readonly name: "txId";
16589
- /**
16590
- * Create a wallet client connected to an existing AgentAccountV2.
16591
- */
16592
16451
  readonly type: "uint256";
16593
16452
  }];
16594
16453
  readonly outputs: readonly [{
@@ -16930,9 +16789,6 @@ export declare function createWallet(config: AgentWalletConfig & {
16930
16789
  readonly stateMutability: "view";
16931
16790
  readonly inputs: readonly [{
16932
16791
  readonly name: "txId";
16933
- /**
16934
- * Create a wallet client connected to an existing AgentAccountV2.
16935
- */
16936
16792
  readonly type: "uint256";
16937
16793
  }];
16938
16794
  readonly outputs: readonly [{
@@ -17273,9 +17129,6 @@ export declare function createWallet(config: AgentWalletConfig & {
17273
17129
  readonly stateMutability: "view";
17274
17130
  readonly inputs: readonly [{
17275
17131
  readonly name: "txId";
17276
- /**
17277
- * Create a wallet client connected to an existing AgentAccountV2.
17278
- */
17279
17132
  readonly type: "uint256";
17280
17133
  }];
17281
17134
  readonly outputs: readonly [{
@@ -17616,9 +17469,6 @@ export declare function createWallet(config: AgentWalletConfig & {
17616
17469
  readonly stateMutability: "view";
17617
17470
  readonly inputs: readonly [{
17618
17471
  readonly name: "txId";
17619
- /**
17620
- * Create a wallet client connected to an existing AgentAccountV2.
17621
- */
17622
17472
  readonly type: "uint256";
17623
17473
  }];
17624
17474
  readonly outputs: readonly [{
@@ -17960,9 +17810,6 @@ export declare function createWallet(config: AgentWalletConfig & {
17960
17810
  readonly stateMutability: "view";
17961
17811
  readonly inputs: readonly [{
17962
17812
  readonly name: "txId";
17963
- /**
17964
- * Create a wallet client connected to an existing AgentAccountV2.
17965
- */
17966
17813
  readonly type: "uint256";
17967
17814
  }];
17968
17815
  readonly outputs: readonly [{
@@ -18303,9 +18150,6 @@ export declare function createWallet(config: AgentWalletConfig & {
18303
18150
  readonly stateMutability: "view";
18304
18151
  readonly inputs: readonly [{
18305
18152
  readonly name: "txId";
18306
- /**
18307
- * Create a wallet client connected to an existing AgentAccountV2.
18308
- */
18309
18153
  readonly type: "uint256";
18310
18154
  }];
18311
18155
  readonly outputs: readonly [{
@@ -18646,9 +18490,6 @@ export declare function createWallet(config: AgentWalletConfig & {
18646
18490
  readonly stateMutability: "view";
18647
18491
  readonly inputs: readonly [{
18648
18492
  readonly name: "txId";
18649
- /**
18650
- * Create a wallet client connected to an existing AgentAccountV2.
18651
- */
18652
18493
  readonly type: "uint256";
18653
18494
  }];
18654
18495
  readonly outputs: readonly [{
@@ -18983,9 +18824,6 @@ export declare function createWallet(config: AgentWalletConfig & {
18983
18824
  readonly stateMutability: "view";
18984
18825
  readonly inputs: readonly [{
18985
18826
  readonly name: "txId";
18986
- /**
18987
- * Create a wallet client connected to an existing AgentAccountV2.
18988
- */
18989
18827
  readonly type: "uint256";
18990
18828
  }];
18991
18829
  readonly outputs: readonly [{
@@ -19315,9 +19153,6 @@ export declare function createWallet(config: AgentWalletConfig & {
19315
19153
  readonly stateMutability: "view";
19316
19154
  readonly inputs: readonly [{
19317
19155
  readonly name: "txId";
19318
- /**
19319
- * Create a wallet client connected to an existing AgentAccountV2.
19320
- */
19321
19156
  readonly type: "uint256";
19322
19157
  }];
19323
19158
  readonly outputs: readonly [{
@@ -19648,9 +19483,6 @@ export declare function createWallet(config: AgentWalletConfig & {
19648
19483
  readonly stateMutability: "view";
19649
19484
  readonly inputs: readonly [{
19650
19485
  readonly name: "txId";
19651
- /**
19652
- * Create a wallet client connected to an existing AgentAccountV2.
19653
- */
19654
19486
  readonly type: "uint256";
19655
19487
  }];
19656
19488
  readonly outputs: readonly [{
@@ -19980,9 +19812,6 @@ export declare function createWallet(config: AgentWalletConfig & {
19980
19812
  readonly stateMutability: "view";
19981
19813
  readonly inputs: readonly [{
19982
19814
  readonly name: "txId";
19983
- /**
19984
- * Create a wallet client connected to an existing AgentAccountV2.
19985
- */
19986
19815
  readonly type: "uint256";
19987
19816
  }];
19988
19817
  readonly outputs: readonly [{
@@ -20313,9 +20142,6 @@ export declare function createWallet(config: AgentWalletConfig & {
20313
20142
  readonly stateMutability: "view";
20314
20143
  readonly inputs: readonly [{
20315
20144
  readonly name: "txId";
20316
- /**
20317
- * Create a wallet client connected to an existing AgentAccountV2.
20318
- */
20319
20145
  readonly type: "uint256";
20320
20146
  }];
20321
20147
  readonly outputs: readonly [{
@@ -20645,9 +20471,6 @@ export declare function createWallet(config: AgentWalletConfig & {
20645
20471
  readonly stateMutability: "view";
20646
20472
  readonly inputs: readonly [{
20647
20473
  readonly name: "txId";
20648
- /**
20649
- * Create a wallet client connected to an existing AgentAccountV2.
20650
- */
20651
20474
  readonly type: "uint256";
20652
20475
  }];
20653
20476
  readonly outputs: readonly [{
@@ -20978,9 +20801,6 @@ export declare function createWallet(config: AgentWalletConfig & {
20978
20801
  readonly stateMutability: "view";
20979
20802
  readonly inputs: readonly [{
20980
20803
  readonly name: "txId";
20981
- /**
20982
- * Create a wallet client connected to an existing AgentAccountV2.
20983
- */
20984
20804
  readonly type: "uint256";
20985
20805
  }];
20986
20806
  readonly outputs: readonly [{
@@ -21310,9 +21130,6 @@ export declare function createWallet(config: AgentWalletConfig & {
21310
21130
  readonly stateMutability: "view";
21311
21131
  readonly inputs: readonly [{
21312
21132
  readonly name: "txId";
21313
- /**
21314
- * Create a wallet client connected to an existing AgentAccountV2.
21315
- */
21316
21133
  readonly type: "uint256";
21317
21134
  }];
21318
21135
  readonly outputs: readonly [{
@@ -21643,9 +21460,6 @@ export declare function createWallet(config: AgentWalletConfig & {
21643
21460
  readonly stateMutability: "view";
21644
21461
  readonly inputs: readonly [{
21645
21462
  readonly name: "txId";
21646
- /**
21647
- * Create a wallet client connected to an existing AgentAccountV2.
21648
- */
21649
21463
  readonly type: "uint256";
21650
21464
  }];
21651
21465
  readonly outputs: readonly [{
@@ -21975,9 +21789,6 @@ export declare function createWallet(config: AgentWalletConfig & {
21975
21789
  readonly stateMutability: "view";
21976
21790
  readonly inputs: readonly [{
21977
21791
  readonly name: "txId";
21978
- /**
21979
- * Create a wallet client connected to an existing AgentAccountV2.
21980
- */
21981
21792
  readonly type: "uint256";
21982
21793
  }];
21983
21794
  readonly outputs: readonly [{
@@ -22308,9 +22119,6 @@ export declare function createWallet(config: AgentWalletConfig & {
22308
22119
  readonly stateMutability: "view";
22309
22120
  readonly inputs: readonly [{
22310
22121
  readonly name: "txId";
22311
- /**
22312
- * Create a wallet client connected to an existing AgentAccountV2.
22313
- */
22314
22122
  readonly type: "uint256";
22315
22123
  }];
22316
22124
  readonly outputs: readonly [{
@@ -22640,9 +22448,6 @@ export declare function createWallet(config: AgentWalletConfig & {
22640
22448
  readonly stateMutability: "view";
22641
22449
  readonly inputs: readonly [{
22642
22450
  readonly name: "txId";
22643
- /**
22644
- * Create a wallet client connected to an existing AgentAccountV2.
22645
- */
22646
22451
  readonly type: "uint256";
22647
22452
  }];
22648
22453
  readonly outputs: readonly [{
@@ -22973,9 +22778,6 @@ export declare function createWallet(config: AgentWalletConfig & {
22973
22778
  readonly stateMutability: "view";
22974
22779
  readonly inputs: readonly [{
22975
22780
  readonly name: "txId";
22976
- /**
22977
- * Create a wallet client connected to an existing AgentAccountV2.
22978
- */
22979
22781
  readonly type: "uint256";
22980
22782
  }];
22981
22783
  readonly outputs: readonly [{
@@ -23305,9 +23107,6 @@ export declare function createWallet(config: AgentWalletConfig & {
23305
23107
  readonly stateMutability: "view";
23306
23108
  readonly inputs: readonly [{
23307
23109
  readonly name: "txId";
23308
- /**
23309
- * Create a wallet client connected to an existing AgentAccountV2.
23310
- */
23311
23110
  readonly type: "uint256";
23312
23111
  }];
23313
23112
  readonly outputs: readonly [{
@@ -23640,9 +23439,6 @@ export declare function createWallet(config: AgentWalletConfig & {
23640
23439
  readonly stateMutability: "view";
23641
23440
  readonly inputs: readonly [{
23642
23441
  readonly name: "txId";
23643
- /**
23644
- * Create a wallet client connected to an existing AgentAccountV2.
23645
- */
23646
23442
  readonly type: "uint256";
23647
23443
  }];
23648
23444
  readonly outputs: readonly [{
@@ -38370,12 +38166,12 @@ export declare function createWallet(config: AgentWalletConfig & {
38370
38166
  [x: `bytes7[${string}]`]: undefined;
38371
38167
  [x: `bytes5[${string}]`]: undefined;
38372
38168
  [x: `bytes23[${string}]`]: undefined;
38169
+ [x: `bytes10[${string}]`]: undefined;
38373
38170
  [x: `bytes14[${string}]`]: undefined;
38374
38171
  [x: `bytes18[${string}]`]: undefined;
38375
38172
  [x: `bytes6[${string}]`]: undefined;
38376
38173
  [x: `bytes8[${string}]`]: undefined;
38377
38174
  [x: `bytes9[${string}]`]: undefined;
38378
- [x: `bytes10[${string}]`]: undefined;
38379
38175
  [x: `bytes11[${string}]`]: undefined;
38380
38176
  [x: `bytes12[${string}]`]: undefined;
38381
38177
  [x: `bytes13[${string}]`]: undefined;
@@ -38472,12 +38268,12 @@ export declare function createWallet(config: AgentWalletConfig & {
38472
38268
  bytes7?: undefined;
38473
38269
  bytes5?: undefined;
38474
38270
  bytes23?: undefined;
38271
+ bytes10?: undefined;
38475
38272
  bytes14?: undefined;
38476
38273
  bytes18?: undefined;
38477
38274
  bytes6?: undefined;
38478
38275
  bytes8?: undefined;
38479
38276
  bytes9?: undefined;
38480
- bytes10?: undefined;
38481
38277
  bytes11?: undefined;
38482
38278
  bytes12?: undefined;
38483
38279
  bytes13?: undefined;