agentwallet-sdk 6.0.2 → 6.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -255
- package/dist/bridge/__tests__/solana.test.js +1 -1
- package/dist/bridge/__tests__/solana.test.js.map +1 -1
- package/dist/convenience.d.ts +104 -0
- package/dist/convenience.d.ts.map +1 -0
- package/dist/convenience.js +264 -0
- package/dist/convenience.js.map +1 -0
- package/dist/escrow/MutualStakeEscrow.d.ts.map +1 -1
- package/dist/escrow/MutualStakeEscrow.js +5 -3
- package/dist/escrow/MutualStakeEscrow.js.map +1 -1
- package/dist/index.d.ts +254 -49
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -14
- package/dist/index.js.map +1 -1
- package/dist/plugins/elizaos.d.ts +52 -0
- package/dist/plugins/elizaos.d.ts.map +1 -0
- package/dist/plugins/elizaos.js +89 -0
- package/dist/plugins/elizaos.js.map +1 -0
- package/dist/policy/SpendingPolicy.test.js.map +1 -1
- package/dist/swap/SwapModule.d.ts.map +1 -1
- package/dist/swap/SwapModule.js +3 -3
- package/dist/swap/SwapModule.js.map +1 -1
- package/dist/swap/index.d.ts +1 -1
- package/dist/swap/index.d.ts.map +1 -1
- package/dist/swap/index.js +1 -1
- package/dist/swap/index.js.map +1 -1
- package/dist/swap/types.d.ts +2 -0
- package/dist/swap/types.d.ts.map +1 -1
- package/dist/swap/types.js +2 -0
- package/dist/swap/types.js.map +1 -1
- package/dist/x402/__tests__/client.test.js +1 -1
- package/dist/x402/__tests__/client.test.js.map +1 -1
- package/dist/x402/chains/abstract/index.d.ts.map +1 -1
- package/dist/x402/chains/abstract/index.js.map +1 -1
- package/dist/x402/chains/stellar/index.d.ts.map +1 -1
- package/dist/x402/chains/stellar/index.js +0 -2
- package/dist/x402/chains/stellar/index.js.map +1 -1
- package/dist/x402/client.d.ts +1 -7
- package/dist/x402/client.d.ts.map +1 -1
- package/dist/x402/client.js +25 -25
- package/dist/x402/client.js.map +1 -1
- package/dist/x402/index.d.ts +0 -1
- package/dist/x402/index.d.ts.map +1 -1
- package/dist/x402/index.js +0 -2
- package/dist/x402/index.js.map +1 -1
- package/dist/x402/middleware.d.ts.map +1 -1
- package/dist/x402/middleware.js +3 -0
- package/dist/x402/middleware.js.map +1 -1
- package/package.json +6 -13
- package/dist/tokens/__tests__/decimals.test.d.ts +0 -2
- package/dist/tokens/__tests__/decimals.test.d.ts.map +0 -1
- package/dist/tokens/__tests__/decimals.test.js +0 -107
- package/dist/tokens/__tests__/decimals.test.js.map +0 -1
- package/dist/tokens/__tests__/registry.test.d.ts +0 -2
- package/dist/tokens/__tests__/registry.test.d.ts.map +0 -1
- package/dist/tokens/__tests__/registry.test.js +0 -191
- package/dist/tokens/__tests__/registry.test.js.map +0 -1
- package/dist/tokens/__tests__/transfers.test.d.ts +0 -2
- package/dist/tokens/__tests__/transfers.test.d.ts.map +0 -1
- package/dist/tokens/__tests__/transfers.test.js +0 -103
- package/dist/tokens/__tests__/transfers.test.js.map +0 -1
- package/dist/tokens/decimals.d.ts +0 -65
- package/dist/tokens/decimals.d.ts.map +0 -1
- package/dist/tokens/decimals.js +0 -112
- package/dist/tokens/decimals.js.map +0 -1
- package/dist/tokens/index.d.ts +0 -14
- package/dist/tokens/index.d.ts.map +0 -1
- package/dist/tokens/index.js +0 -14
- package/dist/tokens/index.js.map +0 -1
- package/dist/tokens/registry.d.ts +0 -82
- package/dist/tokens/registry.d.ts.map +0 -1
- package/dist/tokens/registry.js +0 -293
- package/dist/tokens/registry.js.map +0 -1
- package/dist/tokens/solana.d.ts +0 -108
- package/dist/tokens/solana.d.ts.map +0 -1
- package/dist/tokens/solana.js +0 -306
- package/dist/tokens/solana.js.map +0 -1
- package/dist/tokens/transfers.d.ts +0 -95
- package/dist/tokens/transfers.d.ts.map +0 -1
- package/dist/tokens/transfers.js +0 -196
- package/dist/tokens/transfers.js.map +0 -1
- package/dist/x402/multi-asset.d.ts +0 -54
- package/dist/x402/multi-asset.d.ts.map +0 -1
- package/dist/x402/multi-asset.js +0 -123
- package/dist/x402/multi-asset.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ export type { SpendPolicy, BudgetStatus, PendingTx, ExecuteResult, AgentWalletCo
|
|
|
4
4
|
export { AgentAccountV2Abi, AgentAccountFactoryV2Abi } from './abi.js';
|
|
5
5
|
export { X402Client, X402BudgetTracker, X402PaymentError, X402BudgetExceededError, createX402Client, createX402Fetch, wrapWithX402, USDC_ADDRESSES, DEFAULT_SUPPORTED_NETWORKS, } from './x402/index.js';
|
|
6
6
|
export type { X402PaymentRequired, X402PaymentRequirements, X402PaymentPayload, X402SettlementResponse, X402ResourceInfo, X402ServiceBudget, X402TransactionLog, X402ClientConfig, } from './x402/index.js';
|
|
7
|
-
declare const CHAINS: Record<string, Chain>;
|
|
8
7
|
/** Native ETH token address (zero address) */
|
|
9
8
|
export declare const NATIVE_TOKEN: Address;
|
|
10
9
|
/**
|
|
@@ -331,6 +330,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
331
330
|
}];
|
|
332
331
|
}, {
|
|
333
332
|
readonly name: "TransactionApproved";
|
|
333
|
+
/**
|
|
334
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
335
|
+
*/
|
|
334
336
|
readonly type: "event";
|
|
335
337
|
readonly inputs: readonly [{
|
|
336
338
|
readonly name: "txId";
|
|
@@ -661,6 +663,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
661
663
|
}];
|
|
662
664
|
}, {
|
|
663
665
|
readonly name: "TransactionApproved";
|
|
666
|
+
/**
|
|
667
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
668
|
+
*/
|
|
664
669
|
readonly type: "event";
|
|
665
670
|
readonly inputs: readonly [{
|
|
666
671
|
readonly name: "txId";
|
|
@@ -991,6 +996,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
991
996
|
}];
|
|
992
997
|
}, {
|
|
993
998
|
readonly name: "TransactionApproved";
|
|
999
|
+
/**
|
|
1000
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
1001
|
+
*/
|
|
994
1002
|
readonly type: "event";
|
|
995
1003
|
readonly inputs: readonly [{
|
|
996
1004
|
readonly name: "txId";
|
|
@@ -1321,6 +1329,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1321
1329
|
}];
|
|
1322
1330
|
}, {
|
|
1323
1331
|
readonly name: "TransactionApproved";
|
|
1332
|
+
/**
|
|
1333
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
1334
|
+
*/
|
|
1324
1335
|
readonly type: "event";
|
|
1325
1336
|
readonly inputs: readonly [{
|
|
1326
1337
|
readonly name: "txId";
|
|
@@ -1651,6 +1662,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1651
1662
|
}];
|
|
1652
1663
|
}, {
|
|
1653
1664
|
readonly name: "TransactionApproved";
|
|
1665
|
+
/**
|
|
1666
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
1667
|
+
*/
|
|
1654
1668
|
readonly type: "event";
|
|
1655
1669
|
readonly inputs: readonly [{
|
|
1656
1670
|
readonly name: "txId";
|
|
@@ -1981,6 +1995,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1981
1995
|
}];
|
|
1982
1996
|
}, {
|
|
1983
1997
|
readonly name: "TransactionApproved";
|
|
1998
|
+
/**
|
|
1999
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
2000
|
+
*/
|
|
1984
2001
|
readonly type: "event";
|
|
1985
2002
|
readonly inputs: readonly [{
|
|
1986
2003
|
readonly name: "txId";
|
|
@@ -2311,6 +2328,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2311
2328
|
}];
|
|
2312
2329
|
}, {
|
|
2313
2330
|
readonly name: "TransactionApproved";
|
|
2331
|
+
/**
|
|
2332
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
2333
|
+
*/
|
|
2314
2334
|
readonly type: "event";
|
|
2315
2335
|
readonly inputs: readonly [{
|
|
2316
2336
|
readonly name: "txId";
|
|
@@ -2641,6 +2661,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2641
2661
|
}];
|
|
2642
2662
|
}, {
|
|
2643
2663
|
readonly name: "TransactionApproved";
|
|
2664
|
+
/**
|
|
2665
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
2666
|
+
*/
|
|
2644
2667
|
readonly type: "event";
|
|
2645
2668
|
readonly inputs: readonly [{
|
|
2646
2669
|
readonly name: "txId";
|
|
@@ -2971,6 +2994,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2971
2994
|
}];
|
|
2972
2995
|
}, {
|
|
2973
2996
|
readonly name: "TransactionApproved";
|
|
2997
|
+
/**
|
|
2998
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
2999
|
+
*/
|
|
2974
3000
|
readonly type: "event";
|
|
2975
3001
|
readonly inputs: readonly [{
|
|
2976
3002
|
readonly name: "txId";
|
|
@@ -3301,6 +3327,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3301
3327
|
}];
|
|
3302
3328
|
}, {
|
|
3303
3329
|
readonly name: "TransactionApproved";
|
|
3330
|
+
/**
|
|
3331
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
3332
|
+
*/
|
|
3304
3333
|
readonly type: "event";
|
|
3305
3334
|
readonly inputs: readonly [{
|
|
3306
3335
|
readonly name: "txId";
|
|
@@ -3633,6 +3662,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3633
3662
|
}];
|
|
3634
3663
|
}, {
|
|
3635
3664
|
readonly name: "TransactionApproved";
|
|
3665
|
+
/**
|
|
3666
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
3667
|
+
*/
|
|
3636
3668
|
readonly type: "event";
|
|
3637
3669
|
readonly inputs: readonly [{
|
|
3638
3670
|
readonly name: "txId";
|
|
@@ -3963,6 +3995,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3963
3995
|
}];
|
|
3964
3996
|
}, {
|
|
3965
3997
|
readonly name: "TransactionApproved";
|
|
3998
|
+
/**
|
|
3999
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
4000
|
+
*/
|
|
3966
4001
|
readonly type: "event";
|
|
3967
4002
|
readonly inputs: readonly [{
|
|
3968
4003
|
readonly name: "txId";
|
|
@@ -4293,6 +4328,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4293
4328
|
}];
|
|
4294
4329
|
}, {
|
|
4295
4330
|
readonly name: "TransactionApproved";
|
|
4331
|
+
/**
|
|
4332
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
4333
|
+
*/
|
|
4296
4334
|
readonly type: "event";
|
|
4297
4335
|
readonly inputs: readonly [{
|
|
4298
4336
|
readonly name: "txId";
|
|
@@ -4623,6 +4661,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4623
4661
|
}];
|
|
4624
4662
|
}, {
|
|
4625
4663
|
readonly name: "TransactionApproved";
|
|
4664
|
+
/**
|
|
4665
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
4666
|
+
*/
|
|
4626
4667
|
readonly type: "event";
|
|
4627
4668
|
readonly inputs: readonly [{
|
|
4628
4669
|
readonly name: "txId";
|
|
@@ -4953,6 +4994,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4953
4994
|
}];
|
|
4954
4995
|
}, {
|
|
4955
4996
|
readonly name: "TransactionApproved";
|
|
4997
|
+
/**
|
|
4998
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
4999
|
+
*/
|
|
4956
5000
|
readonly type: "event";
|
|
4957
5001
|
readonly inputs: readonly [{
|
|
4958
5002
|
readonly name: "txId";
|
|
@@ -5283,6 +5327,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5283
5327
|
}];
|
|
5284
5328
|
}, {
|
|
5285
5329
|
readonly name: "TransactionApproved";
|
|
5330
|
+
/**
|
|
5331
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
5332
|
+
*/
|
|
5286
5333
|
readonly type: "event";
|
|
5287
5334
|
readonly inputs: readonly [{
|
|
5288
5335
|
readonly name: "txId";
|
|
@@ -5613,6 +5660,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5613
5660
|
}];
|
|
5614
5661
|
}, {
|
|
5615
5662
|
readonly name: "TransactionApproved";
|
|
5663
|
+
/**
|
|
5664
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
5665
|
+
*/
|
|
5616
5666
|
readonly type: "event";
|
|
5617
5667
|
readonly inputs: readonly [{
|
|
5618
5668
|
readonly name: "txId";
|
|
@@ -5944,6 +5994,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5944
5994
|
}];
|
|
5945
5995
|
}, {
|
|
5946
5996
|
readonly name: "TransactionApproved";
|
|
5997
|
+
/**
|
|
5998
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
5999
|
+
*/
|
|
5947
6000
|
readonly type: "event";
|
|
5948
6001
|
readonly inputs: readonly [{
|
|
5949
6002
|
readonly name: "txId";
|
|
@@ -6274,6 +6327,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6274
6327
|
}];
|
|
6275
6328
|
}, {
|
|
6276
6329
|
readonly name: "TransactionApproved";
|
|
6330
|
+
/**
|
|
6331
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
6332
|
+
*/
|
|
6277
6333
|
readonly type: "event";
|
|
6278
6334
|
readonly inputs: readonly [{
|
|
6279
6335
|
readonly name: "txId";
|
|
@@ -6604,6 +6660,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6604
6660
|
}];
|
|
6605
6661
|
}, {
|
|
6606
6662
|
readonly name: "TransactionApproved";
|
|
6663
|
+
/**
|
|
6664
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
6665
|
+
*/
|
|
6607
6666
|
readonly type: "event";
|
|
6608
6667
|
readonly inputs: readonly [{
|
|
6609
6668
|
readonly name: "txId";
|
|
@@ -6934,6 +6993,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6934
6993
|
}];
|
|
6935
6994
|
}, {
|
|
6936
6995
|
readonly name: "TransactionApproved";
|
|
6996
|
+
/**
|
|
6997
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
6998
|
+
*/
|
|
6937
6999
|
readonly type: "event";
|
|
6938
7000
|
readonly inputs: readonly [{
|
|
6939
7001
|
readonly name: "txId";
|
|
@@ -7264,6 +7326,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7264
7326
|
}];
|
|
7265
7327
|
}, {
|
|
7266
7328
|
readonly name: "TransactionApproved";
|
|
7329
|
+
/**
|
|
7330
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
7331
|
+
*/
|
|
7267
7332
|
readonly type: "event";
|
|
7268
7333
|
readonly inputs: readonly [{
|
|
7269
7334
|
readonly name: "txId";
|
|
@@ -7594,6 +7659,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7594
7659
|
}];
|
|
7595
7660
|
}, {
|
|
7596
7661
|
readonly name: "TransactionApproved";
|
|
7662
|
+
/**
|
|
7663
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
7664
|
+
*/
|
|
7597
7665
|
readonly type: "event";
|
|
7598
7666
|
readonly inputs: readonly [{
|
|
7599
7667
|
readonly name: "txId";
|
|
@@ -7924,6 +7992,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7924
7992
|
}];
|
|
7925
7993
|
}, {
|
|
7926
7994
|
readonly name: "TransactionApproved";
|
|
7995
|
+
/**
|
|
7996
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
7997
|
+
*/
|
|
7927
7998
|
readonly type: "event";
|
|
7928
7999
|
readonly inputs: readonly [{
|
|
7929
8000
|
readonly name: "txId";
|
|
@@ -8256,6 +8327,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8256
8327
|
}];
|
|
8257
8328
|
}, {
|
|
8258
8329
|
readonly name: "TransactionApproved";
|
|
8330
|
+
/**
|
|
8331
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
8332
|
+
*/
|
|
8259
8333
|
readonly type: "event";
|
|
8260
8334
|
readonly inputs: readonly [{
|
|
8261
8335
|
readonly name: "txId";
|
|
@@ -8585,6 +8659,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8585
8659
|
}];
|
|
8586
8660
|
}, {
|
|
8587
8661
|
readonly name: "TransactionApproved";
|
|
8662
|
+
/**
|
|
8663
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
8664
|
+
*/
|
|
8588
8665
|
readonly type: "event";
|
|
8589
8666
|
readonly inputs: readonly [{
|
|
8590
8667
|
readonly name: "txId";
|
|
@@ -8915,6 +8992,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8915
8992
|
}];
|
|
8916
8993
|
}, {
|
|
8917
8994
|
readonly name: "TransactionApproved";
|
|
8995
|
+
/**
|
|
8996
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
8997
|
+
*/
|
|
8918
8998
|
readonly type: "event";
|
|
8919
8999
|
readonly inputs: readonly [{
|
|
8920
9000
|
readonly name: "txId";
|
|
@@ -9244,6 +9324,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9244
9324
|
}];
|
|
9245
9325
|
}, {
|
|
9246
9326
|
readonly name: "TransactionApproved";
|
|
9327
|
+
/**
|
|
9328
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
9329
|
+
*/
|
|
9247
9330
|
readonly type: "event";
|
|
9248
9331
|
readonly inputs: readonly [{
|
|
9249
9332
|
readonly name: "txId";
|
|
@@ -9574,6 +9657,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9574
9657
|
}];
|
|
9575
9658
|
}, {
|
|
9576
9659
|
readonly name: "TransactionApproved";
|
|
9660
|
+
/**
|
|
9661
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
9662
|
+
*/
|
|
9577
9663
|
readonly type: "event";
|
|
9578
9664
|
readonly inputs: readonly [{
|
|
9579
9665
|
readonly name: "txId";
|
|
@@ -9903,6 +9989,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9903
9989
|
}];
|
|
9904
9990
|
}, {
|
|
9905
9991
|
readonly name: "TransactionApproved";
|
|
9992
|
+
/**
|
|
9993
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
9994
|
+
*/
|
|
9906
9995
|
readonly type: "event";
|
|
9907
9996
|
readonly inputs: readonly [{
|
|
9908
9997
|
readonly name: "txId";
|
|
@@ -10233,6 +10322,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10233
10322
|
}];
|
|
10234
10323
|
}, {
|
|
10235
10324
|
readonly name: "TransactionApproved";
|
|
10325
|
+
/**
|
|
10326
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
10327
|
+
*/
|
|
10236
10328
|
readonly type: "event";
|
|
10237
10329
|
readonly inputs: readonly [{
|
|
10238
10330
|
readonly name: "txId";
|
|
@@ -10562,6 +10654,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10562
10654
|
}];
|
|
10563
10655
|
}, {
|
|
10564
10656
|
readonly name: "TransactionApproved";
|
|
10657
|
+
/**
|
|
10658
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
10659
|
+
*/
|
|
10565
10660
|
readonly type: "event";
|
|
10566
10661
|
readonly inputs: readonly [{
|
|
10567
10662
|
readonly name: "txId";
|
|
@@ -10892,6 +10987,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10892
10987
|
}];
|
|
10893
10988
|
}, {
|
|
10894
10989
|
readonly name: "TransactionApproved";
|
|
10990
|
+
/**
|
|
10991
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
10992
|
+
*/
|
|
10895
10993
|
readonly type: "event";
|
|
10896
10994
|
readonly inputs: readonly [{
|
|
10897
10995
|
readonly name: "txId";
|
|
@@ -11221,6 +11319,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11221
11319
|
}];
|
|
11222
11320
|
}, {
|
|
11223
11321
|
readonly name: "TransactionApproved";
|
|
11322
|
+
/**
|
|
11323
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
11324
|
+
*/
|
|
11224
11325
|
readonly type: "event";
|
|
11225
11326
|
readonly inputs: readonly [{
|
|
11226
11327
|
readonly name: "txId";
|
|
@@ -11551,6 +11652,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11551
11652
|
}];
|
|
11552
11653
|
}, {
|
|
11553
11654
|
readonly name: "TransactionApproved";
|
|
11655
|
+
/**
|
|
11656
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
11657
|
+
*/
|
|
11554
11658
|
readonly type: "event";
|
|
11555
11659
|
readonly inputs: readonly [{
|
|
11556
11660
|
readonly name: "txId";
|
|
@@ -11880,6 +11984,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11880
11984
|
}];
|
|
11881
11985
|
}, {
|
|
11882
11986
|
readonly name: "TransactionApproved";
|
|
11987
|
+
/**
|
|
11988
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
11989
|
+
*/
|
|
11883
11990
|
readonly type: "event";
|
|
11884
11991
|
readonly inputs: readonly [{
|
|
11885
11992
|
readonly name: "txId";
|
|
@@ -12210,6 +12317,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12210
12317
|
}];
|
|
12211
12318
|
}, {
|
|
12212
12319
|
readonly name: "TransactionApproved";
|
|
12320
|
+
/**
|
|
12321
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
12322
|
+
*/
|
|
12213
12323
|
readonly type: "event";
|
|
12214
12324
|
readonly inputs: readonly [{
|
|
12215
12325
|
readonly name: "txId";
|
|
@@ -12539,6 +12649,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12539
12649
|
}];
|
|
12540
12650
|
}, {
|
|
12541
12651
|
readonly name: "TransactionApproved";
|
|
12652
|
+
/**
|
|
12653
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
12654
|
+
*/
|
|
12542
12655
|
readonly type: "event";
|
|
12543
12656
|
readonly inputs: readonly [{
|
|
12544
12657
|
readonly name: "txId";
|
|
@@ -12888,6 +13001,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12888
13001
|
}];
|
|
12889
13002
|
}, {
|
|
12890
13003
|
readonly name: "TransactionApproved";
|
|
13004
|
+
/**
|
|
13005
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
13006
|
+
*/
|
|
12891
13007
|
readonly type: "event";
|
|
12892
13008
|
readonly inputs: readonly [{
|
|
12893
13009
|
readonly name: "txId";
|
|
@@ -13231,6 +13347,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13231
13347
|
}];
|
|
13232
13348
|
}, {
|
|
13233
13349
|
readonly name: "TransactionApproved";
|
|
13350
|
+
/**
|
|
13351
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
13352
|
+
*/
|
|
13234
13353
|
readonly type: "event";
|
|
13235
13354
|
readonly inputs: readonly [{
|
|
13236
13355
|
readonly name: "txId";
|
|
@@ -13574,6 +13693,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13574
13693
|
}];
|
|
13575
13694
|
}, {
|
|
13576
13695
|
readonly name: "TransactionApproved";
|
|
13696
|
+
/**
|
|
13697
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
13698
|
+
*/
|
|
13577
13699
|
readonly type: "event";
|
|
13578
13700
|
readonly inputs: readonly [{
|
|
13579
13701
|
readonly name: "txId";
|
|
@@ -13921,6 +14043,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13921
14043
|
}];
|
|
13922
14044
|
}, {
|
|
13923
14045
|
readonly name: "TransactionApproved";
|
|
14046
|
+
/**
|
|
14047
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
14048
|
+
*/
|
|
13924
14049
|
readonly type: "event";
|
|
13925
14050
|
readonly inputs: readonly [{
|
|
13926
14051
|
readonly name: "txId";
|
|
@@ -14264,6 +14389,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14264
14389
|
}];
|
|
14265
14390
|
}, {
|
|
14266
14391
|
readonly name: "TransactionApproved";
|
|
14392
|
+
/**
|
|
14393
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
14394
|
+
*/
|
|
14267
14395
|
readonly type: "event";
|
|
14268
14396
|
readonly inputs: readonly [{
|
|
14269
14397
|
readonly name: "txId";
|
|
@@ -14607,6 +14735,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14607
14735
|
}];
|
|
14608
14736
|
}, {
|
|
14609
14737
|
readonly name: "TransactionApproved";
|
|
14738
|
+
/**
|
|
14739
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
14740
|
+
*/
|
|
14610
14741
|
readonly type: "event";
|
|
14611
14742
|
readonly inputs: readonly [{
|
|
14612
14743
|
readonly name: "txId";
|
|
@@ -14947,6 +15078,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14947
15078
|
}];
|
|
14948
15079
|
}, {
|
|
14949
15080
|
readonly name: "TransactionApproved";
|
|
15081
|
+
/**
|
|
15082
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
15083
|
+
*/
|
|
14950
15084
|
readonly type: "event";
|
|
14951
15085
|
readonly inputs: readonly [{
|
|
14952
15086
|
readonly name: "txId";
|
|
@@ -15284,6 +15418,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15284
15418
|
}];
|
|
15285
15419
|
}, {
|
|
15286
15420
|
readonly name: "TransactionApproved";
|
|
15421
|
+
/**
|
|
15422
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
15423
|
+
*/
|
|
15287
15424
|
readonly type: "event";
|
|
15288
15425
|
readonly inputs: readonly [{
|
|
15289
15426
|
readonly name: "txId";
|
|
@@ -15621,6 +15758,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15621
15758
|
}];
|
|
15622
15759
|
}, {
|
|
15623
15760
|
readonly name: "TransactionApproved";
|
|
15761
|
+
/**
|
|
15762
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
15763
|
+
*/
|
|
15624
15764
|
readonly type: "event";
|
|
15625
15765
|
readonly inputs: readonly [{
|
|
15626
15766
|
readonly name: "txId";
|
|
@@ -15959,6 +16099,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15959
16099
|
}];
|
|
15960
16100
|
}, {
|
|
15961
16101
|
readonly name: "TransactionApproved";
|
|
16102
|
+
/**
|
|
16103
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
16104
|
+
*/
|
|
15962
16105
|
readonly type: "event";
|
|
15963
16106
|
readonly inputs: readonly [{
|
|
15964
16107
|
readonly name: "txId";
|
|
@@ -16296,6 +16439,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16296
16439
|
}];
|
|
16297
16440
|
}, {
|
|
16298
16441
|
readonly name: "TransactionApproved";
|
|
16442
|
+
/**
|
|
16443
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
16444
|
+
*/
|
|
16299
16445
|
readonly type: "event";
|
|
16300
16446
|
readonly inputs: readonly [{
|
|
16301
16447
|
readonly name: "txId";
|
|
@@ -16633,6 +16779,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16633
16779
|
}];
|
|
16634
16780
|
}, {
|
|
16635
16781
|
readonly name: "TransactionApproved";
|
|
16782
|
+
/**
|
|
16783
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
16784
|
+
*/
|
|
16636
16785
|
readonly type: "event";
|
|
16637
16786
|
readonly inputs: readonly [{
|
|
16638
16787
|
readonly name: "txId";
|
|
@@ -16974,6 +17123,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16974
17123
|
}];
|
|
16975
17124
|
}, {
|
|
16976
17125
|
readonly name: "TransactionApproved";
|
|
17126
|
+
/**
|
|
17127
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
17128
|
+
*/
|
|
16977
17129
|
readonly type: "event";
|
|
16978
17130
|
readonly inputs: readonly [{
|
|
16979
17131
|
readonly name: "txId";
|
|
@@ -17314,6 +17466,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17314
17466
|
}];
|
|
17315
17467
|
}, {
|
|
17316
17468
|
readonly name: "TransactionApproved";
|
|
17469
|
+
/**
|
|
17470
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
17471
|
+
*/
|
|
17317
17472
|
readonly type: "event";
|
|
17318
17473
|
readonly inputs: readonly [{
|
|
17319
17474
|
readonly name: "txId";
|
|
@@ -17654,6 +17809,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17654
17809
|
}];
|
|
17655
17810
|
}, {
|
|
17656
17811
|
readonly name: "TransactionApproved";
|
|
17812
|
+
/**
|
|
17813
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
17814
|
+
*/
|
|
17657
17815
|
readonly type: "event";
|
|
17658
17816
|
readonly inputs: readonly [{
|
|
17659
17817
|
readonly name: "txId";
|
|
@@ -17995,6 +18153,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17995
18153
|
}];
|
|
17996
18154
|
}, {
|
|
17997
18155
|
readonly name: "TransactionApproved";
|
|
18156
|
+
/**
|
|
18157
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
18158
|
+
*/
|
|
17998
18159
|
readonly type: "event";
|
|
17999
18160
|
readonly inputs: readonly [{
|
|
18000
18161
|
readonly name: "txId";
|
|
@@ -18335,6 +18496,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18335
18496
|
}];
|
|
18336
18497
|
}, {
|
|
18337
18498
|
readonly name: "TransactionApproved";
|
|
18499
|
+
/**
|
|
18500
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
18501
|
+
*/
|
|
18338
18502
|
readonly type: "event";
|
|
18339
18503
|
readonly inputs: readonly [{
|
|
18340
18504
|
readonly name: "txId";
|
|
@@ -18675,6 +18839,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18675
18839
|
}];
|
|
18676
18840
|
}, {
|
|
18677
18841
|
readonly name: "TransactionApproved";
|
|
18842
|
+
/**
|
|
18843
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
18844
|
+
*/
|
|
18678
18845
|
readonly type: "event";
|
|
18679
18846
|
readonly inputs: readonly [{
|
|
18680
18847
|
readonly name: "txId";
|
|
@@ -19009,6 +19176,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19009
19176
|
}];
|
|
19010
19177
|
}, {
|
|
19011
19178
|
readonly name: "TransactionApproved";
|
|
19179
|
+
/**
|
|
19180
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
19181
|
+
*/
|
|
19012
19182
|
readonly type: "event";
|
|
19013
19183
|
readonly inputs: readonly [{
|
|
19014
19184
|
readonly name: "txId";
|
|
@@ -19338,6 +19508,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19338
19508
|
}];
|
|
19339
19509
|
}, {
|
|
19340
19510
|
readonly name: "TransactionApproved";
|
|
19511
|
+
/**
|
|
19512
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
19513
|
+
*/
|
|
19341
19514
|
readonly type: "event";
|
|
19342
19515
|
readonly inputs: readonly [{
|
|
19343
19516
|
readonly name: "txId";
|
|
@@ -19668,6 +19841,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19668
19841
|
}];
|
|
19669
19842
|
}, {
|
|
19670
19843
|
readonly name: "TransactionApproved";
|
|
19844
|
+
/**
|
|
19845
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
19846
|
+
*/
|
|
19671
19847
|
readonly type: "event";
|
|
19672
19848
|
readonly inputs: readonly [{
|
|
19673
19849
|
readonly name: "txId";
|
|
@@ -19997,6 +20173,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19997
20173
|
}];
|
|
19998
20174
|
}, {
|
|
19999
20175
|
readonly name: "TransactionApproved";
|
|
20176
|
+
/**
|
|
20177
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
20178
|
+
*/
|
|
20000
20179
|
readonly type: "event";
|
|
20001
20180
|
readonly inputs: readonly [{
|
|
20002
20181
|
readonly name: "txId";
|
|
@@ -20327,6 +20506,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20327
20506
|
}];
|
|
20328
20507
|
}, {
|
|
20329
20508
|
readonly name: "TransactionApproved";
|
|
20509
|
+
/**
|
|
20510
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
20511
|
+
*/
|
|
20330
20512
|
readonly type: "event";
|
|
20331
20513
|
readonly inputs: readonly [{
|
|
20332
20514
|
readonly name: "txId";
|
|
@@ -20656,6 +20838,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20656
20838
|
}];
|
|
20657
20839
|
}, {
|
|
20658
20840
|
readonly name: "TransactionApproved";
|
|
20841
|
+
/**
|
|
20842
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
20843
|
+
*/
|
|
20659
20844
|
readonly type: "event";
|
|
20660
20845
|
readonly inputs: readonly [{
|
|
20661
20846
|
readonly name: "txId";
|
|
@@ -20986,6 +21171,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20986
21171
|
}];
|
|
20987
21172
|
}, {
|
|
20988
21173
|
readonly name: "TransactionApproved";
|
|
21174
|
+
/**
|
|
21175
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
21176
|
+
*/
|
|
20989
21177
|
readonly type: "event";
|
|
20990
21178
|
readonly inputs: readonly [{
|
|
20991
21179
|
readonly name: "txId";
|
|
@@ -21315,6 +21503,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21315
21503
|
}];
|
|
21316
21504
|
}, {
|
|
21317
21505
|
readonly name: "TransactionApproved";
|
|
21506
|
+
/**
|
|
21507
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
21508
|
+
*/
|
|
21318
21509
|
readonly type: "event";
|
|
21319
21510
|
readonly inputs: readonly [{
|
|
21320
21511
|
readonly name: "txId";
|
|
@@ -21645,6 +21836,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21645
21836
|
}];
|
|
21646
21837
|
}, {
|
|
21647
21838
|
readonly name: "TransactionApproved";
|
|
21839
|
+
/**
|
|
21840
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
21841
|
+
*/
|
|
21648
21842
|
readonly type: "event";
|
|
21649
21843
|
readonly inputs: readonly [{
|
|
21650
21844
|
readonly name: "txId";
|
|
@@ -21974,6 +22168,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21974
22168
|
}];
|
|
21975
22169
|
}, {
|
|
21976
22170
|
readonly name: "TransactionApproved";
|
|
22171
|
+
/**
|
|
22172
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
22173
|
+
*/
|
|
21977
22174
|
readonly type: "event";
|
|
21978
22175
|
readonly inputs: readonly [{
|
|
21979
22176
|
readonly name: "txId";
|
|
@@ -22304,6 +22501,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22304
22501
|
}];
|
|
22305
22502
|
}, {
|
|
22306
22503
|
readonly name: "TransactionApproved";
|
|
22504
|
+
/**
|
|
22505
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
22506
|
+
*/
|
|
22307
22507
|
readonly type: "event";
|
|
22308
22508
|
readonly inputs: readonly [{
|
|
22309
22509
|
readonly name: "txId";
|
|
@@ -22633,6 +22833,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22633
22833
|
}];
|
|
22634
22834
|
}, {
|
|
22635
22835
|
readonly name: "TransactionApproved";
|
|
22836
|
+
/**
|
|
22837
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
22838
|
+
*/
|
|
22636
22839
|
readonly type: "event";
|
|
22637
22840
|
readonly inputs: readonly [{
|
|
22638
22841
|
readonly name: "txId";
|
|
@@ -22963,6 +23166,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22963
23166
|
}];
|
|
22964
23167
|
}, {
|
|
22965
23168
|
readonly name: "TransactionApproved";
|
|
23169
|
+
/**
|
|
23170
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
23171
|
+
*/
|
|
22966
23172
|
readonly type: "event";
|
|
22967
23173
|
readonly inputs: readonly [{
|
|
22968
23174
|
readonly name: "txId";
|
|
@@ -23292,6 +23498,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23292
23498
|
}];
|
|
23293
23499
|
}, {
|
|
23294
23500
|
readonly name: "TransactionApproved";
|
|
23501
|
+
/**
|
|
23502
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
23503
|
+
*/
|
|
23295
23504
|
readonly type: "event";
|
|
23296
23505
|
readonly inputs: readonly [{
|
|
23297
23506
|
readonly name: "txId";
|
|
@@ -23624,6 +23833,9 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23624
23833
|
}];
|
|
23625
23834
|
}, {
|
|
23626
23835
|
readonly name: "TransactionApproved";
|
|
23836
|
+
/**
|
|
23837
|
+
* Approve a pending transaction. Only callable by the NFT owner.
|
|
23838
|
+
*/
|
|
23627
23839
|
readonly type: "event";
|
|
23628
23840
|
readonly inputs: readonly [{
|
|
23629
23841
|
readonly name: "txId";
|
|
@@ -23688,7 +23900,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23688
23900
|
}]>;
|
|
23689
23901
|
type: "block";
|
|
23690
23902
|
}>;
|
|
23691
|
-
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>>;
|
|
23692
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>;
|
|
23693
23905
|
createPendingTransactionFilter: () => Promise<{
|
|
23694
23906
|
id: `0x${string}`;
|
|
@@ -23707,7 +23919,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23707
23919
|
}]>;
|
|
23708
23920
|
type: "transaction";
|
|
23709
23921
|
}>;
|
|
23710
|
-
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>;
|
|
23711
23923
|
estimateGas: (args: import("viem").EstimateGasParameters<Chain>) => Promise<bigint>;
|
|
23712
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>>;
|
|
23713
23925
|
getBalance: (args: import("viem").GetBalanceParameters) => Promise<bigint>;
|
|
@@ -23743,7 +23955,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23743
23955
|
to: `0x${string}` | null;
|
|
23744
23956
|
value: bigint;
|
|
23745
23957
|
nonce: number;
|
|
23746
|
-
chainId?: number | undefined;
|
|
23747
23958
|
type: "legacy";
|
|
23748
23959
|
yParity?: undefined;
|
|
23749
23960
|
from: `0x${string}`;
|
|
@@ -23757,6 +23968,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23757
23968
|
accessList?: undefined;
|
|
23758
23969
|
authorizationList?: undefined;
|
|
23759
23970
|
blobVersionedHashes?: undefined;
|
|
23971
|
+
chainId?: number | undefined;
|
|
23760
23972
|
gasPrice: bigint;
|
|
23761
23973
|
maxFeePerBlobGas?: undefined;
|
|
23762
23974
|
maxFeePerGas?: undefined;
|
|
@@ -23768,7 +23980,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23768
23980
|
to: `0x${string}` | null;
|
|
23769
23981
|
value: bigint;
|
|
23770
23982
|
nonce: number;
|
|
23771
|
-
chainId: number;
|
|
23772
23983
|
type: "eip2930";
|
|
23773
23984
|
yParity: number;
|
|
23774
23985
|
from: `0x${string}`;
|
|
@@ -23782,6 +23993,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23782
23993
|
accessList: import("viem").AccessList;
|
|
23783
23994
|
authorizationList?: undefined;
|
|
23784
23995
|
blobVersionedHashes?: undefined;
|
|
23996
|
+
chainId: number;
|
|
23785
23997
|
gasPrice: bigint;
|
|
23786
23998
|
maxFeePerBlobGas?: undefined;
|
|
23787
23999
|
maxFeePerGas?: undefined;
|
|
@@ -23793,7 +24005,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23793
24005
|
to: `0x${string}` | null;
|
|
23794
24006
|
value: bigint;
|
|
23795
24007
|
nonce: number;
|
|
23796
|
-
chainId: number;
|
|
23797
24008
|
type: "eip1559";
|
|
23798
24009
|
yParity: number;
|
|
23799
24010
|
from: `0x${string}`;
|
|
@@ -23807,6 +24018,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23807
24018
|
accessList: import("viem").AccessList;
|
|
23808
24019
|
authorizationList?: undefined;
|
|
23809
24020
|
blobVersionedHashes?: undefined;
|
|
24021
|
+
chainId: number;
|
|
23810
24022
|
gasPrice?: undefined;
|
|
23811
24023
|
maxFeePerBlobGas?: undefined;
|
|
23812
24024
|
maxFeePerGas: bigint;
|
|
@@ -23818,7 +24030,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23818
24030
|
to: `0x${string}` | null;
|
|
23819
24031
|
value: bigint;
|
|
23820
24032
|
nonce: number;
|
|
23821
|
-
chainId: number;
|
|
23822
24033
|
type: "eip4844";
|
|
23823
24034
|
yParity: number;
|
|
23824
24035
|
from: `0x${string}`;
|
|
@@ -23832,6 +24043,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23832
24043
|
accessList: import("viem").AccessList;
|
|
23833
24044
|
authorizationList?: undefined;
|
|
23834
24045
|
blobVersionedHashes: readonly `0x${string}`[];
|
|
24046
|
+
chainId: number;
|
|
23835
24047
|
gasPrice?: undefined;
|
|
23836
24048
|
maxFeePerBlobGas: bigint;
|
|
23837
24049
|
maxFeePerGas: bigint;
|
|
@@ -23843,7 +24055,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23843
24055
|
to: `0x${string}` | null;
|
|
23844
24056
|
value: bigint;
|
|
23845
24057
|
nonce: number;
|
|
23846
|
-
chainId: number;
|
|
23847
24058
|
type: "eip7702";
|
|
23848
24059
|
yParity: number;
|
|
23849
24060
|
from: `0x${string}`;
|
|
@@ -23857,6 +24068,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23857
24068
|
accessList: import("viem").AccessList;
|
|
23858
24069
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
23859
24070
|
blobVersionedHashes?: undefined;
|
|
24071
|
+
chainId: number;
|
|
23860
24072
|
gasPrice?: undefined;
|
|
23861
24073
|
maxFeePerBlobGas?: undefined;
|
|
23862
24074
|
maxFeePerGas: bigint;
|
|
@@ -23871,7 +24083,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23871
24083
|
getBytecode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
23872
24084
|
getChainId: () => Promise<number>;
|
|
23873
24085
|
getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
23874
|
-
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>>;
|
|
23875
24087
|
getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
|
|
23876
24088
|
getEnsAddress: (args: {
|
|
23877
24089
|
blockNumber?: bigint | undefined;
|
|
@@ -23917,8 +24129,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23917
24129
|
}) => Promise<import("viem").GetEnsTextReturnType>;
|
|
23918
24130
|
getFeeHistory: (args: import("viem").GetFeeHistoryParameters) => Promise<import("viem").GetFeeHistoryReturnType>;
|
|
23919
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>>;
|
|
23920
|
-
getFilterChanges: <filterType extends import("viem").FilterType, const abi_3 extends import("viem").Abi |
|
|
23921
|
-
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>>;
|
|
23922
24134
|
getGasPrice: () => Promise<bigint>;
|
|
23923
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>>;
|
|
23924
24136
|
getProof: (args: import("viem").GetProofParameters) => Promise<import("viem").GetProofReturnType>;
|
|
@@ -23930,7 +24142,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23930
24142
|
to: `0x${string}` | null;
|
|
23931
24143
|
value: bigint;
|
|
23932
24144
|
nonce: number;
|
|
23933
|
-
chainId?: number | undefined;
|
|
23934
24145
|
type: "legacy";
|
|
23935
24146
|
yParity?: undefined;
|
|
23936
24147
|
from: `0x${string}`;
|
|
@@ -23944,6 +24155,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23944
24155
|
accessList?: undefined;
|
|
23945
24156
|
authorizationList?: undefined;
|
|
23946
24157
|
blobVersionedHashes?: undefined;
|
|
24158
|
+
chainId?: number | undefined;
|
|
23947
24159
|
gasPrice: bigint;
|
|
23948
24160
|
maxFeePerBlobGas?: undefined;
|
|
23949
24161
|
maxFeePerGas?: undefined;
|
|
@@ -23955,7 +24167,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23955
24167
|
to: `0x${string}` | null;
|
|
23956
24168
|
value: bigint;
|
|
23957
24169
|
nonce: number;
|
|
23958
|
-
chainId: number;
|
|
23959
24170
|
type: "eip2930";
|
|
23960
24171
|
yParity: number;
|
|
23961
24172
|
from: `0x${string}`;
|
|
@@ -23969,6 +24180,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23969
24180
|
accessList: import("viem").AccessList;
|
|
23970
24181
|
authorizationList?: undefined;
|
|
23971
24182
|
blobVersionedHashes?: undefined;
|
|
24183
|
+
chainId: number;
|
|
23972
24184
|
gasPrice: bigint;
|
|
23973
24185
|
maxFeePerBlobGas?: undefined;
|
|
23974
24186
|
maxFeePerGas?: undefined;
|
|
@@ -23980,7 +24192,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23980
24192
|
to: `0x${string}` | null;
|
|
23981
24193
|
value: bigint;
|
|
23982
24194
|
nonce: number;
|
|
23983
|
-
chainId: number;
|
|
23984
24195
|
type: "eip1559";
|
|
23985
24196
|
yParity: number;
|
|
23986
24197
|
from: `0x${string}`;
|
|
@@ -23994,6 +24205,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23994
24205
|
accessList: import("viem").AccessList;
|
|
23995
24206
|
authorizationList?: undefined;
|
|
23996
24207
|
blobVersionedHashes?: undefined;
|
|
24208
|
+
chainId: number;
|
|
23997
24209
|
gasPrice?: undefined;
|
|
23998
24210
|
maxFeePerBlobGas?: undefined;
|
|
23999
24211
|
maxFeePerGas: bigint;
|
|
@@ -24005,7 +24217,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24005
24217
|
to: `0x${string}` | null;
|
|
24006
24218
|
value: bigint;
|
|
24007
24219
|
nonce: number;
|
|
24008
|
-
chainId: number;
|
|
24009
24220
|
type: "eip4844";
|
|
24010
24221
|
yParity: number;
|
|
24011
24222
|
from: `0x${string}`;
|
|
@@ -24019,6 +24230,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24019
24230
|
accessList: import("viem").AccessList;
|
|
24020
24231
|
authorizationList?: undefined;
|
|
24021
24232
|
blobVersionedHashes: readonly `0x${string}`[];
|
|
24233
|
+
chainId: number;
|
|
24022
24234
|
gasPrice?: undefined;
|
|
24023
24235
|
maxFeePerBlobGas: bigint;
|
|
24024
24236
|
maxFeePerGas: bigint;
|
|
@@ -24030,7 +24242,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24030
24242
|
to: `0x${string}` | null;
|
|
24031
24243
|
value: bigint;
|
|
24032
24244
|
nonce: number;
|
|
24033
|
-
chainId: number;
|
|
24034
24245
|
type: "eip7702";
|
|
24035
24246
|
yParity: number;
|
|
24036
24247
|
from: `0x${string}`;
|
|
@@ -24044,6 +24255,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24044
24255
|
accessList: import("viem").AccessList;
|
|
24045
24256
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
24046
24257
|
blobVersionedHashes?: undefined;
|
|
24258
|
+
chainId: number;
|
|
24047
24259
|
gasPrice?: undefined;
|
|
24048
24260
|
maxFeePerBlobGas?: undefined;
|
|
24049
24261
|
maxFeePerGas: bigint;
|
|
@@ -27308,7 +27520,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
27308
27520
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
27309
27521
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_69 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
27310
27522
|
chainId?: number | undefined;
|
|
27311
|
-
}, (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 ? {
|
|
27312
27524
|
chain: T_45;
|
|
27313
27525
|
} : {
|
|
27314
27526
|
chain?: undefined;
|
|
@@ -30560,14 +30772,14 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30560
30772
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
30561
30773
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_56 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
30562
30774
|
chainId?: number | undefined;
|
|
30563
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "
|
|
30564
|
-
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>>;
|
|
30565
30777
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<`0x${string}`>;
|
|
30566
30778
|
sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<import("viem").TransactionReceipt>;
|
|
30567
30779
|
simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
|
|
30568
30780
|
simulateBlocks: <const calls_1 extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls_1>) => Promise<import("viem").SimulateBlocksReturnType<calls_1>>;
|
|
30569
30781
|
simulateCalls: <const calls_2 extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls_2>) => Promise<import("viem").SimulateCallsReturnType<calls_2>>;
|
|
30570
|
-
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>>;
|
|
30571
30783
|
verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<boolean>;
|
|
30572
30784
|
verifyMessage: (args: {
|
|
30573
30785
|
address: `0x${string}`;
|
|
@@ -30598,7 +30810,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30598
30810
|
waitForTransactionReceipt: (args: import("viem").WaitForTransactionReceiptParameters<Chain>) => Promise<import("viem").TransactionReceipt>;
|
|
30599
30811
|
watchBlockNumber: (args: import("viem").WatchBlockNumberParameters) => import("viem").WatchBlockNumberReturnType;
|
|
30600
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;
|
|
30601
|
-
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;
|
|
30602
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;
|
|
30603
30815
|
watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<import("viem").HttpTransport<undefined, false>>) => import("viem").WatchPendingTransactionsReturnType;
|
|
30604
30816
|
extend: <const client extends {
|
|
@@ -30643,12 +30855,12 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30643
30855
|
type: string;
|
|
30644
30856
|
uid: string;
|
|
30645
30857
|
addChain: (args: import("viem").AddChainParameters) => Promise<void>;
|
|
30646
|
-
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}`>;
|
|
30647
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>>;
|
|
30648
30860
|
getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
|
|
30649
30861
|
getCallsStatus: (parameters: import("viem").GetCallsStatusParameters) => Promise<{
|
|
30650
|
-
chainId: number;
|
|
30651
30862
|
id: string;
|
|
30863
|
+
chainId: number;
|
|
30652
30864
|
atomic: boolean;
|
|
30653
30865
|
capabilities?: {
|
|
30654
30866
|
[key: string]: any;
|
|
@@ -33964,7 +34176,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
33964
34176
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
33965
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)>> & {
|
|
33966
34178
|
chainId?: number | undefined;
|
|
33967
|
-
}, (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 ? {
|
|
33968
34180
|
chain: T_73;
|
|
33969
34181
|
} : {
|
|
33970
34182
|
chain?: undefined;
|
|
@@ -37216,7 +37428,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
37216
37428
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
37217
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)>> & {
|
|
37218
37430
|
chainId?: number | undefined;
|
|
37219
|
-
}, (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>;
|
|
37220
37432
|
requestAddresses: () => Promise<import("viem").RequestAddressesReturnType>;
|
|
37221
37433
|
requestPermissions: (args: {
|
|
37222
37434
|
[x: string]: Record<string, any>;
|
|
@@ -37229,8 +37441,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
37229
37441
|
id: string;
|
|
37230
37442
|
}>;
|
|
37231
37443
|
sendCallsSync: <const calls_4 extends readonly unknown[], chainOverride_23 extends Chain | undefined = undefined>(parameters: import("viem").SendCallsSyncParameters<Chain | undefined, import("viem").Account | undefined, chainOverride_23, calls_4>) => Promise<{
|
|
37232
|
-
chainId: number;
|
|
37233
37444
|
id: string;
|
|
37445
|
+
chainId: number;
|
|
37234
37446
|
atomic: boolean;
|
|
37235
37447
|
capabilities?: {
|
|
37236
37448
|
[key: string]: any;
|
|
@@ -38143,12 +38355,14 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38143
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)>>;
|
|
38144
38356
|
signTypedData: <const typedData extends {
|
|
38145
38357
|
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
38146
|
-
[x: `string[${string}]`]: undefined;
|
|
38147
|
-
[x: `function[${string}]`]: undefined;
|
|
38148
38358
|
[x: `address[${string}]`]: undefined;
|
|
38149
|
-
[x: `uint256[${string}]`]: undefined;
|
|
38150
38359
|
[x: `bool[${string}]`]: undefined;
|
|
38360
|
+
[x: `string[${string}]`]: undefined;
|
|
38151
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;
|
|
38152
38366
|
[x: `bytes4[${string}]`]: undefined;
|
|
38153
38367
|
[x: `bytes2[${string}]`]: undefined;
|
|
38154
38368
|
[x: `bytes3[${string}]`]: undefined;
|
|
@@ -38157,8 +38371,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38157
38371
|
[x: `bytes5[${string}]`]: undefined;
|
|
38158
38372
|
[x: `bytes23[${string}]`]: undefined;
|
|
38159
38373
|
[x: `bytes10[${string}]`]: undefined;
|
|
38374
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
38160
38375
|
[x: `bytes6[${string}]`]: undefined;
|
|
38161
|
-
[x: `bytes18[${string}]`]: undefined;
|
|
38162
38376
|
[x: `bytes8[${string}]`]: undefined;
|
|
38163
38377
|
[x: `bytes9[${string}]`]: undefined;
|
|
38164
38378
|
[x: `bytes11[${string}]`]: undefined;
|
|
@@ -38168,10 +38382,10 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38168
38382
|
[x: `bytes15[${string}]`]: undefined;
|
|
38169
38383
|
[x: `bytes16[${string}]`]: undefined;
|
|
38170
38384
|
[x: `bytes17[${string}]`]: undefined;
|
|
38385
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
38171
38386
|
[x: `bytes19[${string}]`]: undefined;
|
|
38172
38387
|
[x: `bytes20[${string}]`]: undefined;
|
|
38173
38388
|
[x: `bytes21[${string}]`]: undefined;
|
|
38174
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
38175
38389
|
[x: `bytes24[${string}]`]: undefined;
|
|
38176
38390
|
[x: `bytes25[${string}]`]: undefined;
|
|
38177
38391
|
[x: `bytes26[${string}]`]: undefined;
|
|
@@ -38181,7 +38395,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38181
38395
|
[x: `bytes30[${string}]`]: undefined;
|
|
38182
38396
|
[x: `bytes31[${string}]`]: undefined;
|
|
38183
38397
|
[x: `bytes32[${string}]`]: undefined;
|
|
38184
|
-
[x: `int[${string}]`]: undefined;
|
|
38185
38398
|
[x: `int8[${string}]`]: undefined;
|
|
38186
38399
|
[x: `int16[${string}]`]: undefined;
|
|
38187
38400
|
[x: `int24[${string}]`]: undefined;
|
|
@@ -38214,7 +38427,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38214
38427
|
[x: `int240[${string}]`]: undefined;
|
|
38215
38428
|
[x: `int248[${string}]`]: undefined;
|
|
38216
38429
|
[x: `int256[${string}]`]: undefined;
|
|
38217
|
-
[x: `uint[${string}]`]: undefined;
|
|
38218
38430
|
[x: `uint8[${string}]`]: undefined;
|
|
38219
38431
|
[x: `uint16[${string}]`]: undefined;
|
|
38220
38432
|
[x: `uint24[${string}]`]: undefined;
|
|
@@ -38259,8 +38471,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38259
38471
|
bytes5?: undefined;
|
|
38260
38472
|
bytes23?: undefined;
|
|
38261
38473
|
bytes10?: undefined;
|
|
38474
|
+
bytes22?: undefined;
|
|
38262
38475
|
bytes6?: undefined;
|
|
38263
|
-
bytes18?: undefined;
|
|
38264
38476
|
bytes8?: undefined;
|
|
38265
38477
|
bytes9?: undefined;
|
|
38266
38478
|
bytes11?: undefined;
|
|
@@ -38270,10 +38482,10 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38270
38482
|
bytes15?: undefined;
|
|
38271
38483
|
bytes16?: undefined;
|
|
38272
38484
|
bytes17?: undefined;
|
|
38485
|
+
bytes18?: undefined;
|
|
38273
38486
|
bytes19?: undefined;
|
|
38274
38487
|
bytes20?: undefined;
|
|
38275
38488
|
bytes21?: undefined;
|
|
38276
|
-
bytes22?: undefined;
|
|
38277
38489
|
bytes24?: undefined;
|
|
38278
38490
|
bytes25?: undefined;
|
|
38279
38491
|
bytes26?: undefined;
|
|
@@ -38351,8 +38563,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38351
38563
|
}, primaryType extends string>(args: import("viem").SignTypedDataParameters<typedData, primaryType, import("viem").Account | undefined>) => Promise<`0x${string}`>;
|
|
38352
38564
|
switchChain: (args: import("viem").SwitchChainParameters) => Promise<void>;
|
|
38353
38565
|
waitForCallsStatus: (parameters: import("viem").WaitForCallsStatusParameters) => Promise<{
|
|
38354
|
-
chainId: number;
|
|
38355
38566
|
id: string;
|
|
38567
|
+
chainId: number;
|
|
38356
38568
|
atomic: boolean;
|
|
38357
38569
|
capabilities?: {
|
|
38358
38570
|
[key: string]: any;
|
|
@@ -38365,8 +38577,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38365
38577
|
status: "pending" | "success" | "failure" | undefined;
|
|
38366
38578
|
}>;
|
|
38367
38579
|
watchAsset: (args: import("viem").WatchAssetParams) => Promise<boolean>;
|
|
38368
|
-
writeContract: <const abi_9 extends import("viem").Abi
|
|
38369
|
-
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>;
|
|
38370
38582
|
extend: <const client_1 extends {
|
|
38371
38583
|
[x: string]: unknown;
|
|
38372
38584
|
account?: undefined;
|
|
@@ -38438,13 +38650,14 @@ export declare function deployWallet(config: {
|
|
|
38438
38650
|
factoryAddress: Address;
|
|
38439
38651
|
tokenContract: Address;
|
|
38440
38652
|
tokenId: bigint;
|
|
38441
|
-
chain: keyof typeof
|
|
38653
|
+
chain: keyof typeof CHAINS_MAP;
|
|
38442
38654
|
rpcUrl?: string;
|
|
38443
38655
|
walletClient: WalletClient;
|
|
38444
38656
|
}): Promise<{
|
|
38445
38657
|
walletAddress: Address;
|
|
38446
38658
|
txHash: Hash;
|
|
38447
38659
|
}>;
|
|
38660
|
+
declare const CHAINS_MAP: Record<string, Chain>;
|
|
38448
38661
|
/**
|
|
38449
38662
|
* Compute the deterministic wallet address without deploying.
|
|
38450
38663
|
*/
|
|
@@ -38505,7 +38718,7 @@ export { ValidationClient, ValidationRegistryAbi } from './identity/validation.j
|
|
|
38505
38718
|
export type { ValidationClientConfig, RequestValidationParams, RespondToValidationParams, ValidationStatus, ValidationSummary, } from './identity/validation.js';
|
|
38506
38719
|
export { SwapModule, attachSwap, calcProtocolFee, applySlippage, calcDeadline } from './swap/index.js';
|
|
38507
38720
|
export { UniswapV3RouterAbi, UniswapV3QuoterV2Abi, ERC20Abi } from './swap/index.js';
|
|
38508
|
-
export { BASE_TOKENS, UNISWAP_V3_BASE, PROTOCOL_FEE_BPS, DEFAULT_SLIPPAGE_BPS } from './swap/index.js';
|
|
38721
|
+
export { BASE_TOKENS, UNISWAP_V3_BASE, PROTOCOL_FEE_BPS, PROTOCOL_FEE_COLLECTOR, DEFAULT_SLIPPAGE_BPS } from './swap/index.js';
|
|
38509
38722
|
export type { UniswapFeeTier, SwapQuote, SwapOptions, SwapResult, SwapModuleConfig } from './swap/index.js';
|
|
38510
38723
|
export { BridgeModule, BridgeError, createBridge, CCTP_DOMAIN_IDS, BRIDGE_CHAIN_IDS, USDC_CONTRACT, TOKEN_MESSENGER_V2, MESSAGE_TRANSMITTER_V2, FINALITY_THRESHOLD, } from './bridge/index.js';
|
|
38511
38724
|
export { TokenMessengerV2Abi, MessageTransmitterV2Abi, ERC20BridgeAbi } from './bridge/index.js';
|
|
@@ -38516,13 +38729,5 @@ export { MutualStakeEscrow } from './escrow/MutualStakeEscrow.js';
|
|
|
38516
38729
|
export type { CreateEscrowParams, EscrowCreated, EscrowDetails, TxResult as EscrowTxResult, } from './escrow/types.js';
|
|
38517
38730
|
export { TaskStatus } from './escrow/types.js';
|
|
38518
38731
|
export { resolveVerifierAddress, encodeHashVerifierData, encodeOptimisticVerifierData, VERIFIER_ADDRESSES, } from './escrow/verifiers.js';
|
|
38519
|
-
export {
|
|
38520
|
-
export type { TokenEntry, AddTokenParams } from './tokens/registry.js';
|
|
38521
|
-
export { toRaw, toHuman, formatBalance, parseAmount } from './tokens/decimals.js';
|
|
38522
|
-
export type { TokenInfo } from './tokens/decimals.js';
|
|
38523
|
-
export { sendToken, sendNative, getTokenBalance, getNativeBalance, getBalances, encodeERC20Transfer, } from './tokens/transfers.js';
|
|
38524
|
-
export type { TransferContext, TransferOptions, TokenBalanceResult, NativeBalanceResult, } from './tokens/transfers.js';
|
|
38525
|
-
export { SolanaWallet, createSolanaWallet, SOLANA_TOKENS, SOLANA_TOKEN_DECIMALS } from './tokens/solana.js';
|
|
38526
|
-
export type { SolanaWalletConfig, SolanaTokenInfo, SolanaTokenSymbol, SolBalanceResult, SplBalanceResult, SolanaTxResult, } from './tokens/solana.js';
|
|
38527
|
-
export { resolveAssetAddress, resolveAssetDecimals, buildSupportedAssets, isStablecoin, parseNetworkChainId, } from './x402/multi-asset.js';
|
|
38732
|
+
export { walletFromEnv, setPolicyFromEnv, x402FromEnv, } from './convenience.js';
|
|
38528
38733
|
//# sourceMappingURL=index.d.ts.map
|