agentwallet-sdk 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +323 -250
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -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 +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import { type Address, type Hash, type Hex, type WalletClient, type Chain } from
|
|
|
2
2
|
import type { AgentWalletConfig, SpendPolicy, BudgetStatus, PendingTx, ExecuteResult, QueuedEvent, BudgetForecast, WalletHealth, ActivityEntry, BatchTransfer } from './types.js';
|
|
3
3
|
export type { SpendPolicy, BudgetStatus, PendingTx, ExecuteResult, AgentWalletConfig, QueuedEvent, BudgetForecast, WalletHealth, ActivityEntry, BatchTransfer, } from './types.js';
|
|
4
4
|
export { AgentAccountV2Abi, AgentAccountFactoryV2Abi } from './abi.js';
|
|
5
|
+
export { X402Client, X402BudgetTracker, X402PaymentError, X402BudgetExceededError, createX402Client, createX402Fetch, wrapWithX402, USDC_ADDRESSES, DEFAULT_SUPPORTED_NETWORKS, } from './x402/index.js';
|
|
6
|
+
export type { X402PaymentRequired, X402PaymentRequirements, X402PaymentPayload, X402SettlementResponse, X402ResourceInfo, X402ServiceBudget, X402TransactionLog, X402ClientConfig, } from './x402/index.js';
|
|
5
7
|
/** Native ETH token address (zero address) */
|
|
6
8
|
export declare const NATIVE_TOKEN: Address;
|
|
7
9
|
/**
|
|
@@ -296,9 +298,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
296
298
|
readonly inputs: readonly [{
|
|
297
299
|
readonly name: "operator";
|
|
298
300
|
readonly type: "address";
|
|
299
|
-
readonly indexed: true;
|
|
300
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
301
|
-
*/
|
|
301
|
+
readonly indexed: true;
|
|
302
302
|
}, {
|
|
303
303
|
readonly name: "authorized";
|
|
304
304
|
readonly type: "bool";
|
|
@@ -330,6 +330,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
330
330
|
}];
|
|
331
331
|
}, {
|
|
332
332
|
readonly name: "TransactionApproved";
|
|
333
|
+
/**
|
|
334
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
335
|
+
*/
|
|
333
336
|
readonly type: "event";
|
|
334
337
|
readonly inputs: readonly [{
|
|
335
338
|
readonly name: "txId";
|
|
@@ -628,9 +631,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
628
631
|
readonly inputs: readonly [{
|
|
629
632
|
readonly name: "operator";
|
|
630
633
|
readonly type: "address";
|
|
631
|
-
readonly indexed: true;
|
|
632
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
633
|
-
*/
|
|
634
|
+
readonly indexed: true;
|
|
634
635
|
}, {
|
|
635
636
|
readonly name: "authorized";
|
|
636
637
|
readonly type: "bool";
|
|
@@ -662,6 +663,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
662
663
|
}];
|
|
663
664
|
}, {
|
|
664
665
|
readonly name: "TransactionApproved";
|
|
666
|
+
/**
|
|
667
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
668
|
+
*/
|
|
665
669
|
readonly type: "event";
|
|
666
670
|
readonly inputs: readonly [{
|
|
667
671
|
readonly name: "txId";
|
|
@@ -960,9 +964,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
960
964
|
readonly inputs: readonly [{
|
|
961
965
|
readonly name: "operator";
|
|
962
966
|
readonly type: "address";
|
|
963
|
-
readonly indexed: true;
|
|
964
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
965
|
-
*/
|
|
967
|
+
readonly indexed: true;
|
|
966
968
|
}, {
|
|
967
969
|
readonly name: "authorized";
|
|
968
970
|
readonly type: "bool";
|
|
@@ -994,6 +996,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
994
996
|
}];
|
|
995
997
|
}, {
|
|
996
998
|
readonly name: "TransactionApproved";
|
|
999
|
+
/**
|
|
1000
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
1001
|
+
*/
|
|
997
1002
|
readonly type: "event";
|
|
998
1003
|
readonly inputs: readonly [{
|
|
999
1004
|
readonly name: "txId";
|
|
@@ -1292,9 +1297,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1292
1297
|
readonly inputs: readonly [{
|
|
1293
1298
|
readonly name: "operator";
|
|
1294
1299
|
readonly type: "address";
|
|
1295
|
-
readonly indexed: true;
|
|
1296
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
1297
|
-
*/
|
|
1300
|
+
readonly indexed: true;
|
|
1298
1301
|
}, {
|
|
1299
1302
|
readonly name: "authorized";
|
|
1300
1303
|
readonly type: "bool";
|
|
@@ -1326,6 +1329,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1326
1329
|
}];
|
|
1327
1330
|
}, {
|
|
1328
1331
|
readonly name: "TransactionApproved";
|
|
1332
|
+
/**
|
|
1333
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
1334
|
+
*/
|
|
1329
1335
|
readonly type: "event";
|
|
1330
1336
|
readonly inputs: readonly [{
|
|
1331
1337
|
readonly name: "txId";
|
|
@@ -1624,9 +1630,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1624
1630
|
readonly inputs: readonly [{
|
|
1625
1631
|
readonly name: "operator";
|
|
1626
1632
|
readonly type: "address";
|
|
1627
|
-
readonly indexed: true;
|
|
1628
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
1629
|
-
*/
|
|
1633
|
+
readonly indexed: true;
|
|
1630
1634
|
}, {
|
|
1631
1635
|
readonly name: "authorized";
|
|
1632
1636
|
readonly type: "bool";
|
|
@@ -1658,6 +1662,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1658
1662
|
}];
|
|
1659
1663
|
}, {
|
|
1660
1664
|
readonly name: "TransactionApproved";
|
|
1665
|
+
/**
|
|
1666
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
1667
|
+
*/
|
|
1661
1668
|
readonly type: "event";
|
|
1662
1669
|
readonly inputs: readonly [{
|
|
1663
1670
|
readonly name: "txId";
|
|
@@ -1956,9 +1963,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1956
1963
|
readonly inputs: readonly [{
|
|
1957
1964
|
readonly name: "operator";
|
|
1958
1965
|
readonly type: "address";
|
|
1959
|
-
readonly indexed: true;
|
|
1960
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
1961
|
-
*/
|
|
1966
|
+
readonly indexed: true;
|
|
1962
1967
|
}, {
|
|
1963
1968
|
readonly name: "authorized";
|
|
1964
1969
|
readonly type: "bool";
|
|
@@ -1990,6 +1995,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1990
1995
|
}];
|
|
1991
1996
|
}, {
|
|
1992
1997
|
readonly name: "TransactionApproved";
|
|
1998
|
+
/**
|
|
1999
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2000
|
+
*/
|
|
1993
2001
|
readonly type: "event";
|
|
1994
2002
|
readonly inputs: readonly [{
|
|
1995
2003
|
readonly name: "txId";
|
|
@@ -2288,9 +2296,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2288
2296
|
readonly inputs: readonly [{
|
|
2289
2297
|
readonly name: "operator";
|
|
2290
2298
|
readonly type: "address";
|
|
2291
|
-
readonly indexed: true;
|
|
2292
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2293
|
-
*/
|
|
2299
|
+
readonly indexed: true;
|
|
2294
2300
|
}, {
|
|
2295
2301
|
readonly name: "authorized";
|
|
2296
2302
|
readonly type: "bool";
|
|
@@ -2322,6 +2328,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2322
2328
|
}];
|
|
2323
2329
|
}, {
|
|
2324
2330
|
readonly name: "TransactionApproved";
|
|
2331
|
+
/**
|
|
2332
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2333
|
+
*/
|
|
2325
2334
|
readonly type: "event";
|
|
2326
2335
|
readonly inputs: readonly [{
|
|
2327
2336
|
readonly name: "txId";
|
|
@@ -2620,9 +2629,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2620
2629
|
readonly inputs: readonly [{
|
|
2621
2630
|
readonly name: "operator";
|
|
2622
2631
|
readonly type: "address";
|
|
2623
|
-
readonly indexed: true;
|
|
2624
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2625
|
-
*/
|
|
2632
|
+
readonly indexed: true;
|
|
2626
2633
|
}, {
|
|
2627
2634
|
readonly name: "authorized";
|
|
2628
2635
|
readonly type: "bool";
|
|
@@ -2654,6 +2661,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2654
2661
|
}];
|
|
2655
2662
|
}, {
|
|
2656
2663
|
readonly name: "TransactionApproved";
|
|
2664
|
+
/**
|
|
2665
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2666
|
+
*/
|
|
2657
2667
|
readonly type: "event";
|
|
2658
2668
|
readonly inputs: readonly [{
|
|
2659
2669
|
readonly name: "txId";
|
|
@@ -2952,9 +2962,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2952
2962
|
readonly inputs: readonly [{
|
|
2953
2963
|
readonly name: "operator";
|
|
2954
2964
|
readonly type: "address";
|
|
2955
|
-
readonly indexed: true;
|
|
2956
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2957
|
-
*/
|
|
2965
|
+
readonly indexed: true;
|
|
2958
2966
|
}, {
|
|
2959
2967
|
readonly name: "authorized";
|
|
2960
2968
|
readonly type: "bool";
|
|
@@ -2986,6 +2994,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2986
2994
|
}];
|
|
2987
2995
|
}, {
|
|
2988
2996
|
readonly name: "TransactionApproved";
|
|
2997
|
+
/**
|
|
2998
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
2999
|
+
*/
|
|
2989
3000
|
readonly type: "event";
|
|
2990
3001
|
readonly inputs: readonly [{
|
|
2991
3002
|
readonly name: "txId";
|
|
@@ -3284,9 +3295,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3284
3295
|
readonly inputs: readonly [{
|
|
3285
3296
|
readonly name: "operator";
|
|
3286
3297
|
readonly type: "address";
|
|
3287
|
-
readonly indexed: true;
|
|
3288
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
3289
|
-
*/
|
|
3298
|
+
readonly indexed: true;
|
|
3290
3299
|
}, {
|
|
3291
3300
|
readonly name: "authorized";
|
|
3292
3301
|
readonly type: "bool";
|
|
@@ -3318,6 +3327,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3318
3327
|
}];
|
|
3319
3328
|
}, {
|
|
3320
3329
|
readonly name: "TransactionApproved";
|
|
3330
|
+
/**
|
|
3331
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
3332
|
+
*/
|
|
3321
3333
|
readonly type: "event";
|
|
3322
3334
|
readonly inputs: readonly [{
|
|
3323
3335
|
readonly name: "txId";
|
|
@@ -3618,9 +3630,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3618
3630
|
readonly inputs: readonly [{
|
|
3619
3631
|
readonly name: "operator";
|
|
3620
3632
|
readonly type: "address";
|
|
3621
|
-
readonly indexed: true;
|
|
3622
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
3623
|
-
*/
|
|
3633
|
+
readonly indexed: true;
|
|
3624
3634
|
}, {
|
|
3625
3635
|
readonly name: "authorized";
|
|
3626
3636
|
readonly type: "bool";
|
|
@@ -3652,6 +3662,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3652
3662
|
}];
|
|
3653
3663
|
}, {
|
|
3654
3664
|
readonly name: "TransactionApproved";
|
|
3665
|
+
/**
|
|
3666
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
3667
|
+
*/
|
|
3655
3668
|
readonly type: "event";
|
|
3656
3669
|
readonly inputs: readonly [{
|
|
3657
3670
|
readonly name: "txId";
|
|
@@ -3950,9 +3963,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3950
3963
|
readonly inputs: readonly [{
|
|
3951
3964
|
readonly name: "operator";
|
|
3952
3965
|
readonly type: "address";
|
|
3953
|
-
readonly indexed: true;
|
|
3954
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
3955
|
-
*/
|
|
3966
|
+
readonly indexed: true;
|
|
3956
3967
|
}, {
|
|
3957
3968
|
readonly name: "authorized";
|
|
3958
3969
|
readonly type: "bool";
|
|
@@ -3984,6 +3995,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3984
3995
|
}];
|
|
3985
3996
|
}, {
|
|
3986
3997
|
readonly name: "TransactionApproved";
|
|
3998
|
+
/**
|
|
3999
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4000
|
+
*/
|
|
3987
4001
|
readonly type: "event";
|
|
3988
4002
|
readonly inputs: readonly [{
|
|
3989
4003
|
readonly name: "txId";
|
|
@@ -4282,9 +4296,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4282
4296
|
readonly inputs: readonly [{
|
|
4283
4297
|
readonly name: "operator";
|
|
4284
4298
|
readonly type: "address";
|
|
4285
|
-
readonly indexed: true;
|
|
4286
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4287
|
-
*/
|
|
4299
|
+
readonly indexed: true;
|
|
4288
4300
|
}, {
|
|
4289
4301
|
readonly name: "authorized";
|
|
4290
4302
|
readonly type: "bool";
|
|
@@ -4316,6 +4328,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4316
4328
|
}];
|
|
4317
4329
|
}, {
|
|
4318
4330
|
readonly name: "TransactionApproved";
|
|
4331
|
+
/**
|
|
4332
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4333
|
+
*/
|
|
4319
4334
|
readonly type: "event";
|
|
4320
4335
|
readonly inputs: readonly [{
|
|
4321
4336
|
readonly name: "txId";
|
|
@@ -4614,9 +4629,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4614
4629
|
readonly inputs: readonly [{
|
|
4615
4630
|
readonly name: "operator";
|
|
4616
4631
|
readonly type: "address";
|
|
4617
|
-
readonly indexed: true;
|
|
4618
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4619
|
-
*/
|
|
4632
|
+
readonly indexed: true;
|
|
4620
4633
|
}, {
|
|
4621
4634
|
readonly name: "authorized";
|
|
4622
4635
|
readonly type: "bool";
|
|
@@ -4648,6 +4661,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4648
4661
|
}];
|
|
4649
4662
|
}, {
|
|
4650
4663
|
readonly name: "TransactionApproved";
|
|
4664
|
+
/**
|
|
4665
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4666
|
+
*/
|
|
4651
4667
|
readonly type: "event";
|
|
4652
4668
|
readonly inputs: readonly [{
|
|
4653
4669
|
readonly name: "txId";
|
|
@@ -4946,9 +4962,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4946
4962
|
readonly inputs: readonly [{
|
|
4947
4963
|
readonly name: "operator";
|
|
4948
4964
|
readonly type: "address";
|
|
4949
|
-
readonly indexed: true;
|
|
4950
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4951
|
-
*/
|
|
4965
|
+
readonly indexed: true;
|
|
4952
4966
|
}, {
|
|
4953
4967
|
readonly name: "authorized";
|
|
4954
4968
|
readonly type: "bool";
|
|
@@ -4980,6 +4994,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4980
4994
|
}];
|
|
4981
4995
|
}, {
|
|
4982
4996
|
readonly name: "TransactionApproved";
|
|
4997
|
+
/**
|
|
4998
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
4999
|
+
*/
|
|
4983
5000
|
readonly type: "event";
|
|
4984
5001
|
readonly inputs: readonly [{
|
|
4985
5002
|
readonly name: "txId";
|
|
@@ -5278,9 +5295,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5278
5295
|
readonly inputs: readonly [{
|
|
5279
5296
|
readonly name: "operator";
|
|
5280
5297
|
readonly type: "address";
|
|
5281
|
-
readonly indexed: true;
|
|
5282
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
5283
|
-
*/
|
|
5298
|
+
readonly indexed: true;
|
|
5284
5299
|
}, {
|
|
5285
5300
|
readonly name: "authorized";
|
|
5286
5301
|
readonly type: "bool";
|
|
@@ -5312,6 +5327,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5312
5327
|
}];
|
|
5313
5328
|
}, {
|
|
5314
5329
|
readonly name: "TransactionApproved";
|
|
5330
|
+
/**
|
|
5331
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
5332
|
+
*/
|
|
5315
5333
|
readonly type: "event";
|
|
5316
5334
|
readonly inputs: readonly [{
|
|
5317
5335
|
readonly name: "txId";
|
|
@@ -5610,9 +5628,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5610
5628
|
readonly inputs: readonly [{
|
|
5611
5629
|
readonly name: "operator";
|
|
5612
5630
|
readonly type: "address";
|
|
5613
|
-
readonly indexed: true;
|
|
5614
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
5615
|
-
*/
|
|
5631
|
+
readonly indexed: true;
|
|
5616
5632
|
}, {
|
|
5617
5633
|
readonly name: "authorized";
|
|
5618
5634
|
readonly type: "bool";
|
|
@@ -5644,6 +5660,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5644
5660
|
}];
|
|
5645
5661
|
}, {
|
|
5646
5662
|
readonly name: "TransactionApproved";
|
|
5663
|
+
/**
|
|
5664
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
5665
|
+
*/
|
|
5647
5666
|
readonly type: "event";
|
|
5648
5667
|
readonly inputs: readonly [{
|
|
5649
5668
|
readonly name: "txId";
|
|
@@ -5943,9 +5962,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5943
5962
|
readonly inputs: readonly [{
|
|
5944
5963
|
readonly name: "operator";
|
|
5945
5964
|
readonly type: "address";
|
|
5946
|
-
readonly indexed: true;
|
|
5947
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
5948
|
-
*/
|
|
5965
|
+
readonly indexed: true;
|
|
5949
5966
|
}, {
|
|
5950
5967
|
readonly name: "authorized";
|
|
5951
5968
|
readonly type: "bool";
|
|
@@ -5977,6 +5994,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5977
5994
|
}];
|
|
5978
5995
|
}, {
|
|
5979
5996
|
readonly name: "TransactionApproved";
|
|
5997
|
+
/**
|
|
5998
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
5999
|
+
*/
|
|
5980
6000
|
readonly type: "event";
|
|
5981
6001
|
readonly inputs: readonly [{
|
|
5982
6002
|
readonly name: "txId";
|
|
@@ -6275,9 +6295,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6275
6295
|
readonly inputs: readonly [{
|
|
6276
6296
|
readonly name: "operator";
|
|
6277
6297
|
readonly type: "address";
|
|
6278
|
-
readonly indexed: true;
|
|
6279
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
6280
|
-
*/
|
|
6298
|
+
readonly indexed: true;
|
|
6281
6299
|
}, {
|
|
6282
6300
|
readonly name: "authorized";
|
|
6283
6301
|
readonly type: "bool";
|
|
@@ -6309,6 +6327,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6309
6327
|
}];
|
|
6310
6328
|
}, {
|
|
6311
6329
|
readonly name: "TransactionApproved";
|
|
6330
|
+
/**
|
|
6331
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
6332
|
+
*/
|
|
6312
6333
|
readonly type: "event";
|
|
6313
6334
|
readonly inputs: readonly [{
|
|
6314
6335
|
readonly name: "txId";
|
|
@@ -6607,9 +6628,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6607
6628
|
readonly inputs: readonly [{
|
|
6608
6629
|
readonly name: "operator";
|
|
6609
6630
|
readonly type: "address";
|
|
6610
|
-
readonly indexed: true;
|
|
6611
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
6612
|
-
*/
|
|
6631
|
+
readonly indexed: true;
|
|
6613
6632
|
}, {
|
|
6614
6633
|
readonly name: "authorized";
|
|
6615
6634
|
readonly type: "bool";
|
|
@@ -6641,6 +6660,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6641
6660
|
}];
|
|
6642
6661
|
}, {
|
|
6643
6662
|
readonly name: "TransactionApproved";
|
|
6663
|
+
/**
|
|
6664
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
6665
|
+
*/
|
|
6644
6666
|
readonly type: "event";
|
|
6645
6667
|
readonly inputs: readonly [{
|
|
6646
6668
|
readonly name: "txId";
|
|
@@ -6939,9 +6961,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6939
6961
|
readonly inputs: readonly [{
|
|
6940
6962
|
readonly name: "operator";
|
|
6941
6963
|
readonly type: "address";
|
|
6942
|
-
readonly indexed: true;
|
|
6943
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
6944
|
-
*/
|
|
6964
|
+
readonly indexed: true;
|
|
6945
6965
|
}, {
|
|
6946
6966
|
readonly name: "authorized";
|
|
6947
6967
|
readonly type: "bool";
|
|
@@ -6973,6 +6993,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6973
6993
|
}];
|
|
6974
6994
|
}, {
|
|
6975
6995
|
readonly name: "TransactionApproved";
|
|
6996
|
+
/**
|
|
6997
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
6998
|
+
*/
|
|
6976
6999
|
readonly type: "event";
|
|
6977
7000
|
readonly inputs: readonly [{
|
|
6978
7001
|
readonly name: "txId";
|
|
@@ -7271,9 +7294,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7271
7294
|
readonly inputs: readonly [{
|
|
7272
7295
|
readonly name: "operator";
|
|
7273
7296
|
readonly type: "address";
|
|
7274
|
-
readonly indexed: true;
|
|
7275
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
7276
|
-
*/
|
|
7297
|
+
readonly indexed: true;
|
|
7277
7298
|
}, {
|
|
7278
7299
|
readonly name: "authorized";
|
|
7279
7300
|
readonly type: "bool";
|
|
@@ -7305,6 +7326,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7305
7326
|
}];
|
|
7306
7327
|
}, {
|
|
7307
7328
|
readonly name: "TransactionApproved";
|
|
7329
|
+
/**
|
|
7330
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
7331
|
+
*/
|
|
7308
7332
|
readonly type: "event";
|
|
7309
7333
|
readonly inputs: readonly [{
|
|
7310
7334
|
readonly name: "txId";
|
|
@@ -7603,9 +7627,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7603
7627
|
readonly inputs: readonly [{
|
|
7604
7628
|
readonly name: "operator";
|
|
7605
7629
|
readonly type: "address";
|
|
7606
|
-
readonly indexed: true;
|
|
7607
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
7608
|
-
*/
|
|
7630
|
+
readonly indexed: true;
|
|
7609
7631
|
}, {
|
|
7610
7632
|
readonly name: "authorized";
|
|
7611
7633
|
readonly type: "bool";
|
|
@@ -7637,6 +7659,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7637
7659
|
}];
|
|
7638
7660
|
}, {
|
|
7639
7661
|
readonly name: "TransactionApproved";
|
|
7662
|
+
/**
|
|
7663
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
7664
|
+
*/
|
|
7640
7665
|
readonly type: "event";
|
|
7641
7666
|
readonly inputs: readonly [{
|
|
7642
7667
|
readonly name: "txId";
|
|
@@ -7935,9 +7960,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7935
7960
|
readonly inputs: readonly [{
|
|
7936
7961
|
readonly name: "operator";
|
|
7937
7962
|
readonly type: "address";
|
|
7938
|
-
readonly indexed: true;
|
|
7939
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
7940
|
-
*/
|
|
7963
|
+
readonly indexed: true;
|
|
7941
7964
|
}, {
|
|
7942
7965
|
readonly name: "authorized";
|
|
7943
7966
|
readonly type: "bool";
|
|
@@ -7969,6 +7992,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7969
7992
|
}];
|
|
7970
7993
|
}, {
|
|
7971
7994
|
readonly name: "TransactionApproved";
|
|
7995
|
+
/**
|
|
7996
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
7997
|
+
*/
|
|
7972
7998
|
readonly type: "event";
|
|
7973
7999
|
readonly inputs: readonly [{
|
|
7974
8000
|
readonly name: "txId";
|
|
@@ -8269,9 +8295,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8269
8295
|
readonly inputs: readonly [{
|
|
8270
8296
|
readonly name: "operator";
|
|
8271
8297
|
readonly type: "address";
|
|
8272
|
-
readonly indexed: true;
|
|
8273
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
8274
|
-
*/
|
|
8298
|
+
readonly indexed: true;
|
|
8275
8299
|
}, {
|
|
8276
8300
|
readonly name: "authorized";
|
|
8277
8301
|
readonly type: "bool";
|
|
@@ -8303,6 +8327,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8303
8327
|
}];
|
|
8304
8328
|
}, {
|
|
8305
8329
|
readonly name: "TransactionApproved";
|
|
8330
|
+
/**
|
|
8331
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
8332
|
+
*/
|
|
8306
8333
|
readonly type: "event";
|
|
8307
8334
|
readonly inputs: readonly [{
|
|
8308
8335
|
readonly name: "txId";
|
|
@@ -8600,9 +8627,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8600
8627
|
readonly inputs: readonly [{
|
|
8601
8628
|
readonly name: "operator";
|
|
8602
8629
|
readonly type: "address";
|
|
8603
|
-
readonly indexed: true;
|
|
8604
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
8605
|
-
*/
|
|
8630
|
+
readonly indexed: true;
|
|
8606
8631
|
}, {
|
|
8607
8632
|
readonly name: "authorized";
|
|
8608
8633
|
readonly type: "bool";
|
|
@@ -8634,6 +8659,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8634
8659
|
}];
|
|
8635
8660
|
}, {
|
|
8636
8661
|
readonly name: "TransactionApproved";
|
|
8662
|
+
/**
|
|
8663
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
8664
|
+
*/
|
|
8637
8665
|
readonly type: "event";
|
|
8638
8666
|
readonly inputs: readonly [{
|
|
8639
8667
|
readonly name: "txId";
|
|
@@ -8932,9 +8960,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8932
8960
|
readonly inputs: readonly [{
|
|
8933
8961
|
readonly name: "operator";
|
|
8934
8962
|
readonly type: "address";
|
|
8935
|
-
readonly indexed: true;
|
|
8936
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
8937
|
-
*/
|
|
8963
|
+
readonly indexed: true;
|
|
8938
8964
|
}, {
|
|
8939
8965
|
readonly name: "authorized";
|
|
8940
8966
|
readonly type: "bool";
|
|
@@ -8966,6 +8992,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8966
8992
|
}];
|
|
8967
8993
|
}, {
|
|
8968
8994
|
readonly name: "TransactionApproved";
|
|
8995
|
+
/**
|
|
8996
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
8997
|
+
*/
|
|
8969
8998
|
readonly type: "event";
|
|
8970
8999
|
readonly inputs: readonly [{
|
|
8971
9000
|
readonly name: "txId";
|
|
@@ -9263,9 +9292,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9263
9292
|
readonly inputs: readonly [{
|
|
9264
9293
|
readonly name: "operator";
|
|
9265
9294
|
readonly type: "address";
|
|
9266
|
-
readonly indexed: true;
|
|
9267
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
9268
|
-
*/
|
|
9295
|
+
readonly indexed: true;
|
|
9269
9296
|
}, {
|
|
9270
9297
|
readonly name: "authorized";
|
|
9271
9298
|
readonly type: "bool";
|
|
@@ -9297,6 +9324,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9297
9324
|
}];
|
|
9298
9325
|
}, {
|
|
9299
9326
|
readonly name: "TransactionApproved";
|
|
9327
|
+
/**
|
|
9328
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
9329
|
+
*/
|
|
9300
9330
|
readonly type: "event";
|
|
9301
9331
|
readonly inputs: readonly [{
|
|
9302
9332
|
readonly name: "txId";
|
|
@@ -9595,9 +9625,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9595
9625
|
readonly inputs: readonly [{
|
|
9596
9626
|
readonly name: "operator";
|
|
9597
9627
|
readonly type: "address";
|
|
9598
|
-
readonly indexed: true;
|
|
9599
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
9600
|
-
*/
|
|
9628
|
+
readonly indexed: true;
|
|
9601
9629
|
}, {
|
|
9602
9630
|
readonly name: "authorized";
|
|
9603
9631
|
readonly type: "bool";
|
|
@@ -9629,6 +9657,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9629
9657
|
}];
|
|
9630
9658
|
}, {
|
|
9631
9659
|
readonly name: "TransactionApproved";
|
|
9660
|
+
/**
|
|
9661
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
9662
|
+
*/
|
|
9632
9663
|
readonly type: "event";
|
|
9633
9664
|
readonly inputs: readonly [{
|
|
9634
9665
|
readonly name: "txId";
|
|
@@ -9926,9 +9957,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9926
9957
|
readonly inputs: readonly [{
|
|
9927
9958
|
readonly name: "operator";
|
|
9928
9959
|
readonly type: "address";
|
|
9929
|
-
readonly indexed: true;
|
|
9930
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
9931
|
-
*/
|
|
9960
|
+
readonly indexed: true;
|
|
9932
9961
|
}, {
|
|
9933
9962
|
readonly name: "authorized";
|
|
9934
9963
|
readonly type: "bool";
|
|
@@ -9960,6 +9989,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9960
9989
|
}];
|
|
9961
9990
|
}, {
|
|
9962
9991
|
readonly name: "TransactionApproved";
|
|
9992
|
+
/**
|
|
9993
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
9994
|
+
*/
|
|
9963
9995
|
readonly type: "event";
|
|
9964
9996
|
readonly inputs: readonly [{
|
|
9965
9997
|
readonly name: "txId";
|
|
@@ -10258,9 +10290,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10258
10290
|
readonly inputs: readonly [{
|
|
10259
10291
|
readonly name: "operator";
|
|
10260
10292
|
readonly type: "address";
|
|
10261
|
-
readonly indexed: true;
|
|
10262
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
10263
|
-
*/
|
|
10293
|
+
readonly indexed: true;
|
|
10264
10294
|
}, {
|
|
10265
10295
|
readonly name: "authorized";
|
|
10266
10296
|
readonly type: "bool";
|
|
@@ -10292,6 +10322,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10292
10322
|
}];
|
|
10293
10323
|
}, {
|
|
10294
10324
|
readonly name: "TransactionApproved";
|
|
10325
|
+
/**
|
|
10326
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
10327
|
+
*/
|
|
10295
10328
|
readonly type: "event";
|
|
10296
10329
|
readonly inputs: readonly [{
|
|
10297
10330
|
readonly name: "txId";
|
|
@@ -10589,9 +10622,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10589
10622
|
readonly inputs: readonly [{
|
|
10590
10623
|
readonly name: "operator";
|
|
10591
10624
|
readonly type: "address";
|
|
10592
|
-
readonly indexed: true;
|
|
10593
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
10594
|
-
*/
|
|
10625
|
+
readonly indexed: true;
|
|
10595
10626
|
}, {
|
|
10596
10627
|
readonly name: "authorized";
|
|
10597
10628
|
readonly type: "bool";
|
|
@@ -10623,6 +10654,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10623
10654
|
}];
|
|
10624
10655
|
}, {
|
|
10625
10656
|
readonly name: "TransactionApproved";
|
|
10657
|
+
/**
|
|
10658
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
10659
|
+
*/
|
|
10626
10660
|
readonly type: "event";
|
|
10627
10661
|
readonly inputs: readonly [{
|
|
10628
10662
|
readonly name: "txId";
|
|
@@ -10921,9 +10955,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10921
10955
|
readonly inputs: readonly [{
|
|
10922
10956
|
readonly name: "operator";
|
|
10923
10957
|
readonly type: "address";
|
|
10924
|
-
readonly indexed: true;
|
|
10925
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
10926
|
-
*/
|
|
10958
|
+
readonly indexed: true;
|
|
10927
10959
|
}, {
|
|
10928
10960
|
readonly name: "authorized";
|
|
10929
10961
|
readonly type: "bool";
|
|
@@ -10955,6 +10987,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10955
10987
|
}];
|
|
10956
10988
|
}, {
|
|
10957
10989
|
readonly name: "TransactionApproved";
|
|
10990
|
+
/**
|
|
10991
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
10992
|
+
*/
|
|
10958
10993
|
readonly type: "event";
|
|
10959
10994
|
readonly inputs: readonly [{
|
|
10960
10995
|
readonly name: "txId";
|
|
@@ -11252,9 +11287,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11252
11287
|
readonly inputs: readonly [{
|
|
11253
11288
|
readonly name: "operator";
|
|
11254
11289
|
readonly type: "address";
|
|
11255
|
-
readonly indexed: true;
|
|
11256
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
11257
|
-
*/
|
|
11290
|
+
readonly indexed: true;
|
|
11258
11291
|
}, {
|
|
11259
11292
|
readonly name: "authorized";
|
|
11260
11293
|
readonly type: "bool";
|
|
@@ -11286,6 +11319,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11286
11319
|
}];
|
|
11287
11320
|
}, {
|
|
11288
11321
|
readonly name: "TransactionApproved";
|
|
11322
|
+
/**
|
|
11323
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
11324
|
+
*/
|
|
11289
11325
|
readonly type: "event";
|
|
11290
11326
|
readonly inputs: readonly [{
|
|
11291
11327
|
readonly name: "txId";
|
|
@@ -11584,9 +11620,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11584
11620
|
readonly inputs: readonly [{
|
|
11585
11621
|
readonly name: "operator";
|
|
11586
11622
|
readonly type: "address";
|
|
11587
|
-
readonly indexed: true;
|
|
11588
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
11589
|
-
*/
|
|
11623
|
+
readonly indexed: true;
|
|
11590
11624
|
}, {
|
|
11591
11625
|
readonly name: "authorized";
|
|
11592
11626
|
readonly type: "bool";
|
|
@@ -11618,6 +11652,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11618
11652
|
}];
|
|
11619
11653
|
}, {
|
|
11620
11654
|
readonly name: "TransactionApproved";
|
|
11655
|
+
/**
|
|
11656
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
11657
|
+
*/
|
|
11621
11658
|
readonly type: "event";
|
|
11622
11659
|
readonly inputs: readonly [{
|
|
11623
11660
|
readonly name: "txId";
|
|
@@ -11915,9 +11952,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11915
11952
|
readonly inputs: readonly [{
|
|
11916
11953
|
readonly name: "operator";
|
|
11917
11954
|
readonly type: "address";
|
|
11918
|
-
readonly indexed: true;
|
|
11919
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
11920
|
-
*/
|
|
11955
|
+
readonly indexed: true;
|
|
11921
11956
|
}, {
|
|
11922
11957
|
readonly name: "authorized";
|
|
11923
11958
|
readonly type: "bool";
|
|
@@ -11949,6 +11984,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11949
11984
|
}];
|
|
11950
11985
|
}, {
|
|
11951
11986
|
readonly name: "TransactionApproved";
|
|
11987
|
+
/**
|
|
11988
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
11989
|
+
*/
|
|
11952
11990
|
readonly type: "event";
|
|
11953
11991
|
readonly inputs: readonly [{
|
|
11954
11992
|
readonly name: "txId";
|
|
@@ -12247,9 +12285,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12247
12285
|
readonly inputs: readonly [{
|
|
12248
12286
|
readonly name: "operator";
|
|
12249
12287
|
readonly type: "address";
|
|
12250
|
-
readonly indexed: true;
|
|
12251
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
12252
|
-
*/
|
|
12288
|
+
readonly indexed: true;
|
|
12253
12289
|
}, {
|
|
12254
12290
|
readonly name: "authorized";
|
|
12255
12291
|
readonly type: "bool";
|
|
@@ -12281,6 +12317,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12281
12317
|
}];
|
|
12282
12318
|
}, {
|
|
12283
12319
|
readonly name: "TransactionApproved";
|
|
12320
|
+
/**
|
|
12321
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
12322
|
+
*/
|
|
12284
12323
|
readonly type: "event";
|
|
12285
12324
|
readonly inputs: readonly [{
|
|
12286
12325
|
readonly name: "txId";
|
|
@@ -12578,9 +12617,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12578
12617
|
readonly inputs: readonly [{
|
|
12579
12618
|
readonly name: "operator";
|
|
12580
12619
|
readonly type: "address";
|
|
12581
|
-
readonly indexed: true;
|
|
12582
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
12583
|
-
*/
|
|
12620
|
+
readonly indexed: true;
|
|
12584
12621
|
}, {
|
|
12585
12622
|
readonly name: "authorized";
|
|
12586
12623
|
readonly type: "bool";
|
|
@@ -12612,6 +12649,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12612
12649
|
}];
|
|
12613
12650
|
}, {
|
|
12614
12651
|
readonly name: "TransactionApproved";
|
|
12652
|
+
/**
|
|
12653
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
12654
|
+
*/
|
|
12615
12655
|
readonly type: "event";
|
|
12616
12656
|
readonly inputs: readonly [{
|
|
12617
12657
|
readonly name: "txId";
|
|
@@ -12929,9 +12969,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12929
12969
|
readonly inputs: readonly [{
|
|
12930
12970
|
readonly name: "operator";
|
|
12931
12971
|
readonly type: "address";
|
|
12932
|
-
readonly indexed: true;
|
|
12933
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
12934
|
-
*/
|
|
12972
|
+
readonly indexed: true;
|
|
12935
12973
|
}, {
|
|
12936
12974
|
readonly name: "authorized";
|
|
12937
12975
|
readonly type: "bool";
|
|
@@ -12963,6 +13001,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12963
13001
|
}];
|
|
12964
13002
|
}, {
|
|
12965
13003
|
readonly name: "TransactionApproved";
|
|
13004
|
+
/**
|
|
13005
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
13006
|
+
*/
|
|
12966
13007
|
readonly type: "event";
|
|
12967
13008
|
readonly inputs: readonly [{
|
|
12968
13009
|
readonly name: "txId";
|
|
@@ -13274,9 +13315,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13274
13315
|
readonly inputs: readonly [{
|
|
13275
13316
|
readonly name: "operator";
|
|
13276
13317
|
readonly type: "address";
|
|
13277
|
-
readonly indexed: true;
|
|
13278
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
13279
|
-
*/
|
|
13318
|
+
readonly indexed: true;
|
|
13280
13319
|
}, {
|
|
13281
13320
|
readonly name: "authorized";
|
|
13282
13321
|
readonly type: "bool";
|
|
@@ -13308,6 +13347,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13308
13347
|
}];
|
|
13309
13348
|
}, {
|
|
13310
13349
|
readonly name: "TransactionApproved";
|
|
13350
|
+
/**
|
|
13351
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
13352
|
+
*/
|
|
13311
13353
|
readonly type: "event";
|
|
13312
13354
|
readonly inputs: readonly [{
|
|
13313
13355
|
readonly name: "txId";
|
|
@@ -13619,9 +13661,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13619
13661
|
readonly inputs: readonly [{
|
|
13620
13662
|
readonly name: "operator";
|
|
13621
13663
|
readonly type: "address";
|
|
13622
|
-
readonly indexed: true;
|
|
13623
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
13624
|
-
*/
|
|
13664
|
+
readonly indexed: true;
|
|
13625
13665
|
}, {
|
|
13626
13666
|
readonly name: "authorized";
|
|
13627
13667
|
readonly type: "bool";
|
|
@@ -13653,6 +13693,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13653
13693
|
}];
|
|
13654
13694
|
}, {
|
|
13655
13695
|
readonly name: "TransactionApproved";
|
|
13696
|
+
/**
|
|
13697
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
13698
|
+
*/
|
|
13656
13699
|
readonly type: "event";
|
|
13657
13700
|
readonly inputs: readonly [{
|
|
13658
13701
|
readonly name: "txId";
|
|
@@ -13968,9 +14011,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13968
14011
|
readonly inputs: readonly [{
|
|
13969
14012
|
readonly name: "operator";
|
|
13970
14013
|
readonly type: "address";
|
|
13971
|
-
readonly indexed: true;
|
|
13972
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
13973
|
-
*/
|
|
14014
|
+
readonly indexed: true;
|
|
13974
14015
|
}, {
|
|
13975
14016
|
readonly name: "authorized";
|
|
13976
14017
|
readonly type: "bool";
|
|
@@ -14002,6 +14043,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14002
14043
|
}];
|
|
14003
14044
|
}, {
|
|
14004
14045
|
readonly name: "TransactionApproved";
|
|
14046
|
+
/**
|
|
14047
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
14048
|
+
*/
|
|
14005
14049
|
readonly type: "event";
|
|
14006
14050
|
readonly inputs: readonly [{
|
|
14007
14051
|
readonly name: "txId";
|
|
@@ -14313,9 +14357,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14313
14357
|
readonly inputs: readonly [{
|
|
14314
14358
|
readonly name: "operator";
|
|
14315
14359
|
readonly type: "address";
|
|
14316
|
-
readonly indexed: true;
|
|
14317
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
14318
|
-
*/
|
|
14360
|
+
readonly indexed: true;
|
|
14319
14361
|
}, {
|
|
14320
14362
|
readonly name: "authorized";
|
|
14321
14363
|
readonly type: "bool";
|
|
@@ -14347,6 +14389,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14347
14389
|
}];
|
|
14348
14390
|
}, {
|
|
14349
14391
|
readonly name: "TransactionApproved";
|
|
14392
|
+
/**
|
|
14393
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
14394
|
+
*/
|
|
14350
14395
|
readonly type: "event";
|
|
14351
14396
|
readonly inputs: readonly [{
|
|
14352
14397
|
readonly name: "txId";
|
|
@@ -14658,9 +14703,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14658
14703
|
readonly inputs: readonly [{
|
|
14659
14704
|
readonly name: "operator";
|
|
14660
14705
|
readonly type: "address";
|
|
14661
|
-
readonly indexed: true;
|
|
14662
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
14663
|
-
*/
|
|
14706
|
+
readonly indexed: true;
|
|
14664
14707
|
}, {
|
|
14665
14708
|
readonly name: "authorized";
|
|
14666
14709
|
readonly type: "bool";
|
|
@@ -14692,6 +14735,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14692
14735
|
}];
|
|
14693
14736
|
}, {
|
|
14694
14737
|
readonly name: "TransactionApproved";
|
|
14738
|
+
/**
|
|
14739
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
14740
|
+
*/
|
|
14695
14741
|
readonly type: "event";
|
|
14696
14742
|
readonly inputs: readonly [{
|
|
14697
14743
|
readonly name: "txId";
|
|
@@ -15000,9 +15046,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15000
15046
|
readonly inputs: readonly [{
|
|
15001
15047
|
readonly name: "operator";
|
|
15002
15048
|
readonly type: "address";
|
|
15003
|
-
readonly indexed: true;
|
|
15004
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
15005
|
-
*/
|
|
15049
|
+
readonly indexed: true;
|
|
15006
15050
|
}, {
|
|
15007
15051
|
readonly name: "authorized";
|
|
15008
15052
|
readonly type: "bool";
|
|
@@ -15034,6 +15078,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15034
15078
|
}];
|
|
15035
15079
|
}, {
|
|
15036
15080
|
readonly name: "TransactionApproved";
|
|
15081
|
+
/**
|
|
15082
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
15083
|
+
*/
|
|
15037
15084
|
readonly type: "event";
|
|
15038
15085
|
readonly inputs: readonly [{
|
|
15039
15086
|
readonly name: "txId";
|
|
@@ -15339,9 +15386,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15339
15386
|
readonly inputs: readonly [{
|
|
15340
15387
|
readonly name: "operator";
|
|
15341
15388
|
readonly type: "address";
|
|
15342
|
-
readonly indexed: true;
|
|
15343
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
15344
|
-
*/
|
|
15389
|
+
readonly indexed: true;
|
|
15345
15390
|
}, {
|
|
15346
15391
|
readonly name: "authorized";
|
|
15347
15392
|
readonly type: "bool";
|
|
@@ -15373,6 +15418,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15373
15418
|
}];
|
|
15374
15419
|
}, {
|
|
15375
15420
|
readonly name: "TransactionApproved";
|
|
15421
|
+
/**
|
|
15422
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
15423
|
+
*/
|
|
15376
15424
|
readonly type: "event";
|
|
15377
15425
|
readonly inputs: readonly [{
|
|
15378
15426
|
readonly name: "txId";
|
|
@@ -15678,9 +15726,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15678
15726
|
readonly inputs: readonly [{
|
|
15679
15727
|
readonly name: "operator";
|
|
15680
15728
|
readonly type: "address";
|
|
15681
|
-
readonly indexed: true;
|
|
15682
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
15683
|
-
*/
|
|
15729
|
+
readonly indexed: true;
|
|
15684
15730
|
}, {
|
|
15685
15731
|
readonly name: "authorized";
|
|
15686
15732
|
readonly type: "bool";
|
|
@@ -15712,6 +15758,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15712
15758
|
}];
|
|
15713
15759
|
}, {
|
|
15714
15760
|
readonly name: "TransactionApproved";
|
|
15761
|
+
/**
|
|
15762
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
15763
|
+
*/
|
|
15715
15764
|
readonly type: "event";
|
|
15716
15765
|
readonly inputs: readonly [{
|
|
15717
15766
|
readonly name: "txId";
|
|
@@ -16018,9 +16067,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16018
16067
|
readonly inputs: readonly [{
|
|
16019
16068
|
readonly name: "operator";
|
|
16020
16069
|
readonly type: "address";
|
|
16021
|
-
readonly indexed: true;
|
|
16022
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
16023
|
-
*/
|
|
16070
|
+
readonly indexed: true;
|
|
16024
16071
|
}, {
|
|
16025
16072
|
readonly name: "authorized";
|
|
16026
16073
|
readonly type: "bool";
|
|
@@ -16052,6 +16099,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16052
16099
|
}];
|
|
16053
16100
|
}, {
|
|
16054
16101
|
readonly name: "TransactionApproved";
|
|
16102
|
+
/**
|
|
16103
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
16104
|
+
*/
|
|
16055
16105
|
readonly type: "event";
|
|
16056
16106
|
readonly inputs: readonly [{
|
|
16057
16107
|
readonly name: "txId";
|
|
@@ -16357,9 +16407,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16357
16407
|
readonly inputs: readonly [{
|
|
16358
16408
|
readonly name: "operator";
|
|
16359
16409
|
readonly type: "address";
|
|
16360
|
-
readonly indexed: true;
|
|
16361
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
16362
|
-
*/
|
|
16410
|
+
readonly indexed: true;
|
|
16363
16411
|
}, {
|
|
16364
16412
|
readonly name: "authorized";
|
|
16365
16413
|
readonly type: "bool";
|
|
@@ -16391,6 +16439,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16391
16439
|
}];
|
|
16392
16440
|
}, {
|
|
16393
16441
|
readonly name: "TransactionApproved";
|
|
16442
|
+
/**
|
|
16443
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
16444
|
+
*/
|
|
16394
16445
|
readonly type: "event";
|
|
16395
16446
|
readonly inputs: readonly [{
|
|
16396
16447
|
readonly name: "txId";
|
|
@@ -16696,9 +16747,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16696
16747
|
readonly inputs: readonly [{
|
|
16697
16748
|
readonly name: "operator";
|
|
16698
16749
|
readonly type: "address";
|
|
16699
|
-
readonly indexed: true;
|
|
16700
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
16701
|
-
*/
|
|
16750
|
+
readonly indexed: true;
|
|
16702
16751
|
}, {
|
|
16703
16752
|
readonly name: "authorized";
|
|
16704
16753
|
readonly type: "bool";
|
|
@@ -16730,6 +16779,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16730
16779
|
}];
|
|
16731
16780
|
}, {
|
|
16732
16781
|
readonly name: "TransactionApproved";
|
|
16782
|
+
/**
|
|
16783
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
16784
|
+
*/
|
|
16733
16785
|
readonly type: "event";
|
|
16734
16786
|
readonly inputs: readonly [{
|
|
16735
16787
|
readonly name: "txId";
|
|
@@ -17039,9 +17091,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17039
17091
|
readonly inputs: readonly [{
|
|
17040
17092
|
readonly name: "operator";
|
|
17041
17093
|
readonly type: "address";
|
|
17042
|
-
readonly indexed: true;
|
|
17043
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
17044
|
-
*/
|
|
17094
|
+
readonly indexed: true;
|
|
17045
17095
|
}, {
|
|
17046
17096
|
readonly name: "authorized";
|
|
17047
17097
|
readonly type: "bool";
|
|
@@ -17073,6 +17123,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17073
17123
|
}];
|
|
17074
17124
|
}, {
|
|
17075
17125
|
readonly name: "TransactionApproved";
|
|
17126
|
+
/**
|
|
17127
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
17128
|
+
*/
|
|
17076
17129
|
readonly type: "event";
|
|
17077
17130
|
readonly inputs: readonly [{
|
|
17078
17131
|
readonly name: "txId";
|
|
@@ -17381,9 +17434,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17381
17434
|
readonly inputs: readonly [{
|
|
17382
17435
|
readonly name: "operator";
|
|
17383
17436
|
readonly type: "address";
|
|
17384
|
-
readonly indexed: true;
|
|
17385
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
17386
|
-
*/
|
|
17437
|
+
readonly indexed: true;
|
|
17387
17438
|
}, {
|
|
17388
17439
|
readonly name: "authorized";
|
|
17389
17440
|
readonly type: "bool";
|
|
@@ -17415,6 +17466,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17415
17466
|
}];
|
|
17416
17467
|
}, {
|
|
17417
17468
|
readonly name: "TransactionApproved";
|
|
17469
|
+
/**
|
|
17470
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
17471
|
+
*/
|
|
17418
17472
|
readonly type: "event";
|
|
17419
17473
|
readonly inputs: readonly [{
|
|
17420
17474
|
readonly name: "txId";
|
|
@@ -17723,9 +17777,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17723
17777
|
readonly inputs: readonly [{
|
|
17724
17778
|
readonly name: "operator";
|
|
17725
17779
|
readonly type: "address";
|
|
17726
|
-
readonly indexed: true;
|
|
17727
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
17728
|
-
*/
|
|
17780
|
+
readonly indexed: true;
|
|
17729
17781
|
}, {
|
|
17730
17782
|
readonly name: "authorized";
|
|
17731
17783
|
readonly type: "bool";
|
|
@@ -17757,6 +17809,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17757
17809
|
}];
|
|
17758
17810
|
}, {
|
|
17759
17811
|
readonly name: "TransactionApproved";
|
|
17812
|
+
/**
|
|
17813
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
17814
|
+
*/
|
|
17760
17815
|
readonly type: "event";
|
|
17761
17816
|
readonly inputs: readonly [{
|
|
17762
17817
|
readonly name: "txId";
|
|
@@ -18066,9 +18121,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18066
18121
|
readonly inputs: readonly [{
|
|
18067
18122
|
readonly name: "operator";
|
|
18068
18123
|
readonly type: "address";
|
|
18069
|
-
readonly indexed: true;
|
|
18070
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
18071
|
-
*/
|
|
18124
|
+
readonly indexed: true;
|
|
18072
18125
|
}, {
|
|
18073
18126
|
readonly name: "authorized";
|
|
18074
18127
|
readonly type: "bool";
|
|
@@ -18100,6 +18153,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18100
18153
|
}];
|
|
18101
18154
|
}, {
|
|
18102
18155
|
readonly name: "TransactionApproved";
|
|
18156
|
+
/**
|
|
18157
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
18158
|
+
*/
|
|
18103
18159
|
readonly type: "event";
|
|
18104
18160
|
readonly inputs: readonly [{
|
|
18105
18161
|
readonly name: "txId";
|
|
@@ -18408,9 +18464,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18408
18464
|
readonly inputs: readonly [{
|
|
18409
18465
|
readonly name: "operator";
|
|
18410
18466
|
readonly type: "address";
|
|
18411
|
-
readonly indexed: true;
|
|
18412
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
18413
|
-
*/
|
|
18467
|
+
readonly indexed: true;
|
|
18414
18468
|
}, {
|
|
18415
18469
|
readonly name: "authorized";
|
|
18416
18470
|
readonly type: "bool";
|
|
@@ -18442,6 +18496,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18442
18496
|
}];
|
|
18443
18497
|
}, {
|
|
18444
18498
|
readonly name: "TransactionApproved";
|
|
18499
|
+
/**
|
|
18500
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
18501
|
+
*/
|
|
18445
18502
|
readonly type: "event";
|
|
18446
18503
|
readonly inputs: readonly [{
|
|
18447
18504
|
readonly name: "txId";
|
|
@@ -18750,9 +18807,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18750
18807
|
readonly inputs: readonly [{
|
|
18751
18808
|
readonly name: "operator";
|
|
18752
18809
|
readonly type: "address";
|
|
18753
|
-
readonly indexed: true;
|
|
18754
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
18755
|
-
*/
|
|
18810
|
+
readonly indexed: true;
|
|
18756
18811
|
}, {
|
|
18757
18812
|
readonly name: "authorized";
|
|
18758
18813
|
readonly type: "bool";
|
|
@@ -18784,6 +18839,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18784
18839
|
}];
|
|
18785
18840
|
}, {
|
|
18786
18841
|
readonly name: "TransactionApproved";
|
|
18842
|
+
/**
|
|
18843
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
18844
|
+
*/
|
|
18787
18845
|
readonly type: "event";
|
|
18788
18846
|
readonly inputs: readonly [{
|
|
18789
18847
|
readonly name: "txId";
|
|
@@ -19086,9 +19144,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19086
19144
|
readonly inputs: readonly [{
|
|
19087
19145
|
readonly name: "operator";
|
|
19088
19146
|
readonly type: "address";
|
|
19089
|
-
readonly indexed: true;
|
|
19090
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
19091
|
-
*/
|
|
19147
|
+
readonly indexed: true;
|
|
19092
19148
|
}, {
|
|
19093
19149
|
readonly name: "authorized";
|
|
19094
19150
|
readonly type: "bool";
|
|
@@ -19120,6 +19176,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19120
19176
|
}];
|
|
19121
19177
|
}, {
|
|
19122
19178
|
readonly name: "TransactionApproved";
|
|
19179
|
+
/**
|
|
19180
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
19181
|
+
*/
|
|
19123
19182
|
readonly type: "event";
|
|
19124
19183
|
readonly inputs: readonly [{
|
|
19125
19184
|
readonly name: "txId";
|
|
@@ -19417,9 +19476,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19417
19476
|
readonly inputs: readonly [{
|
|
19418
19477
|
readonly name: "operator";
|
|
19419
19478
|
readonly type: "address";
|
|
19420
|
-
readonly indexed: true;
|
|
19421
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
19422
|
-
*/
|
|
19479
|
+
readonly indexed: true;
|
|
19423
19480
|
}, {
|
|
19424
19481
|
readonly name: "authorized";
|
|
19425
19482
|
readonly type: "bool";
|
|
@@ -19451,6 +19508,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19451
19508
|
}];
|
|
19452
19509
|
}, {
|
|
19453
19510
|
readonly name: "TransactionApproved";
|
|
19511
|
+
/**
|
|
19512
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
19513
|
+
*/
|
|
19454
19514
|
readonly type: "event";
|
|
19455
19515
|
readonly inputs: readonly [{
|
|
19456
19516
|
readonly name: "txId";
|
|
@@ -19749,9 +19809,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19749
19809
|
readonly inputs: readonly [{
|
|
19750
19810
|
readonly name: "operator";
|
|
19751
19811
|
readonly type: "address";
|
|
19752
|
-
readonly indexed: true;
|
|
19753
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
19754
|
-
*/
|
|
19812
|
+
readonly indexed: true;
|
|
19755
19813
|
}, {
|
|
19756
19814
|
readonly name: "authorized";
|
|
19757
19815
|
readonly type: "bool";
|
|
@@ -19783,6 +19841,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19783
19841
|
}];
|
|
19784
19842
|
}, {
|
|
19785
19843
|
readonly name: "TransactionApproved";
|
|
19844
|
+
/**
|
|
19845
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
19846
|
+
*/
|
|
19786
19847
|
readonly type: "event";
|
|
19787
19848
|
readonly inputs: readonly [{
|
|
19788
19849
|
readonly name: "txId";
|
|
@@ -20080,9 +20141,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20080
20141
|
readonly inputs: readonly [{
|
|
20081
20142
|
readonly name: "operator";
|
|
20082
20143
|
readonly type: "address";
|
|
20083
|
-
readonly indexed: true;
|
|
20084
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
20085
|
-
*/
|
|
20144
|
+
readonly indexed: true;
|
|
20086
20145
|
}, {
|
|
20087
20146
|
readonly name: "authorized";
|
|
20088
20147
|
readonly type: "bool";
|
|
@@ -20114,6 +20173,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20114
20173
|
}];
|
|
20115
20174
|
}, {
|
|
20116
20175
|
readonly name: "TransactionApproved";
|
|
20176
|
+
/**
|
|
20177
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
20178
|
+
*/
|
|
20117
20179
|
readonly type: "event";
|
|
20118
20180
|
readonly inputs: readonly [{
|
|
20119
20181
|
readonly name: "txId";
|
|
@@ -20412,9 +20474,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20412
20474
|
readonly inputs: readonly [{
|
|
20413
20475
|
readonly name: "operator";
|
|
20414
20476
|
readonly type: "address";
|
|
20415
|
-
readonly indexed: true;
|
|
20416
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
20417
|
-
*/
|
|
20477
|
+
readonly indexed: true;
|
|
20418
20478
|
}, {
|
|
20419
20479
|
readonly name: "authorized";
|
|
20420
20480
|
readonly type: "bool";
|
|
@@ -20446,6 +20506,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20446
20506
|
}];
|
|
20447
20507
|
}, {
|
|
20448
20508
|
readonly name: "TransactionApproved";
|
|
20509
|
+
/**
|
|
20510
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
20511
|
+
*/
|
|
20449
20512
|
readonly type: "event";
|
|
20450
20513
|
readonly inputs: readonly [{
|
|
20451
20514
|
readonly name: "txId";
|
|
@@ -20743,9 +20806,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20743
20806
|
readonly inputs: readonly [{
|
|
20744
20807
|
readonly name: "operator";
|
|
20745
20808
|
readonly type: "address";
|
|
20746
|
-
readonly indexed: true;
|
|
20747
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
20748
|
-
*/
|
|
20809
|
+
readonly indexed: true;
|
|
20749
20810
|
}, {
|
|
20750
20811
|
readonly name: "authorized";
|
|
20751
20812
|
readonly type: "bool";
|
|
@@ -20777,6 +20838,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20777
20838
|
}];
|
|
20778
20839
|
}, {
|
|
20779
20840
|
readonly name: "TransactionApproved";
|
|
20841
|
+
/**
|
|
20842
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
20843
|
+
*/
|
|
20780
20844
|
readonly type: "event";
|
|
20781
20845
|
readonly inputs: readonly [{
|
|
20782
20846
|
readonly name: "txId";
|
|
@@ -21075,9 +21139,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21075
21139
|
readonly inputs: readonly [{
|
|
21076
21140
|
readonly name: "operator";
|
|
21077
21141
|
readonly type: "address";
|
|
21078
|
-
readonly indexed: true;
|
|
21079
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
21080
|
-
*/
|
|
21142
|
+
readonly indexed: true;
|
|
21081
21143
|
}, {
|
|
21082
21144
|
readonly name: "authorized";
|
|
21083
21145
|
readonly type: "bool";
|
|
@@ -21109,6 +21171,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21109
21171
|
}];
|
|
21110
21172
|
}, {
|
|
21111
21173
|
readonly name: "TransactionApproved";
|
|
21174
|
+
/**
|
|
21175
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
21176
|
+
*/
|
|
21112
21177
|
readonly type: "event";
|
|
21113
21178
|
readonly inputs: readonly [{
|
|
21114
21179
|
readonly name: "txId";
|
|
@@ -21406,9 +21471,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21406
21471
|
readonly inputs: readonly [{
|
|
21407
21472
|
readonly name: "operator";
|
|
21408
21473
|
readonly type: "address";
|
|
21409
|
-
readonly indexed: true;
|
|
21410
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
21411
|
-
*/
|
|
21474
|
+
readonly indexed: true;
|
|
21412
21475
|
}, {
|
|
21413
21476
|
readonly name: "authorized";
|
|
21414
21477
|
readonly type: "bool";
|
|
@@ -21440,6 +21503,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21440
21503
|
}];
|
|
21441
21504
|
}, {
|
|
21442
21505
|
readonly name: "TransactionApproved";
|
|
21506
|
+
/**
|
|
21507
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
21508
|
+
*/
|
|
21443
21509
|
readonly type: "event";
|
|
21444
21510
|
readonly inputs: readonly [{
|
|
21445
21511
|
readonly name: "txId";
|
|
@@ -21738,9 +21804,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21738
21804
|
readonly inputs: readonly [{
|
|
21739
21805
|
readonly name: "operator";
|
|
21740
21806
|
readonly type: "address";
|
|
21741
|
-
readonly indexed: true;
|
|
21742
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
21743
|
-
*/
|
|
21807
|
+
readonly indexed: true;
|
|
21744
21808
|
}, {
|
|
21745
21809
|
readonly name: "authorized";
|
|
21746
21810
|
readonly type: "bool";
|
|
@@ -21772,6 +21836,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21772
21836
|
}];
|
|
21773
21837
|
}, {
|
|
21774
21838
|
readonly name: "TransactionApproved";
|
|
21839
|
+
/**
|
|
21840
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
21841
|
+
*/
|
|
21775
21842
|
readonly type: "event";
|
|
21776
21843
|
readonly inputs: readonly [{
|
|
21777
21844
|
readonly name: "txId";
|
|
@@ -22069,9 +22136,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22069
22136
|
readonly inputs: readonly [{
|
|
22070
22137
|
readonly name: "operator";
|
|
22071
22138
|
readonly type: "address";
|
|
22072
|
-
readonly indexed: true;
|
|
22073
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
22074
|
-
*/
|
|
22139
|
+
readonly indexed: true;
|
|
22075
22140
|
}, {
|
|
22076
22141
|
readonly name: "authorized";
|
|
22077
22142
|
readonly type: "bool";
|
|
@@ -22103,6 +22168,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22103
22168
|
}];
|
|
22104
22169
|
}, {
|
|
22105
22170
|
readonly name: "TransactionApproved";
|
|
22171
|
+
/**
|
|
22172
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
22173
|
+
*/
|
|
22106
22174
|
readonly type: "event";
|
|
22107
22175
|
readonly inputs: readonly [{
|
|
22108
22176
|
readonly name: "txId";
|
|
@@ -22401,9 +22469,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22401
22469
|
readonly inputs: readonly [{
|
|
22402
22470
|
readonly name: "operator";
|
|
22403
22471
|
readonly type: "address";
|
|
22404
|
-
readonly indexed: true;
|
|
22405
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
22406
|
-
*/
|
|
22472
|
+
readonly indexed: true;
|
|
22407
22473
|
}, {
|
|
22408
22474
|
readonly name: "authorized";
|
|
22409
22475
|
readonly type: "bool";
|
|
@@ -22435,6 +22501,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22435
22501
|
}];
|
|
22436
22502
|
}, {
|
|
22437
22503
|
readonly name: "TransactionApproved";
|
|
22504
|
+
/**
|
|
22505
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
22506
|
+
*/
|
|
22438
22507
|
readonly type: "event";
|
|
22439
22508
|
readonly inputs: readonly [{
|
|
22440
22509
|
readonly name: "txId";
|
|
@@ -22732,9 +22801,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22732
22801
|
readonly inputs: readonly [{
|
|
22733
22802
|
readonly name: "operator";
|
|
22734
22803
|
readonly type: "address";
|
|
22735
|
-
readonly indexed: true;
|
|
22736
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
22737
|
-
*/
|
|
22804
|
+
readonly indexed: true;
|
|
22738
22805
|
}, {
|
|
22739
22806
|
readonly name: "authorized";
|
|
22740
22807
|
readonly type: "bool";
|
|
@@ -22766,6 +22833,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22766
22833
|
}];
|
|
22767
22834
|
}, {
|
|
22768
22835
|
readonly name: "TransactionApproved";
|
|
22836
|
+
/**
|
|
22837
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
22838
|
+
*/
|
|
22769
22839
|
readonly type: "event";
|
|
22770
22840
|
readonly inputs: readonly [{
|
|
22771
22841
|
readonly name: "txId";
|
|
@@ -23064,9 +23134,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23064
23134
|
readonly inputs: readonly [{
|
|
23065
23135
|
readonly name: "operator";
|
|
23066
23136
|
readonly type: "address";
|
|
23067
|
-
readonly indexed: true;
|
|
23068
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
23069
|
-
*/
|
|
23137
|
+
readonly indexed: true;
|
|
23070
23138
|
}, {
|
|
23071
23139
|
readonly name: "authorized";
|
|
23072
23140
|
readonly type: "bool";
|
|
@@ -23098,6 +23166,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23098
23166
|
}];
|
|
23099
23167
|
}, {
|
|
23100
23168
|
readonly name: "TransactionApproved";
|
|
23169
|
+
/**
|
|
23170
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
23171
|
+
*/
|
|
23101
23172
|
readonly type: "event";
|
|
23102
23173
|
readonly inputs: readonly [{
|
|
23103
23174
|
readonly name: "txId";
|
|
@@ -23395,9 +23466,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23395
23466
|
readonly inputs: readonly [{
|
|
23396
23467
|
readonly name: "operator";
|
|
23397
23468
|
readonly type: "address";
|
|
23398
|
-
readonly indexed: true;
|
|
23399
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
23400
|
-
*/
|
|
23469
|
+
readonly indexed: true;
|
|
23401
23470
|
}, {
|
|
23402
23471
|
readonly name: "authorized";
|
|
23403
23472
|
readonly type: "bool";
|
|
@@ -23429,6 +23498,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23429
23498
|
}];
|
|
23430
23499
|
}, {
|
|
23431
23500
|
readonly name: "TransactionApproved";
|
|
23501
|
+
/**
|
|
23502
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
23503
|
+
*/
|
|
23432
23504
|
readonly type: "event";
|
|
23433
23505
|
readonly inputs: readonly [{
|
|
23434
23506
|
readonly name: "txId";
|
|
@@ -23729,9 +23801,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23729
23801
|
readonly inputs: readonly [{
|
|
23730
23802
|
readonly name: "operator";
|
|
23731
23803
|
readonly type: "address";
|
|
23732
|
-
readonly indexed: true;
|
|
23733
|
-
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
23734
|
-
*/
|
|
23804
|
+
readonly indexed: true;
|
|
23735
23805
|
}, {
|
|
23736
23806
|
readonly name: "authorized";
|
|
23737
23807
|
readonly type: "bool";
|
|
@@ -23763,6 +23833,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23763
23833
|
}];
|
|
23764
23834
|
}, {
|
|
23765
23835
|
readonly name: "TransactionApproved";
|
|
23836
|
+
/**
|
|
23837
|
+
* Cancel a pending transaction. Only callable by the NFT owner.
|
|
23838
|
+
*/
|
|
23766
23839
|
readonly type: "event";
|
|
23767
23840
|
readonly inputs: readonly [{
|
|
23768
23841
|
readonly name: "txId";
|
|
@@ -23827,7 +23900,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23827
23900
|
}]>;
|
|
23828
23901
|
type: "block";
|
|
23829
23902
|
}>;
|
|
23830
|
-
createContractEventFilter: <const abi extends import("viem").Abi
|
|
23903
|
+
createContractEventFilter: <const abi extends readonly unknown[] | import("viem").Abi, eventName extends import("viem").ContractEventName<abi> | undefined, args_6 extends import("viem").MaybeExtractEventArgsFromAbi<abi, eventName> | undefined, strict_6 extends boolean | undefined = undefined, fromBlock extends bigint | import("viem").BlockTag | undefined = undefined, toBlock extends bigint | import("viem").BlockTag | undefined = undefined>(args: import("viem").CreateContractEventFilterParameters<abi, eventName, args, strict_6, fromBlock, toBlock>) => Promise<import("viem").CreateContractEventFilterReturnType<abi, eventName, args, strict_6, fromBlock, toBlock>>;
|
|
23831
23904
|
createEventFilter: <const abiEvent extends import("viem").AbiEvent | undefined = undefined, const abiEvents extends readonly unknown[] | readonly import("viem").AbiEvent[] | undefined = abiEvent extends import("viem").AbiEvent ? [abiEvent] : undefined, strict_7 extends boolean | undefined = undefined, fromBlock_1 extends bigint | import("viem").BlockTag | undefined = undefined, toBlock_1 extends bigint | import("viem").BlockTag | undefined = undefined, _EventName extends string | undefined = import("viem").MaybeAbiEventName<abiEvent>, _Args extends import("viem").MaybeExtractEventArgsFromAbi<abiEvents, _EventName> | undefined = undefined>(args?: import("viem").CreateEventFilterParameters<abiEvent, abiEvents, strict_7, fromBlock_1, toBlock_1, _EventName, _Args> | undefined) => Promise<import("viem").Filter<"event", abiEvents, _EventName, _Args, strict_7, fromBlock_1, toBlock_1> extends infer T_13 ? { [K_7 in keyof T_13]: import("viem").Filter<"event", abiEvents, _EventName, _Args, strict_7, fromBlock_1, toBlock_1>[K_7]; } : never>;
|
|
23832
23905
|
createPendingTransactionFilter: () => Promise<{
|
|
23833
23906
|
id: `0x${string}`;
|
|
@@ -23846,7 +23919,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23846
23919
|
}]>;
|
|
23847
23920
|
type: "transaction";
|
|
23848
23921
|
}>;
|
|
23849
|
-
estimateContractGas: <chain extends Chain | undefined, const abi_1 extends import("viem").Abi
|
|
23922
|
+
estimateContractGas: <chain extends Chain | undefined, const abi_1 extends readonly unknown[] | import("viem").Abi, functionName extends import("viem").ContractFunctionName<abi_1, "nonpayable" | "payable">, args_7 extends import("viem").ContractFunctionArgs<abi_1, "nonpayable" | "payable", functionName>>(args: import("viem").EstimateContractGasParameters<abi_1, functionName, args, chain>) => Promise<bigint>;
|
|
23850
23923
|
estimateGas: (args: import("viem").EstimateGasParameters<Chain>) => Promise<bigint>;
|
|
23851
23924
|
fillTransaction: <chainOverride_14 extends Chain | undefined = undefined, accountOverride_7 extends `0x${string}` | import("viem").Account | undefined = undefined>(args: import("viem").FillTransactionParameters<Chain, import("viem").Account | undefined, chainOverride_14, accountOverride_7>) => Promise<import("viem").FillTransactionReturnType<Chain, chainOverride_14>>;
|
|
23852
23925
|
getBalance: (args: import("viem").GetBalanceParameters) => Promise<bigint>;
|
|
@@ -23882,6 +23955,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23882
23955
|
to: `0x${string}` | null;
|
|
23883
23956
|
value: bigint;
|
|
23884
23957
|
nonce: number;
|
|
23958
|
+
type: "legacy";
|
|
23885
23959
|
yParity?: undefined;
|
|
23886
23960
|
from: `0x${string}`;
|
|
23887
23961
|
gas: bigint;
|
|
@@ -23895,7 +23969,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23895
23969
|
authorizationList?: undefined;
|
|
23896
23970
|
blobVersionedHashes?: undefined;
|
|
23897
23971
|
chainId?: number | undefined;
|
|
23898
|
-
type: "legacy";
|
|
23899
23972
|
gasPrice: bigint;
|
|
23900
23973
|
maxFeePerBlobGas?: undefined;
|
|
23901
23974
|
maxFeePerGas?: undefined;
|
|
@@ -23907,6 +23980,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23907
23980
|
to: `0x${string}` | null;
|
|
23908
23981
|
value: bigint;
|
|
23909
23982
|
nonce: number;
|
|
23983
|
+
type: "eip2930";
|
|
23910
23984
|
yParity: number;
|
|
23911
23985
|
from: `0x${string}`;
|
|
23912
23986
|
gas: bigint;
|
|
@@ -23920,7 +23994,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23920
23994
|
authorizationList?: undefined;
|
|
23921
23995
|
blobVersionedHashes?: undefined;
|
|
23922
23996
|
chainId: number;
|
|
23923
|
-
type: "eip2930";
|
|
23924
23997
|
gasPrice: bigint;
|
|
23925
23998
|
maxFeePerBlobGas?: undefined;
|
|
23926
23999
|
maxFeePerGas?: undefined;
|
|
@@ -23932,6 +24005,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23932
24005
|
to: `0x${string}` | null;
|
|
23933
24006
|
value: bigint;
|
|
23934
24007
|
nonce: number;
|
|
24008
|
+
type: "eip1559";
|
|
23935
24009
|
yParity: number;
|
|
23936
24010
|
from: `0x${string}`;
|
|
23937
24011
|
gas: bigint;
|
|
@@ -23945,7 +24019,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23945
24019
|
authorizationList?: undefined;
|
|
23946
24020
|
blobVersionedHashes?: undefined;
|
|
23947
24021
|
chainId: number;
|
|
23948
|
-
type: "eip1559";
|
|
23949
24022
|
gasPrice?: undefined;
|
|
23950
24023
|
maxFeePerBlobGas?: undefined;
|
|
23951
24024
|
maxFeePerGas: bigint;
|
|
@@ -23957,6 +24030,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23957
24030
|
to: `0x${string}` | null;
|
|
23958
24031
|
value: bigint;
|
|
23959
24032
|
nonce: number;
|
|
24033
|
+
type: "eip4844";
|
|
23960
24034
|
yParity: number;
|
|
23961
24035
|
from: `0x${string}`;
|
|
23962
24036
|
gas: bigint;
|
|
@@ -23970,7 +24044,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23970
24044
|
authorizationList?: undefined;
|
|
23971
24045
|
blobVersionedHashes: readonly `0x${string}`[];
|
|
23972
24046
|
chainId: number;
|
|
23973
|
-
type: "eip4844";
|
|
23974
24047
|
gasPrice?: undefined;
|
|
23975
24048
|
maxFeePerBlobGas: bigint;
|
|
23976
24049
|
maxFeePerGas: bigint;
|
|
@@ -23982,6 +24055,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23982
24055
|
to: `0x${string}` | null;
|
|
23983
24056
|
value: bigint;
|
|
23984
24057
|
nonce: number;
|
|
24058
|
+
type: "eip7702";
|
|
23985
24059
|
yParity: number;
|
|
23986
24060
|
from: `0x${string}`;
|
|
23987
24061
|
gas: bigint;
|
|
@@ -23995,7 +24069,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23995
24069
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
23996
24070
|
blobVersionedHashes?: undefined;
|
|
23997
24071
|
chainId: number;
|
|
23998
|
-
type: "eip7702";
|
|
23999
24072
|
gasPrice?: undefined;
|
|
24000
24073
|
maxFeePerBlobGas?: undefined;
|
|
24001
24074
|
maxFeePerGas: bigint;
|
|
@@ -24010,7 +24083,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24010
24083
|
getBytecode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
24011
24084
|
getChainId: () => Promise<number>;
|
|
24012
24085
|
getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
24013
|
-
getContractEvents: <const abi_2 extends import("viem").Abi
|
|
24086
|
+
getContractEvents: <const abi_2 extends readonly unknown[] | import("viem").Abi, eventName_1 extends import("viem").ContractEventName<abi_2> | undefined = undefined, strict_8 extends boolean | undefined = undefined, fromBlock_2 extends bigint | import("viem").BlockTag | undefined = undefined, toBlock_2 extends bigint | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetContractEventsParameters<abi_2, eventName_1, strict_8, fromBlock_2, toBlock_2>) => Promise<import("viem").GetContractEventsReturnType<abi_2, eventName_1, strict_8, fromBlock_2, toBlock_2>>;
|
|
24014
24087
|
getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
|
|
24015
24088
|
getEnsAddress: (args: {
|
|
24016
24089
|
blockNumber?: bigint | undefined;
|
|
@@ -24056,8 +24129,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24056
24129
|
}) => Promise<import("viem").GetEnsTextReturnType>;
|
|
24057
24130
|
getFeeHistory: (args: import("viem").GetFeeHistoryParameters) => Promise<import("viem").GetFeeHistoryReturnType>;
|
|
24058
24131
|
estimateFeesPerGas: <chainOverride_15 extends Chain | undefined = undefined, type extends import("viem").FeeValuesType = "eip1559">(args?: import("viem").EstimateFeesPerGasParameters<Chain, chainOverride_15, type> | undefined) => Promise<import("viem").EstimateFeesPerGasReturnType<type>>;
|
|
24059
|
-
getFilterChanges: <filterType extends import("viem").FilterType, const abi_3 extends import("viem").Abi |
|
|
24060
|
-
getFilterLogs: <const abi_4 extends import("viem").Abi |
|
|
24132
|
+
getFilterChanges: <filterType extends import("viem").FilterType, const abi_3 extends readonly unknown[] | import("viem").Abi | undefined, eventName_2 extends string | undefined, strict_9 extends boolean | undefined = undefined, fromBlock_3 extends bigint | import("viem").BlockTag | undefined = undefined, toBlock_3 extends bigint | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetFilterChangesParameters<filterType, abi_3, eventName_2, strict_9, fromBlock_3, toBlock_3>) => Promise<import("viem").GetFilterChangesReturnType<filterType, abi_3, eventName_2, strict_9, fromBlock_3, toBlock_3>>;
|
|
24133
|
+
getFilterLogs: <const abi_4 extends readonly unknown[] | import("viem").Abi | undefined, eventName_3 extends string | undefined, strict_10 extends boolean | undefined = undefined, fromBlock_4 extends bigint | import("viem").BlockTag | undefined = undefined, toBlock_4 extends bigint | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetFilterLogsParameters<abi_4, eventName_3, strict_10, fromBlock_4, toBlock_4>) => Promise<import("viem").GetFilterLogsReturnType<abi_4, eventName_3, strict_10, fromBlock_4, toBlock_4>>;
|
|
24061
24134
|
getGasPrice: () => Promise<bigint>;
|
|
24062
24135
|
getLogs: <const abiEvent_1 extends import("viem").AbiEvent | undefined = undefined, const abiEvents_1 extends readonly unknown[] | readonly import("viem").AbiEvent[] | undefined = abiEvent_1 extends import("viem").AbiEvent ? [abiEvent_1] : undefined, strict_11 extends boolean | undefined = undefined, fromBlock_5 extends bigint | import("viem").BlockTag | undefined = undefined, toBlock_5 extends bigint | import("viem").BlockTag | undefined = undefined>(args?: import("viem").GetLogsParameters<abiEvent_1, abiEvents_1, strict_11, fromBlock_5, toBlock_5> | undefined) => Promise<import("viem").GetLogsReturnType<abiEvent_1, abiEvents_1, strict_11, fromBlock_5, toBlock_5>>;
|
|
24063
24136
|
getProof: (args: import("viem").GetProofParameters) => Promise<import("viem").GetProofReturnType>;
|
|
@@ -24069,6 +24142,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24069
24142
|
to: `0x${string}` | null;
|
|
24070
24143
|
value: bigint;
|
|
24071
24144
|
nonce: number;
|
|
24145
|
+
type: "legacy";
|
|
24072
24146
|
yParity?: undefined;
|
|
24073
24147
|
from: `0x${string}`;
|
|
24074
24148
|
gas: bigint;
|
|
@@ -24082,7 +24156,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24082
24156
|
authorizationList?: undefined;
|
|
24083
24157
|
blobVersionedHashes?: undefined;
|
|
24084
24158
|
chainId?: number | undefined;
|
|
24085
|
-
type: "legacy";
|
|
24086
24159
|
gasPrice: bigint;
|
|
24087
24160
|
maxFeePerBlobGas?: undefined;
|
|
24088
24161
|
maxFeePerGas?: undefined;
|
|
@@ -24094,6 +24167,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24094
24167
|
to: `0x${string}` | null;
|
|
24095
24168
|
value: bigint;
|
|
24096
24169
|
nonce: number;
|
|
24170
|
+
type: "eip2930";
|
|
24097
24171
|
yParity: number;
|
|
24098
24172
|
from: `0x${string}`;
|
|
24099
24173
|
gas: bigint;
|
|
@@ -24107,7 +24181,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24107
24181
|
authorizationList?: undefined;
|
|
24108
24182
|
blobVersionedHashes?: undefined;
|
|
24109
24183
|
chainId: number;
|
|
24110
|
-
type: "eip2930";
|
|
24111
24184
|
gasPrice: bigint;
|
|
24112
24185
|
maxFeePerBlobGas?: undefined;
|
|
24113
24186
|
maxFeePerGas?: undefined;
|
|
@@ -24119,6 +24192,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24119
24192
|
to: `0x${string}` | null;
|
|
24120
24193
|
value: bigint;
|
|
24121
24194
|
nonce: number;
|
|
24195
|
+
type: "eip1559";
|
|
24122
24196
|
yParity: number;
|
|
24123
24197
|
from: `0x${string}`;
|
|
24124
24198
|
gas: bigint;
|
|
@@ -24132,7 +24206,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24132
24206
|
authorizationList?: undefined;
|
|
24133
24207
|
blobVersionedHashes?: undefined;
|
|
24134
24208
|
chainId: number;
|
|
24135
|
-
type: "eip1559";
|
|
24136
24209
|
gasPrice?: undefined;
|
|
24137
24210
|
maxFeePerBlobGas?: undefined;
|
|
24138
24211
|
maxFeePerGas: bigint;
|
|
@@ -24144,6 +24217,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24144
24217
|
to: `0x${string}` | null;
|
|
24145
24218
|
value: bigint;
|
|
24146
24219
|
nonce: number;
|
|
24220
|
+
type: "eip4844";
|
|
24147
24221
|
yParity: number;
|
|
24148
24222
|
from: `0x${string}`;
|
|
24149
24223
|
gas: bigint;
|
|
@@ -24157,7 +24231,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24157
24231
|
authorizationList?: undefined;
|
|
24158
24232
|
blobVersionedHashes: readonly `0x${string}`[];
|
|
24159
24233
|
chainId: number;
|
|
24160
|
-
type: "eip4844";
|
|
24161
24234
|
gasPrice?: undefined;
|
|
24162
24235
|
maxFeePerBlobGas: bigint;
|
|
24163
24236
|
maxFeePerGas: bigint;
|
|
@@ -24169,6 +24242,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24169
24242
|
to: `0x${string}` | null;
|
|
24170
24243
|
value: bigint;
|
|
24171
24244
|
nonce: number;
|
|
24245
|
+
type: "eip7702";
|
|
24172
24246
|
yParity: number;
|
|
24173
24247
|
from: `0x${string}`;
|
|
24174
24248
|
gas: bigint;
|
|
@@ -24182,7 +24256,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24182
24256
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
24183
24257
|
blobVersionedHashes?: undefined;
|
|
24184
24258
|
chainId: number;
|
|
24185
|
-
type: "eip7702";
|
|
24186
24259
|
gasPrice?: undefined;
|
|
24187
24260
|
maxFeePerBlobGas?: undefined;
|
|
24188
24261
|
maxFeePerGas: bigint;
|
|
@@ -27447,7 +27520,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
27447
27520
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
27448
27521
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_69 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
27449
27522
|
chainId?: number | undefined;
|
|
27450
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "
|
|
27523
|
+
}, (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
27524
|
chain: T_45;
|
|
27452
27525
|
} : {
|
|
27453
27526
|
chain?: undefined;
|
|
@@ -30699,19 +30772,19 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30699
30772
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
30700
30773
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_56 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
30701
30774
|
chainId?: number | undefined;
|
|
30702
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "
|
|
30703
|
-
readContract: <const abi_5 extends import("viem").Abi
|
|
30775
|
+
}, (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>;
|
|
30776
|
+
readContract: <const abi_5 extends readonly unknown[] | import("viem").Abi, 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
30777
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<`0x${string}`>;
|
|
30705
30778
|
sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<import("viem").TransactionReceipt>;
|
|
30706
30779
|
simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
|
|
30707
30780
|
simulateBlocks: <const calls_1 extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls_1>) => Promise<import("viem").SimulateBlocksReturnType<calls_1>>;
|
|
30708
30781
|
simulateCalls: <const calls_2 extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls_2>) => Promise<import("viem").SimulateCallsReturnType<calls_2>>;
|
|
30709
|
-
simulateContract: <const abi_6 extends import("viem").Abi
|
|
30782
|
+
simulateContract: <const abi_6 extends readonly unknown[] | import("viem").Abi, functionName_2 extends import("viem").ContractFunctionName<abi_6, "nonpayable" | "payable">, const args_9 extends import("viem").ContractFunctionArgs<abi_6, "nonpayable" | "payable", functionName_2>, chainOverride_18 extends Chain | undefined, accountOverride_9 extends `0x${string}` | import("viem").Account | undefined = undefined>(args: import("viem").SimulateContractParameters<abi_6, functionName_2, args_9, Chain, chainOverride_18, accountOverride_9>) => Promise<import("viem").SimulateContractReturnType<abi_6, functionName_2, args_9, Chain, import("viem").Account | undefined, chainOverride_18, accountOverride_9>>;
|
|
30710
30783
|
verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<boolean>;
|
|
30711
30784
|
verifyMessage: (args: {
|
|
30712
30785
|
address: `0x${string}`;
|
|
30713
|
-
blockNumber?: bigint | undefined;
|
|
30714
30786
|
chain?: Chain | null | undefined;
|
|
30787
|
+
blockNumber?: bigint | undefined;
|
|
30715
30788
|
blockTag?: import("viem").BlockTag | undefined;
|
|
30716
30789
|
factory?: `0x${string}` | undefined;
|
|
30717
30790
|
factoryData?: `0x${string}` | undefined;
|
|
@@ -30737,7 +30810,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30737
30810
|
waitForTransactionReceipt: (args: import("viem").WaitForTransactionReceiptParameters<Chain>) => Promise<import("viem").TransactionReceipt>;
|
|
30738
30811
|
watchBlockNumber: (args: import("viem").WatchBlockNumberParameters) => import("viem").WatchBlockNumberReturnType;
|
|
30739
30812
|
watchBlocks: <includeTransactions_1 extends boolean = false, blockTag_2 extends import("viem").BlockTag = "latest">(args: import("viem").WatchBlocksParameters<import("viem").HttpTransport<undefined, false>, Chain, includeTransactions_1, blockTag_2>) => import("viem").WatchBlocksReturnType;
|
|
30740
|
-
watchContractEvent: <const abi_7 extends import("viem").Abi
|
|
30813
|
+
watchContractEvent: <const abi_7 extends readonly unknown[] | import("viem").Abi, eventName_4 extends import("viem").ContractEventName<abi_7>, strict_12 extends boolean | undefined = undefined>(args: import("viem").WatchContractEventParameters<abi_7, eventName_4, strict_12, import("viem").HttpTransport<undefined, false>>) => import("viem").WatchContractEventReturnType;
|
|
30741
30814
|
watchEvent: <const abiEvent_2 extends import("viem").AbiEvent | undefined = undefined, const abiEvents_2 extends readonly unknown[] | readonly import("viem").AbiEvent[] | undefined = abiEvent_2 extends import("viem").AbiEvent ? [abiEvent_2] : undefined, strict_13 extends boolean | undefined = undefined>(args: import("viem").WatchEventParameters<abiEvent_2, abiEvents_2, strict_13, import("viem").HttpTransport<undefined, false>>) => import("viem").WatchEventReturnType;
|
|
30742
30815
|
watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<import("viem").HttpTransport<undefined, false>>) => import("viem").WatchPendingTransactionsReturnType;
|
|
30743
30816
|
extend: <const client extends {
|
|
@@ -30756,7 +30829,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30756
30829
|
transport?: undefined;
|
|
30757
30830
|
type?: undefined;
|
|
30758
30831
|
uid?: undefined;
|
|
30759
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, Chain, undefined>, "prepareTransactionRequest" | "
|
|
30832
|
+
} & 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
30833
|
};
|
|
30761
30834
|
walletClient: {
|
|
30762
30835
|
account: import("viem").Account | undefined;
|
|
@@ -30782,7 +30855,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30782
30855
|
type: string;
|
|
30783
30856
|
uid: string;
|
|
30784
30857
|
addChain: (args: import("viem").AddChainParameters) => Promise<void>;
|
|
30785
|
-
deployContract: <const abi_8 extends import("viem").Abi
|
|
30858
|
+
deployContract: <const abi_8 extends readonly unknown[] | import("viem").Abi, chainOverride_19 extends Chain | undefined>(args: import("viem").DeployContractParameters<abi_8, Chain | undefined, import("viem").Account | undefined, chainOverride_19>) => Promise<`0x${string}`>;
|
|
30786
30859
|
fillTransaction: <chainOverride_20 extends Chain | undefined = undefined, accountOverride_10 extends `0x${string}` | import("viem").Account | undefined = undefined>(args: import("viem").FillTransactionParameters<Chain | undefined, import("viem").Account | undefined, chainOverride_20, accountOverride_10>) => Promise<import("viem").FillTransactionReturnType<Chain | undefined, chainOverride_20>>;
|
|
30787
30860
|
getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
|
|
30788
30861
|
getCallsStatus: (parameters: import("viem").GetCallsStatusParameters) => Promise<{
|
|
@@ -34103,7 +34176,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
34103
34176
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
34104
34177
|
} ? "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
34178
|
chainId?: number | undefined;
|
|
34106
|
-
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "
|
|
34179
|
+
}, (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
34180
|
chain: T_73;
|
|
34108
34181
|
} : {
|
|
34109
34182
|
chain?: undefined;
|
|
@@ -37355,7 +37428,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
37355
37428
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
37356
37429
|
} ? "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
37430
|
chainId?: number | undefined;
|
|
37358
|
-
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "
|
|
37431
|
+
}, (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
37432
|
requestAddresses: () => Promise<import("viem").RequestAddressesReturnType>;
|
|
37360
37433
|
requestPermissions: (args: {
|
|
37361
37434
|
[x: string]: Record<string, any>;
|
|
@@ -38282,12 +38355,14 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38282
38355
|
} ? "eip7702" : never) | (request_4["type"] extends string | undefined ? Extract<request_4["type"], string> : never)> ? T_103 extends "legacy" ? import("viem").TransactionSerializedLegacy : never : never : never)>>;
|
|
38283
38356
|
signTypedData: <const typedData extends {
|
|
38284
38357
|
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
38285
|
-
[x: `string[${string}]`]: undefined;
|
|
38286
|
-
[x: `function[${string}]`]: undefined;
|
|
38287
38358
|
[x: `address[${string}]`]: undefined;
|
|
38288
|
-
[x: `uint256[${string}]`]: undefined;
|
|
38289
38359
|
[x: `bool[${string}]`]: undefined;
|
|
38360
|
+
[x: `string[${string}]`]: undefined;
|
|
38290
38361
|
[x: `bytes[${string}]`]: undefined;
|
|
38362
|
+
[x: `int[${string}]`]: undefined;
|
|
38363
|
+
[x: `uint[${string}]`]: undefined;
|
|
38364
|
+
[x: `function[${string}]`]: undefined;
|
|
38365
|
+
[x: `uint256[${string}]`]: undefined;
|
|
38291
38366
|
[x: `bytes4[${string}]`]: undefined;
|
|
38292
38367
|
[x: `bytes2[${string}]`]: undefined;
|
|
38293
38368
|
[x: `bytes3[${string}]`]: undefined;
|
|
@@ -38295,7 +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;
|
|
38298
|
-
[x: `
|
|
38373
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
38299
38374
|
[x: `bytes6[${string}]`]: undefined;
|
|
38300
38375
|
[x: `bytes8[${string}]`]: undefined;
|
|
38301
38376
|
[x: `bytes9[${string}]`]: undefined;
|
|
@@ -38307,10 +38382,10 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38307
38382
|
[x: `bytes15[${string}]`]: undefined;
|
|
38308
38383
|
[x: `bytes16[${string}]`]: undefined;
|
|
38309
38384
|
[x: `bytes17[${string}]`]: undefined;
|
|
38385
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
38310
38386
|
[x: `bytes19[${string}]`]: undefined;
|
|
38311
38387
|
[x: `bytes20[${string}]`]: undefined;
|
|
38312
38388
|
[x: `bytes21[${string}]`]: undefined;
|
|
38313
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
38314
38389
|
[x: `bytes24[${string}]`]: undefined;
|
|
38315
38390
|
[x: `bytes25[${string}]`]: undefined;
|
|
38316
38391
|
[x: `bytes26[${string}]`]: undefined;
|
|
@@ -38320,7 +38395,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38320
38395
|
[x: `bytes30[${string}]`]: undefined;
|
|
38321
38396
|
[x: `bytes31[${string}]`]: undefined;
|
|
38322
38397
|
[x: `bytes32[${string}]`]: undefined;
|
|
38323
|
-
[x: `int[${string}]`]: undefined;
|
|
38324
38398
|
[x: `int8[${string}]`]: undefined;
|
|
38325
38399
|
[x: `int16[${string}]`]: undefined;
|
|
38326
38400
|
[x: `int24[${string}]`]: undefined;
|
|
@@ -38353,7 +38427,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38353
38427
|
[x: `int240[${string}]`]: undefined;
|
|
38354
38428
|
[x: `int248[${string}]`]: undefined;
|
|
38355
38429
|
[x: `int256[${string}]`]: undefined;
|
|
38356
|
-
[x: `uint[${string}]`]: undefined;
|
|
38357
38430
|
[x: `uint8[${string}]`]: undefined;
|
|
38358
38431
|
[x: `uint16[${string}]`]: undefined;
|
|
38359
38432
|
[x: `uint24[${string}]`]: undefined;
|
|
@@ -38397,7 +38470,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38397
38470
|
bytes7?: undefined;
|
|
38398
38471
|
bytes5?: undefined;
|
|
38399
38472
|
bytes23?: undefined;
|
|
38400
|
-
|
|
38473
|
+
bytes22?: undefined;
|
|
38401
38474
|
bytes6?: undefined;
|
|
38402
38475
|
bytes8?: undefined;
|
|
38403
38476
|
bytes9?: undefined;
|
|
@@ -38409,10 +38482,10 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38409
38482
|
bytes15?: undefined;
|
|
38410
38483
|
bytes16?: undefined;
|
|
38411
38484
|
bytes17?: undefined;
|
|
38485
|
+
bytes18?: undefined;
|
|
38412
38486
|
bytes19?: undefined;
|
|
38413
38487
|
bytes20?: undefined;
|
|
38414
38488
|
bytes21?: undefined;
|
|
38415
|
-
bytes22?: undefined;
|
|
38416
38489
|
bytes24?: undefined;
|
|
38417
38490
|
bytes25?: undefined;
|
|
38418
38491
|
bytes26?: undefined;
|
|
@@ -38504,8 +38577,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38504
38577
|
status: "pending" | "success" | "failure" | undefined;
|
|
38505
38578
|
}>;
|
|
38506
38579
|
watchAsset: (args: import("viem").WatchAssetParams) => Promise<boolean>;
|
|
38507
|
-
writeContract: <const abi_9 extends import("viem").Abi
|
|
38508
|
-
writeContractSync: <const abi_10 extends import("viem").Abi
|
|
38580
|
+
writeContract: <const abi_9 extends readonly unknown[] | import("viem").Abi, functionName_3 extends import("viem").ContractFunctionName<abi_9, "nonpayable" | "payable">, args_10 extends import("viem").ContractFunctionArgs<abi_9, "nonpayable" | "payable", functionName_3>, chainOverride_27 extends Chain | undefined = undefined>(args: import("viem").WriteContractParameters<abi_9, functionName_3, args_10, Chain | undefined, import("viem").Account | undefined, chainOverride_27>) => Promise<`0x${string}`>;
|
|
38581
|
+
writeContractSync: <const abi_10 extends readonly unknown[] | import("viem").Abi, functionName_4 extends import("viem").ContractFunctionName<abi_10, "nonpayable" | "payable">, args_11 extends import("viem").ContractFunctionArgs<abi_10, "nonpayable" | "payable", functionName_4>, chainOverride_28 extends Chain | undefined = undefined>(args: import("viem").WriteContractSyncParameters<abi_10, functionName_4, args_11, Chain | undefined, import("viem").Account | undefined, chainOverride_28>) => Promise<import("viem").TransactionReceipt>;
|
|
38509
38582
|
extend: <const client_1 extends {
|
|
38510
38583
|
[x: string]: unknown;
|
|
38511
38584
|
account?: undefined;
|
|
@@ -38522,7 +38595,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38522
38595
|
transport?: undefined;
|
|
38523
38596
|
type?: undefined;
|
|
38524
38597
|
uid?: undefined;
|
|
38525
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").Transport, Chain | undefined, import("viem").Account | undefined>, "prepareTransactionRequest" | "
|
|
38598
|
+
} & 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
38599
|
};
|
|
38527
38600
|
chain: Chain;
|
|
38528
38601
|
};
|