agentwallet-sdk 5.1.1 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +463 -24
- package/dist/bridge/__tests__/solana.test.d.ts +2 -0
- package/dist/bridge/__tests__/solana.test.d.ts.map +1 -0
- package/dist/bridge/__tests__/solana.test.js +106 -0
- package/dist/bridge/__tests__/solana.test.js.map +1 -0
- package/dist/bridge/client.d.ts +21 -7
- package/dist/bridge/client.d.ts.map +1 -1
- package/dist/bridge/client.js +16 -1
- package/dist/bridge/client.js.map +1 -1
- package/dist/bridge/index.d.ts +12 -1
- package/dist/bridge/index.d.ts.map +1 -1
- package/dist/bridge/index.js +11 -0
- package/dist/bridge/index.js.map +1 -1
- package/dist/bridge/solana.d.ts +132 -0
- package/dist/bridge/solana.d.ts.map +1 -0
- package/dist/bridge/solana.js +313 -0
- package/dist/bridge/solana.js.map +1 -0
- package/dist/bridge/types.d.ts +35 -10
- package/dist/bridge/types.d.ts.map +1 -1
- package/dist/bridge/types.js +16 -4
- package/dist/bridge/types.js.map +1 -1
- package/dist/escrow/MutualStakeEscrow.d.ts.map +1 -1
- package/dist/escrow/MutualStakeEscrow.js +3 -5
- package/dist/escrow/MutualStakeEscrow.js.map +1 -1
- package/dist/index.d.ts +192 -469
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +14 -8
- package/dist/index.js.map +1 -1
- package/dist/policy/SpendingPolicy.test.js.map +1 -1
- package/dist/swap/SwapModule.d.ts +17 -3
- package/dist/swap/SwapModule.d.ts.map +1 -1
- package/dist/swap/SwapModule.js +21 -5
- package/dist/swap/SwapModule.js.map +1 -1
- package/dist/swap/index.d.ts +9 -2
- package/dist/swap/index.d.ts.map +1 -1
- package/dist/swap/index.js +8 -1
- package/dist/swap/index.js.map +1 -1
- package/dist/swap/types.d.ts +58 -1
- package/dist/swap/types.d.ts.map +1 -1
- package/dist/swap/types.js +56 -1
- package/dist/swap/types.js.map +1 -1
- package/dist/tokens/__tests__/decimals.test.d.ts +2 -0
- package/dist/tokens/__tests__/decimals.test.d.ts.map +1 -0
- package/dist/tokens/__tests__/decimals.test.js +107 -0
- package/dist/tokens/__tests__/decimals.test.js.map +1 -0
- package/dist/tokens/__tests__/registry.test.d.ts +2 -0
- package/dist/tokens/__tests__/registry.test.d.ts.map +1 -0
- package/dist/tokens/__tests__/registry.test.js +191 -0
- package/dist/tokens/__tests__/registry.test.js.map +1 -0
- package/dist/tokens/__tests__/transfers.test.d.ts +2 -0
- package/dist/tokens/__tests__/transfers.test.d.ts.map +1 -0
- package/dist/tokens/__tests__/transfers.test.js +103 -0
- package/dist/tokens/__tests__/transfers.test.js.map +1 -0
- package/dist/tokens/decimals.d.ts +65 -0
- package/dist/tokens/decimals.d.ts.map +1 -0
- package/dist/tokens/decimals.js +112 -0
- package/dist/tokens/decimals.js.map +1 -0
- package/dist/tokens/index.d.ts +14 -0
- package/dist/tokens/index.d.ts.map +1 -0
- package/dist/tokens/index.js +14 -0
- package/dist/tokens/index.js.map +1 -0
- package/dist/tokens/registry.d.ts +82 -0
- package/dist/tokens/registry.d.ts.map +1 -0
- package/dist/tokens/registry.js +293 -0
- package/dist/tokens/registry.js.map +1 -0
- package/dist/tokens/solana.d.ts +108 -0
- package/dist/tokens/solana.d.ts.map +1 -0
- package/dist/tokens/solana.js +306 -0
- package/dist/tokens/solana.js.map +1 -0
- package/dist/tokens/transfers.d.ts +95 -0
- package/dist/tokens/transfers.d.ts.map +1 -0
- package/dist/tokens/transfers.js +196 -0
- package/dist/tokens/transfers.js.map +1 -0
- package/dist/types.d.ts +20 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +6 -0
- package/dist/types.js.map +1 -1
- package/dist/x402/__tests__/client.test.js +77 -5
- 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 +149 -0
- package/dist/x402/chains/stellar/index.d.ts.map +1 -0
- package/dist/x402/chains/stellar/index.js +199 -0
- package/dist/x402/chains/stellar/index.js.map +1 -0
- package/dist/x402/client.d.ts +7 -1
- package/dist/x402/client.d.ts.map +1 -1
- package/dist/x402/client.js +24 -13
- package/dist/x402/client.js.map +1 -1
- package/dist/x402/index.d.ts +1 -0
- package/dist/x402/index.d.ts.map +1 -1
- package/dist/x402/index.js +2 -0
- package/dist/x402/index.js.map +1 -1
- package/dist/x402/middleware.d.ts.map +1 -1
- package/dist/x402/middleware.js +0 -3
- package/dist/x402/middleware.js.map +1 -1
- package/dist/x402/multi-asset.d.ts +54 -0
- package/dist/x402/multi-asset.d.ts.map +1 -0
- package/dist/x402/multi-asset.js +123 -0
- package/dist/x402/multi-asset.js.map +1 -0
- package/dist/x402/types.d.ts +22 -3
- package/dist/x402/types.d.ts.map +1 -1
- package/dist/x402/types.js +34 -4
- package/dist/x402/types.js.map +1 -1
- package/package.json +21 -6
- package/dist/ap2/index.d.ts +0 -185
- package/dist/ap2/index.d.ts.map +0 -1
- package/dist/ap2/index.js +0 -255
- package/dist/ap2/index.js.map +0 -1
- package/dist/bridge/unified.d.ts +0 -101
- package/dist/bridge/unified.d.ts.map +0 -1
- package/dist/bridge/unified.js +0 -284
- package/dist/bridge/unified.js.map +0 -1
- package/dist/chains.d.ts +0 -62
- package/dist/chains.d.ts.map +0 -1
- package/dist/chains.js +0 -108
- package/dist/chains.js.map +0 -1
- package/dist/fiat/index.d.ts +0 -10
- package/dist/fiat/index.d.ts.map +0 -1
- package/dist/fiat/index.js +0 -9
- package/dist/fiat/index.js.map +0 -1
- package/dist/fiat/onramp.d.ts +0 -101
- package/dist/fiat/onramp.d.ts.map +0 -1
- package/dist/fiat/onramp.js +0 -155
- package/dist/fiat/onramp.js.map +0 -1
- package/dist/fiat/providers/index.d.ts +0 -16
- package/dist/fiat/providers/index.d.ts.map +0 -1
- package/dist/fiat/providers/index.js +0 -30
- package/dist/fiat/providers/index.js.map +0 -1
- package/dist/fiat/providers/moonpay.d.ts +0 -22
- package/dist/fiat/providers/moonpay.d.ts.map +0 -1
- package/dist/fiat/providers/moonpay.js +0 -107
- package/dist/fiat/providers/moonpay.js.map +0 -1
- package/dist/fiat/providers/stripe.d.ts +0 -26
- package/dist/fiat/providers/stripe.d.ts.map +0 -1
- package/dist/fiat/providers/stripe.js +0 -135
- package/dist/fiat/providers/stripe.js.map +0 -1
- package/dist/fiat/providers/transak.d.ts +0 -26
- package/dist/fiat/providers/transak.d.ts.map +0 -1
- package/dist/fiat/providers/transak.js +0 -119
- package/dist/fiat/providers/transak.js.map +0 -1
- package/dist/fiat/types.d.ts +0 -106
- package/dist/fiat/types.d.ts.map +0 -1
- package/dist/fiat/types.js +0 -13
- package/dist/fiat/types.js.map +0 -1
- package/dist/flash/executor.d.ts +0 -119
- package/dist/flash/executor.d.ts.map +0 -1
- package/dist/flash/executor.js +0 -195
- package/dist/flash/executor.js.map +0 -1
- package/dist/flash/index.d.ts +0 -28
- package/dist/flash/index.d.ts.map +0 -1
- package/dist/flash/index.js +0 -29
- package/dist/flash/index.js.map +0 -1
- package/dist/flash/scanner.d.ts +0 -133
- package/dist/flash/scanner.d.ts.map +0 -1
- package/dist/flash/scanner.js +0 -212
- package/dist/flash/scanner.js.map +0 -1
- package/dist/flash/types.d.ts +0 -136
- package/dist/flash/types.d.ts.map +0 -1
- package/dist/flash/types.js +0 -23
- package/dist/flash/types.js.map +0 -1
- package/dist/gas/index.d.ts +0 -4
- package/dist/gas/index.d.ts.map +0 -1
- package/dist/gas/index.js +0 -3
- package/dist/gas/index.js.map +0 -1
- package/dist/gas/sponsor.d.ts +0 -70
- package/dist/gas/sponsor.d.ts.map +0 -1
- package/dist/gas/sponsor.js +0 -193
- package/dist/gas/sponsor.js.map +0 -1
- package/dist/gas/types.d.ts +0 -76
- package/dist/gas/types.d.ts.map +0 -1
- package/dist/gas/types.js +0 -21
- package/dist/gas/types.js.map +0 -1
- package/dist/identity/agent-identity.d.ts +0 -276
- package/dist/identity/agent-identity.d.ts.map +0 -1
- package/dist/identity/agent-identity.js +0 -300
- package/dist/identity/agent-identity.js.map +0 -1
- package/dist/identity/email-resolver.d.ts +0 -235
- package/dist/identity/email-resolver.js +0 -283
- package/dist/identity/erc6551.d.ts +0 -441
- package/dist/identity/erc6551.d.ts.map +0 -1
- package/dist/identity/erc6551.js +0 -517
- package/dist/identity/erc6551.js.map +0 -1
- package/dist/mev/index.d.ts +0 -4
- package/dist/mev/index.d.ts.map +0 -1
- package/dist/mev/index.js +0 -8
- package/dist/mev/index.js.map +0 -1
- package/dist/mev/protection.d.ts +0 -54
- package/dist/mev/protection.d.ts.map +0 -1
- package/dist/mev/protection.js +0 -185
- package/dist/mev/protection.js.map +0 -1
- package/dist/mev/risk.d.ts +0 -19
- package/dist/mev/risk.d.ts.map +0 -1
- package/dist/mev/risk.js +0 -95
- package/dist/mev/risk.js.map +0 -1
- package/dist/mev/types.d.ts +0 -49
- package/dist/mev/types.d.ts.map +0 -1
- package/dist/mev/types.js +0 -2
- package/dist/mev/types.js.map +0 -1
- package/dist/plugins/elizaos.d.ts +0 -52
- package/dist/plugins/elizaos.d.ts.map +0 -1
- package/dist/plugins/elizaos.js +0 -89
- package/dist/plugins/elizaos.js.map +0 -1
- package/dist/settlement/index.d.ts +0 -4
- package/dist/settlement/index.d.ts.map +0 -1
- package/dist/settlement/index.js +0 -3
- package/dist/settlement/index.js.map +0 -1
- package/dist/settlement/types.d.ts +0 -66
- package/dist/settlement/types.d.ts.map +0 -1
- package/dist/settlement/types.js +0 -37
- package/dist/settlement/types.js.map +0 -1
- package/dist/settlement/verifier.d.ts +0 -75
- package/dist/settlement/verifier.d.ts.map +0 -1
- package/dist/settlement/verifier.js +0 -354
- package/dist/settlement/verifier.js.map +0 -1
- package/dist/solana/bridge.d.ts +0 -144
- package/dist/solana/bridge.d.ts.map +0 -1
- package/dist/solana/bridge.js +0 -352
- package/dist/solana/bridge.js.map +0 -1
- package/dist/solana/index.d.ts +0 -8
- package/dist/solana/index.d.ts.map +0 -1
- package/dist/solana/index.js +0 -6
- package/dist/solana/index.js.map +0 -1
- package/dist/solana/swap.d.ts +0 -85
- package/dist/solana/swap.d.ts.map +0 -1
- package/dist/solana/swap.js +0 -173
- package/dist/solana/swap.js.map +0 -1
- package/dist/solana/types.d.ts +0 -126
- package/dist/solana/types.d.ts.map +0 -1
- package/dist/solana/types.js +0 -10
- package/dist/solana/types.js.map +0 -1
- package/dist/solana/wallet.d.ts +0 -83
- package/dist/solana/wallet.d.ts.map +0 -1
- package/dist/solana/wallet.js +0 -164
- package/dist/solana/wallet.js.map +0 -1
- package/dist/solana/x402.d.ts +0 -69
- package/dist/solana/x402.d.ts.map +0 -1
- package/dist/solana/x402.js +0 -154
- package/dist/solana/x402.js.map +0 -1
- package/dist/solver/adapter.d.ts +0 -47
- package/dist/solver/adapter.d.ts.map +0 -1
- package/dist/solver/adapter.js +0 -146
- package/dist/solver/adapter.js.map +0 -1
- package/dist/solver/analyzer.d.ts +0 -48
- package/dist/solver/analyzer.d.ts.map +0 -1
- package/dist/solver/analyzer.js +0 -171
- package/dist/solver/analyzer.js.map +0 -1
- package/dist/solver/builder.d.ts +0 -31
- package/dist/solver/builder.d.ts.map +0 -1
- package/dist/solver/builder.js +0 -60
- package/dist/solver/builder.js.map +0 -1
- package/dist/solver/index.d.ts +0 -22
- package/dist/solver/index.d.ts.map +0 -1
- package/dist/solver/index.js +0 -25
- package/dist/solver/index.js.map +0 -1
- package/dist/solver/types.d.ts +0 -115
- package/dist/solver/types.d.ts.map +0 -1
- package/dist/solver/types.js +0 -10
- package/dist/solver/types.js.map +0 -1
- package/dist/spend-guard/index.d.ts +0 -125
- package/dist/spend-guard/index.d.ts.map +0 -1
- package/dist/spend-guard/index.js +0 -150
- package/dist/spend-guard/index.js.map +0 -1
- package/dist/swap/router/cache.d.ts +0 -13
- package/dist/swap/router/cache.d.ts.map +0 -1
- package/dist/swap/router/cache.js +0 -30
- package/dist/swap/router/cache.js.map +0 -1
- package/dist/swap/router/flashbots.d.ts +0 -10
- package/dist/swap/router/flashbots.d.ts.map +0 -1
- package/dist/swap/router/flashbots.js +0 -43
- package/dist/swap/router/flashbots.js.map +0 -1
- package/dist/swap/router/health.d.ts +0 -17
- package/dist/swap/router/health.d.ts.map +0 -1
- package/dist/swap/router/health.js +0 -38
- package/dist/swap/router/health.js.map +0 -1
- package/dist/swap/router/index.d.ts +0 -10
- package/dist/swap/router/index.d.ts.map +0 -1
- package/dist/swap/router/index.js +0 -10
- package/dist/swap/router/index.js.map +0 -1
- package/dist/swap/router/providers/cowswap.d.ts +0 -11
- package/dist/swap/router/providers/cowswap.d.ts.map +0 -1
- package/dist/swap/router/providers/cowswap.js +0 -79
- package/dist/swap/router/providers/cowswap.js.map +0 -1
- package/dist/swap/router/providers/index.d.ts +0 -20
- package/dist/swap/router/providers/index.d.ts.map +0 -1
- package/dist/swap/router/providers/index.js +0 -32
- package/dist/swap/router/providers/index.js.map +0 -1
- package/dist/swap/router/providers/jupiter.d.ts +0 -12
- package/dist/swap/router/providers/jupiter.d.ts.map +0 -1
- package/dist/swap/router/providers/jupiter.js +0 -73
- package/dist/swap/router/providers/jupiter.js.map +0 -1
- package/dist/swap/router/providers/lifi.d.ts +0 -11
- package/dist/swap/router/providers/lifi.d.ts.map +0 -1
- package/dist/swap/router/providers/lifi.js +0 -123
- package/dist/swap/router/providers/lifi.js.map +0 -1
- package/dist/swap/router/providers/oneinch.d.ts +0 -13
- package/dist/swap/router/providers/oneinch.d.ts.map +0 -1
- package/dist/swap/router/providers/oneinch.js +0 -71
- package/dist/swap/router/providers/oneinch.js.map +0 -1
- package/dist/swap/router/providers/paraswap.d.ts +0 -11
- package/dist/swap/router/providers/paraswap.d.ts.map +0 -1
- package/dist/swap/router/providers/paraswap.js +0 -73
- package/dist/swap/router/providers/paraswap.js.map +0 -1
- package/dist/swap/router/providers/uniswap.d.ts +0 -31
- package/dist/swap/router/providers/uniswap.d.ts.map +0 -1
- package/dist/swap/router/providers/uniswap.js +0 -237
- package/dist/swap/router/providers/uniswap.js.map +0 -1
- package/dist/swap/router/providers/zerox.d.ts +0 -13
- package/dist/swap/router/providers/zerox.d.ts.map +0 -1
- package/dist/swap/router/providers/zerox.js +0 -94
- package/dist/swap/router/providers/zerox.js.map +0 -1
- package/dist/swap/router/router.d.ts +0 -86
- package/dist/swap/router/router.d.ts.map +0 -1
- package/dist/swap/router/router.js +0 -224
- package/dist/swap/router/router.js.map +0 -1
- package/dist/swap/router/rsi/engine.d.ts +0 -60
- package/dist/swap/router/rsi/engine.d.ts.map +0 -1
- package/dist/swap/router/rsi/engine.js +0 -483
- package/dist/swap/router/rsi/engine.js.map +0 -1
- package/dist/swap/router/rsi/index.d.ts +0 -3
- package/dist/swap/router/rsi/index.d.ts.map +0 -1
- package/dist/swap/router/rsi/index.js +0 -3
- package/dist/swap/router/rsi/index.js.map +0 -1
- package/dist/swap/router/rsi/types.d.ts +0 -106
- package/dist/swap/router/rsi/types.d.ts.map +0 -1
- package/dist/swap/router/rsi/types.js +0 -3
- package/dist/swap/router/rsi/types.js.map +0 -1
- package/dist/swap/router/types.d.ts +0 -120
- package/dist/swap/router/types.d.ts.map +0 -1
- package/dist/swap/router/types.js +0 -16
- package/dist/swap/router/types.js.map +0 -1
- package/dist/tax/engine.d.ts +0 -131
- package/dist/tax/engine.d.ts.map +0 -1
- package/dist/tax/engine.js +0 -307
- package/dist/tax/engine.js.map +0 -1
- package/dist/tax/index.d.ts +0 -9
- package/dist/tax/index.d.ts.map +0 -1
- package/dist/tax/index.js +0 -12
- package/dist/tax/index.js.map +0 -1
- package/dist/tax/lots.d.ts +0 -60
- package/dist/tax/lots.d.ts.map +0 -1
- package/dist/tax/lots.js +0 -129
- package/dist/tax/lots.js.map +0 -1
- package/dist/tax/types.d.ts +0 -113
- package/dist/tax/types.d.ts.map +0 -1
- package/dist/tax/types.js +0 -18
- package/dist/tax/types.js.map +0 -1
- package/dist/verifiable-intent/index.d.ts +0 -84
- package/dist/verifiable-intent/index.js +0 -385
- package/dist/yield/index.d.ts +0 -26
- package/dist/yield/index.d.ts.map +0 -1
- package/dist/yield/index.js +0 -29
- package/dist/yield/index.js.map +0 -1
- package/dist/yield/rates.d.ts +0 -114
- package/dist/yield/rates.d.ts.map +0 -1
- package/dist/yield/rates.js +0 -351
- package/dist/yield/rates.js.map +0 -1
- package/dist/yield/types.d.ts +0 -134
- package/dist/yield/types.d.ts.map +0 -1
- package/dist/yield/types.js +0 -24
- package/dist/yield/types.js.map +0 -1
- package/dist/yield/vault.d.ts +0 -112
- package/dist/yield/vault.d.ts.map +0 -1
- package/dist/yield/vault.js +0 -264
- package/dist/yield/vault.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ 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>;
|
|
7
8
|
/** Native ETH token address (zero address) */
|
|
8
9
|
export declare const NATIVE_TOKEN: Address;
|
|
9
10
|
/**
|
|
@@ -282,9 +283,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
282
283
|
}, {
|
|
283
284
|
readonly name: "perTxLimit";
|
|
284
285
|
readonly type: "uint256";
|
|
285
|
-
readonly indexed: false;
|
|
286
|
-
* Get a pending transaction by ID.
|
|
287
|
-
*/
|
|
286
|
+
readonly indexed: false;
|
|
288
287
|
}, {
|
|
289
288
|
readonly name: "periodLimit";
|
|
290
289
|
readonly type: "uint256";
|
|
@@ -332,9 +331,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
332
331
|
}];
|
|
333
332
|
}, {
|
|
334
333
|
readonly name: "TransactionApproved";
|
|
335
|
-
readonly type: "event";
|
|
336
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
337
|
-
*/
|
|
334
|
+
readonly type: "event";
|
|
338
335
|
readonly inputs: readonly [{
|
|
339
336
|
readonly name: "txId";
|
|
340
337
|
readonly type: "uint256";
|
|
@@ -616,9 +613,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
616
613
|
}, {
|
|
617
614
|
readonly name: "perTxLimit";
|
|
618
615
|
readonly type: "uint256";
|
|
619
|
-
readonly indexed: false;
|
|
620
|
-
* Get a pending transaction by ID.
|
|
621
|
-
*/
|
|
616
|
+
readonly indexed: false;
|
|
622
617
|
}, {
|
|
623
618
|
readonly name: "periodLimit";
|
|
624
619
|
readonly type: "uint256";
|
|
@@ -666,9 +661,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
666
661
|
}];
|
|
667
662
|
}, {
|
|
668
663
|
readonly name: "TransactionApproved";
|
|
669
|
-
readonly type: "event";
|
|
670
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
671
|
-
*/
|
|
664
|
+
readonly type: "event";
|
|
672
665
|
readonly inputs: readonly [{
|
|
673
666
|
readonly name: "txId";
|
|
674
667
|
readonly type: "uint256";
|
|
@@ -950,9 +943,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
950
943
|
}, {
|
|
951
944
|
readonly name: "perTxLimit";
|
|
952
945
|
readonly type: "uint256";
|
|
953
|
-
readonly indexed: false;
|
|
954
|
-
* Get a pending transaction by ID.
|
|
955
|
-
*/
|
|
946
|
+
readonly indexed: false;
|
|
956
947
|
}, {
|
|
957
948
|
readonly name: "periodLimit";
|
|
958
949
|
readonly type: "uint256";
|
|
@@ -1000,9 +991,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1000
991
|
}];
|
|
1001
992
|
}, {
|
|
1002
993
|
readonly name: "TransactionApproved";
|
|
1003
|
-
readonly type: "event";
|
|
1004
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
1005
|
-
*/
|
|
994
|
+
readonly type: "event";
|
|
1006
995
|
readonly inputs: readonly [{
|
|
1007
996
|
readonly name: "txId";
|
|
1008
997
|
readonly type: "uint256";
|
|
@@ -1284,9 +1273,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1284
1273
|
}, {
|
|
1285
1274
|
readonly name: "perTxLimit";
|
|
1286
1275
|
readonly type: "uint256";
|
|
1287
|
-
readonly indexed: false;
|
|
1288
|
-
* Get a pending transaction by ID.
|
|
1289
|
-
*/
|
|
1276
|
+
readonly indexed: false;
|
|
1290
1277
|
}, {
|
|
1291
1278
|
readonly name: "periodLimit";
|
|
1292
1279
|
readonly type: "uint256";
|
|
@@ -1334,9 +1321,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1334
1321
|
}];
|
|
1335
1322
|
}, {
|
|
1336
1323
|
readonly name: "TransactionApproved";
|
|
1337
|
-
readonly type: "event";
|
|
1338
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
1339
|
-
*/
|
|
1324
|
+
readonly type: "event";
|
|
1340
1325
|
readonly inputs: readonly [{
|
|
1341
1326
|
readonly name: "txId";
|
|
1342
1327
|
readonly type: "uint256";
|
|
@@ -1618,9 +1603,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1618
1603
|
}, {
|
|
1619
1604
|
readonly name: "perTxLimit";
|
|
1620
1605
|
readonly type: "uint256";
|
|
1621
|
-
readonly indexed: false;
|
|
1622
|
-
* Get a pending transaction by ID.
|
|
1623
|
-
*/
|
|
1606
|
+
readonly indexed: false;
|
|
1624
1607
|
}, {
|
|
1625
1608
|
readonly name: "periodLimit";
|
|
1626
1609
|
readonly type: "uint256";
|
|
@@ -1668,9 +1651,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1668
1651
|
}];
|
|
1669
1652
|
}, {
|
|
1670
1653
|
readonly name: "TransactionApproved";
|
|
1671
|
-
readonly type: "event";
|
|
1672
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
1673
|
-
*/
|
|
1654
|
+
readonly type: "event";
|
|
1674
1655
|
readonly inputs: readonly [{
|
|
1675
1656
|
readonly name: "txId";
|
|
1676
1657
|
readonly type: "uint256";
|
|
@@ -1952,9 +1933,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
1952
1933
|
}, {
|
|
1953
1934
|
readonly name: "perTxLimit";
|
|
1954
1935
|
readonly type: "uint256";
|
|
1955
|
-
readonly indexed: false;
|
|
1956
|
-
* Get a pending transaction by ID.
|
|
1957
|
-
*/
|
|
1936
|
+
readonly indexed: false;
|
|
1958
1937
|
}, {
|
|
1959
1938
|
readonly name: "periodLimit";
|
|
1960
1939
|
readonly type: "uint256";
|
|
@@ -2002,9 +1981,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2002
1981
|
}];
|
|
2003
1982
|
}, {
|
|
2004
1983
|
readonly name: "TransactionApproved";
|
|
2005
|
-
readonly type: "event";
|
|
2006
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
2007
|
-
*/
|
|
1984
|
+
readonly type: "event";
|
|
2008
1985
|
readonly inputs: readonly [{
|
|
2009
1986
|
readonly name: "txId";
|
|
2010
1987
|
readonly type: "uint256";
|
|
@@ -2286,9 +2263,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2286
2263
|
}, {
|
|
2287
2264
|
readonly name: "perTxLimit";
|
|
2288
2265
|
readonly type: "uint256";
|
|
2289
|
-
readonly indexed: false;
|
|
2290
|
-
* Get a pending transaction by ID.
|
|
2291
|
-
*/
|
|
2266
|
+
readonly indexed: false;
|
|
2292
2267
|
}, {
|
|
2293
2268
|
readonly name: "periodLimit";
|
|
2294
2269
|
readonly type: "uint256";
|
|
@@ -2336,9 +2311,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2336
2311
|
}];
|
|
2337
2312
|
}, {
|
|
2338
2313
|
readonly name: "TransactionApproved";
|
|
2339
|
-
readonly type: "event";
|
|
2340
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
2341
|
-
*/
|
|
2314
|
+
readonly type: "event";
|
|
2342
2315
|
readonly inputs: readonly [{
|
|
2343
2316
|
readonly name: "txId";
|
|
2344
2317
|
readonly type: "uint256";
|
|
@@ -2620,9 +2593,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2620
2593
|
}, {
|
|
2621
2594
|
readonly name: "perTxLimit";
|
|
2622
2595
|
readonly type: "uint256";
|
|
2623
|
-
readonly indexed: false;
|
|
2624
|
-
* Get a pending transaction by ID.
|
|
2625
|
-
*/
|
|
2596
|
+
readonly indexed: false;
|
|
2626
2597
|
}, {
|
|
2627
2598
|
readonly name: "periodLimit";
|
|
2628
2599
|
readonly type: "uint256";
|
|
@@ -2670,9 +2641,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2670
2641
|
}];
|
|
2671
2642
|
}, {
|
|
2672
2643
|
readonly name: "TransactionApproved";
|
|
2673
|
-
readonly type: "event";
|
|
2674
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
2675
|
-
*/
|
|
2644
|
+
readonly type: "event";
|
|
2676
2645
|
readonly inputs: readonly [{
|
|
2677
2646
|
readonly name: "txId";
|
|
2678
2647
|
readonly type: "uint256";
|
|
@@ -2954,9 +2923,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
2954
2923
|
}, {
|
|
2955
2924
|
readonly name: "perTxLimit";
|
|
2956
2925
|
readonly type: "uint256";
|
|
2957
|
-
readonly indexed: false;
|
|
2958
|
-
* Get a pending transaction by ID.
|
|
2959
|
-
*/
|
|
2926
|
+
readonly indexed: false;
|
|
2960
2927
|
}, {
|
|
2961
2928
|
readonly name: "periodLimit";
|
|
2962
2929
|
readonly type: "uint256";
|
|
@@ -3004,9 +2971,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3004
2971
|
}];
|
|
3005
2972
|
}, {
|
|
3006
2973
|
readonly name: "TransactionApproved";
|
|
3007
|
-
readonly type: "event";
|
|
3008
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
3009
|
-
*/
|
|
2974
|
+
readonly type: "event";
|
|
3010
2975
|
readonly inputs: readonly [{
|
|
3011
2976
|
readonly name: "txId";
|
|
3012
2977
|
readonly type: "uint256";
|
|
@@ -3288,9 +3253,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3288
3253
|
}, {
|
|
3289
3254
|
readonly name: "perTxLimit";
|
|
3290
3255
|
readonly type: "uint256";
|
|
3291
|
-
readonly indexed: false;
|
|
3292
|
-
* Get a pending transaction by ID.
|
|
3293
|
-
*/
|
|
3256
|
+
readonly indexed: false;
|
|
3294
3257
|
}, {
|
|
3295
3258
|
readonly name: "periodLimit";
|
|
3296
3259
|
readonly type: "uint256";
|
|
@@ -3338,9 +3301,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3338
3301
|
}];
|
|
3339
3302
|
}, {
|
|
3340
3303
|
readonly name: "TransactionApproved";
|
|
3341
|
-
readonly type: "event";
|
|
3342
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
3343
|
-
*/
|
|
3304
|
+
readonly type: "event";
|
|
3344
3305
|
readonly inputs: readonly [{
|
|
3345
3306
|
readonly name: "txId";
|
|
3346
3307
|
readonly type: "uint256";
|
|
@@ -3624,9 +3585,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3624
3585
|
}, {
|
|
3625
3586
|
readonly name: "perTxLimit";
|
|
3626
3587
|
readonly type: "uint256";
|
|
3627
|
-
readonly indexed: false;
|
|
3628
|
-
* Get a pending transaction by ID.
|
|
3629
|
-
*/
|
|
3588
|
+
readonly indexed: false;
|
|
3630
3589
|
}, {
|
|
3631
3590
|
readonly name: "periodLimit";
|
|
3632
3591
|
readonly type: "uint256";
|
|
@@ -3674,9 +3633,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3674
3633
|
}];
|
|
3675
3634
|
}, {
|
|
3676
3635
|
readonly name: "TransactionApproved";
|
|
3677
|
-
readonly type: "event";
|
|
3678
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
3679
|
-
*/
|
|
3636
|
+
readonly type: "event";
|
|
3680
3637
|
readonly inputs: readonly [{
|
|
3681
3638
|
readonly name: "txId";
|
|
3682
3639
|
readonly type: "uint256";
|
|
@@ -3958,9 +3915,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
3958
3915
|
}, {
|
|
3959
3916
|
readonly name: "perTxLimit";
|
|
3960
3917
|
readonly type: "uint256";
|
|
3961
|
-
readonly indexed: false;
|
|
3962
|
-
* Get a pending transaction by ID.
|
|
3963
|
-
*/
|
|
3918
|
+
readonly indexed: false;
|
|
3964
3919
|
}, {
|
|
3965
3920
|
readonly name: "periodLimit";
|
|
3966
3921
|
readonly type: "uint256";
|
|
@@ -4008,9 +3963,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4008
3963
|
}];
|
|
4009
3964
|
}, {
|
|
4010
3965
|
readonly name: "TransactionApproved";
|
|
4011
|
-
readonly type: "event";
|
|
4012
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
4013
|
-
*/
|
|
3966
|
+
readonly type: "event";
|
|
4014
3967
|
readonly inputs: readonly [{
|
|
4015
3968
|
readonly name: "txId";
|
|
4016
3969
|
readonly type: "uint256";
|
|
@@ -4292,9 +4245,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4292
4245
|
}, {
|
|
4293
4246
|
readonly name: "perTxLimit";
|
|
4294
4247
|
readonly type: "uint256";
|
|
4295
|
-
readonly indexed: false;
|
|
4296
|
-
* Get a pending transaction by ID.
|
|
4297
|
-
*/
|
|
4248
|
+
readonly indexed: false;
|
|
4298
4249
|
}, {
|
|
4299
4250
|
readonly name: "periodLimit";
|
|
4300
4251
|
readonly type: "uint256";
|
|
@@ -4342,9 +4293,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4342
4293
|
}];
|
|
4343
4294
|
}, {
|
|
4344
4295
|
readonly name: "TransactionApproved";
|
|
4345
|
-
readonly type: "event";
|
|
4346
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
4347
|
-
*/
|
|
4296
|
+
readonly type: "event";
|
|
4348
4297
|
readonly inputs: readonly [{
|
|
4349
4298
|
readonly name: "txId";
|
|
4350
4299
|
readonly type: "uint256";
|
|
@@ -4626,9 +4575,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4626
4575
|
}, {
|
|
4627
4576
|
readonly name: "perTxLimit";
|
|
4628
4577
|
readonly type: "uint256";
|
|
4629
|
-
readonly indexed: false;
|
|
4630
|
-
* Get a pending transaction by ID.
|
|
4631
|
-
*/
|
|
4578
|
+
readonly indexed: false;
|
|
4632
4579
|
}, {
|
|
4633
4580
|
readonly name: "periodLimit";
|
|
4634
4581
|
readonly type: "uint256";
|
|
@@ -4676,9 +4623,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4676
4623
|
}];
|
|
4677
4624
|
}, {
|
|
4678
4625
|
readonly name: "TransactionApproved";
|
|
4679
|
-
readonly type: "event";
|
|
4680
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
4681
|
-
*/
|
|
4626
|
+
readonly type: "event";
|
|
4682
4627
|
readonly inputs: readonly [{
|
|
4683
4628
|
readonly name: "txId";
|
|
4684
4629
|
readonly type: "uint256";
|
|
@@ -4960,9 +4905,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
4960
4905
|
}, {
|
|
4961
4906
|
readonly name: "perTxLimit";
|
|
4962
4907
|
readonly type: "uint256";
|
|
4963
|
-
readonly indexed: false;
|
|
4964
|
-
* Get a pending transaction by ID.
|
|
4965
|
-
*/
|
|
4908
|
+
readonly indexed: false;
|
|
4966
4909
|
}, {
|
|
4967
4910
|
readonly name: "periodLimit";
|
|
4968
4911
|
readonly type: "uint256";
|
|
@@ -5010,9 +4953,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5010
4953
|
}];
|
|
5011
4954
|
}, {
|
|
5012
4955
|
readonly name: "TransactionApproved";
|
|
5013
|
-
readonly type: "event";
|
|
5014
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
5015
|
-
*/
|
|
4956
|
+
readonly type: "event";
|
|
5016
4957
|
readonly inputs: readonly [{
|
|
5017
4958
|
readonly name: "txId";
|
|
5018
4959
|
readonly type: "uint256";
|
|
@@ -5294,9 +5235,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5294
5235
|
}, {
|
|
5295
5236
|
readonly name: "perTxLimit";
|
|
5296
5237
|
readonly type: "uint256";
|
|
5297
|
-
readonly indexed: false;
|
|
5298
|
-
* Get a pending transaction by ID.
|
|
5299
|
-
*/
|
|
5238
|
+
readonly indexed: false;
|
|
5300
5239
|
}, {
|
|
5301
5240
|
readonly name: "periodLimit";
|
|
5302
5241
|
readonly type: "uint256";
|
|
@@ -5344,9 +5283,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5344
5283
|
}];
|
|
5345
5284
|
}, {
|
|
5346
5285
|
readonly name: "TransactionApproved";
|
|
5347
|
-
readonly type: "event";
|
|
5348
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
5349
|
-
*/
|
|
5286
|
+
readonly type: "event";
|
|
5350
5287
|
readonly inputs: readonly [{
|
|
5351
5288
|
readonly name: "txId";
|
|
5352
5289
|
readonly type: "uint256";
|
|
@@ -5628,9 +5565,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5628
5565
|
}, {
|
|
5629
5566
|
readonly name: "perTxLimit";
|
|
5630
5567
|
readonly type: "uint256";
|
|
5631
|
-
readonly indexed: false;
|
|
5632
|
-
* Get a pending transaction by ID.
|
|
5633
|
-
*/
|
|
5568
|
+
readonly indexed: false;
|
|
5634
5569
|
}, {
|
|
5635
5570
|
readonly name: "periodLimit";
|
|
5636
5571
|
readonly type: "uint256";
|
|
@@ -5678,9 +5613,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5678
5613
|
}];
|
|
5679
5614
|
}, {
|
|
5680
5615
|
readonly name: "TransactionApproved";
|
|
5681
|
-
readonly type: "event";
|
|
5682
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
5683
|
-
*/
|
|
5616
|
+
readonly type: "event";
|
|
5684
5617
|
readonly inputs: readonly [{
|
|
5685
5618
|
readonly name: "txId";
|
|
5686
5619
|
readonly type: "uint256";
|
|
@@ -5963,9 +5896,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
5963
5896
|
}, {
|
|
5964
5897
|
readonly name: "perTxLimit";
|
|
5965
5898
|
readonly type: "uint256";
|
|
5966
|
-
readonly indexed: false;
|
|
5967
|
-
* Get a pending transaction by ID.
|
|
5968
|
-
*/
|
|
5899
|
+
readonly indexed: false;
|
|
5969
5900
|
}, {
|
|
5970
5901
|
readonly name: "periodLimit";
|
|
5971
5902
|
readonly type: "uint256";
|
|
@@ -6013,9 +5944,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6013
5944
|
}];
|
|
6014
5945
|
}, {
|
|
6015
5946
|
readonly name: "TransactionApproved";
|
|
6016
|
-
readonly type: "event";
|
|
6017
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
6018
|
-
*/
|
|
5947
|
+
readonly type: "event";
|
|
6019
5948
|
readonly inputs: readonly [{
|
|
6020
5949
|
readonly name: "txId";
|
|
6021
5950
|
readonly type: "uint256";
|
|
@@ -6297,9 +6226,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6297
6226
|
}, {
|
|
6298
6227
|
readonly name: "perTxLimit";
|
|
6299
6228
|
readonly type: "uint256";
|
|
6300
|
-
readonly indexed: false;
|
|
6301
|
-
* Get a pending transaction by ID.
|
|
6302
|
-
*/
|
|
6229
|
+
readonly indexed: false;
|
|
6303
6230
|
}, {
|
|
6304
6231
|
readonly name: "periodLimit";
|
|
6305
6232
|
readonly type: "uint256";
|
|
@@ -6347,9 +6274,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6347
6274
|
}];
|
|
6348
6275
|
}, {
|
|
6349
6276
|
readonly name: "TransactionApproved";
|
|
6350
|
-
readonly type: "event";
|
|
6351
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
6352
|
-
*/
|
|
6277
|
+
readonly type: "event";
|
|
6353
6278
|
readonly inputs: readonly [{
|
|
6354
6279
|
readonly name: "txId";
|
|
6355
6280
|
readonly type: "uint256";
|
|
@@ -6631,9 +6556,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6631
6556
|
}, {
|
|
6632
6557
|
readonly name: "perTxLimit";
|
|
6633
6558
|
readonly type: "uint256";
|
|
6634
|
-
readonly indexed: false;
|
|
6635
|
-
* Get a pending transaction by ID.
|
|
6636
|
-
*/
|
|
6559
|
+
readonly indexed: false;
|
|
6637
6560
|
}, {
|
|
6638
6561
|
readonly name: "periodLimit";
|
|
6639
6562
|
readonly type: "uint256";
|
|
@@ -6681,9 +6604,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6681
6604
|
}];
|
|
6682
6605
|
}, {
|
|
6683
6606
|
readonly name: "TransactionApproved";
|
|
6684
|
-
readonly type: "event";
|
|
6685
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
6686
|
-
*/
|
|
6607
|
+
readonly type: "event";
|
|
6687
6608
|
readonly inputs: readonly [{
|
|
6688
6609
|
readonly name: "txId";
|
|
6689
6610
|
readonly type: "uint256";
|
|
@@ -6965,9 +6886,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
6965
6886
|
}, {
|
|
6966
6887
|
readonly name: "perTxLimit";
|
|
6967
6888
|
readonly type: "uint256";
|
|
6968
|
-
readonly indexed: false;
|
|
6969
|
-
* Get a pending transaction by ID.
|
|
6970
|
-
*/
|
|
6889
|
+
readonly indexed: false;
|
|
6971
6890
|
}, {
|
|
6972
6891
|
readonly name: "periodLimit";
|
|
6973
6892
|
readonly type: "uint256";
|
|
@@ -7015,9 +6934,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7015
6934
|
}];
|
|
7016
6935
|
}, {
|
|
7017
6936
|
readonly name: "TransactionApproved";
|
|
7018
|
-
readonly type: "event";
|
|
7019
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
7020
|
-
*/
|
|
6937
|
+
readonly type: "event";
|
|
7021
6938
|
readonly inputs: readonly [{
|
|
7022
6939
|
readonly name: "txId";
|
|
7023
6940
|
readonly type: "uint256";
|
|
@@ -7299,9 +7216,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7299
7216
|
}, {
|
|
7300
7217
|
readonly name: "perTxLimit";
|
|
7301
7218
|
readonly type: "uint256";
|
|
7302
|
-
readonly indexed: false;
|
|
7303
|
-
* Get a pending transaction by ID.
|
|
7304
|
-
*/
|
|
7219
|
+
readonly indexed: false;
|
|
7305
7220
|
}, {
|
|
7306
7221
|
readonly name: "periodLimit";
|
|
7307
7222
|
readonly type: "uint256";
|
|
@@ -7349,9 +7264,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7349
7264
|
}];
|
|
7350
7265
|
}, {
|
|
7351
7266
|
readonly name: "TransactionApproved";
|
|
7352
|
-
readonly type: "event";
|
|
7353
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
7354
|
-
*/
|
|
7267
|
+
readonly type: "event";
|
|
7355
7268
|
readonly inputs: readonly [{
|
|
7356
7269
|
readonly name: "txId";
|
|
7357
7270
|
readonly type: "uint256";
|
|
@@ -7633,9 +7546,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7633
7546
|
}, {
|
|
7634
7547
|
readonly name: "perTxLimit";
|
|
7635
7548
|
readonly type: "uint256";
|
|
7636
|
-
readonly indexed: false;
|
|
7637
|
-
* Get a pending transaction by ID.
|
|
7638
|
-
*/
|
|
7549
|
+
readonly indexed: false;
|
|
7639
7550
|
}, {
|
|
7640
7551
|
readonly name: "periodLimit";
|
|
7641
7552
|
readonly type: "uint256";
|
|
@@ -7683,9 +7594,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7683
7594
|
}];
|
|
7684
7595
|
}, {
|
|
7685
7596
|
readonly name: "TransactionApproved";
|
|
7686
|
-
readonly type: "event";
|
|
7687
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
7688
|
-
*/
|
|
7597
|
+
readonly type: "event";
|
|
7689
7598
|
readonly inputs: readonly [{
|
|
7690
7599
|
readonly name: "txId";
|
|
7691
7600
|
readonly type: "uint256";
|
|
@@ -7967,9 +7876,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
7967
7876
|
}, {
|
|
7968
7877
|
readonly name: "perTxLimit";
|
|
7969
7878
|
readonly type: "uint256";
|
|
7970
|
-
readonly indexed: false;
|
|
7971
|
-
* Get a pending transaction by ID.
|
|
7972
|
-
*/
|
|
7879
|
+
readonly indexed: false;
|
|
7973
7880
|
}, {
|
|
7974
7881
|
readonly name: "periodLimit";
|
|
7975
7882
|
readonly type: "uint256";
|
|
@@ -8017,9 +7924,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8017
7924
|
}];
|
|
8018
7925
|
}, {
|
|
8019
7926
|
readonly name: "TransactionApproved";
|
|
8020
|
-
readonly type: "event";
|
|
8021
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
8022
|
-
*/
|
|
7927
|
+
readonly type: "event";
|
|
8023
7928
|
readonly inputs: readonly [{
|
|
8024
7929
|
readonly name: "txId";
|
|
8025
7930
|
readonly type: "uint256";
|
|
@@ -8303,9 +8208,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8303
8208
|
}, {
|
|
8304
8209
|
readonly name: "perTxLimit";
|
|
8305
8210
|
readonly type: "uint256";
|
|
8306
|
-
readonly indexed: false;
|
|
8307
|
-
* Get a pending transaction by ID.
|
|
8308
|
-
*/
|
|
8211
|
+
readonly indexed: false;
|
|
8309
8212
|
}, {
|
|
8310
8213
|
readonly name: "periodLimit";
|
|
8311
8214
|
readonly type: "uint256";
|
|
@@ -8353,9 +8256,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8353
8256
|
}];
|
|
8354
8257
|
}, {
|
|
8355
8258
|
readonly name: "TransactionApproved";
|
|
8356
|
-
readonly type: "event";
|
|
8357
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
8358
|
-
*/
|
|
8259
|
+
readonly type: "event";
|
|
8359
8260
|
readonly inputs: readonly [{
|
|
8360
8261
|
readonly name: "txId";
|
|
8361
8262
|
readonly type: "uint256";
|
|
@@ -8636,9 +8537,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8636
8537
|
}, {
|
|
8637
8538
|
readonly name: "perTxLimit";
|
|
8638
8539
|
readonly type: "uint256";
|
|
8639
|
-
readonly indexed: false;
|
|
8640
|
-
* Get a pending transaction by ID.
|
|
8641
|
-
*/
|
|
8540
|
+
readonly indexed: false;
|
|
8642
8541
|
}, {
|
|
8643
8542
|
readonly name: "periodLimit";
|
|
8644
8543
|
readonly type: "uint256";
|
|
@@ -8686,9 +8585,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8686
8585
|
}];
|
|
8687
8586
|
}, {
|
|
8688
8587
|
readonly name: "TransactionApproved";
|
|
8689
|
-
readonly type: "event";
|
|
8690
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
8691
|
-
*/
|
|
8588
|
+
readonly type: "event";
|
|
8692
8589
|
readonly inputs: readonly [{
|
|
8693
8590
|
readonly name: "txId";
|
|
8694
8591
|
readonly type: "uint256";
|
|
@@ -8970,9 +8867,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
8970
8867
|
}, {
|
|
8971
8868
|
readonly name: "perTxLimit";
|
|
8972
8869
|
readonly type: "uint256";
|
|
8973
|
-
readonly indexed: false;
|
|
8974
|
-
* Get a pending transaction by ID.
|
|
8975
|
-
*/
|
|
8870
|
+
readonly indexed: false;
|
|
8976
8871
|
}, {
|
|
8977
8872
|
readonly name: "periodLimit";
|
|
8978
8873
|
readonly type: "uint256";
|
|
@@ -9020,9 +8915,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9020
8915
|
}];
|
|
9021
8916
|
}, {
|
|
9022
8917
|
readonly name: "TransactionApproved";
|
|
9023
|
-
readonly type: "event";
|
|
9024
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
9025
|
-
*/
|
|
8918
|
+
readonly type: "event";
|
|
9026
8919
|
readonly inputs: readonly [{
|
|
9027
8920
|
readonly name: "txId";
|
|
9028
8921
|
readonly type: "uint256";
|
|
@@ -9303,9 +9196,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9303
9196
|
}, {
|
|
9304
9197
|
readonly name: "perTxLimit";
|
|
9305
9198
|
readonly type: "uint256";
|
|
9306
|
-
readonly indexed: false;
|
|
9307
|
-
* Get a pending transaction by ID.
|
|
9308
|
-
*/
|
|
9199
|
+
readonly indexed: false;
|
|
9309
9200
|
}, {
|
|
9310
9201
|
readonly name: "periodLimit";
|
|
9311
9202
|
readonly type: "uint256";
|
|
@@ -9353,9 +9244,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9353
9244
|
}];
|
|
9354
9245
|
}, {
|
|
9355
9246
|
readonly name: "TransactionApproved";
|
|
9356
|
-
readonly type: "event";
|
|
9357
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
9358
|
-
*/
|
|
9247
|
+
readonly type: "event";
|
|
9359
9248
|
readonly inputs: readonly [{
|
|
9360
9249
|
readonly name: "txId";
|
|
9361
9250
|
readonly type: "uint256";
|
|
@@ -9637,9 +9526,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9637
9526
|
}, {
|
|
9638
9527
|
readonly name: "perTxLimit";
|
|
9639
9528
|
readonly type: "uint256";
|
|
9640
|
-
readonly indexed: false;
|
|
9641
|
-
* Get a pending transaction by ID.
|
|
9642
|
-
*/
|
|
9529
|
+
readonly indexed: false;
|
|
9643
9530
|
}, {
|
|
9644
9531
|
readonly name: "periodLimit";
|
|
9645
9532
|
readonly type: "uint256";
|
|
@@ -9687,9 +9574,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9687
9574
|
}];
|
|
9688
9575
|
}, {
|
|
9689
9576
|
readonly name: "TransactionApproved";
|
|
9690
|
-
readonly type: "event";
|
|
9691
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
9692
|
-
*/
|
|
9577
|
+
readonly type: "event";
|
|
9693
9578
|
readonly inputs: readonly [{
|
|
9694
9579
|
readonly name: "txId";
|
|
9695
9580
|
readonly type: "uint256";
|
|
@@ -9970,9 +9855,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
9970
9855
|
}, {
|
|
9971
9856
|
readonly name: "perTxLimit";
|
|
9972
9857
|
readonly type: "uint256";
|
|
9973
|
-
readonly indexed: false;
|
|
9974
|
-
* Get a pending transaction by ID.
|
|
9975
|
-
*/
|
|
9858
|
+
readonly indexed: false;
|
|
9976
9859
|
}, {
|
|
9977
9860
|
readonly name: "periodLimit";
|
|
9978
9861
|
readonly type: "uint256";
|
|
@@ -10020,9 +9903,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10020
9903
|
}];
|
|
10021
9904
|
}, {
|
|
10022
9905
|
readonly name: "TransactionApproved";
|
|
10023
|
-
readonly type: "event";
|
|
10024
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
10025
|
-
*/
|
|
9906
|
+
readonly type: "event";
|
|
10026
9907
|
readonly inputs: readonly [{
|
|
10027
9908
|
readonly name: "txId";
|
|
10028
9909
|
readonly type: "uint256";
|
|
@@ -10304,9 +10185,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10304
10185
|
}, {
|
|
10305
10186
|
readonly name: "perTxLimit";
|
|
10306
10187
|
readonly type: "uint256";
|
|
10307
|
-
readonly indexed: false;
|
|
10308
|
-
* Get a pending transaction by ID.
|
|
10309
|
-
*/
|
|
10188
|
+
readonly indexed: false;
|
|
10310
10189
|
}, {
|
|
10311
10190
|
readonly name: "periodLimit";
|
|
10312
10191
|
readonly type: "uint256";
|
|
@@ -10354,9 +10233,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10354
10233
|
}];
|
|
10355
10234
|
}, {
|
|
10356
10235
|
readonly name: "TransactionApproved";
|
|
10357
|
-
readonly type: "event";
|
|
10358
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
10359
|
-
*/
|
|
10236
|
+
readonly type: "event";
|
|
10360
10237
|
readonly inputs: readonly [{
|
|
10361
10238
|
readonly name: "txId";
|
|
10362
10239
|
readonly type: "uint256";
|
|
@@ -10637,9 +10514,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10637
10514
|
}, {
|
|
10638
10515
|
readonly name: "perTxLimit";
|
|
10639
10516
|
readonly type: "uint256";
|
|
10640
|
-
readonly indexed: false;
|
|
10641
|
-
* Get a pending transaction by ID.
|
|
10642
|
-
*/
|
|
10517
|
+
readonly indexed: false;
|
|
10643
10518
|
}, {
|
|
10644
10519
|
readonly name: "periodLimit";
|
|
10645
10520
|
readonly type: "uint256";
|
|
@@ -10687,9 +10562,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10687
10562
|
}];
|
|
10688
10563
|
}, {
|
|
10689
10564
|
readonly name: "TransactionApproved";
|
|
10690
|
-
readonly type: "event";
|
|
10691
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
10692
|
-
*/
|
|
10565
|
+
readonly type: "event";
|
|
10693
10566
|
readonly inputs: readonly [{
|
|
10694
10567
|
readonly name: "txId";
|
|
10695
10568
|
readonly type: "uint256";
|
|
@@ -10971,9 +10844,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
10971
10844
|
}, {
|
|
10972
10845
|
readonly name: "perTxLimit";
|
|
10973
10846
|
readonly type: "uint256";
|
|
10974
|
-
readonly indexed: false;
|
|
10975
|
-
* Get a pending transaction by ID.
|
|
10976
|
-
*/
|
|
10847
|
+
readonly indexed: false;
|
|
10977
10848
|
}, {
|
|
10978
10849
|
readonly name: "periodLimit";
|
|
10979
10850
|
readonly type: "uint256";
|
|
@@ -11021,9 +10892,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11021
10892
|
}];
|
|
11022
10893
|
}, {
|
|
11023
10894
|
readonly name: "TransactionApproved";
|
|
11024
|
-
readonly type: "event";
|
|
11025
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
11026
|
-
*/
|
|
10895
|
+
readonly type: "event";
|
|
11027
10896
|
readonly inputs: readonly [{
|
|
11028
10897
|
readonly name: "txId";
|
|
11029
10898
|
readonly type: "uint256";
|
|
@@ -11304,9 +11173,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11304
11173
|
}, {
|
|
11305
11174
|
readonly name: "perTxLimit";
|
|
11306
11175
|
readonly type: "uint256";
|
|
11307
|
-
readonly indexed: false;
|
|
11308
|
-
* Get a pending transaction by ID.
|
|
11309
|
-
*/
|
|
11176
|
+
readonly indexed: false;
|
|
11310
11177
|
}, {
|
|
11311
11178
|
readonly name: "periodLimit";
|
|
11312
11179
|
readonly type: "uint256";
|
|
@@ -11354,9 +11221,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11354
11221
|
}];
|
|
11355
11222
|
}, {
|
|
11356
11223
|
readonly name: "TransactionApproved";
|
|
11357
|
-
readonly type: "event";
|
|
11358
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
11359
|
-
*/
|
|
11224
|
+
readonly type: "event";
|
|
11360
11225
|
readonly inputs: readonly [{
|
|
11361
11226
|
readonly name: "txId";
|
|
11362
11227
|
readonly type: "uint256";
|
|
@@ -11638,9 +11503,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11638
11503
|
}, {
|
|
11639
11504
|
readonly name: "perTxLimit";
|
|
11640
11505
|
readonly type: "uint256";
|
|
11641
|
-
readonly indexed: false;
|
|
11642
|
-
* Get a pending transaction by ID.
|
|
11643
|
-
*/
|
|
11506
|
+
readonly indexed: false;
|
|
11644
11507
|
}, {
|
|
11645
11508
|
readonly name: "periodLimit";
|
|
11646
11509
|
readonly type: "uint256";
|
|
@@ -11688,9 +11551,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11688
11551
|
}];
|
|
11689
11552
|
}, {
|
|
11690
11553
|
readonly name: "TransactionApproved";
|
|
11691
|
-
readonly type: "event";
|
|
11692
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
11693
|
-
*/
|
|
11554
|
+
readonly type: "event";
|
|
11694
11555
|
readonly inputs: readonly [{
|
|
11695
11556
|
readonly name: "txId";
|
|
11696
11557
|
readonly type: "uint256";
|
|
@@ -11971,9 +11832,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
11971
11832
|
}, {
|
|
11972
11833
|
readonly name: "perTxLimit";
|
|
11973
11834
|
readonly type: "uint256";
|
|
11974
|
-
readonly indexed: false;
|
|
11975
|
-
* Get a pending transaction by ID.
|
|
11976
|
-
*/
|
|
11835
|
+
readonly indexed: false;
|
|
11977
11836
|
}, {
|
|
11978
11837
|
readonly name: "periodLimit";
|
|
11979
11838
|
readonly type: "uint256";
|
|
@@ -12021,9 +11880,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12021
11880
|
}];
|
|
12022
11881
|
}, {
|
|
12023
11882
|
readonly name: "TransactionApproved";
|
|
12024
|
-
readonly type: "event";
|
|
12025
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
12026
|
-
*/
|
|
11883
|
+
readonly type: "event";
|
|
12027
11884
|
readonly inputs: readonly [{
|
|
12028
11885
|
readonly name: "txId";
|
|
12029
11886
|
readonly type: "uint256";
|
|
@@ -12305,9 +12162,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12305
12162
|
}, {
|
|
12306
12163
|
readonly name: "perTxLimit";
|
|
12307
12164
|
readonly type: "uint256";
|
|
12308
|
-
readonly indexed: false;
|
|
12309
|
-
* Get a pending transaction by ID.
|
|
12310
|
-
*/
|
|
12165
|
+
readonly indexed: false;
|
|
12311
12166
|
}, {
|
|
12312
12167
|
readonly name: "periodLimit";
|
|
12313
12168
|
readonly type: "uint256";
|
|
@@ -12355,9 +12210,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12355
12210
|
}];
|
|
12356
12211
|
}, {
|
|
12357
12212
|
readonly name: "TransactionApproved";
|
|
12358
|
-
readonly type: "event";
|
|
12359
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
12360
|
-
*/
|
|
12213
|
+
readonly type: "event";
|
|
12361
12214
|
readonly inputs: readonly [{
|
|
12362
12215
|
readonly name: "txId";
|
|
12363
12216
|
readonly type: "uint256";
|
|
@@ -12638,9 +12491,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12638
12491
|
}, {
|
|
12639
12492
|
readonly name: "perTxLimit";
|
|
12640
12493
|
readonly type: "uint256";
|
|
12641
|
-
readonly indexed: false;
|
|
12642
|
-
* Get a pending transaction by ID.
|
|
12643
|
-
*/
|
|
12494
|
+
readonly indexed: false;
|
|
12644
12495
|
}, {
|
|
12645
12496
|
readonly name: "periodLimit";
|
|
12646
12497
|
readonly type: "uint256";
|
|
@@ -12688,9 +12539,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12688
12539
|
}];
|
|
12689
12540
|
}, {
|
|
12690
12541
|
readonly name: "TransactionApproved";
|
|
12691
|
-
readonly type: "event";
|
|
12692
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
12693
|
-
*/
|
|
12542
|
+
readonly type: "event";
|
|
12694
12543
|
readonly inputs: readonly [{
|
|
12695
12544
|
readonly name: "txId";
|
|
12696
12545
|
readonly type: "uint256";
|
|
@@ -12991,9 +12840,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
12991
12840
|
}, {
|
|
12992
12841
|
readonly name: "perTxLimit";
|
|
12993
12842
|
readonly type: "uint256";
|
|
12994
|
-
readonly indexed: false;
|
|
12995
|
-
* Get a pending transaction by ID.
|
|
12996
|
-
*/
|
|
12843
|
+
readonly indexed: false;
|
|
12997
12844
|
}, {
|
|
12998
12845
|
readonly name: "periodLimit";
|
|
12999
12846
|
readonly type: "uint256";
|
|
@@ -13041,9 +12888,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13041
12888
|
}];
|
|
13042
12889
|
}, {
|
|
13043
12890
|
readonly name: "TransactionApproved";
|
|
13044
|
-
readonly type: "event";
|
|
13045
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
13046
|
-
*/
|
|
12891
|
+
readonly type: "event";
|
|
13047
12892
|
readonly inputs: readonly [{
|
|
13048
12893
|
readonly name: "txId";
|
|
13049
12894
|
readonly type: "uint256";
|
|
@@ -13338,9 +13183,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13338
13183
|
}, {
|
|
13339
13184
|
readonly name: "perTxLimit";
|
|
13340
13185
|
readonly type: "uint256";
|
|
13341
|
-
readonly indexed: false;
|
|
13342
|
-
* Get a pending transaction by ID.
|
|
13343
|
-
*/
|
|
13186
|
+
readonly indexed: false;
|
|
13344
13187
|
}, {
|
|
13345
13188
|
readonly name: "periodLimit";
|
|
13346
13189
|
readonly type: "uint256";
|
|
@@ -13388,9 +13231,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13388
13231
|
}];
|
|
13389
13232
|
}, {
|
|
13390
13233
|
readonly name: "TransactionApproved";
|
|
13391
|
-
readonly type: "event";
|
|
13392
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
13393
|
-
*/
|
|
13234
|
+
readonly type: "event";
|
|
13394
13235
|
readonly inputs: readonly [{
|
|
13395
13236
|
readonly name: "txId";
|
|
13396
13237
|
readonly type: "uint256";
|
|
@@ -13685,9 +13526,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13685
13526
|
}, {
|
|
13686
13527
|
readonly name: "perTxLimit";
|
|
13687
13528
|
readonly type: "uint256";
|
|
13688
|
-
readonly indexed: false;
|
|
13689
|
-
* Get a pending transaction by ID.
|
|
13690
|
-
*/
|
|
13529
|
+
readonly indexed: false;
|
|
13691
13530
|
}, {
|
|
13692
13531
|
readonly name: "periodLimit";
|
|
13693
13532
|
readonly type: "uint256";
|
|
@@ -13735,9 +13574,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
13735
13574
|
}];
|
|
13736
13575
|
}, {
|
|
13737
13576
|
readonly name: "TransactionApproved";
|
|
13738
|
-
readonly type: "event";
|
|
13739
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
13740
|
-
*/
|
|
13577
|
+
readonly type: "event";
|
|
13741
13578
|
readonly inputs: readonly [{
|
|
13742
13579
|
readonly name: "txId";
|
|
13743
13580
|
readonly type: "uint256";
|
|
@@ -14036,9 +13873,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14036
13873
|
}, {
|
|
14037
13874
|
readonly name: "perTxLimit";
|
|
14038
13875
|
readonly type: "uint256";
|
|
14039
|
-
readonly indexed: false;
|
|
14040
|
-
* Get a pending transaction by ID.
|
|
14041
|
-
*/
|
|
13876
|
+
readonly indexed: false;
|
|
14042
13877
|
}, {
|
|
14043
13878
|
readonly name: "periodLimit";
|
|
14044
13879
|
readonly type: "uint256";
|
|
@@ -14086,9 +13921,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14086
13921
|
}];
|
|
14087
13922
|
}, {
|
|
14088
13923
|
readonly name: "TransactionApproved";
|
|
14089
|
-
readonly type: "event";
|
|
14090
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
14091
|
-
*/
|
|
13924
|
+
readonly type: "event";
|
|
14092
13925
|
readonly inputs: readonly [{
|
|
14093
13926
|
readonly name: "txId";
|
|
14094
13927
|
readonly type: "uint256";
|
|
@@ -14383,9 +14216,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14383
14216
|
}, {
|
|
14384
14217
|
readonly name: "perTxLimit";
|
|
14385
14218
|
readonly type: "uint256";
|
|
14386
|
-
readonly indexed: false;
|
|
14387
|
-
* Get a pending transaction by ID.
|
|
14388
|
-
*/
|
|
14219
|
+
readonly indexed: false;
|
|
14389
14220
|
}, {
|
|
14390
14221
|
readonly name: "periodLimit";
|
|
14391
14222
|
readonly type: "uint256";
|
|
@@ -14433,9 +14264,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14433
14264
|
}];
|
|
14434
14265
|
}, {
|
|
14435
14266
|
readonly name: "TransactionApproved";
|
|
14436
|
-
readonly type: "event";
|
|
14437
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
14438
|
-
*/
|
|
14267
|
+
readonly type: "event";
|
|
14439
14268
|
readonly inputs: readonly [{
|
|
14440
14269
|
readonly name: "txId";
|
|
14441
14270
|
readonly type: "uint256";
|
|
@@ -14730,9 +14559,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14730
14559
|
}, {
|
|
14731
14560
|
readonly name: "perTxLimit";
|
|
14732
14561
|
readonly type: "uint256";
|
|
14733
|
-
readonly indexed: false;
|
|
14734
|
-
* Get a pending transaction by ID.
|
|
14735
|
-
*/
|
|
14562
|
+
readonly indexed: false;
|
|
14736
14563
|
}, {
|
|
14737
14564
|
readonly name: "periodLimit";
|
|
14738
14565
|
readonly type: "uint256";
|
|
@@ -14780,9 +14607,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
14780
14607
|
}];
|
|
14781
14608
|
}, {
|
|
14782
14609
|
readonly name: "TransactionApproved";
|
|
14783
|
-
readonly type: "event";
|
|
14784
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
14785
|
-
*/
|
|
14610
|
+
readonly type: "event";
|
|
14786
14611
|
readonly inputs: readonly [{
|
|
14787
14612
|
readonly name: "txId";
|
|
14788
14613
|
readonly type: "uint256";
|
|
@@ -15074,9 +14899,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15074
14899
|
}, {
|
|
15075
14900
|
readonly name: "perTxLimit";
|
|
15076
14901
|
readonly type: "uint256";
|
|
15077
|
-
readonly indexed: false;
|
|
15078
|
-
* Get a pending transaction by ID.
|
|
15079
|
-
*/
|
|
14902
|
+
readonly indexed: false;
|
|
15080
14903
|
}, {
|
|
15081
14904
|
readonly name: "periodLimit";
|
|
15082
14905
|
readonly type: "uint256";
|
|
@@ -15124,9 +14947,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15124
14947
|
}];
|
|
15125
14948
|
}, {
|
|
15126
14949
|
readonly name: "TransactionApproved";
|
|
15127
|
-
readonly type: "event";
|
|
15128
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
15129
|
-
*/
|
|
14950
|
+
readonly type: "event";
|
|
15130
14951
|
readonly inputs: readonly [{
|
|
15131
14952
|
readonly name: "txId";
|
|
15132
14953
|
readonly type: "uint256";
|
|
@@ -15415,9 +15236,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15415
15236
|
}, {
|
|
15416
15237
|
readonly name: "perTxLimit";
|
|
15417
15238
|
readonly type: "uint256";
|
|
15418
|
-
readonly indexed: false;
|
|
15419
|
-
* Get a pending transaction by ID.
|
|
15420
|
-
*/
|
|
15239
|
+
readonly indexed: false;
|
|
15421
15240
|
}, {
|
|
15422
15241
|
readonly name: "periodLimit";
|
|
15423
15242
|
readonly type: "uint256";
|
|
@@ -15465,9 +15284,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15465
15284
|
}];
|
|
15466
15285
|
}, {
|
|
15467
15286
|
readonly name: "TransactionApproved";
|
|
15468
|
-
readonly type: "event";
|
|
15469
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
15470
|
-
*/
|
|
15287
|
+
readonly type: "event";
|
|
15471
15288
|
readonly inputs: readonly [{
|
|
15472
15289
|
readonly name: "txId";
|
|
15473
15290
|
readonly type: "uint256";
|
|
@@ -15756,9 +15573,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15756
15573
|
}, {
|
|
15757
15574
|
readonly name: "perTxLimit";
|
|
15758
15575
|
readonly type: "uint256";
|
|
15759
|
-
readonly indexed: false;
|
|
15760
|
-
* Get a pending transaction by ID.
|
|
15761
|
-
*/
|
|
15576
|
+
readonly indexed: false;
|
|
15762
15577
|
}, {
|
|
15763
15578
|
readonly name: "periodLimit";
|
|
15764
15579
|
readonly type: "uint256";
|
|
@@ -15806,9 +15621,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
15806
15621
|
}];
|
|
15807
15622
|
}, {
|
|
15808
15623
|
readonly name: "TransactionApproved";
|
|
15809
|
-
readonly type: "event";
|
|
15810
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
15811
|
-
*/
|
|
15624
|
+
readonly type: "event";
|
|
15812
15625
|
readonly inputs: readonly [{
|
|
15813
15626
|
readonly name: "txId";
|
|
15814
15627
|
readonly type: "uint256";
|
|
@@ -16098,9 +15911,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16098
15911
|
}, {
|
|
16099
15912
|
readonly name: "perTxLimit";
|
|
16100
15913
|
readonly type: "uint256";
|
|
16101
|
-
readonly indexed: false;
|
|
16102
|
-
* Get a pending transaction by ID.
|
|
16103
|
-
*/
|
|
15914
|
+
readonly indexed: false;
|
|
16104
15915
|
}, {
|
|
16105
15916
|
readonly name: "periodLimit";
|
|
16106
15917
|
readonly type: "uint256";
|
|
@@ -16148,9 +15959,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16148
15959
|
}];
|
|
16149
15960
|
}, {
|
|
16150
15961
|
readonly name: "TransactionApproved";
|
|
16151
|
-
readonly type: "event";
|
|
16152
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
16153
|
-
*/
|
|
15962
|
+
readonly type: "event";
|
|
16154
15963
|
readonly inputs: readonly [{
|
|
16155
15964
|
readonly name: "txId";
|
|
16156
15965
|
readonly type: "uint256";
|
|
@@ -16439,9 +16248,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16439
16248
|
}, {
|
|
16440
16249
|
readonly name: "perTxLimit";
|
|
16441
16250
|
readonly type: "uint256";
|
|
16442
|
-
readonly indexed: false;
|
|
16443
|
-
* Get a pending transaction by ID.
|
|
16444
|
-
*/
|
|
16251
|
+
readonly indexed: false;
|
|
16445
16252
|
}, {
|
|
16446
16253
|
readonly name: "periodLimit";
|
|
16447
16254
|
readonly type: "uint256";
|
|
@@ -16489,9 +16296,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16489
16296
|
}];
|
|
16490
16297
|
}, {
|
|
16491
16298
|
readonly name: "TransactionApproved";
|
|
16492
|
-
readonly type: "event";
|
|
16493
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
16494
|
-
*/
|
|
16299
|
+
readonly type: "event";
|
|
16495
16300
|
readonly inputs: readonly [{
|
|
16496
16301
|
readonly name: "txId";
|
|
16497
16302
|
readonly type: "uint256";
|
|
@@ -16780,9 +16585,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16780
16585
|
}, {
|
|
16781
16586
|
readonly name: "perTxLimit";
|
|
16782
16587
|
readonly type: "uint256";
|
|
16783
|
-
readonly indexed: false;
|
|
16784
|
-
* Get a pending transaction by ID.
|
|
16785
|
-
*/
|
|
16588
|
+
readonly indexed: false;
|
|
16786
16589
|
}, {
|
|
16787
16590
|
readonly name: "periodLimit";
|
|
16788
16591
|
readonly type: "uint256";
|
|
@@ -16830,9 +16633,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
16830
16633
|
}];
|
|
16831
16634
|
}, {
|
|
16832
16635
|
readonly name: "TransactionApproved";
|
|
16833
|
-
readonly type: "event";
|
|
16834
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
16835
|
-
*/
|
|
16636
|
+
readonly type: "event";
|
|
16836
16637
|
readonly inputs: readonly [{
|
|
16837
16638
|
readonly name: "txId";
|
|
16838
16639
|
readonly type: "uint256";
|
|
@@ -17125,9 +16926,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17125
16926
|
}, {
|
|
17126
16927
|
readonly name: "perTxLimit";
|
|
17127
16928
|
readonly type: "uint256";
|
|
17128
|
-
readonly indexed: false;
|
|
17129
|
-
* Get a pending transaction by ID.
|
|
17130
|
-
*/
|
|
16929
|
+
readonly indexed: false;
|
|
17131
16930
|
}, {
|
|
17132
16931
|
readonly name: "periodLimit";
|
|
17133
16932
|
readonly type: "uint256";
|
|
@@ -17175,9 +16974,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17175
16974
|
}];
|
|
17176
16975
|
}, {
|
|
17177
16976
|
readonly name: "TransactionApproved";
|
|
17178
|
-
readonly type: "event";
|
|
17179
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
17180
|
-
*/
|
|
16977
|
+
readonly type: "event";
|
|
17181
16978
|
readonly inputs: readonly [{
|
|
17182
16979
|
readonly name: "txId";
|
|
17183
16980
|
readonly type: "uint256";
|
|
@@ -17469,9 +17266,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17469
17266
|
}, {
|
|
17470
17267
|
readonly name: "perTxLimit";
|
|
17471
17268
|
readonly type: "uint256";
|
|
17472
|
-
readonly indexed: false;
|
|
17473
|
-
* Get a pending transaction by ID.
|
|
17474
|
-
*/
|
|
17269
|
+
readonly indexed: false;
|
|
17475
17270
|
}, {
|
|
17476
17271
|
readonly name: "periodLimit";
|
|
17477
17272
|
readonly type: "uint256";
|
|
@@ -17519,9 +17314,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17519
17314
|
}];
|
|
17520
17315
|
}, {
|
|
17521
17316
|
readonly name: "TransactionApproved";
|
|
17522
|
-
readonly type: "event";
|
|
17523
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
17524
|
-
*/
|
|
17317
|
+
readonly type: "event";
|
|
17525
17318
|
readonly inputs: readonly [{
|
|
17526
17319
|
readonly name: "txId";
|
|
17527
17320
|
readonly type: "uint256";
|
|
@@ -17813,9 +17606,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17813
17606
|
}, {
|
|
17814
17607
|
readonly name: "perTxLimit";
|
|
17815
17608
|
readonly type: "uint256";
|
|
17816
|
-
readonly indexed: false;
|
|
17817
|
-
* Get a pending transaction by ID.
|
|
17818
|
-
*/
|
|
17609
|
+
readonly indexed: false;
|
|
17819
17610
|
}, {
|
|
17820
17611
|
readonly name: "periodLimit";
|
|
17821
17612
|
readonly type: "uint256";
|
|
@@ -17863,9 +17654,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
17863
17654
|
}];
|
|
17864
17655
|
}, {
|
|
17865
17656
|
readonly name: "TransactionApproved";
|
|
17866
|
-
readonly type: "event";
|
|
17867
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
17868
|
-
*/
|
|
17657
|
+
readonly type: "event";
|
|
17869
17658
|
readonly inputs: readonly [{
|
|
17870
17659
|
readonly name: "txId";
|
|
17871
17660
|
readonly type: "uint256";
|
|
@@ -18158,9 +17947,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18158
17947
|
}, {
|
|
18159
17948
|
readonly name: "perTxLimit";
|
|
18160
17949
|
readonly type: "uint256";
|
|
18161
|
-
readonly indexed: false;
|
|
18162
|
-
* Get a pending transaction by ID.
|
|
18163
|
-
*/
|
|
17950
|
+
readonly indexed: false;
|
|
18164
17951
|
}, {
|
|
18165
17952
|
readonly name: "periodLimit";
|
|
18166
17953
|
readonly type: "uint256";
|
|
@@ -18208,9 +17995,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18208
17995
|
}];
|
|
18209
17996
|
}, {
|
|
18210
17997
|
readonly name: "TransactionApproved";
|
|
18211
|
-
readonly type: "event";
|
|
18212
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
18213
|
-
*/
|
|
17998
|
+
readonly type: "event";
|
|
18214
17999
|
readonly inputs: readonly [{
|
|
18215
18000
|
readonly name: "txId";
|
|
18216
18001
|
readonly type: "uint256";
|
|
@@ -18502,9 +18287,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18502
18287
|
}, {
|
|
18503
18288
|
readonly name: "perTxLimit";
|
|
18504
18289
|
readonly type: "uint256";
|
|
18505
|
-
readonly indexed: false;
|
|
18506
|
-
* Get a pending transaction by ID.
|
|
18507
|
-
*/
|
|
18290
|
+
readonly indexed: false;
|
|
18508
18291
|
}, {
|
|
18509
18292
|
readonly name: "periodLimit";
|
|
18510
18293
|
readonly type: "uint256";
|
|
@@ -18552,9 +18335,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18552
18335
|
}];
|
|
18553
18336
|
}, {
|
|
18554
18337
|
readonly name: "TransactionApproved";
|
|
18555
|
-
readonly type: "event";
|
|
18556
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
18557
|
-
*/
|
|
18338
|
+
readonly type: "event";
|
|
18558
18339
|
readonly inputs: readonly [{
|
|
18559
18340
|
readonly name: "txId";
|
|
18560
18341
|
readonly type: "uint256";
|
|
@@ -18846,9 +18627,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18846
18627
|
}, {
|
|
18847
18628
|
readonly name: "perTxLimit";
|
|
18848
18629
|
readonly type: "uint256";
|
|
18849
|
-
readonly indexed: false;
|
|
18850
|
-
* Get a pending transaction by ID.
|
|
18851
|
-
*/
|
|
18630
|
+
readonly indexed: false;
|
|
18852
18631
|
}, {
|
|
18853
18632
|
readonly name: "periodLimit";
|
|
18854
18633
|
readonly type: "uint256";
|
|
@@ -18896,9 +18675,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
18896
18675
|
}];
|
|
18897
18676
|
}, {
|
|
18898
18677
|
readonly name: "TransactionApproved";
|
|
18899
|
-
readonly type: "event";
|
|
18900
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
18901
|
-
*/
|
|
18678
|
+
readonly type: "event";
|
|
18902
18679
|
readonly inputs: readonly [{
|
|
18903
18680
|
readonly name: "txId";
|
|
18904
18681
|
readonly type: "uint256";
|
|
@@ -19184,9 +18961,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19184
18961
|
}, {
|
|
19185
18962
|
readonly name: "perTxLimit";
|
|
19186
18963
|
readonly type: "uint256";
|
|
19187
|
-
readonly indexed: false;
|
|
19188
|
-
* Get a pending transaction by ID.
|
|
19189
|
-
*/
|
|
18964
|
+
readonly indexed: false;
|
|
19190
18965
|
}, {
|
|
19191
18966
|
readonly name: "periodLimit";
|
|
19192
18967
|
readonly type: "uint256";
|
|
@@ -19234,9 +19009,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19234
19009
|
}];
|
|
19235
19010
|
}, {
|
|
19236
19011
|
readonly name: "TransactionApproved";
|
|
19237
|
-
readonly type: "event";
|
|
19238
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
19239
|
-
*/
|
|
19012
|
+
readonly type: "event";
|
|
19240
19013
|
readonly inputs: readonly [{
|
|
19241
19014
|
readonly name: "txId";
|
|
19242
19015
|
readonly type: "uint256";
|
|
@@ -19517,9 +19290,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19517
19290
|
}, {
|
|
19518
19291
|
readonly name: "perTxLimit";
|
|
19519
19292
|
readonly type: "uint256";
|
|
19520
|
-
readonly indexed: false;
|
|
19521
|
-
* Get a pending transaction by ID.
|
|
19522
|
-
*/
|
|
19293
|
+
readonly indexed: false;
|
|
19523
19294
|
}, {
|
|
19524
19295
|
readonly name: "periodLimit";
|
|
19525
19296
|
readonly type: "uint256";
|
|
@@ -19567,9 +19338,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19567
19338
|
}];
|
|
19568
19339
|
}, {
|
|
19569
19340
|
readonly name: "TransactionApproved";
|
|
19570
|
-
readonly type: "event";
|
|
19571
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
19572
|
-
*/
|
|
19341
|
+
readonly type: "event";
|
|
19573
19342
|
readonly inputs: readonly [{
|
|
19574
19343
|
readonly name: "txId";
|
|
19575
19344
|
readonly type: "uint256";
|
|
@@ -19851,9 +19620,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19851
19620
|
}, {
|
|
19852
19621
|
readonly name: "perTxLimit";
|
|
19853
19622
|
readonly type: "uint256";
|
|
19854
|
-
readonly indexed: false;
|
|
19855
|
-
* Get a pending transaction by ID.
|
|
19856
|
-
*/
|
|
19623
|
+
readonly indexed: false;
|
|
19857
19624
|
}, {
|
|
19858
19625
|
readonly name: "periodLimit";
|
|
19859
19626
|
readonly type: "uint256";
|
|
@@ -19901,9 +19668,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
19901
19668
|
}];
|
|
19902
19669
|
}, {
|
|
19903
19670
|
readonly name: "TransactionApproved";
|
|
19904
|
-
readonly type: "event";
|
|
19905
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
19906
|
-
*/
|
|
19671
|
+
readonly type: "event";
|
|
19907
19672
|
readonly inputs: readonly [{
|
|
19908
19673
|
readonly name: "txId";
|
|
19909
19674
|
readonly type: "uint256";
|
|
@@ -20184,9 +19949,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20184
19949
|
}, {
|
|
20185
19950
|
readonly name: "perTxLimit";
|
|
20186
19951
|
readonly type: "uint256";
|
|
20187
|
-
readonly indexed: false;
|
|
20188
|
-
* Get a pending transaction by ID.
|
|
20189
|
-
*/
|
|
19952
|
+
readonly indexed: false;
|
|
20190
19953
|
}, {
|
|
20191
19954
|
readonly name: "periodLimit";
|
|
20192
19955
|
readonly type: "uint256";
|
|
@@ -20234,9 +19997,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20234
19997
|
}];
|
|
20235
19998
|
}, {
|
|
20236
19999
|
readonly name: "TransactionApproved";
|
|
20237
|
-
readonly type: "event";
|
|
20238
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
20239
|
-
*/
|
|
20000
|
+
readonly type: "event";
|
|
20240
20001
|
readonly inputs: readonly [{
|
|
20241
20002
|
readonly name: "txId";
|
|
20242
20003
|
readonly type: "uint256";
|
|
@@ -20518,9 +20279,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20518
20279
|
}, {
|
|
20519
20280
|
readonly name: "perTxLimit";
|
|
20520
20281
|
readonly type: "uint256";
|
|
20521
|
-
readonly indexed: false;
|
|
20522
|
-
* Get a pending transaction by ID.
|
|
20523
|
-
*/
|
|
20282
|
+
readonly indexed: false;
|
|
20524
20283
|
}, {
|
|
20525
20284
|
readonly name: "periodLimit";
|
|
20526
20285
|
readonly type: "uint256";
|
|
@@ -20568,9 +20327,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20568
20327
|
}];
|
|
20569
20328
|
}, {
|
|
20570
20329
|
readonly name: "TransactionApproved";
|
|
20571
|
-
readonly type: "event";
|
|
20572
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
20573
|
-
*/
|
|
20330
|
+
readonly type: "event";
|
|
20574
20331
|
readonly inputs: readonly [{
|
|
20575
20332
|
readonly name: "txId";
|
|
20576
20333
|
readonly type: "uint256";
|
|
@@ -20851,9 +20608,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20851
20608
|
}, {
|
|
20852
20609
|
readonly name: "perTxLimit";
|
|
20853
20610
|
readonly type: "uint256";
|
|
20854
|
-
readonly indexed: false;
|
|
20855
|
-
* Get a pending transaction by ID.
|
|
20856
|
-
*/
|
|
20611
|
+
readonly indexed: false;
|
|
20857
20612
|
}, {
|
|
20858
20613
|
readonly name: "periodLimit";
|
|
20859
20614
|
readonly type: "uint256";
|
|
@@ -20901,9 +20656,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
20901
20656
|
}];
|
|
20902
20657
|
}, {
|
|
20903
20658
|
readonly name: "TransactionApproved";
|
|
20904
|
-
readonly type: "event";
|
|
20905
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
20906
|
-
*/
|
|
20659
|
+
readonly type: "event";
|
|
20907
20660
|
readonly inputs: readonly [{
|
|
20908
20661
|
readonly name: "txId";
|
|
20909
20662
|
readonly type: "uint256";
|
|
@@ -21185,9 +20938,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21185
20938
|
}, {
|
|
21186
20939
|
readonly name: "perTxLimit";
|
|
21187
20940
|
readonly type: "uint256";
|
|
21188
|
-
readonly indexed: false;
|
|
21189
|
-
* Get a pending transaction by ID.
|
|
21190
|
-
*/
|
|
20941
|
+
readonly indexed: false;
|
|
21191
20942
|
}, {
|
|
21192
20943
|
readonly name: "periodLimit";
|
|
21193
20944
|
readonly type: "uint256";
|
|
@@ -21235,9 +20986,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21235
20986
|
}];
|
|
21236
20987
|
}, {
|
|
21237
20988
|
readonly name: "TransactionApproved";
|
|
21238
|
-
readonly type: "event";
|
|
21239
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
21240
|
-
*/
|
|
20989
|
+
readonly type: "event";
|
|
21241
20990
|
readonly inputs: readonly [{
|
|
21242
20991
|
readonly name: "txId";
|
|
21243
20992
|
readonly type: "uint256";
|
|
@@ -21518,9 +21267,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21518
21267
|
}, {
|
|
21519
21268
|
readonly name: "perTxLimit";
|
|
21520
21269
|
readonly type: "uint256";
|
|
21521
|
-
readonly indexed: false;
|
|
21522
|
-
* Get a pending transaction by ID.
|
|
21523
|
-
*/
|
|
21270
|
+
readonly indexed: false;
|
|
21524
21271
|
}, {
|
|
21525
21272
|
readonly name: "periodLimit";
|
|
21526
21273
|
readonly type: "uint256";
|
|
@@ -21568,9 +21315,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21568
21315
|
}];
|
|
21569
21316
|
}, {
|
|
21570
21317
|
readonly name: "TransactionApproved";
|
|
21571
|
-
readonly type: "event";
|
|
21572
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
21573
|
-
*/
|
|
21318
|
+
readonly type: "event";
|
|
21574
21319
|
readonly inputs: readonly [{
|
|
21575
21320
|
readonly name: "txId";
|
|
21576
21321
|
readonly type: "uint256";
|
|
@@ -21852,9 +21597,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21852
21597
|
}, {
|
|
21853
21598
|
readonly name: "perTxLimit";
|
|
21854
21599
|
readonly type: "uint256";
|
|
21855
|
-
readonly indexed: false;
|
|
21856
|
-
* Get a pending transaction by ID.
|
|
21857
|
-
*/
|
|
21600
|
+
readonly indexed: false;
|
|
21858
21601
|
}, {
|
|
21859
21602
|
readonly name: "periodLimit";
|
|
21860
21603
|
readonly type: "uint256";
|
|
@@ -21902,9 +21645,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
21902
21645
|
}];
|
|
21903
21646
|
}, {
|
|
21904
21647
|
readonly name: "TransactionApproved";
|
|
21905
|
-
readonly type: "event";
|
|
21906
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
21907
|
-
*/
|
|
21648
|
+
readonly type: "event";
|
|
21908
21649
|
readonly inputs: readonly [{
|
|
21909
21650
|
readonly name: "txId";
|
|
21910
21651
|
readonly type: "uint256";
|
|
@@ -22185,9 +21926,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22185
21926
|
}, {
|
|
22186
21927
|
readonly name: "perTxLimit";
|
|
22187
21928
|
readonly type: "uint256";
|
|
22188
|
-
readonly indexed: false;
|
|
22189
|
-
* Get a pending transaction by ID.
|
|
22190
|
-
*/
|
|
21929
|
+
readonly indexed: false;
|
|
22191
21930
|
}, {
|
|
22192
21931
|
readonly name: "periodLimit";
|
|
22193
21932
|
readonly type: "uint256";
|
|
@@ -22235,9 +21974,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22235
21974
|
}];
|
|
22236
21975
|
}, {
|
|
22237
21976
|
readonly name: "TransactionApproved";
|
|
22238
|
-
readonly type: "event";
|
|
22239
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
22240
|
-
*/
|
|
21977
|
+
readonly type: "event";
|
|
22241
21978
|
readonly inputs: readonly [{
|
|
22242
21979
|
readonly name: "txId";
|
|
22243
21980
|
readonly type: "uint256";
|
|
@@ -22519,9 +22256,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22519
22256
|
}, {
|
|
22520
22257
|
readonly name: "perTxLimit";
|
|
22521
22258
|
readonly type: "uint256";
|
|
22522
|
-
readonly indexed: false;
|
|
22523
|
-
* Get a pending transaction by ID.
|
|
22524
|
-
*/
|
|
22259
|
+
readonly indexed: false;
|
|
22525
22260
|
}, {
|
|
22526
22261
|
readonly name: "periodLimit";
|
|
22527
22262
|
readonly type: "uint256";
|
|
@@ -22569,9 +22304,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22569
22304
|
}];
|
|
22570
22305
|
}, {
|
|
22571
22306
|
readonly name: "TransactionApproved";
|
|
22572
|
-
readonly type: "event";
|
|
22573
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
22574
|
-
*/
|
|
22307
|
+
readonly type: "event";
|
|
22575
22308
|
readonly inputs: readonly [{
|
|
22576
22309
|
readonly name: "txId";
|
|
22577
22310
|
readonly type: "uint256";
|
|
@@ -22852,9 +22585,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22852
22585
|
}, {
|
|
22853
22586
|
readonly name: "perTxLimit";
|
|
22854
22587
|
readonly type: "uint256";
|
|
22855
|
-
readonly indexed: false;
|
|
22856
|
-
* Get a pending transaction by ID.
|
|
22857
|
-
*/
|
|
22588
|
+
readonly indexed: false;
|
|
22858
22589
|
}, {
|
|
22859
22590
|
readonly name: "periodLimit";
|
|
22860
22591
|
readonly type: "uint256";
|
|
@@ -22902,9 +22633,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
22902
22633
|
}];
|
|
22903
22634
|
}, {
|
|
22904
22635
|
readonly name: "TransactionApproved";
|
|
22905
|
-
readonly type: "event";
|
|
22906
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
22907
|
-
*/
|
|
22636
|
+
readonly type: "event";
|
|
22908
22637
|
readonly inputs: readonly [{
|
|
22909
22638
|
readonly name: "txId";
|
|
22910
22639
|
readonly type: "uint256";
|
|
@@ -23186,9 +22915,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23186
22915
|
}, {
|
|
23187
22916
|
readonly name: "perTxLimit";
|
|
23188
22917
|
readonly type: "uint256";
|
|
23189
|
-
readonly indexed: false;
|
|
23190
|
-
* Get a pending transaction by ID.
|
|
23191
|
-
*/
|
|
22918
|
+
readonly indexed: false;
|
|
23192
22919
|
}, {
|
|
23193
22920
|
readonly name: "periodLimit";
|
|
23194
22921
|
readonly type: "uint256";
|
|
@@ -23236,9 +22963,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23236
22963
|
}];
|
|
23237
22964
|
}, {
|
|
23238
22965
|
readonly name: "TransactionApproved";
|
|
23239
|
-
readonly type: "event";
|
|
23240
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
23241
|
-
*/
|
|
22966
|
+
readonly type: "event";
|
|
23242
22967
|
readonly inputs: readonly [{
|
|
23243
22968
|
readonly name: "txId";
|
|
23244
22969
|
readonly type: "uint256";
|
|
@@ -23519,9 +23244,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23519
23244
|
}, {
|
|
23520
23245
|
readonly name: "perTxLimit";
|
|
23521
23246
|
readonly type: "uint256";
|
|
23522
|
-
readonly indexed: false;
|
|
23523
|
-
* Get a pending transaction by ID.
|
|
23524
|
-
*/
|
|
23247
|
+
readonly indexed: false;
|
|
23525
23248
|
}, {
|
|
23526
23249
|
readonly name: "periodLimit";
|
|
23527
23250
|
readonly type: "uint256";
|
|
@@ -23569,9 +23292,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23569
23292
|
}];
|
|
23570
23293
|
}, {
|
|
23571
23294
|
readonly name: "TransactionApproved";
|
|
23572
|
-
readonly type: "event";
|
|
23573
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
23574
|
-
*/
|
|
23295
|
+
readonly type: "event";
|
|
23575
23296
|
readonly inputs: readonly [{
|
|
23576
23297
|
readonly name: "txId";
|
|
23577
23298
|
readonly type: "uint256";
|
|
@@ -23855,9 +23576,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23855
23576
|
}, {
|
|
23856
23577
|
readonly name: "perTxLimit";
|
|
23857
23578
|
readonly type: "uint256";
|
|
23858
|
-
readonly indexed: false;
|
|
23859
|
-
* Get a pending transaction by ID.
|
|
23860
|
-
*/
|
|
23579
|
+
readonly indexed: false;
|
|
23861
23580
|
}, {
|
|
23862
23581
|
readonly name: "periodLimit";
|
|
23863
23582
|
readonly type: "uint256";
|
|
@@ -23905,9 +23624,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23905
23624
|
}];
|
|
23906
23625
|
}, {
|
|
23907
23626
|
readonly name: "TransactionApproved";
|
|
23908
|
-
readonly type: "event";
|
|
23909
|
-
* Approve a pending transaction. Only callable by the NFT owner.
|
|
23910
|
-
*/
|
|
23627
|
+
readonly type: "event";
|
|
23911
23628
|
readonly inputs: readonly [{
|
|
23912
23629
|
readonly name: "txId";
|
|
23913
23630
|
readonly type: "uint256";
|
|
@@ -23971,7 +23688,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23971
23688
|
}]>;
|
|
23972
23689
|
type: "block";
|
|
23973
23690
|
}>;
|
|
23974
|
-
createContractEventFilter: <const abi extends
|
|
23691
|
+
createContractEventFilter: <const abi extends import("viem").Abi | readonly unknown[], 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>>;
|
|
23975
23692
|
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>;
|
|
23976
23693
|
createPendingTransactionFilter: () => Promise<{
|
|
23977
23694
|
id: `0x${string}`;
|
|
@@ -23990,7 +23707,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
23990
23707
|
}]>;
|
|
23991
23708
|
type: "transaction";
|
|
23992
23709
|
}>;
|
|
23993
|
-
estimateContractGas: <chain extends Chain | undefined, const abi_1 extends
|
|
23710
|
+
estimateContractGas: <chain extends Chain | undefined, const abi_1 extends import("viem").Abi | readonly unknown[], 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>;
|
|
23994
23711
|
estimateGas: (args: import("viem").EstimateGasParameters<Chain>) => Promise<bigint>;
|
|
23995
23712
|
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>>;
|
|
23996
23713
|
getBalance: (args: import("viem").GetBalanceParameters) => Promise<bigint>;
|
|
@@ -24026,6 +23743,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24026
23743
|
to: `0x${string}` | null;
|
|
24027
23744
|
value: bigint;
|
|
24028
23745
|
nonce: number;
|
|
23746
|
+
chainId?: number | undefined;
|
|
24029
23747
|
type: "legacy";
|
|
24030
23748
|
yParity?: undefined;
|
|
24031
23749
|
from: `0x${string}`;
|
|
@@ -24039,7 +23757,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24039
23757
|
accessList?: undefined;
|
|
24040
23758
|
authorizationList?: undefined;
|
|
24041
23759
|
blobVersionedHashes?: undefined;
|
|
24042
|
-
chainId?: number | undefined;
|
|
24043
23760
|
gasPrice: bigint;
|
|
24044
23761
|
maxFeePerBlobGas?: undefined;
|
|
24045
23762
|
maxFeePerGas?: undefined;
|
|
@@ -24051,6 +23768,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24051
23768
|
to: `0x${string}` | null;
|
|
24052
23769
|
value: bigint;
|
|
24053
23770
|
nonce: number;
|
|
23771
|
+
chainId: number;
|
|
24054
23772
|
type: "eip2930";
|
|
24055
23773
|
yParity: number;
|
|
24056
23774
|
from: `0x${string}`;
|
|
@@ -24064,7 +23782,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24064
23782
|
accessList: import("viem").AccessList;
|
|
24065
23783
|
authorizationList?: undefined;
|
|
24066
23784
|
blobVersionedHashes?: undefined;
|
|
24067
|
-
chainId: number;
|
|
24068
23785
|
gasPrice: bigint;
|
|
24069
23786
|
maxFeePerBlobGas?: undefined;
|
|
24070
23787
|
maxFeePerGas?: undefined;
|
|
@@ -24076,6 +23793,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24076
23793
|
to: `0x${string}` | null;
|
|
24077
23794
|
value: bigint;
|
|
24078
23795
|
nonce: number;
|
|
23796
|
+
chainId: number;
|
|
24079
23797
|
type: "eip1559";
|
|
24080
23798
|
yParity: number;
|
|
24081
23799
|
from: `0x${string}`;
|
|
@@ -24089,7 +23807,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24089
23807
|
accessList: import("viem").AccessList;
|
|
24090
23808
|
authorizationList?: undefined;
|
|
24091
23809
|
blobVersionedHashes?: undefined;
|
|
24092
|
-
chainId: number;
|
|
24093
23810
|
gasPrice?: undefined;
|
|
24094
23811
|
maxFeePerBlobGas?: undefined;
|
|
24095
23812
|
maxFeePerGas: bigint;
|
|
@@ -24101,6 +23818,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24101
23818
|
to: `0x${string}` | null;
|
|
24102
23819
|
value: bigint;
|
|
24103
23820
|
nonce: number;
|
|
23821
|
+
chainId: number;
|
|
24104
23822
|
type: "eip4844";
|
|
24105
23823
|
yParity: number;
|
|
24106
23824
|
from: `0x${string}`;
|
|
@@ -24114,7 +23832,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24114
23832
|
accessList: import("viem").AccessList;
|
|
24115
23833
|
authorizationList?: undefined;
|
|
24116
23834
|
blobVersionedHashes: readonly `0x${string}`[];
|
|
24117
|
-
chainId: number;
|
|
24118
23835
|
gasPrice?: undefined;
|
|
24119
23836
|
maxFeePerBlobGas: bigint;
|
|
24120
23837
|
maxFeePerGas: bigint;
|
|
@@ -24126,6 +23843,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24126
23843
|
to: `0x${string}` | null;
|
|
24127
23844
|
value: bigint;
|
|
24128
23845
|
nonce: number;
|
|
23846
|
+
chainId: number;
|
|
24129
23847
|
type: "eip7702";
|
|
24130
23848
|
yParity: number;
|
|
24131
23849
|
from: `0x${string}`;
|
|
@@ -24139,7 +23857,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24139
23857
|
accessList: import("viem").AccessList;
|
|
24140
23858
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
24141
23859
|
blobVersionedHashes?: undefined;
|
|
24142
|
-
chainId: number;
|
|
24143
23860
|
gasPrice?: undefined;
|
|
24144
23861
|
maxFeePerBlobGas?: undefined;
|
|
24145
23862
|
maxFeePerGas: bigint;
|
|
@@ -24154,7 +23871,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24154
23871
|
getBytecode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
24155
23872
|
getChainId: () => Promise<number>;
|
|
24156
23873
|
getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
24157
|
-
getContractEvents: <const abi_2 extends
|
|
23874
|
+
getContractEvents: <const abi_2 extends import("viem").Abi | readonly unknown[], 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>>;
|
|
24158
23875
|
getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
|
|
24159
23876
|
getEnsAddress: (args: {
|
|
24160
23877
|
blockNumber?: bigint | undefined;
|
|
@@ -24200,8 +23917,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24200
23917
|
}) => Promise<import("viem").GetEnsTextReturnType>;
|
|
24201
23918
|
getFeeHistory: (args: import("viem").GetFeeHistoryParameters) => Promise<import("viem").GetFeeHistoryReturnType>;
|
|
24202
23919
|
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>>;
|
|
24203
|
-
getFilterChanges: <filterType extends import("viem").FilterType, const abi_3 extends
|
|
24204
|
-
getFilterLogs: <const abi_4 extends
|
|
23920
|
+
getFilterChanges: <filterType extends import("viem").FilterType, const abi_3 extends import("viem").Abi | readonly unknown[] | 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>>;
|
|
23921
|
+
getFilterLogs: <const abi_4 extends import("viem").Abi | readonly unknown[] | 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>>;
|
|
24205
23922
|
getGasPrice: () => Promise<bigint>;
|
|
24206
23923
|
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>>;
|
|
24207
23924
|
getProof: (args: import("viem").GetProofParameters) => Promise<import("viem").GetProofReturnType>;
|
|
@@ -24213,6 +23930,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24213
23930
|
to: `0x${string}` | null;
|
|
24214
23931
|
value: bigint;
|
|
24215
23932
|
nonce: number;
|
|
23933
|
+
chainId?: number | undefined;
|
|
24216
23934
|
type: "legacy";
|
|
24217
23935
|
yParity?: undefined;
|
|
24218
23936
|
from: `0x${string}`;
|
|
@@ -24226,7 +23944,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24226
23944
|
accessList?: undefined;
|
|
24227
23945
|
authorizationList?: undefined;
|
|
24228
23946
|
blobVersionedHashes?: undefined;
|
|
24229
|
-
chainId?: number | undefined;
|
|
24230
23947
|
gasPrice: bigint;
|
|
24231
23948
|
maxFeePerBlobGas?: undefined;
|
|
24232
23949
|
maxFeePerGas?: undefined;
|
|
@@ -24238,6 +23955,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24238
23955
|
to: `0x${string}` | null;
|
|
24239
23956
|
value: bigint;
|
|
24240
23957
|
nonce: number;
|
|
23958
|
+
chainId: number;
|
|
24241
23959
|
type: "eip2930";
|
|
24242
23960
|
yParity: number;
|
|
24243
23961
|
from: `0x${string}`;
|
|
@@ -24251,7 +23969,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24251
23969
|
accessList: import("viem").AccessList;
|
|
24252
23970
|
authorizationList?: undefined;
|
|
24253
23971
|
blobVersionedHashes?: undefined;
|
|
24254
|
-
chainId: number;
|
|
24255
23972
|
gasPrice: bigint;
|
|
24256
23973
|
maxFeePerBlobGas?: undefined;
|
|
24257
23974
|
maxFeePerGas?: undefined;
|
|
@@ -24263,6 +23980,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24263
23980
|
to: `0x${string}` | null;
|
|
24264
23981
|
value: bigint;
|
|
24265
23982
|
nonce: number;
|
|
23983
|
+
chainId: number;
|
|
24266
23984
|
type: "eip1559";
|
|
24267
23985
|
yParity: number;
|
|
24268
23986
|
from: `0x${string}`;
|
|
@@ -24276,7 +23994,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24276
23994
|
accessList: import("viem").AccessList;
|
|
24277
23995
|
authorizationList?: undefined;
|
|
24278
23996
|
blobVersionedHashes?: undefined;
|
|
24279
|
-
chainId: number;
|
|
24280
23997
|
gasPrice?: undefined;
|
|
24281
23998
|
maxFeePerBlobGas?: undefined;
|
|
24282
23999
|
maxFeePerGas: bigint;
|
|
@@ -24288,6 +24005,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24288
24005
|
to: `0x${string}` | null;
|
|
24289
24006
|
value: bigint;
|
|
24290
24007
|
nonce: number;
|
|
24008
|
+
chainId: number;
|
|
24291
24009
|
type: "eip4844";
|
|
24292
24010
|
yParity: number;
|
|
24293
24011
|
from: `0x${string}`;
|
|
@@ -24301,7 +24019,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24301
24019
|
accessList: import("viem").AccessList;
|
|
24302
24020
|
authorizationList?: undefined;
|
|
24303
24021
|
blobVersionedHashes: readonly `0x${string}`[];
|
|
24304
|
-
chainId: number;
|
|
24305
24022
|
gasPrice?: undefined;
|
|
24306
24023
|
maxFeePerBlobGas: bigint;
|
|
24307
24024
|
maxFeePerGas: bigint;
|
|
@@ -24313,6 +24030,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24313
24030
|
to: `0x${string}` | null;
|
|
24314
24031
|
value: bigint;
|
|
24315
24032
|
nonce: number;
|
|
24033
|
+
chainId: number;
|
|
24316
24034
|
type: "eip7702";
|
|
24317
24035
|
yParity: number;
|
|
24318
24036
|
from: `0x${string}`;
|
|
@@ -24326,7 +24044,6 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
24326
24044
|
accessList: import("viem").AccessList;
|
|
24327
24045
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
24328
24046
|
blobVersionedHashes?: undefined;
|
|
24329
|
-
chainId: number;
|
|
24330
24047
|
gasPrice?: undefined;
|
|
24331
24048
|
maxFeePerBlobGas?: undefined;
|
|
24332
24049
|
maxFeePerGas: bigint;
|
|
@@ -27591,7 +27308,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
27591
27308
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
27592
27309
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_69 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
27593
27310
|
chainId?: number | undefined;
|
|
27594
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "
|
|
27311
|
+
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "chainId" | "type" | "fees" | "gas" | "blobVersionedHashes") extends infer T_70 ? T_70 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "chainId" | "type" | "fees" | "gas" | "blobVersionedHashes") ? 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 ? {
|
|
27595
27312
|
chain: T_45;
|
|
27596
27313
|
} : {
|
|
27597
27314
|
chain?: undefined;
|
|
@@ -30843,14 +30560,14 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30843
30560
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
30844
30561
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_56 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
30845
30562
|
chainId?: number | undefined;
|
|
30846
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "
|
|
30847
|
-
readContract: <const abi_5 extends
|
|
30563
|
+
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "chainId" | "type" | "fees" | "gas" | "blobVersionedHashes") extends infer T_57 ? T_57 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "chainId" | "type" | "fees" | "gas" | "blobVersionedHashes") ? T_57 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_57 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K_8]; } : never>;
|
|
30564
|
+
readContract: <const abi_5 extends import("viem").Abi | readonly unknown[], functionName_1 extends import("viem").ContractFunctionName<abi_5, "view" | "pure">, const args_8 extends import("viem").ContractFunctionArgs<abi_5, "view" | "pure", functionName_1>>(args: import("viem").ReadContractParameters<abi_5, functionName_1, args>) => Promise<import("viem").ReadContractReturnType<abi_5, functionName_1, args>>;
|
|
30848
30565
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<`0x${string}`>;
|
|
30849
30566
|
sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<import("viem").TransactionReceipt>;
|
|
30850
30567
|
simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
|
|
30851
30568
|
simulateBlocks: <const calls_1 extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls_1>) => Promise<import("viem").SimulateBlocksReturnType<calls_1>>;
|
|
30852
30569
|
simulateCalls: <const calls_2 extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls_2>) => Promise<import("viem").SimulateCallsReturnType<calls_2>>;
|
|
30853
|
-
simulateContract: <const abi_6 extends
|
|
30570
|
+
simulateContract: <const abi_6 extends import("viem").Abi | readonly unknown[], 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>>;
|
|
30854
30571
|
verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<boolean>;
|
|
30855
30572
|
verifyMessage: (args: {
|
|
30856
30573
|
address: `0x${string}`;
|
|
@@ -30881,7 +30598,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30881
30598
|
waitForTransactionReceipt: (args: import("viem").WaitForTransactionReceiptParameters<Chain>) => Promise<import("viem").TransactionReceipt>;
|
|
30882
30599
|
watchBlockNumber: (args: import("viem").WatchBlockNumberParameters) => import("viem").WatchBlockNumberReturnType;
|
|
30883
30600
|
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;
|
|
30884
|
-
watchContractEvent: <const abi_7 extends
|
|
30601
|
+
watchContractEvent: <const abi_7 extends import("viem").Abi | readonly unknown[], 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;
|
|
30885
30602
|
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;
|
|
30886
30603
|
watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<import("viem").HttpTransport<undefined, false>>) => import("viem").WatchPendingTransactionsReturnType;
|
|
30887
30604
|
extend: <const client extends {
|
|
@@ -30926,12 +30643,12 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
30926
30643
|
type: string;
|
|
30927
30644
|
uid: string;
|
|
30928
30645
|
addChain: (args: import("viem").AddChainParameters) => Promise<void>;
|
|
30929
|
-
deployContract: <const abi_8 extends
|
|
30646
|
+
deployContract: <const abi_8 extends import("viem").Abi | readonly unknown[], chainOverride_19 extends Chain | undefined>(args: import("viem").DeployContractParameters<abi_8, Chain | undefined, import("viem").Account | undefined, chainOverride_19>) => Promise<`0x${string}`>;
|
|
30930
30647
|
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>>;
|
|
30931
30648
|
getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
|
|
30932
30649
|
getCallsStatus: (parameters: import("viem").GetCallsStatusParameters) => Promise<{
|
|
30933
|
-
id: string;
|
|
30934
30650
|
chainId: number;
|
|
30651
|
+
id: string;
|
|
30935
30652
|
atomic: boolean;
|
|
30936
30653
|
capabilities?: {
|
|
30937
30654
|
[key: string]: any;
|
|
@@ -34247,7 +33964,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
34247
33964
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
34248
33965
|
} ? "eip7702" : never) | (request_1["type"] extends string | undefined ? Extract<request_1["type"], string> : never)>) ? T_97 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
34249
33966
|
chainId?: number | undefined;
|
|
34250
|
-
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "
|
|
33967
|
+
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "chainId" | "type" | "fees" | "gas" | "blobVersionedHashes") extends infer T_98 ? T_98 extends (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "chainId" | "type" | "fees" | "gas" | "blobVersionedHashes") ? 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 ? {
|
|
34251
33968
|
chain: T_73;
|
|
34252
33969
|
} : {
|
|
34253
33970
|
chain?: undefined;
|
|
@@ -37499,7 +37216,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
37499
37216
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
37500
37217
|
} ? "eip7702" : never) | (request_1["type"] extends string | undefined ? Extract<request_1["type"], string> : never)>) ? T_84 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
37501
37218
|
chainId?: number | undefined;
|
|
37502
|
-
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "
|
|
37219
|
+
}, (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "chainId" | "type" | "fees" | "gas" | "blobVersionedHashes") extends infer T_85 ? T_85 extends (request_1["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request_1["parameters"][number] : "nonce" | "chainId" | "type" | "fees" | "gas" | "blobVersionedHashes") ? T_85 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_85 : never : never> & (unknown extends request_1["kzg"] ? {} : Pick<request_1, "kzg">))[K_11]; } : never>;
|
|
37503
37220
|
requestAddresses: () => Promise<import("viem").RequestAddressesReturnType>;
|
|
37504
37221
|
requestPermissions: (args: {
|
|
37505
37222
|
[x: string]: Record<string, any>;
|
|
@@ -37512,8 +37229,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
37512
37229
|
id: string;
|
|
37513
37230
|
}>;
|
|
37514
37231
|
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<{
|
|
37515
|
-
id: string;
|
|
37516
37232
|
chainId: number;
|
|
37233
|
+
id: string;
|
|
37517
37234
|
atomic: boolean;
|
|
37518
37235
|
capabilities?: {
|
|
37519
37236
|
[key: string]: any;
|
|
@@ -38426,14 +38143,12 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38426
38143
|
} ? "eip7702" : never) | (request_4["type"] extends string | undefined ? Extract<request_4["type"], string> : never)> ? T_103 extends "legacy" ? import("viem").TransactionSerializedLegacy : never : never : never)>>;
|
|
38427
38144
|
signTypedData: <const typedData extends {
|
|
38428
38145
|
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
38429
|
-
[x: `address[${string}]`]: undefined;
|
|
38430
|
-
[x: `bool[${string}]`]: undefined;
|
|
38431
38146
|
[x: `string[${string}]`]: undefined;
|
|
38432
|
-
[x: `bytes[${string}]`]: undefined;
|
|
38433
|
-
[x: `int[${string}]`]: undefined;
|
|
38434
|
-
[x: `uint[${string}]`]: undefined;
|
|
38435
38147
|
[x: `function[${string}]`]: undefined;
|
|
38148
|
+
[x: `address[${string}]`]: undefined;
|
|
38436
38149
|
[x: `uint256[${string}]`]: undefined;
|
|
38150
|
+
[x: `bool[${string}]`]: undefined;
|
|
38151
|
+
[x: `bytes[${string}]`]: undefined;
|
|
38437
38152
|
[x: `bytes4[${string}]`]: undefined;
|
|
38438
38153
|
[x: `bytes2[${string}]`]: undefined;
|
|
38439
38154
|
[x: `bytes3[${string}]`]: undefined;
|
|
@@ -38441,11 +38156,11 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38441
38156
|
[x: `bytes7[${string}]`]: undefined;
|
|
38442
38157
|
[x: `bytes5[${string}]`]: undefined;
|
|
38443
38158
|
[x: `bytes23[${string}]`]: undefined;
|
|
38444
|
-
[x: `
|
|
38159
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
38445
38160
|
[x: `bytes6[${string}]`]: undefined;
|
|
38161
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
38446
38162
|
[x: `bytes8[${string}]`]: undefined;
|
|
38447
38163
|
[x: `bytes9[${string}]`]: undefined;
|
|
38448
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
38449
38164
|
[x: `bytes11[${string}]`]: undefined;
|
|
38450
38165
|
[x: `bytes12[${string}]`]: undefined;
|
|
38451
38166
|
[x: `bytes13[${string}]`]: undefined;
|
|
@@ -38453,10 +38168,10 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38453
38168
|
[x: `bytes15[${string}]`]: undefined;
|
|
38454
38169
|
[x: `bytes16[${string}]`]: undefined;
|
|
38455
38170
|
[x: `bytes17[${string}]`]: undefined;
|
|
38456
|
-
[x: `bytes18[${string}]`]: undefined;
|
|
38457
38171
|
[x: `bytes19[${string}]`]: undefined;
|
|
38458
38172
|
[x: `bytes20[${string}]`]: undefined;
|
|
38459
38173
|
[x: `bytes21[${string}]`]: undefined;
|
|
38174
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
38460
38175
|
[x: `bytes24[${string}]`]: undefined;
|
|
38461
38176
|
[x: `bytes25[${string}]`]: undefined;
|
|
38462
38177
|
[x: `bytes26[${string}]`]: undefined;
|
|
@@ -38466,6 +38181,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38466
38181
|
[x: `bytes30[${string}]`]: undefined;
|
|
38467
38182
|
[x: `bytes31[${string}]`]: undefined;
|
|
38468
38183
|
[x: `bytes32[${string}]`]: undefined;
|
|
38184
|
+
[x: `int[${string}]`]: undefined;
|
|
38469
38185
|
[x: `int8[${string}]`]: undefined;
|
|
38470
38186
|
[x: `int16[${string}]`]: undefined;
|
|
38471
38187
|
[x: `int24[${string}]`]: undefined;
|
|
@@ -38498,6 +38214,7 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38498
38214
|
[x: `int240[${string}]`]: undefined;
|
|
38499
38215
|
[x: `int248[${string}]`]: undefined;
|
|
38500
38216
|
[x: `int256[${string}]`]: undefined;
|
|
38217
|
+
[x: `uint[${string}]`]: undefined;
|
|
38501
38218
|
[x: `uint8[${string}]`]: undefined;
|
|
38502
38219
|
[x: `uint16[${string}]`]: undefined;
|
|
38503
38220
|
[x: `uint24[${string}]`]: undefined;
|
|
@@ -38541,11 +38258,11 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38541
38258
|
bytes7?: undefined;
|
|
38542
38259
|
bytes5?: undefined;
|
|
38543
38260
|
bytes23?: undefined;
|
|
38544
|
-
|
|
38261
|
+
bytes10?: undefined;
|
|
38545
38262
|
bytes6?: undefined;
|
|
38263
|
+
bytes18?: undefined;
|
|
38546
38264
|
bytes8?: undefined;
|
|
38547
38265
|
bytes9?: undefined;
|
|
38548
|
-
bytes10?: undefined;
|
|
38549
38266
|
bytes11?: undefined;
|
|
38550
38267
|
bytes12?: undefined;
|
|
38551
38268
|
bytes13?: undefined;
|
|
@@ -38553,10 +38270,10 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38553
38270
|
bytes15?: undefined;
|
|
38554
38271
|
bytes16?: undefined;
|
|
38555
38272
|
bytes17?: undefined;
|
|
38556
|
-
bytes18?: undefined;
|
|
38557
38273
|
bytes19?: undefined;
|
|
38558
38274
|
bytes20?: undefined;
|
|
38559
38275
|
bytes21?: undefined;
|
|
38276
|
+
bytes22?: undefined;
|
|
38560
38277
|
bytes24?: undefined;
|
|
38561
38278
|
bytes25?: undefined;
|
|
38562
38279
|
bytes26?: undefined;
|
|
@@ -38634,8 +38351,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38634
38351
|
}, primaryType extends string>(args: import("viem").SignTypedDataParameters<typedData, primaryType, import("viem").Account | undefined>) => Promise<`0x${string}`>;
|
|
38635
38352
|
switchChain: (args: import("viem").SwitchChainParameters) => Promise<void>;
|
|
38636
38353
|
waitForCallsStatus: (parameters: import("viem").WaitForCallsStatusParameters) => Promise<{
|
|
38637
|
-
id: string;
|
|
38638
38354
|
chainId: number;
|
|
38355
|
+
id: string;
|
|
38639
38356
|
atomic: boolean;
|
|
38640
38357
|
capabilities?: {
|
|
38641
38358
|
[key: string]: any;
|
|
@@ -38648,8 +38365,8 @@ export declare function createWallet(config: AgentWalletConfig & {
|
|
|
38648
38365
|
status: "pending" | "success" | "failure" | undefined;
|
|
38649
38366
|
}>;
|
|
38650
38367
|
watchAsset: (args: import("viem").WatchAssetParams) => Promise<boolean>;
|
|
38651
|
-
writeContract: <const abi_9 extends
|
|
38652
|
-
writeContractSync: <const abi_10 extends
|
|
38368
|
+
writeContract: <const abi_9 extends import("viem").Abi | readonly unknown[], 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}`>;
|
|
38369
|
+
writeContractSync: <const abi_10 extends import("viem").Abi | readonly unknown[], 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>;
|
|
38653
38370
|
extend: <const client_1 extends {
|
|
38654
38371
|
[x: string]: unknown;
|
|
38655
38372
|
account?: undefined;
|
|
@@ -38721,14 +38438,13 @@ export declare function deployWallet(config: {
|
|
|
38721
38438
|
factoryAddress: Address;
|
|
38722
38439
|
tokenContract: Address;
|
|
38723
38440
|
tokenId: bigint;
|
|
38724
|
-
chain: keyof typeof
|
|
38441
|
+
chain: keyof typeof CHAINS;
|
|
38725
38442
|
rpcUrl?: string;
|
|
38726
38443
|
walletClient: WalletClient;
|
|
38727
38444
|
}): Promise<{
|
|
38728
38445
|
walletAddress: Address;
|
|
38729
38446
|
txHash: Hash;
|
|
38730
38447
|
}>;
|
|
38731
|
-
declare const CHAINS_MAP: Record<string, Chain>;
|
|
38732
38448
|
/**
|
|
38733
38449
|
* Compute the deterministic wallet address without deploying.
|
|
38734
38450
|
*/
|
|
@@ -38787,8 +38503,6 @@ export { ReputationClient, ReputationRegistryAbi } from './identity/reputation.j
|
|
|
38787
38503
|
export type { ReputationClientConfig, GiveFeedbackParams, FeedbackEntry, AgentReputationSummary, FeedbackFilters, RespondToFeedbackParams, } from './identity/reputation.js';
|
|
38788
38504
|
export { ValidationClient, ValidationRegistryAbi } from './identity/validation.js';
|
|
38789
38505
|
export type { ValidationClientConfig, RequestValidationParams, RespondToValidationParams, ValidationStatus, ValidationSummary, } from './identity/validation.js';
|
|
38790
|
-
export { EmailResolver } from './identity/email-resolver.js';
|
|
38791
|
-
export type { EmailResolverConfig, AgentInbox, WalletResolution, AgentEmail, SendEmailParams, } from './identity/email-resolver.js';
|
|
38792
38506
|
export { SwapModule, attachSwap, calcProtocolFee, applySlippage, calcDeadline } from './swap/index.js';
|
|
38793
38507
|
export { UniswapV3RouterAbi, UniswapV3QuoterV2Abi, ERC20Abi } from './swap/index.js';
|
|
38794
38508
|
export { BASE_TOKENS, UNISWAP_V3_BASE, PROTOCOL_FEE_BPS, DEFAULT_SLIPPAGE_BPS } from './swap/index.js';
|
|
@@ -38802,4 +38516,13 @@ export { MutualStakeEscrow } from './escrow/MutualStakeEscrow.js';
|
|
|
38802
38516
|
export type { CreateEscrowParams, EscrowCreated, EscrowDetails, TxResult as EscrowTxResult, } from './escrow/types.js';
|
|
38803
38517
|
export { TaskStatus } from './escrow/types.js';
|
|
38804
38518
|
export { resolveVerifierAddress, encodeHashVerifierData, encodeOptimisticVerifierData, VERIFIER_ADDRESSES, } from './escrow/verifiers.js';
|
|
38519
|
+
export { TokenRegistry, getGlobalRegistry, getNativeToken, ETHEREUM_REGISTRY, BASE_REGISTRY, ARBITRUM_REGISTRY, OPTIMISM_REGISTRY, POLYGON_REGISTRY, AVALANCHE_REGISTRY, UNICHAIN_REGISTRY, LINEA_REGISTRY, SONIC_REGISTRY, WORLDCHAIN_REGISTRY, BASE_SEPOLIA_REGISTRY, } from './tokens/registry.js';
|
|
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';
|
|
38805
38528
|
//# sourceMappingURL=index.d.ts.map
|