agentwallet-sdk 2.0.0 → 2.3.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 +88 -2
- package/dist/identity/erc8004.d.ts +538 -0
- package/dist/identity/erc8004.d.ts.map +1 -0
- package/dist/identity/erc8004.js +656 -0
- package/dist/identity/erc8004.js.map +1 -0
- package/dist/index.d.ts +308 -233
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/x402/__tests__/budget.test.d.ts +2 -0
- package/dist/x402/__tests__/budget.test.d.ts.map +1 -0
- package/dist/x402/__tests__/budget.test.js +114 -0
- package/dist/x402/__tests__/budget.test.js.map +1 -0
- package/dist/x402/__tests__/client.test.d.ts +2 -0
- package/dist/x402/__tests__/client.test.d.ts.map +1 -0
- package/dist/x402/__tests__/client.test.js +107 -0
- package/dist/x402/__tests__/client.test.js.map +1 -0
- package/dist/x402/budget.d.ts +52 -0
- package/dist/x402/budget.d.ts.map +1 -0
- package/dist/x402/budget.js +113 -0
- package/dist/x402/budget.js.map +1 -0
- package/dist/x402/client.d.ts +60 -0
- package/dist/x402/client.d.ts.map +1 -0
- package/dist/x402/client.js +205 -0
- package/dist/x402/client.js.map +1 -0
- package/dist/x402/index.d.ts +6 -0
- package/dist/x402/index.d.ts.map +1 -0
- package/dist/x402/index.js +6 -0
- package/dist/x402/index.js.map +1 -0
- package/dist/x402/middleware.d.ts +37 -0
- package/dist/x402/middleware.d.ts.map +1 -0
- package/dist/x402/middleware.js +65 -0
- package/dist/x402/middleware.js.map +1 -0
- package/dist/x402/types.d.ts +91 -0
- package/dist/x402/types.d.ts.map +1 -0
- package/dist/x402/types.js +9 -0
- package/dist/x402/types.js.map +1 -0
- package/package.json +14 -7
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,10 @@ 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 { ERC8004Client, ERC8004IdentityRegistryAbi, METADATA_KEYS, REGISTRATION_FILE_TYPE, KNOWN_REGISTRY_ADDRESSES, buildDataURI, parseDataURI, resolveAgentURI, validateRegistrationFile, formatAgentRegistry, } from './identity/erc8004.js';
|
|
6
|
+
export type { AgentIdentity, AgentRegistrationFile, AgentServiceEndpoint, AgentRegistrationRef, AgentModelMetadata, ERC8004ClientConfig, MetadataEntry, RegistrationResult, SupportedTrustMechanism, } from './identity/erc8004.js';
|
|
7
|
+
export { X402Client, X402BudgetTracker, X402PaymentError, X402BudgetExceededError, createX402Client, createX402Fetch, wrapWithX402, USDC_ADDRESSES, DEFAULT_SUPPORTED_NETWORKS, } from './x402/index.js';
|
|
8
|
+
export type { X402PaymentRequired, X402PaymentRequirements, X402PaymentPayload, X402SettlementResponse, X402ResourceInfo, X402ServiceBudget, X402TransactionLog, X402ClientConfig, } from './x402/index.js';
|
|
5
9
|
/** Native ETH token address (zero address) */
|
|
6
10
|
export declare const NATIVE_TOKEN: Address;
|
|
7
11
|
/**
|
|
@@ -133,6 +137,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
133
137
|
readonly stateMutability: "view";
|
|
134
138
|
readonly inputs: readonly [{
|
|
135
139
|
readonly name: "txId";
|
|
140
|
+
/**
|
|
141
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
142
|
+
*/
|
|
136
143
|
readonly type: "uint256";
|
|
137
144
|
}];
|
|
138
145
|
readonly outputs: readonly [{
|
|
@@ -296,9 +303,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
296
303
|
readonly inputs: readonly [{
|
|
297
304
|
readonly name: "operator";
|
|
298
305
|
readonly type: "address";
|
|
299
|
-
readonly indexed: true;
|
|
300
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
301
|
-
*/
|
|
306
|
+
readonly indexed: true;
|
|
302
307
|
}, {
|
|
303
308
|
readonly name: "authorized";
|
|
304
309
|
readonly type: "bool";
|
|
@@ -465,6 +470,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
465
470
|
readonly stateMutability: "view";
|
|
466
471
|
readonly inputs: readonly [{
|
|
467
472
|
readonly name: "txId";
|
|
473
|
+
/**
|
|
474
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
475
|
+
*/
|
|
468
476
|
readonly type: "uint256";
|
|
469
477
|
}];
|
|
470
478
|
readonly outputs: readonly [{
|
|
@@ -628,9 +636,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
628
636
|
readonly inputs: readonly [{
|
|
629
637
|
readonly name: "operator";
|
|
630
638
|
readonly type: "address";
|
|
631
|
-
readonly indexed: true;
|
|
632
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
633
|
-
*/
|
|
639
|
+
readonly indexed: true;
|
|
634
640
|
}, {
|
|
635
641
|
readonly name: "authorized";
|
|
636
642
|
readonly type: "bool";
|
|
@@ -797,6 +803,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
797
803
|
readonly stateMutability: "view";
|
|
798
804
|
readonly inputs: readonly [{
|
|
799
805
|
readonly name: "txId";
|
|
806
|
+
/**
|
|
807
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
808
|
+
*/
|
|
800
809
|
readonly type: "uint256";
|
|
801
810
|
}];
|
|
802
811
|
readonly outputs: readonly [{
|
|
@@ -960,9 +969,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
960
969
|
readonly inputs: readonly [{
|
|
961
970
|
readonly name: "operator";
|
|
962
971
|
readonly type: "address";
|
|
963
|
-
readonly indexed: true;
|
|
964
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
965
|
-
*/
|
|
972
|
+
readonly indexed: true;
|
|
966
973
|
}, {
|
|
967
974
|
readonly name: "authorized";
|
|
968
975
|
readonly type: "bool";
|
|
@@ -1129,6 +1136,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1129
1136
|
readonly stateMutability: "view";
|
|
1130
1137
|
readonly inputs: readonly [{
|
|
1131
1138
|
readonly name: "txId";
|
|
1139
|
+
/**
|
|
1140
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
1141
|
+
*/
|
|
1132
1142
|
readonly type: "uint256";
|
|
1133
1143
|
}];
|
|
1134
1144
|
readonly outputs: readonly [{
|
|
@@ -1292,9 +1302,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1292
1302
|
readonly inputs: readonly [{
|
|
1293
1303
|
readonly name: "operator";
|
|
1294
1304
|
readonly type: "address";
|
|
1295
|
-
readonly indexed: true;
|
|
1296
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
1297
|
-
*/
|
|
1305
|
+
readonly indexed: true;
|
|
1298
1306
|
}, {
|
|
1299
1307
|
readonly name: "authorized";
|
|
1300
1308
|
readonly type: "bool";
|
|
@@ -1461,6 +1469,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1461
1469
|
readonly stateMutability: "view";
|
|
1462
1470
|
readonly inputs: readonly [{
|
|
1463
1471
|
readonly name: "txId";
|
|
1472
|
+
/**
|
|
1473
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
1474
|
+
*/
|
|
1464
1475
|
readonly type: "uint256";
|
|
1465
1476
|
}];
|
|
1466
1477
|
readonly outputs: readonly [{
|
|
@@ -1624,9 +1635,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1624
1635
|
readonly inputs: readonly [{
|
|
1625
1636
|
readonly name: "operator";
|
|
1626
1637
|
readonly type: "address";
|
|
1627
|
-
readonly indexed: true;
|
|
1628
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
1629
|
-
*/
|
|
1638
|
+
readonly indexed: true;
|
|
1630
1639
|
}, {
|
|
1631
1640
|
readonly name: "authorized";
|
|
1632
1641
|
readonly type: "bool";
|
|
@@ -1793,6 +1802,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1793
1802
|
readonly stateMutability: "view";
|
|
1794
1803
|
readonly inputs: readonly [{
|
|
1795
1804
|
readonly name: "txId";
|
|
1805
|
+
/**
|
|
1806
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
1807
|
+
*/
|
|
1796
1808
|
readonly type: "uint256";
|
|
1797
1809
|
}];
|
|
1798
1810
|
readonly outputs: readonly [{
|
|
@@ -1956,9 +1968,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1956
1968
|
readonly inputs: readonly [{
|
|
1957
1969
|
readonly name: "operator";
|
|
1958
1970
|
readonly type: "address";
|
|
1959
|
-
readonly indexed: true;
|
|
1960
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
1961
|
-
*/
|
|
1971
|
+
readonly indexed: true;
|
|
1962
1972
|
}, {
|
|
1963
1973
|
readonly name: "authorized";
|
|
1964
1974
|
readonly type: "bool";
|
|
@@ -2125,6 +2135,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2125
2135
|
readonly stateMutability: "view";
|
|
2126
2136
|
readonly inputs: readonly [{
|
|
2127
2137
|
readonly name: "txId";
|
|
2138
|
+
/**
|
|
2139
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
2140
|
+
*/
|
|
2128
2141
|
readonly type: "uint256";
|
|
2129
2142
|
}];
|
|
2130
2143
|
readonly outputs: readonly [{
|
|
@@ -2288,9 +2301,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2288
2301
|
readonly inputs: readonly [{
|
|
2289
2302
|
readonly name: "operator";
|
|
2290
2303
|
readonly type: "address";
|
|
2291
|
-
readonly indexed: true;
|
|
2292
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2293
|
-
*/
|
|
2304
|
+
readonly indexed: true;
|
|
2294
2305
|
}, {
|
|
2295
2306
|
readonly name: "authorized";
|
|
2296
2307
|
readonly type: "bool";
|
|
@@ -2457,6 +2468,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2457
2468
|
readonly stateMutability: "view";
|
|
2458
2469
|
readonly inputs: readonly [{
|
|
2459
2470
|
readonly name: "txId";
|
|
2471
|
+
/**
|
|
2472
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
2473
|
+
*/
|
|
2460
2474
|
readonly type: "uint256";
|
|
2461
2475
|
}];
|
|
2462
2476
|
readonly outputs: readonly [{
|
|
@@ -2620,9 +2634,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2620
2634
|
readonly inputs: readonly [{
|
|
2621
2635
|
readonly name: "operator";
|
|
2622
2636
|
readonly type: "address";
|
|
2623
|
-
readonly indexed: true;
|
|
2624
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2625
|
-
*/
|
|
2637
|
+
readonly indexed: true;
|
|
2626
2638
|
}, {
|
|
2627
2639
|
readonly name: "authorized";
|
|
2628
2640
|
readonly type: "bool";
|
|
@@ -2789,6 +2801,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2789
2801
|
readonly stateMutability: "view";
|
|
2790
2802
|
readonly inputs: readonly [{
|
|
2791
2803
|
readonly name: "txId";
|
|
2804
|
+
/**
|
|
2805
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
2806
|
+
*/
|
|
2792
2807
|
readonly type: "uint256";
|
|
2793
2808
|
}];
|
|
2794
2809
|
readonly outputs: readonly [{
|
|
@@ -2952,9 +2967,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2952
2967
|
readonly inputs: readonly [{
|
|
2953
2968
|
readonly name: "operator";
|
|
2954
2969
|
readonly type: "address";
|
|
2955
|
-
readonly indexed: true;
|
|
2956
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2957
|
-
*/
|
|
2970
|
+
readonly indexed: true;
|
|
2958
2971
|
}, {
|
|
2959
2972
|
readonly name: "authorized";
|
|
2960
2973
|
readonly type: "bool";
|
|
@@ -3121,6 +3134,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3121
3134
|
readonly stateMutability: "view";
|
|
3122
3135
|
readonly inputs: readonly [{
|
|
3123
3136
|
readonly name: "txId";
|
|
3137
|
+
/**
|
|
3138
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
3139
|
+
*/
|
|
3124
3140
|
readonly type: "uint256";
|
|
3125
3141
|
}];
|
|
3126
3142
|
readonly outputs: readonly [{
|
|
@@ -3284,9 +3300,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3284
3300
|
readonly inputs: readonly [{
|
|
3285
3301
|
readonly name: "operator";
|
|
3286
3302
|
readonly type: "address";
|
|
3287
|
-
readonly indexed: true;
|
|
3288
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
3289
|
-
*/
|
|
3303
|
+
readonly indexed: true;
|
|
3290
3304
|
}, {
|
|
3291
3305
|
readonly name: "authorized";
|
|
3292
3306
|
readonly type: "bool";
|
|
@@ -3455,6 +3469,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3455
3469
|
readonly stateMutability: "view";
|
|
3456
3470
|
readonly inputs: readonly [{
|
|
3457
3471
|
readonly name: "txId";
|
|
3472
|
+
/**
|
|
3473
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
3474
|
+
*/
|
|
3458
3475
|
readonly type: "uint256";
|
|
3459
3476
|
}];
|
|
3460
3477
|
readonly outputs: readonly [{
|
|
@@ -3618,9 +3635,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3618
3635
|
readonly inputs: readonly [{
|
|
3619
3636
|
readonly name: "operator";
|
|
3620
3637
|
readonly type: "address";
|
|
3621
|
-
readonly indexed: true;
|
|
3622
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
3623
|
-
*/
|
|
3638
|
+
readonly indexed: true;
|
|
3624
3639
|
}, {
|
|
3625
3640
|
readonly name: "authorized";
|
|
3626
3641
|
readonly type: "bool";
|
|
@@ -3787,6 +3802,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3787
3802
|
readonly stateMutability: "view";
|
|
3788
3803
|
readonly inputs: readonly [{
|
|
3789
3804
|
readonly name: "txId";
|
|
3805
|
+
/**
|
|
3806
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
3807
|
+
*/
|
|
3790
3808
|
readonly type: "uint256";
|
|
3791
3809
|
}];
|
|
3792
3810
|
readonly outputs: readonly [{
|
|
@@ -3950,9 +3968,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3950
3968
|
readonly inputs: readonly [{
|
|
3951
3969
|
readonly name: "operator";
|
|
3952
3970
|
readonly type: "address";
|
|
3953
|
-
readonly indexed: true;
|
|
3954
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
3955
|
-
*/
|
|
3971
|
+
readonly indexed: true;
|
|
3956
3972
|
}, {
|
|
3957
3973
|
readonly name: "authorized";
|
|
3958
3974
|
readonly type: "bool";
|
|
@@ -4119,6 +4135,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4119
4135
|
readonly stateMutability: "view";
|
|
4120
4136
|
readonly inputs: readonly [{
|
|
4121
4137
|
readonly name: "txId";
|
|
4138
|
+
/**
|
|
4139
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
4140
|
+
*/
|
|
4122
4141
|
readonly type: "uint256";
|
|
4123
4142
|
}];
|
|
4124
4143
|
readonly outputs: readonly [{
|
|
@@ -4282,9 +4301,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4282
4301
|
readonly inputs: readonly [{
|
|
4283
4302
|
readonly name: "operator";
|
|
4284
4303
|
readonly type: "address";
|
|
4285
|
-
readonly indexed: true;
|
|
4286
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4287
|
-
*/
|
|
4304
|
+
readonly indexed: true;
|
|
4288
4305
|
}, {
|
|
4289
4306
|
readonly name: "authorized";
|
|
4290
4307
|
readonly type: "bool";
|
|
@@ -4451,6 +4468,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4451
4468
|
readonly stateMutability: "view";
|
|
4452
4469
|
readonly inputs: readonly [{
|
|
4453
4470
|
readonly name: "txId";
|
|
4471
|
+
/**
|
|
4472
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
4473
|
+
*/
|
|
4454
4474
|
readonly type: "uint256";
|
|
4455
4475
|
}];
|
|
4456
4476
|
readonly outputs: readonly [{
|
|
@@ -4614,9 +4634,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4614
4634
|
readonly inputs: readonly [{
|
|
4615
4635
|
readonly name: "operator";
|
|
4616
4636
|
readonly type: "address";
|
|
4617
|
-
readonly indexed: true;
|
|
4618
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4619
|
-
*/
|
|
4637
|
+
readonly indexed: true;
|
|
4620
4638
|
}, {
|
|
4621
4639
|
readonly name: "authorized";
|
|
4622
4640
|
readonly type: "bool";
|
|
@@ -4783,6 +4801,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4783
4801
|
readonly stateMutability: "view";
|
|
4784
4802
|
readonly inputs: readonly [{
|
|
4785
4803
|
readonly name: "txId";
|
|
4804
|
+
/**
|
|
4805
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
4806
|
+
*/
|
|
4786
4807
|
readonly type: "uint256";
|
|
4787
4808
|
}];
|
|
4788
4809
|
readonly outputs: readonly [{
|
|
@@ -4946,9 +4967,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4946
4967
|
readonly inputs: readonly [{
|
|
4947
4968
|
readonly name: "operator";
|
|
4948
4969
|
readonly type: "address";
|
|
4949
|
-
readonly indexed: true;
|
|
4950
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4951
|
-
*/
|
|
4970
|
+
readonly indexed: true;
|
|
4952
4971
|
}, {
|
|
4953
4972
|
readonly name: "authorized";
|
|
4954
4973
|
readonly type: "bool";
|
|
@@ -5115,6 +5134,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5115
5134
|
readonly stateMutability: "view";
|
|
5116
5135
|
readonly inputs: readonly [{
|
|
5117
5136
|
readonly name: "txId";
|
|
5137
|
+
/**
|
|
5138
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
5139
|
+
*/
|
|
5118
5140
|
readonly type: "uint256";
|
|
5119
5141
|
}];
|
|
5120
5142
|
readonly outputs: readonly [{
|
|
@@ -5278,9 +5300,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5278
5300
|
readonly inputs: readonly [{
|
|
5279
5301
|
readonly name: "operator";
|
|
5280
5302
|
readonly type: "address";
|
|
5281
|
-
readonly indexed: true;
|
|
5282
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
5283
|
-
*/
|
|
5303
|
+
readonly indexed: true;
|
|
5284
5304
|
}, {
|
|
5285
5305
|
readonly name: "authorized";
|
|
5286
5306
|
readonly type: "bool";
|
|
@@ -5447,6 +5467,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5447
5467
|
readonly stateMutability: "view";
|
|
5448
5468
|
readonly inputs: readonly [{
|
|
5449
5469
|
readonly name: "txId";
|
|
5470
|
+
/**
|
|
5471
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
5472
|
+
*/
|
|
5450
5473
|
readonly type: "uint256";
|
|
5451
5474
|
}];
|
|
5452
5475
|
readonly outputs: readonly [{
|
|
@@ -5610,9 +5633,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5610
5633
|
readonly inputs: readonly [{
|
|
5611
5634
|
readonly name: "operator";
|
|
5612
5635
|
readonly type: "address";
|
|
5613
|
-
readonly indexed: true;
|
|
5614
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
5615
|
-
*/
|
|
5636
|
+
readonly indexed: true;
|
|
5616
5637
|
}, {
|
|
5617
5638
|
readonly name: "authorized";
|
|
5618
5639
|
readonly type: "bool";
|
|
@@ -5780,6 +5801,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5780
5801
|
readonly stateMutability: "view";
|
|
5781
5802
|
readonly inputs: readonly [{
|
|
5782
5803
|
readonly name: "txId";
|
|
5804
|
+
/**
|
|
5805
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
5806
|
+
*/
|
|
5783
5807
|
readonly type: "uint256";
|
|
5784
5808
|
}];
|
|
5785
5809
|
readonly outputs: readonly [{
|
|
@@ -5943,9 +5967,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5943
5967
|
readonly inputs: readonly [{
|
|
5944
5968
|
readonly name: "operator";
|
|
5945
5969
|
readonly type: "address";
|
|
5946
|
-
readonly indexed: true;
|
|
5947
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
5948
|
-
*/
|
|
5970
|
+
readonly indexed: true;
|
|
5949
5971
|
}, {
|
|
5950
5972
|
readonly name: "authorized";
|
|
5951
5973
|
readonly type: "bool";
|
|
@@ -6112,6 +6134,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6112
6134
|
readonly stateMutability: "view";
|
|
6113
6135
|
readonly inputs: readonly [{
|
|
6114
6136
|
readonly name: "txId";
|
|
6137
|
+
/**
|
|
6138
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
6139
|
+
*/
|
|
6115
6140
|
readonly type: "uint256";
|
|
6116
6141
|
}];
|
|
6117
6142
|
readonly outputs: readonly [{
|
|
@@ -6275,9 +6300,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6275
6300
|
readonly inputs: readonly [{
|
|
6276
6301
|
readonly name: "operator";
|
|
6277
6302
|
readonly type: "address";
|
|
6278
|
-
readonly indexed: true;
|
|
6279
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
6280
|
-
*/
|
|
6303
|
+
readonly indexed: true;
|
|
6281
6304
|
}, {
|
|
6282
6305
|
readonly name: "authorized";
|
|
6283
6306
|
readonly type: "bool";
|
|
@@ -6444,6 +6467,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6444
6467
|
readonly stateMutability: "view";
|
|
6445
6468
|
readonly inputs: readonly [{
|
|
6446
6469
|
readonly name: "txId";
|
|
6470
|
+
/**
|
|
6471
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
6472
|
+
*/
|
|
6447
6473
|
readonly type: "uint256";
|
|
6448
6474
|
}];
|
|
6449
6475
|
readonly outputs: readonly [{
|
|
@@ -6607,9 +6633,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6607
6633
|
readonly inputs: readonly [{
|
|
6608
6634
|
readonly name: "operator";
|
|
6609
6635
|
readonly type: "address";
|
|
6610
|
-
readonly indexed: true;
|
|
6611
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
6612
|
-
*/
|
|
6636
|
+
readonly indexed: true;
|
|
6613
6637
|
}, {
|
|
6614
6638
|
readonly name: "authorized";
|
|
6615
6639
|
readonly type: "bool";
|
|
@@ -6776,6 +6800,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6776
6800
|
readonly stateMutability: "view";
|
|
6777
6801
|
readonly inputs: readonly [{
|
|
6778
6802
|
readonly name: "txId";
|
|
6803
|
+
/**
|
|
6804
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
6805
|
+
*/
|
|
6779
6806
|
readonly type: "uint256";
|
|
6780
6807
|
}];
|
|
6781
6808
|
readonly outputs: readonly [{
|
|
@@ -6939,9 +6966,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6939
6966
|
readonly inputs: readonly [{
|
|
6940
6967
|
readonly name: "operator";
|
|
6941
6968
|
readonly type: "address";
|
|
6942
|
-
readonly indexed: true;
|
|
6943
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
6944
|
-
*/
|
|
6969
|
+
readonly indexed: true;
|
|
6945
6970
|
}, {
|
|
6946
6971
|
readonly name: "authorized";
|
|
6947
6972
|
readonly type: "bool";
|
|
@@ -7108,6 +7133,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7108
7133
|
readonly stateMutability: "view";
|
|
7109
7134
|
readonly inputs: readonly [{
|
|
7110
7135
|
readonly name: "txId";
|
|
7136
|
+
/**
|
|
7137
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
7138
|
+
*/
|
|
7111
7139
|
readonly type: "uint256";
|
|
7112
7140
|
}];
|
|
7113
7141
|
readonly outputs: readonly [{
|
|
@@ -7271,9 +7299,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7271
7299
|
readonly inputs: readonly [{
|
|
7272
7300
|
readonly name: "operator";
|
|
7273
7301
|
readonly type: "address";
|
|
7274
|
-
readonly indexed: true;
|
|
7275
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
7276
|
-
*/
|
|
7302
|
+
readonly indexed: true;
|
|
7277
7303
|
}, {
|
|
7278
7304
|
readonly name: "authorized";
|
|
7279
7305
|
readonly type: "bool";
|
|
@@ -7440,6 +7466,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7440
7466
|
readonly stateMutability: "view";
|
|
7441
7467
|
readonly inputs: readonly [{
|
|
7442
7468
|
readonly name: "txId";
|
|
7469
|
+
/**
|
|
7470
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
7471
|
+
*/
|
|
7443
7472
|
readonly type: "uint256";
|
|
7444
7473
|
}];
|
|
7445
7474
|
readonly outputs: readonly [{
|
|
@@ -7603,9 +7632,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7603
7632
|
readonly inputs: readonly [{
|
|
7604
7633
|
readonly name: "operator";
|
|
7605
7634
|
readonly type: "address";
|
|
7606
|
-
readonly indexed: true;
|
|
7607
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
7608
|
-
*/
|
|
7635
|
+
readonly indexed: true;
|
|
7609
7636
|
}, {
|
|
7610
7637
|
readonly name: "authorized";
|
|
7611
7638
|
readonly type: "bool";
|
|
@@ -7772,6 +7799,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7772
7799
|
readonly stateMutability: "view";
|
|
7773
7800
|
readonly inputs: readonly [{
|
|
7774
7801
|
readonly name: "txId";
|
|
7802
|
+
/**
|
|
7803
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
7804
|
+
*/
|
|
7775
7805
|
readonly type: "uint256";
|
|
7776
7806
|
}];
|
|
7777
7807
|
readonly outputs: readonly [{
|
|
@@ -7935,9 +7965,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7935
7965
|
readonly inputs: readonly [{
|
|
7936
7966
|
readonly name: "operator";
|
|
7937
7967
|
readonly type: "address";
|
|
7938
|
-
readonly indexed: true;
|
|
7939
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
7940
|
-
*/
|
|
7968
|
+
readonly indexed: true;
|
|
7941
7969
|
}, {
|
|
7942
7970
|
readonly name: "authorized";
|
|
7943
7971
|
readonly type: "bool";
|
|
@@ -8106,6 +8134,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8106
8134
|
readonly stateMutability: "view";
|
|
8107
8135
|
readonly inputs: readonly [{
|
|
8108
8136
|
readonly name: "txId";
|
|
8137
|
+
/**
|
|
8138
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
8139
|
+
*/
|
|
8109
8140
|
readonly type: "uint256";
|
|
8110
8141
|
}];
|
|
8111
8142
|
readonly outputs: readonly [{
|
|
@@ -8269,9 +8300,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8269
8300
|
readonly inputs: readonly [{
|
|
8270
8301
|
readonly name: "operator";
|
|
8271
8302
|
readonly type: "address";
|
|
8272
|
-
readonly indexed: true;
|
|
8273
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
8274
|
-
*/
|
|
8303
|
+
readonly indexed: true;
|
|
8275
8304
|
}, {
|
|
8276
8305
|
readonly name: "authorized";
|
|
8277
8306
|
readonly type: "bool";
|
|
@@ -8437,6 +8466,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8437
8466
|
readonly stateMutability: "view";
|
|
8438
8467
|
readonly inputs: readonly [{
|
|
8439
8468
|
readonly name: "txId";
|
|
8469
|
+
/**
|
|
8470
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
8471
|
+
*/
|
|
8440
8472
|
readonly type: "uint256";
|
|
8441
8473
|
}];
|
|
8442
8474
|
readonly outputs: readonly [{
|
|
@@ -8600,9 +8632,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8600
8632
|
readonly inputs: readonly [{
|
|
8601
8633
|
readonly name: "operator";
|
|
8602
8634
|
readonly type: "address";
|
|
8603
|
-
readonly indexed: true;
|
|
8604
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
8605
|
-
*/
|
|
8635
|
+
readonly indexed: true;
|
|
8606
8636
|
}, {
|
|
8607
8637
|
readonly name: "authorized";
|
|
8608
8638
|
readonly type: "bool";
|
|
@@ -8769,6 +8799,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8769
8799
|
readonly stateMutability: "view";
|
|
8770
8800
|
readonly inputs: readonly [{
|
|
8771
8801
|
readonly name: "txId";
|
|
8802
|
+
/**
|
|
8803
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
8804
|
+
*/
|
|
8772
8805
|
readonly type: "uint256";
|
|
8773
8806
|
}];
|
|
8774
8807
|
readonly outputs: readonly [{
|
|
@@ -8932,9 +8965,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8932
8965
|
readonly inputs: readonly [{
|
|
8933
8966
|
readonly name: "operator";
|
|
8934
8967
|
readonly type: "address";
|
|
8935
|
-
readonly indexed: true;
|
|
8936
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
8937
|
-
*/
|
|
8968
|
+
readonly indexed: true;
|
|
8938
8969
|
}, {
|
|
8939
8970
|
readonly name: "authorized";
|
|
8940
8971
|
readonly type: "bool";
|
|
@@ -9100,6 +9131,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9100
9131
|
readonly stateMutability: "view";
|
|
9101
9132
|
readonly inputs: readonly [{
|
|
9102
9133
|
readonly name: "txId";
|
|
9134
|
+
/**
|
|
9135
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
9136
|
+
*/
|
|
9103
9137
|
readonly type: "uint256";
|
|
9104
9138
|
}];
|
|
9105
9139
|
readonly outputs: readonly [{
|
|
@@ -9263,9 +9297,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9263
9297
|
readonly inputs: readonly [{
|
|
9264
9298
|
readonly name: "operator";
|
|
9265
9299
|
readonly type: "address";
|
|
9266
|
-
readonly indexed: true;
|
|
9267
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
9268
|
-
*/
|
|
9300
|
+
readonly indexed: true;
|
|
9269
9301
|
}, {
|
|
9270
9302
|
readonly name: "authorized";
|
|
9271
9303
|
readonly type: "bool";
|
|
@@ -9432,6 +9464,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9432
9464
|
readonly stateMutability: "view";
|
|
9433
9465
|
readonly inputs: readonly [{
|
|
9434
9466
|
readonly name: "txId";
|
|
9467
|
+
/**
|
|
9468
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
9469
|
+
*/
|
|
9435
9470
|
readonly type: "uint256";
|
|
9436
9471
|
}];
|
|
9437
9472
|
readonly outputs: readonly [{
|
|
@@ -9595,9 +9630,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9595
9630
|
readonly inputs: readonly [{
|
|
9596
9631
|
readonly name: "operator";
|
|
9597
9632
|
readonly type: "address";
|
|
9598
|
-
readonly indexed: true;
|
|
9599
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
9600
|
-
*/
|
|
9633
|
+
readonly indexed: true;
|
|
9601
9634
|
}, {
|
|
9602
9635
|
readonly name: "authorized";
|
|
9603
9636
|
readonly type: "bool";
|
|
@@ -9763,6 +9796,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9763
9796
|
readonly stateMutability: "view";
|
|
9764
9797
|
readonly inputs: readonly [{
|
|
9765
9798
|
readonly name: "txId";
|
|
9799
|
+
/**
|
|
9800
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
9801
|
+
*/
|
|
9766
9802
|
readonly type: "uint256";
|
|
9767
9803
|
}];
|
|
9768
9804
|
readonly outputs: readonly [{
|
|
@@ -9926,9 +9962,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9926
9962
|
readonly inputs: readonly [{
|
|
9927
9963
|
readonly name: "operator";
|
|
9928
9964
|
readonly type: "address";
|
|
9929
|
-
readonly indexed: true;
|
|
9930
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
9931
|
-
*/
|
|
9965
|
+
readonly indexed: true;
|
|
9932
9966
|
}, {
|
|
9933
9967
|
readonly name: "authorized";
|
|
9934
9968
|
readonly type: "bool";
|
|
@@ -10095,6 +10129,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10095
10129
|
readonly stateMutability: "view";
|
|
10096
10130
|
readonly inputs: readonly [{
|
|
10097
10131
|
readonly name: "txId";
|
|
10132
|
+
/**
|
|
10133
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
10134
|
+
*/
|
|
10098
10135
|
readonly type: "uint256";
|
|
10099
10136
|
}];
|
|
10100
10137
|
readonly outputs: readonly [{
|
|
@@ -10258,9 +10295,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10258
10295
|
readonly inputs: readonly [{
|
|
10259
10296
|
readonly name: "operator";
|
|
10260
10297
|
readonly type: "address";
|
|
10261
|
-
readonly indexed: true;
|
|
10262
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
10263
|
-
*/
|
|
10298
|
+
readonly indexed: true;
|
|
10264
10299
|
}, {
|
|
10265
10300
|
readonly name: "authorized";
|
|
10266
10301
|
readonly type: "bool";
|
|
@@ -10426,6 +10461,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10426
10461
|
readonly stateMutability: "view";
|
|
10427
10462
|
readonly inputs: readonly [{
|
|
10428
10463
|
readonly name: "txId";
|
|
10464
|
+
/**
|
|
10465
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
10466
|
+
*/
|
|
10429
10467
|
readonly type: "uint256";
|
|
10430
10468
|
}];
|
|
10431
10469
|
readonly outputs: readonly [{
|
|
@@ -10589,9 +10627,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10589
10627
|
readonly inputs: readonly [{
|
|
10590
10628
|
readonly name: "operator";
|
|
10591
10629
|
readonly type: "address";
|
|
10592
|
-
readonly indexed: true;
|
|
10593
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
10594
|
-
*/
|
|
10630
|
+
readonly indexed: true;
|
|
10595
10631
|
}, {
|
|
10596
10632
|
readonly name: "authorized";
|
|
10597
10633
|
readonly type: "bool";
|
|
@@ -10758,6 +10794,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10758
10794
|
readonly stateMutability: "view";
|
|
10759
10795
|
readonly inputs: readonly [{
|
|
10760
10796
|
readonly name: "txId";
|
|
10797
|
+
/**
|
|
10798
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
10799
|
+
*/
|
|
10761
10800
|
readonly type: "uint256";
|
|
10762
10801
|
}];
|
|
10763
10802
|
readonly outputs: readonly [{
|
|
@@ -10921,9 +10960,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10921
10960
|
readonly inputs: readonly [{
|
|
10922
10961
|
readonly name: "operator";
|
|
10923
10962
|
readonly type: "address";
|
|
10924
|
-
readonly indexed: true;
|
|
10925
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
10926
|
-
*/
|
|
10963
|
+
readonly indexed: true;
|
|
10927
10964
|
}, {
|
|
10928
10965
|
readonly name: "authorized";
|
|
10929
10966
|
readonly type: "bool";
|
|
@@ -11089,6 +11126,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11089
11126
|
readonly stateMutability: "view";
|
|
11090
11127
|
readonly inputs: readonly [{
|
|
11091
11128
|
readonly name: "txId";
|
|
11129
|
+
/**
|
|
11130
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
11131
|
+
*/
|
|
11092
11132
|
readonly type: "uint256";
|
|
11093
11133
|
}];
|
|
11094
11134
|
readonly outputs: readonly [{
|
|
@@ -11252,9 +11292,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11252
11292
|
readonly inputs: readonly [{
|
|
11253
11293
|
readonly name: "operator";
|
|
11254
11294
|
readonly type: "address";
|
|
11255
|
-
readonly indexed: true;
|
|
11256
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
11257
|
-
*/
|
|
11295
|
+
readonly indexed: true;
|
|
11258
11296
|
}, {
|
|
11259
11297
|
readonly name: "authorized";
|
|
11260
11298
|
readonly type: "bool";
|
|
@@ -11421,6 +11459,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11421
11459
|
readonly stateMutability: "view";
|
|
11422
11460
|
readonly inputs: readonly [{
|
|
11423
11461
|
readonly name: "txId";
|
|
11462
|
+
/**
|
|
11463
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
11464
|
+
*/
|
|
11424
11465
|
readonly type: "uint256";
|
|
11425
11466
|
}];
|
|
11426
11467
|
readonly outputs: readonly [{
|
|
@@ -11584,9 +11625,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11584
11625
|
readonly inputs: readonly [{
|
|
11585
11626
|
readonly name: "operator";
|
|
11586
11627
|
readonly type: "address";
|
|
11587
|
-
readonly indexed: true;
|
|
11588
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
11589
|
-
*/
|
|
11628
|
+
readonly indexed: true;
|
|
11590
11629
|
}, {
|
|
11591
11630
|
readonly name: "authorized";
|
|
11592
11631
|
readonly type: "bool";
|
|
@@ -11752,6 +11791,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11752
11791
|
readonly stateMutability: "view";
|
|
11753
11792
|
readonly inputs: readonly [{
|
|
11754
11793
|
readonly name: "txId";
|
|
11794
|
+
/**
|
|
11795
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
11796
|
+
*/
|
|
11755
11797
|
readonly type: "uint256";
|
|
11756
11798
|
}];
|
|
11757
11799
|
readonly outputs: readonly [{
|
|
@@ -11915,9 +11957,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11915
11957
|
readonly inputs: readonly [{
|
|
11916
11958
|
readonly name: "operator";
|
|
11917
11959
|
readonly type: "address";
|
|
11918
|
-
readonly indexed: true;
|
|
11919
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
11920
|
-
*/
|
|
11960
|
+
readonly indexed: true;
|
|
11921
11961
|
}, {
|
|
11922
11962
|
readonly name: "authorized";
|
|
11923
11963
|
readonly type: "bool";
|
|
@@ -12084,6 +12124,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12084
12124
|
readonly stateMutability: "view";
|
|
12085
12125
|
readonly inputs: readonly [{
|
|
12086
12126
|
readonly name: "txId";
|
|
12127
|
+
/**
|
|
12128
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
12129
|
+
*/
|
|
12087
12130
|
readonly type: "uint256";
|
|
12088
12131
|
}];
|
|
12089
12132
|
readonly outputs: readonly [{
|
|
@@ -12247,9 +12290,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12247
12290
|
readonly inputs: readonly [{
|
|
12248
12291
|
readonly name: "operator";
|
|
12249
12292
|
readonly type: "address";
|
|
12250
|
-
readonly indexed: true;
|
|
12251
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
12252
|
-
*/
|
|
12293
|
+
readonly indexed: true;
|
|
12253
12294
|
}, {
|
|
12254
12295
|
readonly name: "authorized";
|
|
12255
12296
|
readonly type: "bool";
|
|
@@ -12415,6 +12456,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12415
12456
|
readonly stateMutability: "view";
|
|
12416
12457
|
readonly inputs: readonly [{
|
|
12417
12458
|
readonly name: "txId";
|
|
12459
|
+
/**
|
|
12460
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
12461
|
+
*/
|
|
12418
12462
|
readonly type: "uint256";
|
|
12419
12463
|
}];
|
|
12420
12464
|
readonly outputs: readonly [{
|
|
@@ -12578,9 +12622,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12578
12622
|
readonly inputs: readonly [{
|
|
12579
12623
|
readonly name: "operator";
|
|
12580
12624
|
readonly type: "address";
|
|
12581
|
-
readonly indexed: true;
|
|
12582
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
12583
|
-
*/
|
|
12625
|
+
readonly indexed: true;
|
|
12584
12626
|
}, {
|
|
12585
12627
|
readonly name: "authorized";
|
|
12586
12628
|
readonly type: "bool";
|
|
@@ -12766,6 +12808,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12766
12808
|
readonly stateMutability: "view";
|
|
12767
12809
|
readonly inputs: readonly [{
|
|
12768
12810
|
readonly name: "txId";
|
|
12811
|
+
/**
|
|
12812
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
12813
|
+
*/
|
|
12769
12814
|
readonly type: "uint256";
|
|
12770
12815
|
}];
|
|
12771
12816
|
readonly outputs: readonly [{
|
|
@@ -12929,9 +12974,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12929
12974
|
readonly inputs: readonly [{
|
|
12930
12975
|
readonly name: "operator";
|
|
12931
12976
|
readonly type: "address";
|
|
12932
|
-
readonly indexed: true;
|
|
12933
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
12934
|
-
*/
|
|
12977
|
+
readonly indexed: true;
|
|
12935
12978
|
}, {
|
|
12936
12979
|
readonly name: "authorized";
|
|
12937
12980
|
readonly type: "bool";
|
|
@@ -13111,6 +13154,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13111
13154
|
readonly stateMutability: "view";
|
|
13112
13155
|
readonly inputs: readonly [{
|
|
13113
13156
|
readonly name: "txId";
|
|
13157
|
+
/**
|
|
13158
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
13159
|
+
*/
|
|
13114
13160
|
readonly type: "uint256";
|
|
13115
13161
|
}];
|
|
13116
13162
|
readonly outputs: readonly [{
|
|
@@ -13274,9 +13320,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13274
13320
|
readonly inputs: readonly [{
|
|
13275
13321
|
readonly name: "operator";
|
|
13276
13322
|
readonly type: "address";
|
|
13277
|
-
readonly indexed: true;
|
|
13278
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
13279
|
-
*/
|
|
13323
|
+
readonly indexed: true;
|
|
13280
13324
|
}, {
|
|
13281
13325
|
readonly name: "authorized";
|
|
13282
13326
|
readonly type: "bool";
|
|
@@ -13456,6 +13500,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13456
13500
|
readonly stateMutability: "view";
|
|
13457
13501
|
readonly inputs: readonly [{
|
|
13458
13502
|
readonly name: "txId";
|
|
13503
|
+
/**
|
|
13504
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
13505
|
+
*/
|
|
13459
13506
|
readonly type: "uint256";
|
|
13460
13507
|
}];
|
|
13461
13508
|
readonly outputs: readonly [{
|
|
@@ -13619,9 +13666,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13619
13666
|
readonly inputs: readonly [{
|
|
13620
13667
|
readonly name: "operator";
|
|
13621
13668
|
readonly type: "address";
|
|
13622
|
-
readonly indexed: true;
|
|
13623
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
13624
|
-
*/
|
|
13669
|
+
readonly indexed: true;
|
|
13625
13670
|
}, {
|
|
13626
13671
|
readonly name: "authorized";
|
|
13627
13672
|
readonly type: "bool";
|
|
@@ -13805,6 +13850,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13805
13850
|
readonly stateMutability: "view";
|
|
13806
13851
|
readonly inputs: readonly [{
|
|
13807
13852
|
readonly name: "txId";
|
|
13853
|
+
/**
|
|
13854
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
13855
|
+
*/
|
|
13808
13856
|
readonly type: "uint256";
|
|
13809
13857
|
}];
|
|
13810
13858
|
readonly outputs: readonly [{
|
|
@@ -13968,9 +14016,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13968
14016
|
readonly inputs: readonly [{
|
|
13969
14017
|
readonly name: "operator";
|
|
13970
14018
|
readonly type: "address";
|
|
13971
|
-
readonly indexed: true;
|
|
13972
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
13973
|
-
*/
|
|
14019
|
+
readonly indexed: true;
|
|
13974
14020
|
}, {
|
|
13975
14021
|
readonly name: "authorized";
|
|
13976
14022
|
readonly type: "bool";
|
|
@@ -14150,6 +14196,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14150
14196
|
readonly stateMutability: "view";
|
|
14151
14197
|
readonly inputs: readonly [{
|
|
14152
14198
|
readonly name: "txId";
|
|
14199
|
+
/**
|
|
14200
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
14201
|
+
*/
|
|
14153
14202
|
readonly type: "uint256";
|
|
14154
14203
|
}];
|
|
14155
14204
|
readonly outputs: readonly [{
|
|
@@ -14313,9 +14362,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14313
14362
|
readonly inputs: readonly [{
|
|
14314
14363
|
readonly name: "operator";
|
|
14315
14364
|
readonly type: "address";
|
|
14316
|
-
readonly indexed: true;
|
|
14317
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
14318
|
-
*/
|
|
14365
|
+
readonly indexed: true;
|
|
14319
14366
|
}, {
|
|
14320
14367
|
readonly name: "authorized";
|
|
14321
14368
|
readonly type: "bool";
|
|
@@ -14495,6 +14542,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14495
14542
|
readonly stateMutability: "view";
|
|
14496
14543
|
readonly inputs: readonly [{
|
|
14497
14544
|
readonly name: "txId";
|
|
14545
|
+
/**
|
|
14546
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
14547
|
+
*/
|
|
14498
14548
|
readonly type: "uint256";
|
|
14499
14549
|
}];
|
|
14500
14550
|
readonly outputs: readonly [{
|
|
@@ -14658,9 +14708,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14658
14708
|
readonly inputs: readonly [{
|
|
14659
14709
|
readonly name: "operator";
|
|
14660
14710
|
readonly type: "address";
|
|
14661
|
-
readonly indexed: true;
|
|
14662
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
14663
|
-
*/
|
|
14711
|
+
readonly indexed: true;
|
|
14664
14712
|
}, {
|
|
14665
14713
|
readonly name: "authorized";
|
|
14666
14714
|
readonly type: "bool";
|
|
@@ -14837,6 +14885,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14837
14885
|
readonly stateMutability: "view";
|
|
14838
14886
|
readonly inputs: readonly [{
|
|
14839
14887
|
readonly name: "txId";
|
|
14888
|
+
/**
|
|
14889
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
14890
|
+
*/
|
|
14840
14891
|
readonly type: "uint256";
|
|
14841
14892
|
}];
|
|
14842
14893
|
readonly outputs: readonly [{
|
|
@@ -15000,9 +15051,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15000
15051
|
readonly inputs: readonly [{
|
|
15001
15052
|
readonly name: "operator";
|
|
15002
15053
|
readonly type: "address";
|
|
15003
|
-
readonly indexed: true;
|
|
15004
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
15005
|
-
*/
|
|
15054
|
+
readonly indexed: true;
|
|
15006
15055
|
}, {
|
|
15007
15056
|
readonly name: "authorized";
|
|
15008
15057
|
readonly type: "bool";
|
|
@@ -15176,6 +15225,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15176
15225
|
readonly stateMutability: "view";
|
|
15177
15226
|
readonly inputs: readonly [{
|
|
15178
15227
|
readonly name: "txId";
|
|
15228
|
+
/**
|
|
15229
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
15230
|
+
*/
|
|
15179
15231
|
readonly type: "uint256";
|
|
15180
15232
|
}];
|
|
15181
15233
|
readonly outputs: readonly [{
|
|
@@ -15339,9 +15391,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15339
15391
|
readonly inputs: readonly [{
|
|
15340
15392
|
readonly name: "operator";
|
|
15341
15393
|
readonly type: "address";
|
|
15342
|
-
readonly indexed: true;
|
|
15343
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
15344
|
-
*/
|
|
15394
|
+
readonly indexed: true;
|
|
15345
15395
|
}, {
|
|
15346
15396
|
readonly name: "authorized";
|
|
15347
15397
|
readonly type: "bool";
|
|
@@ -15515,6 +15565,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15515
15565
|
readonly stateMutability: "view";
|
|
15516
15566
|
readonly inputs: readonly [{
|
|
15517
15567
|
readonly name: "txId";
|
|
15568
|
+
/**
|
|
15569
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
15570
|
+
*/
|
|
15518
15571
|
readonly type: "uint256";
|
|
15519
15572
|
}];
|
|
15520
15573
|
readonly outputs: readonly [{
|
|
@@ -15678,9 +15731,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15678
15731
|
readonly inputs: readonly [{
|
|
15679
15732
|
readonly name: "operator";
|
|
15680
15733
|
readonly type: "address";
|
|
15681
|
-
readonly indexed: true;
|
|
15682
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
15683
|
-
*/
|
|
15734
|
+
readonly indexed: true;
|
|
15684
15735
|
}, {
|
|
15685
15736
|
readonly name: "authorized";
|
|
15686
15737
|
readonly type: "bool";
|
|
@@ -15855,6 +15906,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15855
15906
|
readonly stateMutability: "view";
|
|
15856
15907
|
readonly inputs: readonly [{
|
|
15857
15908
|
readonly name: "txId";
|
|
15909
|
+
/**
|
|
15910
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
15911
|
+
*/
|
|
15858
15912
|
readonly type: "uint256";
|
|
15859
15913
|
}];
|
|
15860
15914
|
readonly outputs: readonly [{
|
|
@@ -16018,9 +16072,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16018
16072
|
readonly inputs: readonly [{
|
|
16019
16073
|
readonly name: "operator";
|
|
16020
16074
|
readonly type: "address";
|
|
16021
|
-
readonly indexed: true;
|
|
16022
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
16023
|
-
*/
|
|
16075
|
+
readonly indexed: true;
|
|
16024
16076
|
}, {
|
|
16025
16077
|
readonly name: "authorized";
|
|
16026
16078
|
readonly type: "bool";
|
|
@@ -16194,6 +16246,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16194
16246
|
readonly stateMutability: "view";
|
|
16195
16247
|
readonly inputs: readonly [{
|
|
16196
16248
|
readonly name: "txId";
|
|
16249
|
+
/**
|
|
16250
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
16251
|
+
*/
|
|
16197
16252
|
readonly type: "uint256";
|
|
16198
16253
|
}];
|
|
16199
16254
|
readonly outputs: readonly [{
|
|
@@ -16357,9 +16412,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16357
16412
|
readonly inputs: readonly [{
|
|
16358
16413
|
readonly name: "operator";
|
|
16359
16414
|
readonly type: "address";
|
|
16360
|
-
readonly indexed: true;
|
|
16361
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
16362
|
-
*/
|
|
16415
|
+
readonly indexed: true;
|
|
16363
16416
|
}, {
|
|
16364
16417
|
readonly name: "authorized";
|
|
16365
16418
|
readonly type: "bool";
|
|
@@ -16533,6 +16586,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16533
16586
|
readonly stateMutability: "view";
|
|
16534
16587
|
readonly inputs: readonly [{
|
|
16535
16588
|
readonly name: "txId";
|
|
16589
|
+
/**
|
|
16590
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
16591
|
+
*/
|
|
16536
16592
|
readonly type: "uint256";
|
|
16537
16593
|
}];
|
|
16538
16594
|
readonly outputs: readonly [{
|
|
@@ -16696,9 +16752,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16696
16752
|
readonly inputs: readonly [{
|
|
16697
16753
|
readonly name: "operator";
|
|
16698
16754
|
readonly type: "address";
|
|
16699
|
-
readonly indexed: true;
|
|
16700
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
16701
|
-
*/
|
|
16755
|
+
readonly indexed: true;
|
|
16702
16756
|
}, {
|
|
16703
16757
|
readonly name: "authorized";
|
|
16704
16758
|
readonly type: "bool";
|
|
@@ -16876,6 +16930,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16876
16930
|
readonly stateMutability: "view";
|
|
16877
16931
|
readonly inputs: readonly [{
|
|
16878
16932
|
readonly name: "txId";
|
|
16933
|
+
/**
|
|
16934
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
16935
|
+
*/
|
|
16879
16936
|
readonly type: "uint256";
|
|
16880
16937
|
}];
|
|
16881
16938
|
readonly outputs: readonly [{
|
|
@@ -17039,9 +17096,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17039
17096
|
readonly inputs: readonly [{
|
|
17040
17097
|
readonly name: "operator";
|
|
17041
17098
|
readonly type: "address";
|
|
17042
|
-
readonly indexed: true;
|
|
17043
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
17044
|
-
*/
|
|
17099
|
+
readonly indexed: true;
|
|
17045
17100
|
}, {
|
|
17046
17101
|
readonly name: "authorized";
|
|
17047
17102
|
readonly type: "bool";
|
|
@@ -17218,6 +17273,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17218
17273
|
readonly stateMutability: "view";
|
|
17219
17274
|
readonly inputs: readonly [{
|
|
17220
17275
|
readonly name: "txId";
|
|
17276
|
+
/**
|
|
17277
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
17278
|
+
*/
|
|
17221
17279
|
readonly type: "uint256";
|
|
17222
17280
|
}];
|
|
17223
17281
|
readonly outputs: readonly [{
|
|
@@ -17381,9 +17439,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17381
17439
|
readonly inputs: readonly [{
|
|
17382
17440
|
readonly name: "operator";
|
|
17383
17441
|
readonly type: "address";
|
|
17384
|
-
readonly indexed: true;
|
|
17385
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
17386
|
-
*/
|
|
17442
|
+
readonly indexed: true;
|
|
17387
17443
|
}, {
|
|
17388
17444
|
readonly name: "authorized";
|
|
17389
17445
|
readonly type: "bool";
|
|
@@ -17560,6 +17616,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17560
17616
|
readonly stateMutability: "view";
|
|
17561
17617
|
readonly inputs: readonly [{
|
|
17562
17618
|
readonly name: "txId";
|
|
17619
|
+
/**
|
|
17620
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
17621
|
+
*/
|
|
17563
17622
|
readonly type: "uint256";
|
|
17564
17623
|
}];
|
|
17565
17624
|
readonly outputs: readonly [{
|
|
@@ -17723,9 +17782,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17723
17782
|
readonly inputs: readonly [{
|
|
17724
17783
|
readonly name: "operator";
|
|
17725
17784
|
readonly type: "address";
|
|
17726
|
-
readonly indexed: true;
|
|
17727
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
17728
|
-
*/
|
|
17785
|
+
readonly indexed: true;
|
|
17729
17786
|
}, {
|
|
17730
17787
|
readonly name: "authorized";
|
|
17731
17788
|
readonly type: "bool";
|
|
@@ -17903,6 +17960,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17903
17960
|
readonly stateMutability: "view";
|
|
17904
17961
|
readonly inputs: readonly [{
|
|
17905
17962
|
readonly name: "txId";
|
|
17963
|
+
/**
|
|
17964
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
17965
|
+
*/
|
|
17906
17966
|
readonly type: "uint256";
|
|
17907
17967
|
}];
|
|
17908
17968
|
readonly outputs: readonly [{
|
|
@@ -18066,9 +18126,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18066
18126
|
readonly inputs: readonly [{
|
|
18067
18127
|
readonly name: "operator";
|
|
18068
18128
|
readonly type: "address";
|
|
18069
|
-
readonly indexed: true;
|
|
18070
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
18071
|
-
*/
|
|
18129
|
+
readonly indexed: true;
|
|
18072
18130
|
}, {
|
|
18073
18131
|
readonly name: "authorized";
|
|
18074
18132
|
readonly type: "bool";
|
|
@@ -18245,6 +18303,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18245
18303
|
readonly stateMutability: "view";
|
|
18246
18304
|
readonly inputs: readonly [{
|
|
18247
18305
|
readonly name: "txId";
|
|
18306
|
+
/**
|
|
18307
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
18308
|
+
*/
|
|
18248
18309
|
readonly type: "uint256";
|
|
18249
18310
|
}];
|
|
18250
18311
|
readonly outputs: readonly [{
|
|
@@ -18408,9 +18469,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18408
18469
|
readonly inputs: readonly [{
|
|
18409
18470
|
readonly name: "operator";
|
|
18410
18471
|
readonly type: "address";
|
|
18411
|
-
readonly indexed: true;
|
|
18412
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
18413
|
-
*/
|
|
18472
|
+
readonly indexed: true;
|
|
18414
18473
|
}, {
|
|
18415
18474
|
readonly name: "authorized";
|
|
18416
18475
|
readonly type: "bool";
|
|
@@ -18587,6 +18646,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18587
18646
|
readonly stateMutability: "view";
|
|
18588
18647
|
readonly inputs: readonly [{
|
|
18589
18648
|
readonly name: "txId";
|
|
18649
|
+
/**
|
|
18650
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
18651
|
+
*/
|
|
18590
18652
|
readonly type: "uint256";
|
|
18591
18653
|
}];
|
|
18592
18654
|
readonly outputs: readonly [{
|
|
@@ -18750,9 +18812,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18750
18812
|
readonly inputs: readonly [{
|
|
18751
18813
|
readonly name: "operator";
|
|
18752
18814
|
readonly type: "address";
|
|
18753
|
-
readonly indexed: true;
|
|
18754
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
18755
|
-
*/
|
|
18815
|
+
readonly indexed: true;
|
|
18756
18816
|
}, {
|
|
18757
18817
|
readonly name: "authorized";
|
|
18758
18818
|
readonly type: "bool";
|
|
@@ -18923,6 +18983,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18923
18983
|
readonly stateMutability: "view";
|
|
18924
18984
|
readonly inputs: readonly [{
|
|
18925
18985
|
readonly name: "txId";
|
|
18986
|
+
/**
|
|
18987
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
18988
|
+
*/
|
|
18926
18989
|
readonly type: "uint256";
|
|
18927
18990
|
}];
|
|
18928
18991
|
readonly outputs: readonly [{
|
|
@@ -19086,9 +19149,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19086
19149
|
readonly inputs: readonly [{
|
|
19087
19150
|
readonly name: "operator";
|
|
19088
19151
|
readonly type: "address";
|
|
19089
|
-
readonly indexed: true;
|
|
19090
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
19091
|
-
*/
|
|
19152
|
+
readonly indexed: true;
|
|
19092
19153
|
}, {
|
|
19093
19154
|
readonly name: "authorized";
|
|
19094
19155
|
readonly type: "bool";
|
|
@@ -19254,6 +19315,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19254
19315
|
readonly stateMutability: "view";
|
|
19255
19316
|
readonly inputs: readonly [{
|
|
19256
19317
|
readonly name: "txId";
|
|
19318
|
+
/**
|
|
19319
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
19320
|
+
*/
|
|
19257
19321
|
readonly type: "uint256";
|
|
19258
19322
|
}];
|
|
19259
19323
|
readonly outputs: readonly [{
|
|
@@ -19417,9 +19481,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19417
19481
|
readonly inputs: readonly [{
|
|
19418
19482
|
readonly name: "operator";
|
|
19419
19483
|
readonly type: "address";
|
|
19420
|
-
readonly indexed: true;
|
|
19421
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
19422
|
-
*/
|
|
19484
|
+
readonly indexed: true;
|
|
19423
19485
|
}, {
|
|
19424
19486
|
readonly name: "authorized";
|
|
19425
19487
|
readonly type: "bool";
|
|
@@ -19586,6 +19648,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19586
19648
|
readonly stateMutability: "view";
|
|
19587
19649
|
readonly inputs: readonly [{
|
|
19588
19650
|
readonly name: "txId";
|
|
19651
|
+
/**
|
|
19652
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
19653
|
+
*/
|
|
19589
19654
|
readonly type: "uint256";
|
|
19590
19655
|
}];
|
|
19591
19656
|
readonly outputs: readonly [{
|
|
@@ -19749,9 +19814,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19749
19814
|
readonly inputs: readonly [{
|
|
19750
19815
|
readonly name: "operator";
|
|
19751
19816
|
readonly type: "address";
|
|
19752
|
-
readonly indexed: true;
|
|
19753
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
19754
|
-
*/
|
|
19817
|
+
readonly indexed: true;
|
|
19755
19818
|
}, {
|
|
19756
19819
|
readonly name: "authorized";
|
|
19757
19820
|
readonly type: "bool";
|
|
@@ -19917,6 +19980,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19917
19980
|
readonly stateMutability: "view";
|
|
19918
19981
|
readonly inputs: readonly [{
|
|
19919
19982
|
readonly name: "txId";
|
|
19983
|
+
/**
|
|
19984
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
19985
|
+
*/
|
|
19920
19986
|
readonly type: "uint256";
|
|
19921
19987
|
}];
|
|
19922
19988
|
readonly outputs: readonly [{
|
|
@@ -20080,9 +20146,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20080
20146
|
readonly inputs: readonly [{
|
|
20081
20147
|
readonly name: "operator";
|
|
20082
20148
|
readonly type: "address";
|
|
20083
|
-
readonly indexed: true;
|
|
20084
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
20085
|
-
*/
|
|
20149
|
+
readonly indexed: true;
|
|
20086
20150
|
}, {
|
|
20087
20151
|
readonly name: "authorized";
|
|
20088
20152
|
readonly type: "bool";
|
|
@@ -20249,6 +20313,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20249
20313
|
readonly stateMutability: "view";
|
|
20250
20314
|
readonly inputs: readonly [{
|
|
20251
20315
|
readonly name: "txId";
|
|
20316
|
+
/**
|
|
20317
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
20318
|
+
*/
|
|
20252
20319
|
readonly type: "uint256";
|
|
20253
20320
|
}];
|
|
20254
20321
|
readonly outputs: readonly [{
|
|
@@ -20412,9 +20479,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20412
20479
|
readonly inputs: readonly [{
|
|
20413
20480
|
readonly name: "operator";
|
|
20414
20481
|
readonly type: "address";
|
|
20415
|
-
readonly indexed: true;
|
|
20416
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
20417
|
-
*/
|
|
20482
|
+
readonly indexed: true;
|
|
20418
20483
|
}, {
|
|
20419
20484
|
readonly name: "authorized";
|
|
20420
20485
|
readonly type: "bool";
|
|
@@ -20580,6 +20645,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20580
20645
|
readonly stateMutability: "view";
|
|
20581
20646
|
readonly inputs: readonly [{
|
|
20582
20647
|
readonly name: "txId";
|
|
20648
|
+
/**
|
|
20649
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
20650
|
+
*/
|
|
20583
20651
|
readonly type: "uint256";
|
|
20584
20652
|
}];
|
|
20585
20653
|
readonly outputs: readonly [{
|
|
@@ -20743,9 +20811,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20743
20811
|
readonly inputs: readonly [{
|
|
20744
20812
|
readonly name: "operator";
|
|
20745
20813
|
readonly type: "address";
|
|
20746
|
-
readonly indexed: true;
|
|
20747
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
20748
|
-
*/
|
|
20814
|
+
readonly indexed: true;
|
|
20749
20815
|
}, {
|
|
20750
20816
|
readonly name: "authorized";
|
|
20751
20817
|
readonly type: "bool";
|
|
@@ -20912,6 +20978,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20912
20978
|
readonly stateMutability: "view";
|
|
20913
20979
|
readonly inputs: readonly [{
|
|
20914
20980
|
readonly name: "txId";
|
|
20981
|
+
/**
|
|
20982
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
20983
|
+
*/
|
|
20915
20984
|
readonly type: "uint256";
|
|
20916
20985
|
}];
|
|
20917
20986
|
readonly outputs: readonly [{
|
|
@@ -21075,9 +21144,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21075
21144
|
readonly inputs: readonly [{
|
|
21076
21145
|
readonly name: "operator";
|
|
21077
21146
|
readonly type: "address";
|
|
21078
|
-
readonly indexed: true;
|
|
21079
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
21080
|
-
*/
|
|
21147
|
+
readonly indexed: true;
|
|
21081
21148
|
}, {
|
|
21082
21149
|
readonly name: "authorized";
|
|
21083
21150
|
readonly type: "bool";
|
|
@@ -21243,6 +21310,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21243
21310
|
readonly stateMutability: "view";
|
|
21244
21311
|
readonly inputs: readonly [{
|
|
21245
21312
|
readonly name: "txId";
|
|
21313
|
+
/**
|
|
21314
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
21315
|
+
*/
|
|
21246
21316
|
readonly type: "uint256";
|
|
21247
21317
|
}];
|
|
21248
21318
|
readonly outputs: readonly [{
|
|
@@ -21406,9 +21476,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21406
21476
|
readonly inputs: readonly [{
|
|
21407
21477
|
readonly name: "operator";
|
|
21408
21478
|
readonly type: "address";
|
|
21409
|
-
readonly indexed: true;
|
|
21410
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
21411
|
-
*/
|
|
21479
|
+
readonly indexed: true;
|
|
21412
21480
|
}, {
|
|
21413
21481
|
readonly name: "authorized";
|
|
21414
21482
|
readonly type: "bool";
|
|
@@ -21575,6 +21643,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21575
21643
|
readonly stateMutability: "view";
|
|
21576
21644
|
readonly inputs: readonly [{
|
|
21577
21645
|
readonly name: "txId";
|
|
21646
|
+
/**
|
|
21647
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
21648
|
+
*/
|
|
21578
21649
|
readonly type: "uint256";
|
|
21579
21650
|
}];
|
|
21580
21651
|
readonly outputs: readonly [{
|
|
@@ -21738,9 +21809,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21738
21809
|
readonly inputs: readonly [{
|
|
21739
21810
|
readonly name: "operator";
|
|
21740
21811
|
readonly type: "address";
|
|
21741
|
-
readonly indexed: true;
|
|
21742
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
21743
|
-
*/
|
|
21812
|
+
readonly indexed: true;
|
|
21744
21813
|
}, {
|
|
21745
21814
|
readonly name: "authorized";
|
|
21746
21815
|
readonly type: "bool";
|
|
@@ -21906,6 +21975,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21906
21975
|
readonly stateMutability: "view";
|
|
21907
21976
|
readonly inputs: readonly [{
|
|
21908
21977
|
readonly name: "txId";
|
|
21978
|
+
/**
|
|
21979
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
21980
|
+
*/
|
|
21909
21981
|
readonly type: "uint256";
|
|
21910
21982
|
}];
|
|
21911
21983
|
readonly outputs: readonly [{
|
|
@@ -22069,9 +22141,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22069
22141
|
readonly inputs: readonly [{
|
|
22070
22142
|
readonly name: "operator";
|
|
22071
22143
|
readonly type: "address";
|
|
22072
|
-
readonly indexed: true;
|
|
22073
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
22074
|
-
*/
|
|
22144
|
+
readonly indexed: true;
|
|
22075
22145
|
}, {
|
|
22076
22146
|
readonly name: "authorized";
|
|
22077
22147
|
readonly type: "bool";
|
|
@@ -22238,6 +22308,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22238
22308
|
readonly stateMutability: "view";
|
|
22239
22309
|
readonly inputs: readonly [{
|
|
22240
22310
|
readonly name: "txId";
|
|
22311
|
+
/**
|
|
22312
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
22313
|
+
*/
|
|
22241
22314
|
readonly type: "uint256";
|
|
22242
22315
|
}];
|
|
22243
22316
|
readonly outputs: readonly [{
|
|
@@ -22401,9 +22474,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22401
22474
|
readonly inputs: readonly [{
|
|
22402
22475
|
readonly name: "operator";
|
|
22403
22476
|
readonly type: "address";
|
|
22404
|
-
readonly indexed: true;
|
|
22405
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
22406
|
-
*/
|
|
22477
|
+
readonly indexed: true;
|
|
22407
22478
|
}, {
|
|
22408
22479
|
readonly name: "authorized";
|
|
22409
22480
|
readonly type: "bool";
|
|
@@ -22569,6 +22640,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22569
22640
|
readonly stateMutability: "view";
|
|
22570
22641
|
readonly inputs: readonly [{
|
|
22571
22642
|
readonly name: "txId";
|
|
22643
|
+
/**
|
|
22644
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
22645
|
+
*/
|
|
22572
22646
|
readonly type: "uint256";
|
|
22573
22647
|
}];
|
|
22574
22648
|
readonly outputs: readonly [{
|
|
@@ -22732,9 +22806,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22732
22806
|
readonly inputs: readonly [{
|
|
22733
22807
|
readonly name: "operator";
|
|
22734
22808
|
readonly type: "address";
|
|
22735
|
-
readonly indexed: true;
|
|
22736
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
22737
|
-
*/
|
|
22809
|
+
readonly indexed: true;
|
|
22738
22810
|
}, {
|
|
22739
22811
|
readonly name: "authorized";
|
|
22740
22812
|
readonly type: "bool";
|
|
@@ -22901,6 +22973,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22901
22973
|
readonly stateMutability: "view";
|
|
22902
22974
|
readonly inputs: readonly [{
|
|
22903
22975
|
readonly name: "txId";
|
|
22976
|
+
/**
|
|
22977
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
22978
|
+
*/
|
|
22904
22979
|
readonly type: "uint256";
|
|
22905
22980
|
}];
|
|
22906
22981
|
readonly outputs: readonly [{
|
|
@@ -23064,9 +23139,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23064
23139
|
readonly inputs: readonly [{
|
|
23065
23140
|
readonly name: "operator";
|
|
23066
23141
|
readonly type: "address";
|
|
23067
|
-
readonly indexed: true;
|
|
23068
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
23069
|
-
*/
|
|
23142
|
+
readonly indexed: true;
|
|
23070
23143
|
}, {
|
|
23071
23144
|
readonly name: "authorized";
|
|
23072
23145
|
readonly type: "bool";
|
|
@@ -23232,6 +23305,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23232
23305
|
readonly stateMutability: "view";
|
|
23233
23306
|
readonly inputs: readonly [{
|
|
23234
23307
|
readonly name: "txId";
|
|
23308
|
+
/**
|
|
23309
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
23310
|
+
*/
|
|
23235
23311
|
readonly type: "uint256";
|
|
23236
23312
|
}];
|
|
23237
23313
|
readonly outputs: readonly [{
|
|
@@ -23395,9 +23471,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23395
23471
|
readonly inputs: readonly [{
|
|
23396
23472
|
readonly name: "operator";
|
|
23397
23473
|
readonly type: "address";
|
|
23398
|
-
readonly indexed: true;
|
|
23399
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
23400
|
-
*/
|
|
23474
|
+
readonly indexed: true;
|
|
23401
23475
|
}, {
|
|
23402
23476
|
readonly name: "authorized";
|
|
23403
23477
|
readonly type: "bool";
|
|
@@ -23566,6 +23640,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23566
23640
|
readonly stateMutability: "view";
|
|
23567
23641
|
readonly inputs: readonly [{
|
|
23568
23642
|
readonly name: "txId";
|
|
23643
|
+
/**
|
|
23644
|
+
* Create a wallet client connected to an existing AgentAccountV2.
|
|
23645
|
+
*/
|
|
23569
23646
|
readonly type: "uint256";
|
|
23570
23647
|
}];
|
|
23571
23648
|
readonly outputs: readonly [{
|
|
@@ -23729,9 +23806,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23729
23806
|
readonly inputs: readonly [{
|
|
23730
23807
|
readonly name: "operator";
|
|
23731
23808
|
readonly type: "address";
|
|
23732
|
-
readonly indexed: true;
|
|
23733
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
23734
|
-
*/
|
|
23809
|
+
readonly indexed: true;
|
|
23735
23810
|
}, {
|
|
23736
23811
|
readonly name: "authorized";
|
|
23737
23812
|
readonly type: "bool";
|
|
@@ -23882,6 +23957,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23882
23957
|
to: `0x${string}` | null;
|
|
23883
23958
|
value: bigint;
|
|
23884
23959
|
nonce: number;
|
|
23960
|
+
type: "legacy";
|
|
23885
23961
|
yParity?: undefined;
|
|
23886
23962
|
from: `0x${string}`;
|
|
23887
23963
|
gas: bigint;
|
|
@@ -23895,7 +23971,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23895
23971
|
authorizationList?: undefined;
|
|
23896
23972
|
blobVersionedHashes?: undefined;
|
|
23897
23973
|
chainId?: number | undefined;
|
|
23898
|
-
type: "legacy";
|
|
23899
23974
|
gasPrice: bigint;
|
|
23900
23975
|
maxFeePerBlobGas?: undefined;
|
|
23901
23976
|
maxFeePerGas?: undefined;
|
|
@@ -23907,6 +23982,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23907
23982
|
to: `0x${string}` | null;
|
|
23908
23983
|
value: bigint;
|
|
23909
23984
|
nonce: number;
|
|
23985
|
+
type: "eip2930";
|
|
23910
23986
|
yParity: number;
|
|
23911
23987
|
from: `0x${string}`;
|
|
23912
23988
|
gas: bigint;
|
|
@@ -23920,7 +23996,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23920
23996
|
authorizationList?: undefined;
|
|
23921
23997
|
blobVersionedHashes?: undefined;
|
|
23922
23998
|
chainId: number;
|
|
23923
|
-
type: "eip2930";
|
|
23924
23999
|
gasPrice: bigint;
|
|
23925
24000
|
maxFeePerBlobGas?: undefined;
|
|
23926
24001
|
maxFeePerGas?: undefined;
|
|
@@ -23932,6 +24007,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23932
24007
|
to: `0x${string}` | null;
|
|
23933
24008
|
value: bigint;
|
|
23934
24009
|
nonce: number;
|
|
24010
|
+
type: "eip1559";
|
|
23935
24011
|
yParity: number;
|
|
23936
24012
|
from: `0x${string}`;
|
|
23937
24013
|
gas: bigint;
|
|
@@ -23945,7 +24021,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23945
24021
|
authorizationList?: undefined;
|
|
23946
24022
|
blobVersionedHashes?: undefined;
|
|
23947
24023
|
chainId: number;
|
|
23948
|
-
type: "eip1559";
|
|
23949
24024
|
gasPrice?: undefined;
|
|
23950
24025
|
maxFeePerBlobGas?: undefined;
|
|
23951
24026
|
maxFeePerGas: bigint;
|
|
@@ -23957,6 +24032,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23957
24032
|
to: `0x${string}` | null;
|
|
23958
24033
|
value: bigint;
|
|
23959
24034
|
nonce: number;
|
|
24035
|
+
type: "eip4844";
|
|
23960
24036
|
yParity: number;
|
|
23961
24037
|
from: `0x${string}`;
|
|
23962
24038
|
gas: bigint;
|
|
@@ -23970,7 +24046,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23970
24046
|
authorizationList?: undefined;
|
|
23971
24047
|
blobVersionedHashes: readonly `0x${string}`[];
|
|
23972
24048
|
chainId: number;
|
|
23973
|
-
type: "eip4844";
|
|
23974
24049
|
gasPrice?: undefined;
|
|
23975
24050
|
maxFeePerBlobGas: bigint;
|
|
23976
24051
|
maxFeePerGas: bigint;
|
|
@@ -23982,6 +24057,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23982
24057
|
to: `0x${string}` | null;
|
|
23983
24058
|
value: bigint;
|
|
23984
24059
|
nonce: number;
|
|
24060
|
+
type: "eip7702";
|
|
23985
24061
|
yParity: number;
|
|
23986
24062
|
from: `0x${string}`;
|
|
23987
24063
|
gas: bigint;
|
|
@@ -23995,7 +24071,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23995
24071
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
23996
24072
|
blobVersionedHashes?: undefined;
|
|
23997
24073
|
chainId: number;
|
|
23998
|
-
type: "eip7702";
|
|
23999
24074
|
gasPrice?: undefined;
|
|
24000
24075
|
maxFeePerBlobGas?: undefined;
|
|
24001
24076
|
maxFeePerGas: bigint;
|
|
@@ -24069,6 +24144,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24069
24144
|
to: `0x${string}` | null;
|
|
24070
24145
|
value: bigint;
|
|
24071
24146
|
nonce: number;
|
|
24147
|
+
type: "legacy";
|
|
24072
24148
|
yParity?: undefined;
|
|
24073
24149
|
from: `0x${string}`;
|
|
24074
24150
|
gas: bigint;
|
|
@@ -24082,7 +24158,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24082
24158
|
authorizationList?: undefined;
|
|
24083
24159
|
blobVersionedHashes?: undefined;
|
|
24084
24160
|
chainId?: number | undefined;
|
|
24085
|
-
type: "legacy";
|
|
24086
24161
|
gasPrice: bigint;
|
|
24087
24162
|
maxFeePerBlobGas?: undefined;
|
|
24088
24163
|
maxFeePerGas?: undefined;
|
|
@@ -24094,6 +24169,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24094
24169
|
to: `0x${string}` | null;
|
|
24095
24170
|
value: bigint;
|
|
24096
24171
|
nonce: number;
|
|
24172
|
+
type: "eip2930";
|
|
24097
24173
|
yParity: number;
|
|
24098
24174
|
from: `0x${string}`;
|
|
24099
24175
|
gas: bigint;
|
|
@@ -24107,7 +24183,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24107
24183
|
authorizationList?: undefined;
|
|
24108
24184
|
blobVersionedHashes?: undefined;
|
|
24109
24185
|
chainId: number;
|
|
24110
|
-
type: "eip2930";
|
|
24111
24186
|
gasPrice: bigint;
|
|
24112
24187
|
maxFeePerBlobGas?: undefined;
|
|
24113
24188
|
maxFeePerGas?: undefined;
|
|
@@ -24119,6 +24194,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24119
24194
|
to: `0x${string}` | null;
|
|
24120
24195
|
value: bigint;
|
|
24121
24196
|
nonce: number;
|
|
24197
|
+
type: "eip1559";
|
|
24122
24198
|
yParity: number;
|
|
24123
24199
|
from: `0x${string}`;
|
|
24124
24200
|
gas: bigint;
|
|
@@ -24132,7 +24208,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24132
24208
|
authorizationList?: undefined;
|
|
24133
24209
|
blobVersionedHashes?: undefined;
|
|
24134
24210
|
chainId: number;
|
|
24135
|
-
type: "eip1559";
|
|
24136
24211
|
gasPrice?: undefined;
|
|
24137
24212
|
maxFeePerBlobGas?: undefined;
|
|
24138
24213
|
maxFeePerGas: bigint;
|
|
@@ -24144,6 +24219,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24144
24219
|
to: `0x${string}` | null;
|
|
24145
24220
|
value: bigint;
|
|
24146
24221
|
nonce: number;
|
|
24222
|
+
type: "eip4844";
|
|
24147
24223
|
yParity: number;
|
|
24148
24224
|
from: `0x${string}`;
|
|
24149
24225
|
gas: bigint;
|
|
@@ -24157,7 +24233,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24157
24233
|
authorizationList?: undefined;
|
|
24158
24234
|
blobVersionedHashes: readonly `0x${string}`[];
|
|
24159
24235
|
chainId: number;
|
|
24160
|
-
type: "eip4844";
|
|
24161
24236
|
gasPrice?: undefined;
|
|
24162
24237
|
maxFeePerBlobGas: bigint;
|
|
24163
24238
|
maxFeePerGas: bigint;
|
|
@@ -24169,6 +24244,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24169
24244
|
to: `0x${string}` | null;
|
|
24170
24245
|
value: bigint;
|
|
24171
24246
|
nonce: number;
|
|
24247
|
+
type: "eip7702";
|
|
24172
24248
|
yParity: number;
|
|
24173
24249
|
from: `0x${string}`;
|
|
24174
24250
|
gas: bigint;
|
|
@@ -24182,7 +24258,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24182
24258
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
24183
24259
|
blobVersionedHashes?: undefined;
|
|
24184
24260
|
chainId: number;
|
|
24185
|
-
type: "eip7702";
|
|
24186
24261
|
gasPrice?: undefined;
|
|
24187
24262
|
maxFeePerBlobGas?: undefined;
|
|
24188
24263
|
maxFeePerGas: bigint;
|
|
@@ -27447,7 +27522,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
27447
27522
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
27448
27523
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_69 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
27449
27524
|
chainId?: number | undefined;
|
|
27450
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "
|
|
27525
|
+
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "fees" | "gas" | "blobVersionedHashes" | "chainId") extends infer T_70 ? T_70 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "fees" | "gas" | "blobVersionedHashes" | "chainId") ? T_70 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_70 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T_44 ? { [K_8 in keyof T_44]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride_17>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, chainOverride_17> extends infer T_45 ? T_45 extends import("viem").DeriveChain<Chain, chainOverride_17> ? T_45 extends Chain ? {
|
|
27451
27526
|
chain: T_45;
|
|
27452
27527
|
} : {
|
|
27453
27528
|
chain?: undefined;
|
|
@@ -30699,7 +30774,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30699
30774
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
30700
30775
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_56 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
30701
30776
|
chainId?: number | undefined;
|
|
30702
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "
|
|
30777
|
+
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "fees" | "gas" | "blobVersionedHashes" | "chainId") extends infer T_57 ? T_57 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "fees" | "gas" | "blobVersionedHashes" | "chainId") ? T_57 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_57 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K_8]; } : never>;
|
|
30703
30778
|
readContract: <const abi_5 extends import("viem").Abi | readonly unknown[], functionName_1 extends import("viem").ContractFunctionName<abi_5, "view" | "pure">, const args_8 extends import("viem").ContractFunctionArgs<abi_5, "view" | "pure", functionName_1>>(args: import("viem").ReadContractParameters<abi_5, functionName_1, args>) => Promise<import("viem").ReadContractReturnType<abi_5, functionName_1, args>>;
|
|
30704
30779
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<`0x${string}`>;
|
|
30705
30780
|
sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<import("viem").TransactionReceipt>;
|
|
@@ -30710,14 +30785,14 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30710
30785
|
verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<boolean>;
|
|
30711
30786
|
verifyMessage: (args: {
|
|
30712
30787
|
address: `0x${string}`;
|
|
30713
|
-
|
|
30788
|
+
signature: `0x${string}` | import("viem").Signature | Uint8Array;
|
|
30714
30789
|
chain?: Chain | null | undefined;
|
|
30790
|
+
blockNumber?: bigint | undefined;
|
|
30715
30791
|
blockTag?: import("viem").BlockTag | undefined;
|
|
30716
30792
|
factory?: `0x${string}` | undefined;
|
|
30717
30793
|
factoryData?: `0x${string}` | undefined;
|
|
30718
30794
|
erc6492VerifierAddress?: `0x${string}` | undefined;
|
|
30719
30795
|
multicallAddress?: `0x${string}` | undefined;
|
|
30720
|
-
signature: `0x${string}` | import("viem").Signature | Uint8Array;
|
|
30721
30796
|
universalSignatureVerifierAddress?: `0x${string}` | undefined;
|
|
30722
30797
|
message: import("viem").SignableMessage;
|
|
30723
30798
|
}) => Promise<boolean>;
|
|
@@ -30756,7 +30831,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30756
30831
|
transport?: undefined;
|
|
30757
30832
|
type?: undefined;
|
|
30758
30833
|
uid?: undefined;
|
|
30759
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, Chain, undefined>, "prepareTransactionRequest" | "
|
|
30834
|
+
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, Chain, undefined>, "prepareTransactionRequest" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<Chain, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").HttpTransport<undefined, false>, Chain, undefined, import("viem").PublicRpcSchema, import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, Chain>>) => client) => import("viem").Client<import("viem").HttpTransport<undefined, false>, Chain, undefined, import("viem").PublicRpcSchema, { [K_9 in keyof client]: client[K_9]; } & import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, Chain>>;
|
|
30760
30835
|
};
|
|
30761
30836
|
walletClient: {
|
|
30762
30837
|
account: import("viem").Account | undefined;
|
|
@@ -34103,7 +34178,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
34103
34178
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
34104
34179
|
} ? "eip7702" : never) | (request_1["type"] extends string | undefined ? Extract<request_1["type"], string> : never)>) ? T_97 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
34105
34180
|
chainId?: number | undefined;
|
|
34106
|
-
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "
|
|
34181
|
+
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "type" | "fees" | "gas" | "blobVersionedHashes" | "chainId") extends infer T_98 ? T_98 extends (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "type" | "fees" | "gas" | "blobVersionedHashes" | "chainId") ? T_98 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_98 : never : never> & (unknown extends request_1["kzg"] ? {} : Pick<request_1, "kzg">) extends infer T_72 ? { [K_11 in keyof T_72]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain | undefined, chainOverride_21>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain | undefined, chainOverride_21> extends infer T_73 ? T_73 extends import("viem").DeriveChain<Chain | undefined, chainOverride_21> ? T_73 extends Chain ? {
|
|
34107
34182
|
chain: T_73;
|
|
34108
34183
|
} : {
|
|
34109
34184
|
chain?: undefined;
|
|
@@ -37355,7 +37430,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
37355
37430
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
37356
37431
|
} ? "eip7702" : never) | (request_1["type"] extends string | undefined ? Extract<request_1["type"], string> : never)>) ? T_84 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
37357
37432
|
chainId?: number | undefined;
|
|
37358
|
-
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "
|
|
37433
|
+
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "type" | "fees" | "gas" | "blobVersionedHashes" | "chainId") extends infer T_85 ? T_85 extends (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "type" | "fees" | "gas" | "blobVersionedHashes" | "chainId") ? T_85 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_85 : never : never> & (unknown extends request_1["kzg"] ? {} : Pick<request_1, "kzg">))[K_11]; } : never>;
|
|
37359
37434
|
requestAddresses: () => Promise<import("viem").RequestAddressesReturnType>;
|
|
37360
37435
|
requestPermissions: (args: {
|
|
37361
37436
|
[x: string]: Record<string, any>;
|
|
@@ -38295,6 +38370,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38295
38370
|
[x: `bytes7[${string}]`]: undefined;
|
|
38296
38371
|
[x: `bytes5[${string}]`]: undefined;
|
|
38297
38372
|
[x: `bytes23[${string}]`]: undefined;
|
|
38373
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
38298
38374
|
[x: `bytes18[${string}]`]: undefined;
|
|
38299
38375
|
[x: `bytes6[${string}]`]: undefined;
|
|
38300
38376
|
[x: `bytes8[${string}]`]: undefined;
|
|
@@ -38303,7 +38379,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38303
38379
|
[x: `bytes11[${string}]`]: undefined;
|
|
38304
38380
|
[x: `bytes12[${string}]`]: undefined;
|
|
38305
38381
|
[x: `bytes13[${string}]`]: undefined;
|
|
38306
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
38307
38382
|
[x: `bytes15[${string}]`]: undefined;
|
|
38308
38383
|
[x: `bytes16[${string}]`]: undefined;
|
|
38309
38384
|
[x: `bytes17[${string}]`]: undefined;
|
|
@@ -38397,6 +38472,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38397
38472
|
bytes7?: undefined;
|
|
38398
38473
|
bytes5?: undefined;
|
|
38399
38474
|
bytes23?: undefined;
|
|
38475
|
+
bytes14?: undefined;
|
|
38400
38476
|
bytes18?: undefined;
|
|
38401
38477
|
bytes6?: undefined;
|
|
38402
38478
|
bytes8?: undefined;
|
|
@@ -38405,7 +38481,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38405
38481
|
bytes11?: undefined;
|
|
38406
38482
|
bytes12?: undefined;
|
|
38407
38483
|
bytes13?: undefined;
|
|
38408
|
-
bytes14?: undefined;
|
|
38409
38484
|
bytes15?: undefined;
|
|
38410
38485
|
bytes16?: undefined;
|
|
38411
38486
|
bytes17?: undefined;
|
|
@@ -38522,7 +38597,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38522
38597
|
transport?: undefined;
|
|
38523
38598
|
type?: undefined;
|
|
38524
38599
|
uid?: undefined;
|
|
38525
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").Transport, Chain | undefined, import("viem").Account | undefined>, "prepareTransactionRequest" | "
|
|
38600
|
+
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").Transport, Chain | undefined, import("viem").Account | undefined>, "prepareTransactionRequest" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<Chain | undefined, import("viem").Account | undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").Transport, Chain | undefined, import("viem").Account | undefined, import("viem").WalletRpcSchema, import("viem").WalletActions<Chain | undefined, import("viem").Account | undefined>>) => client_1) => import("viem").Client<import("viem").Transport, Chain | undefined, import("viem").Account | undefined, import("viem").WalletRpcSchema, { [K_12 in keyof client_1]: client_1[K_12]; } & import("viem").WalletActions<Chain | undefined, import("viem").Account | undefined>>;
|
|
38526
38601
|
};
|
|
38527
38602
|
chain: Chain;
|
|
38528
38603
|
};
|