agentwallet-sdk 2.4.1 → 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.
- package/README.md +46 -19
- package/dist/chains.d.ts +37 -0
- package/dist/chains.d.ts.map +1 -0
- package/dist/chains.js +75 -0
- package/dist/chains.js.map +1 -0
- package/dist/index.d.ts +4 -499
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/swap/SwapModule.d.ts +4 -1
- package/dist/swap/SwapModule.d.ts.map +1 -1
- package/dist/swap/SwapModule.js +7 -2
- package/dist/swap/SwapModule.js.map +1 -1
- package/dist/swap/types.d.ts +4 -2
- package/dist/swap/types.d.ts.map +1 -1
- package/dist/swap/types.js.map +1 -1
- package/dist/types.d.ts +2 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +1 -0
- package/dist/types.js.map +1 -1
- package/dist/x402/types.d.ts +2 -2
- package/dist/x402/types.d.ts.map +1 -1
- package/dist/x402/types.js +6 -2
- package/dist/x402/types.js.map +1 -1
- package/package.json +27 -12
- package/dist/bridge/__tests__/bridge.test.d.ts +0 -2
- package/dist/bridge/__tests__/bridge.test.d.ts.map +0 -1
- package/dist/bridge/__tests__/bridge.test.js +0 -508
- package/dist/bridge/__tests__/bridge.test.js.map +0 -1
- package/dist/swap/__tests__/swap.test.d.ts +0 -2
- package/dist/swap/__tests__/swap.test.d.ts.map +0 -1
- package/dist/swap/__tests__/swap.test.js +0 -272
- package/dist/swap/__tests__/swap.test.js.map +0 -1
- package/dist/x402/__tests__/budget.test.d.ts +0 -2
- package/dist/x402/__tests__/budget.test.d.ts.map +0 -1
- package/dist/x402/__tests__/budget.test.js +0 -114
- package/dist/x402/__tests__/budget.test.js.map +0 -1
- package/dist/x402/__tests__/client.test.d.ts +0 -2
- package/dist/x402/__tests__/client.test.d.ts.map +0 -1
- package/dist/x402/__tests__/client.test.js +0 -107
- package/dist/x402/__tests__/client.test.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ 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';
|
|
7
9
|
export { SwapModule, attachSwap, calcProtocolFee, applySlippage, calcDeadline, } from './swap/index.js';
|
|
@@ -215,9 +217,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
215
217
|
}];
|
|
216
218
|
}, {
|
|
217
219
|
readonly name: "nonce";
|
|
218
|
-
/**
|
|
219
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
220
|
-
*/
|
|
221
220
|
readonly type: "function";
|
|
222
221
|
readonly stateMutability: "view";
|
|
223
222
|
readonly inputs: readonly [];
|
|
@@ -289,10 +288,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
289
288
|
readonly type: "event";
|
|
290
289
|
readonly inputs: readonly [{
|
|
291
290
|
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
|
-
*/
|
|
296
291
|
readonly type: "address";
|
|
297
292
|
readonly indexed: true;
|
|
298
293
|
}, {
|
|
@@ -552,9 +547,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
552
547
|
}];
|
|
553
548
|
}, {
|
|
554
549
|
readonly name: "nonce";
|
|
555
|
-
/**
|
|
556
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
557
|
-
*/
|
|
558
550
|
readonly type: "function";
|
|
559
551
|
readonly stateMutability: "view";
|
|
560
552
|
readonly inputs: readonly [];
|
|
@@ -626,10 +618,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
626
618
|
readonly type: "event";
|
|
627
619
|
readonly inputs: readonly [{
|
|
628
620
|
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
|
-
*/
|
|
633
621
|
readonly type: "address";
|
|
634
622
|
readonly indexed: true;
|
|
635
623
|
}, {
|
|
@@ -889,9 +877,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
889
877
|
}];
|
|
890
878
|
}, {
|
|
891
879
|
readonly name: "nonce";
|
|
892
|
-
/**
|
|
893
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
894
|
-
*/
|
|
895
880
|
readonly type: "function";
|
|
896
881
|
readonly stateMutability: "view";
|
|
897
882
|
readonly inputs: readonly [];
|
|
@@ -963,10 +948,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
963
948
|
readonly type: "event";
|
|
964
949
|
readonly inputs: readonly [{
|
|
965
950
|
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
|
-
*/
|
|
970
951
|
readonly type: "address";
|
|
971
952
|
readonly indexed: true;
|
|
972
953
|
}, {
|
|
@@ -1226,9 +1207,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1226
1207
|
}];
|
|
1227
1208
|
}, {
|
|
1228
1209
|
readonly name: "nonce";
|
|
1229
|
-
/**
|
|
1230
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
1231
|
-
*/
|
|
1232
1210
|
readonly type: "function";
|
|
1233
1211
|
readonly stateMutability: "view";
|
|
1234
1212
|
readonly inputs: readonly [];
|
|
@@ -1300,10 +1278,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1300
1278
|
readonly type: "event";
|
|
1301
1279
|
readonly inputs: readonly [{
|
|
1302
1280
|
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
|
-
*/
|
|
1307
1281
|
readonly type: "address";
|
|
1308
1282
|
readonly indexed: true;
|
|
1309
1283
|
}, {
|
|
@@ -1563,9 +1537,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1563
1537
|
}];
|
|
1564
1538
|
}, {
|
|
1565
1539
|
readonly name: "nonce";
|
|
1566
|
-
/**
|
|
1567
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
1568
|
-
*/
|
|
1569
1540
|
readonly type: "function";
|
|
1570
1541
|
readonly stateMutability: "view";
|
|
1571
1542
|
readonly inputs: readonly [];
|
|
@@ -1637,10 +1608,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1637
1608
|
readonly type: "event";
|
|
1638
1609
|
readonly inputs: readonly [{
|
|
1639
1610
|
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
|
-
*/
|
|
1644
1611
|
readonly type: "address";
|
|
1645
1612
|
readonly indexed: true;
|
|
1646
1613
|
}, {
|
|
@@ -1900,9 +1867,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1900
1867
|
}];
|
|
1901
1868
|
}, {
|
|
1902
1869
|
readonly name: "nonce";
|
|
1903
|
-
/**
|
|
1904
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
1905
|
-
*/
|
|
1906
1870
|
readonly type: "function";
|
|
1907
1871
|
readonly stateMutability: "view";
|
|
1908
1872
|
readonly inputs: readonly [];
|
|
@@ -1974,10 +1938,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1974
1938
|
readonly type: "event";
|
|
1975
1939
|
readonly inputs: readonly [{
|
|
1976
1940
|
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
|
-
*/
|
|
1981
1941
|
readonly type: "address";
|
|
1982
1942
|
readonly indexed: true;
|
|
1983
1943
|
}, {
|
|
@@ -2237,9 +2197,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2237
2197
|
}];
|
|
2238
2198
|
}, {
|
|
2239
2199
|
readonly name: "nonce";
|
|
2240
|
-
/**
|
|
2241
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
2242
|
-
*/
|
|
2243
2200
|
readonly type: "function";
|
|
2244
2201
|
readonly stateMutability: "view";
|
|
2245
2202
|
readonly inputs: readonly [];
|
|
@@ -2311,10 +2268,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2311
2268
|
readonly type: "event";
|
|
2312
2269
|
readonly inputs: readonly [{
|
|
2313
2270
|
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
|
-
*/
|
|
2318
2271
|
readonly type: "address";
|
|
2319
2272
|
readonly indexed: true;
|
|
2320
2273
|
}, {
|
|
@@ -2574,9 +2527,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2574
2527
|
}];
|
|
2575
2528
|
}, {
|
|
2576
2529
|
readonly name: "nonce";
|
|
2577
|
-
/**
|
|
2578
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
2579
|
-
*/
|
|
2580
2530
|
readonly type: "function";
|
|
2581
2531
|
readonly stateMutability: "view";
|
|
2582
2532
|
readonly inputs: readonly [];
|
|
@@ -2648,10 +2598,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2648
2598
|
readonly type: "event";
|
|
2649
2599
|
readonly inputs: readonly [{
|
|
2650
2600
|
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
|
-
*/
|
|
2655
2601
|
readonly type: "address";
|
|
2656
2602
|
readonly indexed: true;
|
|
2657
2603
|
}, {
|
|
@@ -2911,9 +2857,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2911
2857
|
}];
|
|
2912
2858
|
}, {
|
|
2913
2859
|
readonly name: "nonce";
|
|
2914
|
-
/**
|
|
2915
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
2916
|
-
*/
|
|
2917
2860
|
readonly type: "function";
|
|
2918
2861
|
readonly stateMutability: "view";
|
|
2919
2862
|
readonly inputs: readonly [];
|
|
@@ -2985,10 +2928,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2985
2928
|
readonly type: "event";
|
|
2986
2929
|
readonly inputs: readonly [{
|
|
2987
2930
|
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
|
-
*/
|
|
2992
2931
|
readonly type: "address";
|
|
2993
2932
|
readonly indexed: true;
|
|
2994
2933
|
}, {
|
|
@@ -3248,9 +3187,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3248
3187
|
}];
|
|
3249
3188
|
}, {
|
|
3250
3189
|
readonly name: "nonce";
|
|
3251
|
-
/**
|
|
3252
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
3253
|
-
*/
|
|
3254
3190
|
readonly type: "function";
|
|
3255
3191
|
readonly stateMutability: "view";
|
|
3256
3192
|
readonly inputs: readonly [];
|
|
@@ -3322,10 +3258,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3322
3258
|
readonly type: "event";
|
|
3323
3259
|
readonly inputs: readonly [{
|
|
3324
3260
|
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
|
-
*/
|
|
3329
3261
|
readonly type: "address";
|
|
3330
3262
|
readonly indexed: true;
|
|
3331
3263
|
}, {
|
|
@@ -3587,9 +3519,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3587
3519
|
}];
|
|
3588
3520
|
}, {
|
|
3589
3521
|
readonly name: "nonce";
|
|
3590
|
-
/**
|
|
3591
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
3592
|
-
*/
|
|
3593
3522
|
readonly type: "function";
|
|
3594
3523
|
readonly stateMutability: "view";
|
|
3595
3524
|
readonly inputs: readonly [];
|
|
@@ -3661,10 +3590,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3661
3590
|
readonly type: "event";
|
|
3662
3591
|
readonly inputs: readonly [{
|
|
3663
3592
|
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
|
-
*/
|
|
3668
3593
|
readonly type: "address";
|
|
3669
3594
|
readonly indexed: true;
|
|
3670
3595
|
}, {
|
|
@@ -3924,9 +3849,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3924
3849
|
}];
|
|
3925
3850
|
}, {
|
|
3926
3851
|
readonly name: "nonce";
|
|
3927
|
-
/**
|
|
3928
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
3929
|
-
*/
|
|
3930
3852
|
readonly type: "function";
|
|
3931
3853
|
readonly stateMutability: "view";
|
|
3932
3854
|
readonly inputs: readonly [];
|
|
@@ -3998,10 +3920,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3998
3920
|
readonly type: "event";
|
|
3999
3921
|
readonly inputs: readonly [{
|
|
4000
3922
|
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
|
-
*/
|
|
4005
3923
|
readonly type: "address";
|
|
4006
3924
|
readonly indexed: true;
|
|
4007
3925
|
}, {
|
|
@@ -4261,9 +4179,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4261
4179
|
}];
|
|
4262
4180
|
}, {
|
|
4263
4181
|
readonly name: "nonce";
|
|
4264
|
-
/**
|
|
4265
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
4266
|
-
*/
|
|
4267
4182
|
readonly type: "function";
|
|
4268
4183
|
readonly stateMutability: "view";
|
|
4269
4184
|
readonly inputs: readonly [];
|
|
@@ -4335,10 +4250,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4335
4250
|
readonly type: "event";
|
|
4336
4251
|
readonly inputs: readonly [{
|
|
4337
4252
|
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
|
-
*/
|
|
4342
4253
|
readonly type: "address";
|
|
4343
4254
|
readonly indexed: true;
|
|
4344
4255
|
}, {
|
|
@@ -4598,9 +4509,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4598
4509
|
}];
|
|
4599
4510
|
}, {
|
|
4600
4511
|
readonly name: "nonce";
|
|
4601
|
-
/**
|
|
4602
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
4603
|
-
*/
|
|
4604
4512
|
readonly type: "function";
|
|
4605
4513
|
readonly stateMutability: "view";
|
|
4606
4514
|
readonly inputs: readonly [];
|
|
@@ -4672,10 +4580,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4672
4580
|
readonly type: "event";
|
|
4673
4581
|
readonly inputs: readonly [{
|
|
4674
4582
|
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
|
-
*/
|
|
4679
4583
|
readonly type: "address";
|
|
4680
4584
|
readonly indexed: true;
|
|
4681
4585
|
}, {
|
|
@@ -4935,9 +4839,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4935
4839
|
}];
|
|
4936
4840
|
}, {
|
|
4937
4841
|
readonly name: "nonce";
|
|
4938
|
-
/**
|
|
4939
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
4940
|
-
*/
|
|
4941
4842
|
readonly type: "function";
|
|
4942
4843
|
readonly stateMutability: "view";
|
|
4943
4844
|
readonly inputs: readonly [];
|
|
@@ -5009,10 +4910,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5009
4910
|
readonly type: "event";
|
|
5010
4911
|
readonly inputs: readonly [{
|
|
5011
4912
|
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
|
-
*/
|
|
5016
4913
|
readonly type: "address";
|
|
5017
4914
|
readonly indexed: true;
|
|
5018
4915
|
}, {
|
|
@@ -5272,9 +5169,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5272
5169
|
}];
|
|
5273
5170
|
}, {
|
|
5274
5171
|
readonly name: "nonce";
|
|
5275
|
-
/**
|
|
5276
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
5277
|
-
*/
|
|
5278
5172
|
readonly type: "function";
|
|
5279
5173
|
readonly stateMutability: "view";
|
|
5280
5174
|
readonly inputs: readonly [];
|
|
@@ -5346,10 +5240,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5346
5240
|
readonly type: "event";
|
|
5347
5241
|
readonly inputs: readonly [{
|
|
5348
5242
|
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
|
-
*/
|
|
5353
5243
|
readonly type: "address";
|
|
5354
5244
|
readonly indexed: true;
|
|
5355
5245
|
}, {
|
|
@@ -5609,9 +5499,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5609
5499
|
}];
|
|
5610
5500
|
}, {
|
|
5611
5501
|
readonly name: "nonce";
|
|
5612
|
-
/**
|
|
5613
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
5614
|
-
*/
|
|
5615
5502
|
readonly type: "function";
|
|
5616
5503
|
readonly stateMutability: "view";
|
|
5617
5504
|
readonly inputs: readonly [];
|
|
@@ -5683,10 +5570,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5683
5570
|
readonly type: "event";
|
|
5684
5571
|
readonly inputs: readonly [{
|
|
5685
5572
|
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
|
-
*/
|
|
5690
5573
|
readonly type: "address";
|
|
5691
5574
|
readonly indexed: true;
|
|
5692
5575
|
}, {
|
|
@@ -5947,9 +5830,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5947
5830
|
}];
|
|
5948
5831
|
}, {
|
|
5949
5832
|
readonly name: "nonce";
|
|
5950
|
-
/**
|
|
5951
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
5952
|
-
*/
|
|
5953
5833
|
readonly type: "function";
|
|
5954
5834
|
readonly stateMutability: "view";
|
|
5955
5835
|
readonly inputs: readonly [];
|
|
@@ -6021,10 +5901,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6021
5901
|
readonly type: "event";
|
|
6022
5902
|
readonly inputs: readonly [{
|
|
6023
5903
|
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
|
-
*/
|
|
6028
5904
|
readonly type: "address";
|
|
6029
5905
|
readonly indexed: true;
|
|
6030
5906
|
}, {
|
|
@@ -6284,9 +6160,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6284
6160
|
}];
|
|
6285
6161
|
}, {
|
|
6286
6162
|
readonly name: "nonce";
|
|
6287
|
-
/**
|
|
6288
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
6289
|
-
*/
|
|
6290
6163
|
readonly type: "function";
|
|
6291
6164
|
readonly stateMutability: "view";
|
|
6292
6165
|
readonly inputs: readonly [];
|
|
@@ -6358,10 +6231,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6358
6231
|
readonly type: "event";
|
|
6359
6232
|
readonly inputs: readonly [{
|
|
6360
6233
|
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
|
-
*/
|
|
6365
6234
|
readonly type: "address";
|
|
6366
6235
|
readonly indexed: true;
|
|
6367
6236
|
}, {
|
|
@@ -6621,9 +6490,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6621
6490
|
}];
|
|
6622
6491
|
}, {
|
|
6623
6492
|
readonly name: "nonce";
|
|
6624
|
-
/**
|
|
6625
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
6626
|
-
*/
|
|
6627
6493
|
readonly type: "function";
|
|
6628
6494
|
readonly stateMutability: "view";
|
|
6629
6495
|
readonly inputs: readonly [];
|
|
@@ -6695,10 +6561,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6695
6561
|
readonly type: "event";
|
|
6696
6562
|
readonly inputs: readonly [{
|
|
6697
6563
|
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
|
-
*/
|
|
6702
6564
|
readonly type: "address";
|
|
6703
6565
|
readonly indexed: true;
|
|
6704
6566
|
}, {
|
|
@@ -6958,9 +6820,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6958
6820
|
}];
|
|
6959
6821
|
}, {
|
|
6960
6822
|
readonly name: "nonce";
|
|
6961
|
-
/**
|
|
6962
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
6963
|
-
*/
|
|
6964
6823
|
readonly type: "function";
|
|
6965
6824
|
readonly stateMutability: "view";
|
|
6966
6825
|
readonly inputs: readonly [];
|
|
@@ -7032,10 +6891,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7032
6891
|
readonly type: "event";
|
|
7033
6892
|
readonly inputs: readonly [{
|
|
7034
6893
|
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
|
-
*/
|
|
7039
6894
|
readonly type: "address";
|
|
7040
6895
|
readonly indexed: true;
|
|
7041
6896
|
}, {
|
|
@@ -7295,9 +7150,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7295
7150
|
}];
|
|
7296
7151
|
}, {
|
|
7297
7152
|
readonly name: "nonce";
|
|
7298
|
-
/**
|
|
7299
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
7300
|
-
*/
|
|
7301
7153
|
readonly type: "function";
|
|
7302
7154
|
readonly stateMutability: "view";
|
|
7303
7155
|
readonly inputs: readonly [];
|
|
@@ -7369,10 +7221,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7369
7221
|
readonly type: "event";
|
|
7370
7222
|
readonly inputs: readonly [{
|
|
7371
7223
|
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
|
-
*/
|
|
7376
7224
|
readonly type: "address";
|
|
7377
7225
|
readonly indexed: true;
|
|
7378
7226
|
}, {
|
|
@@ -7632,9 +7480,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7632
7480
|
}];
|
|
7633
7481
|
}, {
|
|
7634
7482
|
readonly name: "nonce";
|
|
7635
|
-
/**
|
|
7636
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
7637
|
-
*/
|
|
7638
7483
|
readonly type: "function";
|
|
7639
7484
|
readonly stateMutability: "view";
|
|
7640
7485
|
readonly inputs: readonly [];
|
|
@@ -7706,10 +7551,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7706
7551
|
readonly type: "event";
|
|
7707
7552
|
readonly inputs: readonly [{
|
|
7708
7553
|
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
|
-
*/
|
|
7713
7554
|
readonly type: "address";
|
|
7714
7555
|
readonly indexed: true;
|
|
7715
7556
|
}, {
|
|
@@ -7969,9 +7810,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7969
7810
|
}];
|
|
7970
7811
|
}, {
|
|
7971
7812
|
readonly name: "nonce";
|
|
7972
|
-
/**
|
|
7973
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
7974
|
-
*/
|
|
7975
7813
|
readonly type: "function";
|
|
7976
7814
|
readonly stateMutability: "view";
|
|
7977
7815
|
readonly inputs: readonly [];
|
|
@@ -8043,10 +7881,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8043
7881
|
readonly type: "event";
|
|
8044
7882
|
readonly inputs: readonly [{
|
|
8045
7883
|
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
|
-
*/
|
|
8050
7884
|
readonly type: "address";
|
|
8051
7885
|
readonly indexed: true;
|
|
8052
7886
|
}, {
|
|
@@ -8308,9 +8142,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8308
8142
|
}];
|
|
8309
8143
|
}, {
|
|
8310
8144
|
readonly name: "nonce";
|
|
8311
|
-
/**
|
|
8312
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
8313
|
-
*/
|
|
8314
8145
|
readonly type: "function";
|
|
8315
8146
|
readonly stateMutability: "view";
|
|
8316
8147
|
readonly inputs: readonly [];
|
|
@@ -8382,10 +8213,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8382
8213
|
readonly type: "event";
|
|
8383
8214
|
readonly inputs: readonly [{
|
|
8384
8215
|
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
|
-
*/
|
|
8389
8216
|
readonly type: "address";
|
|
8390
8217
|
readonly indexed: true;
|
|
8391
8218
|
}, {
|
|
@@ -8644,9 +8471,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8644
8471
|
}];
|
|
8645
8472
|
}, {
|
|
8646
8473
|
readonly name: "nonce";
|
|
8647
|
-
/**
|
|
8648
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
8649
|
-
*/
|
|
8650
8474
|
readonly type: "function";
|
|
8651
8475
|
readonly stateMutability: "view";
|
|
8652
8476
|
readonly inputs: readonly [];
|
|
@@ -8718,10 +8542,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8718
8542
|
readonly type: "event";
|
|
8719
8543
|
readonly inputs: readonly [{
|
|
8720
8544
|
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
|
-
*/
|
|
8725
8545
|
readonly type: "address";
|
|
8726
8546
|
readonly indexed: true;
|
|
8727
8547
|
}, {
|
|
@@ -8981,9 +8801,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8981
8801
|
}];
|
|
8982
8802
|
}, {
|
|
8983
8803
|
readonly name: "nonce";
|
|
8984
|
-
/**
|
|
8985
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
8986
|
-
*/
|
|
8987
8804
|
readonly type: "function";
|
|
8988
8805
|
readonly stateMutability: "view";
|
|
8989
8806
|
readonly inputs: readonly [];
|
|
@@ -9055,10 +8872,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9055
8872
|
readonly type: "event";
|
|
9056
8873
|
readonly inputs: readonly [{
|
|
9057
8874
|
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
|
-
*/
|
|
9062
8875
|
readonly type: "address";
|
|
9063
8876
|
readonly indexed: true;
|
|
9064
8877
|
}, {
|
|
@@ -9317,9 +9130,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9317
9130
|
}];
|
|
9318
9131
|
}, {
|
|
9319
9132
|
readonly name: "nonce";
|
|
9320
|
-
/**
|
|
9321
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
9322
|
-
*/
|
|
9323
9133
|
readonly type: "function";
|
|
9324
9134
|
readonly stateMutability: "view";
|
|
9325
9135
|
readonly inputs: readonly [];
|
|
@@ -9391,10 +9201,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9391
9201
|
readonly type: "event";
|
|
9392
9202
|
readonly inputs: readonly [{
|
|
9393
9203
|
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
|
-
*/
|
|
9398
9204
|
readonly type: "address";
|
|
9399
9205
|
readonly indexed: true;
|
|
9400
9206
|
}, {
|
|
@@ -9654,9 +9460,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9654
9460
|
}];
|
|
9655
9461
|
}, {
|
|
9656
9462
|
readonly name: "nonce";
|
|
9657
|
-
/**
|
|
9658
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
9659
|
-
*/
|
|
9660
9463
|
readonly type: "function";
|
|
9661
9464
|
readonly stateMutability: "view";
|
|
9662
9465
|
readonly inputs: readonly [];
|
|
@@ -9728,10 +9531,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9728
9531
|
readonly type: "event";
|
|
9729
9532
|
readonly inputs: readonly [{
|
|
9730
9533
|
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
|
-
*/
|
|
9735
9534
|
readonly type: "address";
|
|
9736
9535
|
readonly indexed: true;
|
|
9737
9536
|
}, {
|
|
@@ -9990,9 +9789,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9990
9789
|
}];
|
|
9991
9790
|
}, {
|
|
9992
9791
|
readonly name: "nonce";
|
|
9993
|
-
/**
|
|
9994
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
9995
|
-
*/
|
|
9996
9792
|
readonly type: "function";
|
|
9997
9793
|
readonly stateMutability: "view";
|
|
9998
9794
|
readonly inputs: readonly [];
|
|
@@ -10064,10 +9860,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10064
9860
|
readonly type: "event";
|
|
10065
9861
|
readonly inputs: readonly [{
|
|
10066
9862
|
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
|
-
*/
|
|
10071
9863
|
readonly type: "address";
|
|
10072
9864
|
readonly indexed: true;
|
|
10073
9865
|
}, {
|
|
@@ -10327,9 +10119,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10327
10119
|
}];
|
|
10328
10120
|
}, {
|
|
10329
10121
|
readonly name: "nonce";
|
|
10330
|
-
/**
|
|
10331
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
10332
|
-
*/
|
|
10333
10122
|
readonly type: "function";
|
|
10334
10123
|
readonly stateMutability: "view";
|
|
10335
10124
|
readonly inputs: readonly [];
|
|
@@ -10401,10 +10190,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10401
10190
|
readonly type: "event";
|
|
10402
10191
|
readonly inputs: readonly [{
|
|
10403
10192
|
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
|
-
*/
|
|
10408
10193
|
readonly type: "address";
|
|
10409
10194
|
readonly indexed: true;
|
|
10410
10195
|
}, {
|
|
@@ -10663,9 +10448,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10663
10448
|
}];
|
|
10664
10449
|
}, {
|
|
10665
10450
|
readonly name: "nonce";
|
|
10666
|
-
/**
|
|
10667
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
10668
|
-
*/
|
|
10669
10451
|
readonly type: "function";
|
|
10670
10452
|
readonly stateMutability: "view";
|
|
10671
10453
|
readonly inputs: readonly [];
|
|
@@ -10737,10 +10519,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10737
10519
|
readonly type: "event";
|
|
10738
10520
|
readonly inputs: readonly [{
|
|
10739
10521
|
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
|
-
*/
|
|
10744
10522
|
readonly type: "address";
|
|
10745
10523
|
readonly indexed: true;
|
|
10746
10524
|
}, {
|
|
@@ -11000,9 +10778,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11000
10778
|
}];
|
|
11001
10779
|
}, {
|
|
11002
10780
|
readonly name: "nonce";
|
|
11003
|
-
/**
|
|
11004
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
11005
|
-
*/
|
|
11006
10781
|
readonly type: "function";
|
|
11007
10782
|
readonly stateMutability: "view";
|
|
11008
10783
|
readonly inputs: readonly [];
|
|
@@ -11074,10 +10849,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11074
10849
|
readonly type: "event";
|
|
11075
10850
|
readonly inputs: readonly [{
|
|
11076
10851
|
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
|
-
*/
|
|
11081
10852
|
readonly type: "address";
|
|
11082
10853
|
readonly indexed: true;
|
|
11083
10854
|
}, {
|
|
@@ -11336,9 +11107,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11336
11107
|
}];
|
|
11337
11108
|
}, {
|
|
11338
11109
|
readonly name: "nonce";
|
|
11339
|
-
/**
|
|
11340
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
11341
|
-
*/
|
|
11342
11110
|
readonly type: "function";
|
|
11343
11111
|
readonly stateMutability: "view";
|
|
11344
11112
|
readonly inputs: readonly [];
|
|
@@ -11410,10 +11178,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11410
11178
|
readonly type: "event";
|
|
11411
11179
|
readonly inputs: readonly [{
|
|
11412
11180
|
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
|
-
*/
|
|
11417
11181
|
readonly type: "address";
|
|
11418
11182
|
readonly indexed: true;
|
|
11419
11183
|
}, {
|
|
@@ -11673,9 +11437,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11673
11437
|
}];
|
|
11674
11438
|
}, {
|
|
11675
11439
|
readonly name: "nonce";
|
|
11676
|
-
/**
|
|
11677
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
11678
|
-
*/
|
|
11679
11440
|
readonly type: "function";
|
|
11680
11441
|
readonly stateMutability: "view";
|
|
11681
11442
|
readonly inputs: readonly [];
|
|
@@ -11747,10 +11508,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11747
11508
|
readonly type: "event";
|
|
11748
11509
|
readonly inputs: readonly [{
|
|
11749
11510
|
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
|
-
*/
|
|
11754
11511
|
readonly type: "address";
|
|
11755
11512
|
readonly indexed: true;
|
|
11756
11513
|
}, {
|
|
@@ -12009,9 +11766,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12009
11766
|
}];
|
|
12010
11767
|
}, {
|
|
12011
11768
|
readonly name: "nonce";
|
|
12012
|
-
/**
|
|
12013
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
12014
|
-
*/
|
|
12015
11769
|
readonly type: "function";
|
|
12016
11770
|
readonly stateMutability: "view";
|
|
12017
11771
|
readonly inputs: readonly [];
|
|
@@ -12083,10 +11837,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12083
11837
|
readonly type: "event";
|
|
12084
11838
|
readonly inputs: readonly [{
|
|
12085
11839
|
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
|
-
*/
|
|
12090
11840
|
readonly type: "address";
|
|
12091
11841
|
readonly indexed: true;
|
|
12092
11842
|
}, {
|
|
@@ -12346,9 +12096,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12346
12096
|
}];
|
|
12347
12097
|
}, {
|
|
12348
12098
|
readonly name: "nonce";
|
|
12349
|
-
/**
|
|
12350
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
12351
|
-
*/
|
|
12352
12099
|
readonly type: "function";
|
|
12353
12100
|
readonly stateMutability: "view";
|
|
12354
12101
|
readonly inputs: readonly [];
|
|
@@ -12420,10 +12167,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12420
12167
|
readonly type: "event";
|
|
12421
12168
|
readonly inputs: readonly [{
|
|
12422
12169
|
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
|
-
*/
|
|
12427
12170
|
readonly type: "address";
|
|
12428
12171
|
readonly indexed: true;
|
|
12429
12172
|
}, {
|
|
@@ -12682,9 +12425,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12682
12425
|
}];
|
|
12683
12426
|
}, {
|
|
12684
12427
|
readonly name: "nonce";
|
|
12685
|
-
/**
|
|
12686
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
12687
|
-
*/
|
|
12688
12428
|
readonly type: "function";
|
|
12689
12429
|
readonly stateMutability: "view";
|
|
12690
12430
|
readonly inputs: readonly [];
|
|
@@ -12756,10 +12496,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12756
12496
|
readonly type: "event";
|
|
12757
12497
|
readonly inputs: readonly [{
|
|
12758
12498
|
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
|
-
*/
|
|
12763
12499
|
readonly type: "address";
|
|
12764
12500
|
readonly indexed: true;
|
|
12765
12501
|
}, {
|
|
@@ -13038,9 +12774,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13038
12774
|
}];
|
|
13039
12775
|
}, {
|
|
13040
12776
|
readonly name: "nonce";
|
|
13041
|
-
/**
|
|
13042
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
13043
|
-
*/
|
|
13044
12777
|
readonly type: "function";
|
|
13045
12778
|
readonly stateMutability: "view";
|
|
13046
12779
|
readonly inputs: readonly [];
|
|
@@ -13112,10 +12845,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13112
12845
|
readonly type: "event";
|
|
13113
12846
|
readonly inputs: readonly [{
|
|
13114
12847
|
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
|
-
*/
|
|
13119
12848
|
readonly type: "address";
|
|
13120
12849
|
readonly indexed: true;
|
|
13121
12850
|
}, {
|
|
@@ -13388,9 +13117,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13388
13117
|
}];
|
|
13389
13118
|
}, {
|
|
13390
13119
|
readonly name: "nonce";
|
|
13391
|
-
/**
|
|
13392
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
13393
|
-
*/
|
|
13394
13120
|
readonly type: "function";
|
|
13395
13121
|
readonly stateMutability: "view";
|
|
13396
13122
|
readonly inputs: readonly [];
|
|
@@ -13462,10 +13188,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13462
13188
|
readonly type: "event";
|
|
13463
13189
|
readonly inputs: readonly [{
|
|
13464
13190
|
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
|
-
*/
|
|
13469
13191
|
readonly type: "address";
|
|
13470
13192
|
readonly indexed: true;
|
|
13471
13193
|
}, {
|
|
@@ -13738,9 +13460,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13738
13460
|
}];
|
|
13739
13461
|
}, {
|
|
13740
13462
|
readonly name: "nonce";
|
|
13741
|
-
/**
|
|
13742
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
13743
|
-
*/
|
|
13744
13463
|
readonly type: "function";
|
|
13745
13464
|
readonly stateMutability: "view";
|
|
13746
13465
|
readonly inputs: readonly [];
|
|
@@ -13812,10 +13531,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13812
13531
|
readonly type: "event";
|
|
13813
13532
|
readonly inputs: readonly [{
|
|
13814
13533
|
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
|
-
*/
|
|
13819
13534
|
readonly type: "address";
|
|
13820
13535
|
readonly indexed: true;
|
|
13821
13536
|
}, {
|
|
@@ -14092,9 +13807,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14092
13807
|
}];
|
|
14093
13808
|
}, {
|
|
14094
13809
|
readonly name: "nonce";
|
|
14095
|
-
/**
|
|
14096
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
14097
|
-
*/
|
|
14098
13810
|
readonly type: "function";
|
|
14099
13811
|
readonly stateMutability: "view";
|
|
14100
13812
|
readonly inputs: readonly [];
|
|
@@ -14166,10 +13878,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14166
13878
|
readonly type: "event";
|
|
14167
13879
|
readonly inputs: readonly [{
|
|
14168
13880
|
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
|
-
*/
|
|
14173
13881
|
readonly type: "address";
|
|
14174
13882
|
readonly indexed: true;
|
|
14175
13883
|
}, {
|
|
@@ -14442,9 +14150,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14442
14150
|
}];
|
|
14443
14151
|
}, {
|
|
14444
14152
|
readonly name: "nonce";
|
|
14445
|
-
/**
|
|
14446
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
14447
|
-
*/
|
|
14448
14153
|
readonly type: "function";
|
|
14449
14154
|
readonly stateMutability: "view";
|
|
14450
14155
|
readonly inputs: readonly [];
|
|
@@ -14516,10 +14221,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14516
14221
|
readonly type: "event";
|
|
14517
14222
|
readonly inputs: readonly [{
|
|
14518
14223
|
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
|
-
*/
|
|
14523
14224
|
readonly type: "address";
|
|
14524
14225
|
readonly indexed: true;
|
|
14525
14226
|
}, {
|
|
@@ -14792,9 +14493,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14792
14493
|
}];
|
|
14793
14494
|
}, {
|
|
14794
14495
|
readonly name: "nonce";
|
|
14795
|
-
/**
|
|
14796
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
14797
|
-
*/
|
|
14798
14496
|
readonly type: "function";
|
|
14799
14497
|
readonly stateMutability: "view";
|
|
14800
14498
|
readonly inputs: readonly [];
|
|
@@ -14866,10 +14564,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14866
14564
|
readonly type: "event";
|
|
14867
14565
|
readonly inputs: readonly [{
|
|
14868
14566
|
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
|
-
*/
|
|
14873
14567
|
readonly type: "address";
|
|
14874
14568
|
readonly indexed: true;
|
|
14875
14569
|
}, {
|
|
@@ -15139,9 +14833,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15139
14833
|
}];
|
|
15140
14834
|
}, {
|
|
15141
14835
|
readonly name: "nonce";
|
|
15142
|
-
/**
|
|
15143
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
15144
|
-
*/
|
|
15145
14836
|
readonly type: "function";
|
|
15146
14837
|
readonly stateMutability: "view";
|
|
15147
14838
|
readonly inputs: readonly [];
|
|
@@ -15213,10 +14904,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15213
14904
|
readonly type: "event";
|
|
15214
14905
|
readonly inputs: readonly [{
|
|
15215
14906
|
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
|
-
*/
|
|
15220
14907
|
readonly type: "address";
|
|
15221
14908
|
readonly indexed: true;
|
|
15222
14909
|
}, {
|
|
@@ -15483,9 +15170,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15483
15170
|
}];
|
|
15484
15171
|
}, {
|
|
15485
15172
|
readonly name: "nonce";
|
|
15486
|
-
/**
|
|
15487
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
15488
|
-
*/
|
|
15489
15173
|
readonly type: "function";
|
|
15490
15174
|
readonly stateMutability: "view";
|
|
15491
15175
|
readonly inputs: readonly [];
|
|
@@ -15557,10 +15241,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15557
15241
|
readonly type: "event";
|
|
15558
15242
|
readonly inputs: readonly [{
|
|
15559
15243
|
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
|
-
*/
|
|
15564
15244
|
readonly type: "address";
|
|
15565
15245
|
readonly indexed: true;
|
|
15566
15246
|
}, {
|
|
@@ -15827,9 +15507,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15827
15507
|
}];
|
|
15828
15508
|
}, {
|
|
15829
15509
|
readonly name: "nonce";
|
|
15830
|
-
/**
|
|
15831
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
15832
|
-
*/
|
|
15833
15510
|
readonly type: "function";
|
|
15834
15511
|
readonly stateMutability: "view";
|
|
15835
15512
|
readonly inputs: readonly [];
|
|
@@ -15901,10 +15578,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15901
15578
|
readonly type: "event";
|
|
15902
15579
|
readonly inputs: readonly [{
|
|
15903
15580
|
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
|
-
*/
|
|
15908
15581
|
readonly type: "address";
|
|
15909
15582
|
readonly indexed: true;
|
|
15910
15583
|
}, {
|
|
@@ -16172,9 +15845,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16172
15845
|
}];
|
|
16173
15846
|
}, {
|
|
16174
15847
|
readonly name: "nonce";
|
|
16175
|
-
/**
|
|
16176
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
16177
|
-
*/
|
|
16178
15848
|
readonly type: "function";
|
|
16179
15849
|
readonly stateMutability: "view";
|
|
16180
15850
|
readonly inputs: readonly [];
|
|
@@ -16246,10 +15916,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16246
15916
|
readonly type: "event";
|
|
16247
15917
|
readonly inputs: readonly [{
|
|
16248
15918
|
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
|
-
*/
|
|
16253
15919
|
readonly type: "address";
|
|
16254
15920
|
readonly indexed: true;
|
|
16255
15921
|
}, {
|
|
@@ -16516,9 +16182,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16516
16182
|
}];
|
|
16517
16183
|
}, {
|
|
16518
16184
|
readonly name: "nonce";
|
|
16519
|
-
/**
|
|
16520
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
16521
|
-
*/
|
|
16522
16185
|
readonly type: "function";
|
|
16523
16186
|
readonly stateMutability: "view";
|
|
16524
16187
|
readonly inputs: readonly [];
|
|
@@ -16590,10 +16253,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16590
16253
|
readonly type: "event";
|
|
16591
16254
|
readonly inputs: readonly [{
|
|
16592
16255
|
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
|
-
*/
|
|
16597
16256
|
readonly type: "address";
|
|
16598
16257
|
readonly indexed: true;
|
|
16599
16258
|
}, {
|
|
@@ -16860,9 +16519,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16860
16519
|
}];
|
|
16861
16520
|
}, {
|
|
16862
16521
|
readonly name: "nonce";
|
|
16863
|
-
/**
|
|
16864
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
16865
|
-
*/
|
|
16866
16522
|
readonly type: "function";
|
|
16867
16523
|
readonly stateMutability: "view";
|
|
16868
16524
|
readonly inputs: readonly [];
|
|
@@ -16934,10 +16590,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16934
16590
|
readonly type: "event";
|
|
16935
16591
|
readonly inputs: readonly [{
|
|
16936
16592
|
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
|
-
*/
|
|
16941
16593
|
readonly type: "address";
|
|
16942
16594
|
readonly indexed: true;
|
|
16943
16595
|
}, {
|
|
@@ -17208,9 +16860,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17208
16860
|
}];
|
|
17209
16861
|
}, {
|
|
17210
16862
|
readonly name: "nonce";
|
|
17211
|
-
/**
|
|
17212
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
17213
|
-
*/
|
|
17214
16863
|
readonly type: "function";
|
|
17215
16864
|
readonly stateMutability: "view";
|
|
17216
16865
|
readonly inputs: readonly [];
|
|
@@ -17282,10 +16931,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17282
16931
|
readonly type: "event";
|
|
17283
16932
|
readonly inputs: readonly [{
|
|
17284
16933
|
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
|
-
*/
|
|
17289
16934
|
readonly type: "address";
|
|
17290
16935
|
readonly indexed: true;
|
|
17291
16936
|
}, {
|
|
@@ -17555,9 +17200,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17555
17200
|
}];
|
|
17556
17201
|
}, {
|
|
17557
17202
|
readonly name: "nonce";
|
|
17558
|
-
/**
|
|
17559
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
17560
|
-
*/
|
|
17561
17203
|
readonly type: "function";
|
|
17562
17204
|
readonly stateMutability: "view";
|
|
17563
17205
|
readonly inputs: readonly [];
|
|
@@ -17629,10 +17271,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17629
17271
|
readonly type: "event";
|
|
17630
17272
|
readonly inputs: readonly [{
|
|
17631
17273
|
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
|
-
*/
|
|
17636
17274
|
readonly type: "address";
|
|
17637
17275
|
readonly indexed: true;
|
|
17638
17276
|
}, {
|
|
@@ -17902,9 +17540,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17902
17540
|
}];
|
|
17903
17541
|
}, {
|
|
17904
17542
|
readonly name: "nonce";
|
|
17905
|
-
/**
|
|
17906
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
17907
|
-
*/
|
|
17908
17543
|
readonly type: "function";
|
|
17909
17544
|
readonly stateMutability: "view";
|
|
17910
17545
|
readonly inputs: readonly [];
|
|
@@ -17976,10 +17611,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17976
17611
|
readonly type: "event";
|
|
17977
17612
|
readonly inputs: readonly [{
|
|
17978
17613
|
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
|
-
*/
|
|
17983
17614
|
readonly type: "address";
|
|
17984
17615
|
readonly indexed: true;
|
|
17985
17616
|
}, {
|
|
@@ -18250,9 +17881,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18250
17881
|
}];
|
|
18251
17882
|
}, {
|
|
18252
17883
|
readonly name: "nonce";
|
|
18253
|
-
/**
|
|
18254
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
18255
|
-
*/
|
|
18256
17884
|
readonly type: "function";
|
|
18257
17885
|
readonly stateMutability: "view";
|
|
18258
17886
|
readonly inputs: readonly [];
|
|
@@ -18324,10 +17952,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18324
17952
|
readonly type: "event";
|
|
18325
17953
|
readonly inputs: readonly [{
|
|
18326
17954
|
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
|
-
*/
|
|
18331
17955
|
readonly type: "address";
|
|
18332
17956
|
readonly indexed: true;
|
|
18333
17957
|
}, {
|
|
@@ -18597,9 +18221,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18597
18221
|
}];
|
|
18598
18222
|
}, {
|
|
18599
18223
|
readonly name: "nonce";
|
|
18600
|
-
/**
|
|
18601
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
18602
|
-
*/
|
|
18603
18224
|
readonly type: "function";
|
|
18604
18225
|
readonly stateMutability: "view";
|
|
18605
18226
|
readonly inputs: readonly [];
|
|
@@ -18671,10 +18292,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18671
18292
|
readonly type: "event";
|
|
18672
18293
|
readonly inputs: readonly [{
|
|
18673
18294
|
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
|
-
*/
|
|
18678
18295
|
readonly type: "address";
|
|
18679
18296
|
readonly indexed: true;
|
|
18680
18297
|
}, {
|
|
@@ -18944,9 +18561,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18944
18561
|
}];
|
|
18945
18562
|
}, {
|
|
18946
18563
|
readonly name: "nonce";
|
|
18947
|
-
/**
|
|
18948
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
18949
|
-
*/
|
|
18950
18564
|
readonly type: "function";
|
|
18951
18565
|
readonly stateMutability: "view";
|
|
18952
18566
|
readonly inputs: readonly [];
|
|
@@ -19018,10 +18632,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19018
18632
|
readonly type: "event";
|
|
19019
18633
|
readonly inputs: readonly [{
|
|
19020
18634
|
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
|
-
*/
|
|
19025
18635
|
readonly type: "address";
|
|
19026
18636
|
readonly indexed: true;
|
|
19027
18637
|
}, {
|
|
@@ -19285,9 +18895,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19285
18895
|
}];
|
|
19286
18896
|
}, {
|
|
19287
18897
|
readonly name: "nonce";
|
|
19288
|
-
/**
|
|
19289
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
19290
|
-
*/
|
|
19291
18898
|
readonly type: "function";
|
|
19292
18899
|
readonly stateMutability: "view";
|
|
19293
18900
|
readonly inputs: readonly [];
|
|
@@ -19359,10 +18966,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19359
18966
|
readonly type: "event";
|
|
19360
18967
|
readonly inputs: readonly [{
|
|
19361
18968
|
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
|
-
*/
|
|
19366
18969
|
readonly type: "address";
|
|
19367
18970
|
readonly indexed: true;
|
|
19368
18971
|
}, {
|
|
@@ -19621,9 +19224,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19621
19224
|
}];
|
|
19622
19225
|
}, {
|
|
19623
19226
|
readonly name: "nonce";
|
|
19624
|
-
/**
|
|
19625
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
19626
|
-
*/
|
|
19627
19227
|
readonly type: "function";
|
|
19628
19228
|
readonly stateMutability: "view";
|
|
19629
19229
|
readonly inputs: readonly [];
|
|
@@ -19695,10 +19295,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19695
19295
|
readonly type: "event";
|
|
19696
19296
|
readonly inputs: readonly [{
|
|
19697
19297
|
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
|
-
*/
|
|
19702
19298
|
readonly type: "address";
|
|
19703
19299
|
readonly indexed: true;
|
|
19704
19300
|
}, {
|
|
@@ -19958,9 +19554,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19958
19554
|
}];
|
|
19959
19555
|
}, {
|
|
19960
19556
|
readonly name: "nonce";
|
|
19961
|
-
/**
|
|
19962
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
19963
|
-
*/
|
|
19964
19557
|
readonly type: "function";
|
|
19965
19558
|
readonly stateMutability: "view";
|
|
19966
19559
|
readonly inputs: readonly [];
|
|
@@ -20032,10 +19625,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20032
19625
|
readonly type: "event";
|
|
20033
19626
|
readonly inputs: readonly [{
|
|
20034
19627
|
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
|
-
*/
|
|
20039
19628
|
readonly type: "address";
|
|
20040
19629
|
readonly indexed: true;
|
|
20041
19630
|
}, {
|
|
@@ -20294,9 +19883,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20294
19883
|
}];
|
|
20295
19884
|
}, {
|
|
20296
19885
|
readonly name: "nonce";
|
|
20297
|
-
/**
|
|
20298
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
20299
|
-
*/
|
|
20300
19886
|
readonly type: "function";
|
|
20301
19887
|
readonly stateMutability: "view";
|
|
20302
19888
|
readonly inputs: readonly [];
|
|
@@ -20368,10 +19954,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20368
19954
|
readonly type: "event";
|
|
20369
19955
|
readonly inputs: readonly [{
|
|
20370
19956
|
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
|
-
*/
|
|
20375
19957
|
readonly type: "address";
|
|
20376
19958
|
readonly indexed: true;
|
|
20377
19959
|
}, {
|
|
@@ -20631,9 +20213,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20631
20213
|
}];
|
|
20632
20214
|
}, {
|
|
20633
20215
|
readonly name: "nonce";
|
|
20634
|
-
/**
|
|
20635
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
20636
|
-
*/
|
|
20637
20216
|
readonly type: "function";
|
|
20638
20217
|
readonly stateMutability: "view";
|
|
20639
20218
|
readonly inputs: readonly [];
|
|
@@ -20705,10 +20284,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20705
20284
|
readonly type: "event";
|
|
20706
20285
|
readonly inputs: readonly [{
|
|
20707
20286
|
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
|
-
*/
|
|
20712
20287
|
readonly type: "address";
|
|
20713
20288
|
readonly indexed: true;
|
|
20714
20289
|
}, {
|
|
@@ -20967,9 +20542,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20967
20542
|
}];
|
|
20968
20543
|
}, {
|
|
20969
20544
|
readonly name: "nonce";
|
|
20970
|
-
/**
|
|
20971
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
20972
|
-
*/
|
|
20973
20545
|
readonly type: "function";
|
|
20974
20546
|
readonly stateMutability: "view";
|
|
20975
20547
|
readonly inputs: readonly [];
|
|
@@ -21041,10 +20613,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21041
20613
|
readonly type: "event";
|
|
21042
20614
|
readonly inputs: readonly [{
|
|
21043
20615
|
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
|
-
*/
|
|
21048
20616
|
readonly type: "address";
|
|
21049
20617
|
readonly indexed: true;
|
|
21050
20618
|
}, {
|
|
@@ -21304,9 +20872,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21304
20872
|
}];
|
|
21305
20873
|
}, {
|
|
21306
20874
|
readonly name: "nonce";
|
|
21307
|
-
/**
|
|
21308
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
21309
|
-
*/
|
|
21310
20875
|
readonly type: "function";
|
|
21311
20876
|
readonly stateMutability: "view";
|
|
21312
20877
|
readonly inputs: readonly [];
|
|
@@ -21378,10 +20943,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21378
20943
|
readonly type: "event";
|
|
21379
20944
|
readonly inputs: readonly [{
|
|
21380
20945
|
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
|
-
*/
|
|
21385
20946
|
readonly type: "address";
|
|
21386
20947
|
readonly indexed: true;
|
|
21387
20948
|
}, {
|
|
@@ -21640,9 +21201,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21640
21201
|
}];
|
|
21641
21202
|
}, {
|
|
21642
21203
|
readonly name: "nonce";
|
|
21643
|
-
/**
|
|
21644
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
21645
|
-
*/
|
|
21646
21204
|
readonly type: "function";
|
|
21647
21205
|
readonly stateMutability: "view";
|
|
21648
21206
|
readonly inputs: readonly [];
|
|
@@ -21714,10 +21272,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21714
21272
|
readonly type: "event";
|
|
21715
21273
|
readonly inputs: readonly [{
|
|
21716
21274
|
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
|
-
*/
|
|
21721
21275
|
readonly type: "address";
|
|
21722
21276
|
readonly indexed: true;
|
|
21723
21277
|
}, {
|
|
@@ -21977,9 +21531,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21977
21531
|
}];
|
|
21978
21532
|
}, {
|
|
21979
21533
|
readonly name: "nonce";
|
|
21980
|
-
/**
|
|
21981
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
21982
|
-
*/
|
|
21983
21534
|
readonly type: "function";
|
|
21984
21535
|
readonly stateMutability: "view";
|
|
21985
21536
|
readonly inputs: readonly [];
|
|
@@ -22051,10 +21602,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22051
21602
|
readonly type: "event";
|
|
22052
21603
|
readonly inputs: readonly [{
|
|
22053
21604
|
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
|
-
*/
|
|
22058
21605
|
readonly type: "address";
|
|
22059
21606
|
readonly indexed: true;
|
|
22060
21607
|
}, {
|
|
@@ -22313,9 +21860,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22313
21860
|
}];
|
|
22314
21861
|
}, {
|
|
22315
21862
|
readonly name: "nonce";
|
|
22316
|
-
/**
|
|
22317
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
22318
|
-
*/
|
|
22319
21863
|
readonly type: "function";
|
|
22320
21864
|
readonly stateMutability: "view";
|
|
22321
21865
|
readonly inputs: readonly [];
|
|
@@ -22387,10 +21931,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22387
21931
|
readonly type: "event";
|
|
22388
21932
|
readonly inputs: readonly [{
|
|
22389
21933
|
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
|
-
*/
|
|
22394
21934
|
readonly type: "address";
|
|
22395
21935
|
readonly indexed: true;
|
|
22396
21936
|
}, {
|
|
@@ -22650,9 +22190,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22650
22190
|
}];
|
|
22651
22191
|
}, {
|
|
22652
22192
|
readonly name: "nonce";
|
|
22653
|
-
/**
|
|
22654
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
22655
|
-
*/
|
|
22656
22193
|
readonly type: "function";
|
|
22657
22194
|
readonly stateMutability: "view";
|
|
22658
22195
|
readonly inputs: readonly [];
|
|
@@ -22724,10 +22261,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22724
22261
|
readonly type: "event";
|
|
22725
22262
|
readonly inputs: readonly [{
|
|
22726
22263
|
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
|
-
*/
|
|
22731
22264
|
readonly type: "address";
|
|
22732
22265
|
readonly indexed: true;
|
|
22733
22266
|
}, {
|
|
@@ -22986,9 +22519,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22986
22519
|
}];
|
|
22987
22520
|
}, {
|
|
22988
22521
|
readonly name: "nonce";
|
|
22989
|
-
/**
|
|
22990
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
22991
|
-
*/
|
|
22992
22522
|
readonly type: "function";
|
|
22993
22523
|
readonly stateMutability: "view";
|
|
22994
22524
|
readonly inputs: readonly [];
|
|
@@ -23060,10 +22590,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23060
22590
|
readonly type: "event";
|
|
23061
22591
|
readonly inputs: readonly [{
|
|
23062
22592
|
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
|
-
*/
|
|
23067
22593
|
readonly type: "address";
|
|
23068
22594
|
readonly indexed: true;
|
|
23069
22595
|
}, {
|
|
@@ -23323,9 +22849,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23323
22849
|
}];
|
|
23324
22850
|
}, {
|
|
23325
22851
|
readonly name: "nonce";
|
|
23326
|
-
/**
|
|
23327
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
23328
|
-
*/
|
|
23329
22852
|
readonly type: "function";
|
|
23330
22853
|
readonly stateMutability: "view";
|
|
23331
22854
|
readonly inputs: readonly [];
|
|
@@ -23397,10 +22920,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23397
22920
|
readonly type: "event";
|
|
23398
22921
|
readonly inputs: readonly [{
|
|
23399
22922
|
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
|
-
*/
|
|
23404
22923
|
readonly type: "address";
|
|
23405
22924
|
readonly indexed: true;
|
|
23406
22925
|
}, {
|
|
@@ -23659,9 +23178,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23659
23178
|
}];
|
|
23660
23179
|
}, {
|
|
23661
23180
|
readonly name: "nonce";
|
|
23662
|
-
/**
|
|
23663
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
23664
|
-
*/
|
|
23665
23181
|
readonly type: "function";
|
|
23666
23182
|
readonly stateMutability: "view";
|
|
23667
23183
|
readonly inputs: readonly [];
|
|
@@ -23733,10 +23249,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23733
23249
|
readonly type: "event";
|
|
23734
23250
|
readonly inputs: readonly [{
|
|
23735
23251
|
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
|
-
*/
|
|
23740
23252
|
readonly type: "address";
|
|
23741
23253
|
readonly indexed: true;
|
|
23742
23254
|
}, {
|
|
@@ -23998,9 +23510,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23998
23510
|
}];
|
|
23999
23511
|
}, {
|
|
24000
23512
|
readonly name: "nonce";
|
|
24001
|
-
/**
|
|
24002
|
-
* Create a wallet client connected to an existing AgentAccountV2.
|
|
24003
|
-
*/
|
|
24004
23513
|
readonly type: "function";
|
|
24005
23514
|
readonly stateMutability: "view";
|
|
24006
23515
|
readonly inputs: readonly [];
|
|
@@ -24072,10 +23581,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24072
23581
|
readonly type: "event";
|
|
24073
23582
|
readonly inputs: readonly [{
|
|
24074
23583
|
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
|
-
*/
|
|
24079
23584
|
readonly type: "address";
|
|
24080
23585
|
readonly indexed: true;
|
|
24081
23586
|
}, {
|
|
@@ -38661,12 +38166,12 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38661
38166
|
[x: `bytes7[${string}]`]: undefined;
|
|
38662
38167
|
[x: `bytes5[${string}]`]: undefined;
|
|
38663
38168
|
[x: `bytes23[${string}]`]: undefined;
|
|
38169
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
38664
38170
|
[x: `bytes14[${string}]`]: undefined;
|
|
38665
38171
|
[x: `bytes18[${string}]`]: undefined;
|
|
38666
38172
|
[x: `bytes6[${string}]`]: undefined;
|
|
38667
38173
|
[x: `bytes8[${string}]`]: undefined;
|
|
38668
38174
|
[x: `bytes9[${string}]`]: undefined;
|
|
38669
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
38670
38175
|
[x: `bytes11[${string}]`]: undefined;
|
|
38671
38176
|
[x: `bytes12[${string}]`]: undefined;
|
|
38672
38177
|
[x: `bytes13[${string}]`]: undefined;
|
|
@@ -38763,12 +38268,12 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38763
38268
|
bytes7?: undefined;
|
|
38764
38269
|
bytes5?: undefined;
|
|
38765
38270
|
bytes23?: undefined;
|
|
38271
|
+
bytes10?: undefined;
|
|
38766
38272
|
bytes14?: undefined;
|
|
38767
38273
|
bytes18?: undefined;
|
|
38768
38274
|
bytes6?: undefined;
|
|
38769
38275
|
bytes8?: undefined;
|
|
38770
38276
|
bytes9?: undefined;
|
|
38771
|
-
bytes10?: undefined;
|
|
38772
38277
|
bytes11?: undefined;
|
|
38773
38278
|
bytes12?: undefined;
|
|
38774
38279
|
bytes13?: undefined;
|