@zubari/sdk 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{TransactionService-Djonkbp4.d.ts → TransactionService-BtWUjKt_.d.ts} +14 -2
- package/dist/{TransactionService-1Jt8ZRqO.d.mts → TransactionService-Lr_WS6iR.d.mts} +14 -2
- package/dist/{WalletManager-BJaLBfX5.d.ts → WalletManager-DQQwVkoa.d.ts} +52 -131
- package/dist/{WalletManager-pVFpurEi.d.mts → WalletManager-Sbpx4E1-.d.mts} +52 -131
- package/dist/{index-Da7SaweH.d.mts → contracts-B842YprC.d.mts} +152 -82
- package/dist/{index-ARbXbNI-.d.ts → contracts-s_CDIruh.d.ts} +152 -82
- package/dist/index.d.mts +65 -6
- package/dist/index.d.ts +65 -6
- package/dist/index.js +531 -73
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +515 -75
- package/dist/index.mjs.map +1 -1
- package/dist/protocols/index.js +23 -5
- package/dist/protocols/index.js.map +1 -1
- package/dist/protocols/index.mjs +23 -5
- package/dist/protocols/index.mjs.map +1 -1
- package/dist/react/index.d.mts +3 -4
- package/dist/react/index.d.ts +3 -4
- package/dist/react/index.js +324 -34
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +325 -35
- package/dist/react/index.mjs.map +1 -1
- package/dist/services/index.d.mts +1 -1
- package/dist/services/index.d.ts +1 -1
- package/dist/services/index.js +151 -19
- package/dist/services/index.js.map +1 -1
- package/dist/services/index.mjs +151 -19
- package/dist/services/index.mjs.map +1 -1
- package/dist/wallet/index.d.mts +3 -4
- package/dist/wallet/index.d.ts +3 -4
- package/dist/wallet/index.js +354 -53
- package/dist/wallet/index.js.map +1 -1
- package/dist/wallet/index.mjs +355 -54
- package/dist/wallet/index.mjs.map +1 -1
- package/package.json +16 -14
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as node_modules_viem__types_utils_ccip from 'node_modules/viem/_types/utils/ccip';
|
|
1
|
+
import * as abitype from 'abitype';
|
|
3
2
|
import * as viem from 'viem';
|
|
4
3
|
import { HDNodeWallet } from 'ethers';
|
|
5
4
|
import { S as SecureStorageAdapter } from './SecureStorage-jO783AhC.js';
|
|
@@ -38,6 +37,10 @@ interface ChainBalance {
|
|
|
38
37
|
address: string;
|
|
39
38
|
decimals: number;
|
|
40
39
|
icon?: string;
|
|
40
|
+
tokenBalances?: Record<string, {
|
|
41
|
+
balance: string;
|
|
42
|
+
balanceUsd: number;
|
|
43
|
+
}>;
|
|
41
44
|
}
|
|
42
45
|
/**
|
|
43
46
|
* Multi-chain addresses
|
|
@@ -185,7 +188,7 @@ declare class WalletManager {
|
|
|
185
188
|
} | undefined;
|
|
186
189
|
cacheTime: number;
|
|
187
190
|
ccipRead?: false | {
|
|
188
|
-
request?: (parameters: viem.CcipRequestParameters) => Promise
|
|
191
|
+
request?: (parameters: viem.CcipRequestParameters) => Promise<`0x${string}`>;
|
|
189
192
|
} | undefined;
|
|
190
193
|
chain: {
|
|
191
194
|
blockExplorers: {
|
|
@@ -223,7 +226,6 @@ declare class WalletManager {
|
|
|
223
226
|
sourceId?: number | undefined | undefined;
|
|
224
227
|
testnet?: boolean | undefined | undefined;
|
|
225
228
|
custom?: Record<string, unknown> | undefined;
|
|
226
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
227
229
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
228
230
|
formatters?: undefined;
|
|
229
231
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -234,7 +236,6 @@ declare class WalletManager {
|
|
|
234
236
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
235
237
|
}] | undefined;
|
|
236
238
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
237
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
238
239
|
} | {
|
|
239
240
|
blockExplorers: {
|
|
240
241
|
readonly default: {
|
|
@@ -271,7 +272,6 @@ declare class WalletManager {
|
|
|
271
272
|
sourceId?: number | undefined | undefined;
|
|
272
273
|
testnet: true;
|
|
273
274
|
custom?: Record<string, unknown> | undefined;
|
|
274
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
275
275
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
276
276
|
formatters?: undefined;
|
|
277
277
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -282,7 +282,6 @@ declare class WalletManager {
|
|
|
282
282
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
283
283
|
}] | undefined;
|
|
284
284
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
285
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
286
285
|
};
|
|
287
286
|
experimental_blockTag?: viem.BlockTag | undefined;
|
|
288
287
|
key: string;
|
|
@@ -331,7 +330,6 @@ declare class WalletManager {
|
|
|
331
330
|
sourceId?: number | undefined | undefined;
|
|
332
331
|
testnet?: boolean | undefined | undefined;
|
|
333
332
|
custom?: Record<string, unknown> | undefined;
|
|
334
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
335
333
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
336
334
|
formatters?: undefined;
|
|
337
335
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -342,7 +340,6 @@ declare class WalletManager {
|
|
|
342
340
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
343
341
|
}] | undefined;
|
|
344
342
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
345
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
346
343
|
} | {
|
|
347
344
|
blockExplorers: {
|
|
348
345
|
readonly default: {
|
|
@@ -379,7 +376,6 @@ declare class WalletManager {
|
|
|
379
376
|
sourceId?: number | undefined | undefined;
|
|
380
377
|
testnet: true;
|
|
381
378
|
custom?: Record<string, unknown> | undefined;
|
|
382
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
383
379
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
384
380
|
formatters?: undefined;
|
|
385
381
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -390,7 +386,6 @@ declare class WalletManager {
|
|
|
390
386
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
391
387
|
}] | undefined;
|
|
392
388
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
393
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
394
389
|
}>) => Promise<viem.CallReturnType>;
|
|
395
390
|
createAccessList: (parameters: viem.CreateAccessListParameters<{
|
|
396
391
|
blockExplorers: {
|
|
@@ -428,7 +423,6 @@ declare class WalletManager {
|
|
|
428
423
|
sourceId?: number | undefined | undefined;
|
|
429
424
|
testnet?: boolean | undefined | undefined;
|
|
430
425
|
custom?: Record<string, unknown> | undefined;
|
|
431
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
432
426
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
433
427
|
formatters?: undefined;
|
|
434
428
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -439,7 +433,6 @@ declare class WalletManager {
|
|
|
439
433
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
440
434
|
}] | undefined;
|
|
441
435
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
442
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
443
436
|
} | {
|
|
444
437
|
blockExplorers: {
|
|
445
438
|
readonly default: {
|
|
@@ -476,7 +469,6 @@ declare class WalletManager {
|
|
|
476
469
|
sourceId?: number | undefined | undefined;
|
|
477
470
|
testnet: true;
|
|
478
471
|
custom?: Record<string, unknown> | undefined;
|
|
479
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
480
472
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
481
473
|
formatters?: undefined;
|
|
482
474
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -487,16 +479,15 @@ declare class WalletManager {
|
|
|
487
479
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
488
480
|
}] | undefined;
|
|
489
481
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
490
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
491
482
|
}>) => Promise<{
|
|
492
483
|
accessList: viem.AccessList;
|
|
493
484
|
gasUsed: bigint;
|
|
494
485
|
}>;
|
|
495
486
|
createBlockFilter: () => Promise<viem.CreateBlockFilterReturnType>;
|
|
496
|
-
createContractEventFilter: <const abi extends
|
|
497
|
-
createEventFilter: <const abiEvent extends
|
|
487
|
+
createContractEventFilter: <const abi extends abitype.Abi | readonly unknown[], eventName extends viem.ContractEventName<abi> | undefined, args extends viem.MaybeExtractEventArgsFromAbi<abi, eventName> | undefined, strict extends boolean | undefined = undefined, fromBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined, toBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined>(args: viem.CreateContractEventFilterParameters<abi, eventName, args, strict, fromBlock, toBlock>) => Promise<viem.CreateContractEventFilterReturnType<abi, eventName, args, strict, fromBlock, toBlock>>;
|
|
488
|
+
createEventFilter: <const abiEvent extends abitype.AbiEvent | undefined = undefined, const abiEvents extends readonly abitype.AbiEvent[] | readonly unknown[] | undefined = abiEvent extends abitype.AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined, toBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined, _EventName extends string | undefined = viem.MaybeAbiEventName<abiEvent>, _Args extends viem.MaybeExtractEventArgsFromAbi<abiEvents, _EventName> | undefined = undefined>(args?: viem.CreateEventFilterParameters<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args> | undefined) => Promise<viem.CreateEventFilterReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args>>;
|
|
498
489
|
createPendingTransactionFilter: () => Promise<viem.CreatePendingTransactionFilterReturnType>;
|
|
499
|
-
estimateContractGas: <chain extends viem.Chain | undefined, const abi extends
|
|
490
|
+
estimateContractGas: <chain extends viem.Chain | undefined, const abi extends abitype.Abi | readonly unknown[], functionName extends viem.ContractFunctionName<abi, "nonpayable" | "payable">, args extends viem.ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>>(args: viem.EstimateContractGasParameters<abi, functionName, args, chain>) => Promise<viem.EstimateContractGasReturnType>;
|
|
500
491
|
estimateGas: (args: viem.EstimateGasParameters<{
|
|
501
492
|
blockExplorers: {
|
|
502
493
|
readonly default: {
|
|
@@ -533,7 +524,6 @@ declare class WalletManager {
|
|
|
533
524
|
sourceId?: number | undefined | undefined;
|
|
534
525
|
testnet?: boolean | undefined | undefined;
|
|
535
526
|
custom?: Record<string, unknown> | undefined;
|
|
536
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
537
527
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
538
528
|
formatters?: undefined;
|
|
539
529
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -544,7 +534,6 @@ declare class WalletManager {
|
|
|
544
534
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
545
535
|
}] | undefined;
|
|
546
536
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
547
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
548
537
|
} | {
|
|
549
538
|
blockExplorers: {
|
|
550
539
|
readonly default: {
|
|
@@ -581,7 +570,6 @@ declare class WalletManager {
|
|
|
581
570
|
sourceId?: number | undefined | undefined;
|
|
582
571
|
testnet: true;
|
|
583
572
|
custom?: Record<string, unknown> | undefined;
|
|
584
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
585
573
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
586
574
|
formatters?: undefined;
|
|
587
575
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -592,9 +580,8 @@ declare class WalletManager {
|
|
|
592
580
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
593
581
|
}] | undefined;
|
|
594
582
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
595
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
596
583
|
}>) => Promise<viem.EstimateGasReturnType>;
|
|
597
|
-
fillTransaction: <chainOverride extends viem.Chain | undefined = undefined, accountOverride extends viem.Account |
|
|
584
|
+
fillTransaction: <chainOverride extends viem.Chain | undefined = undefined, accountOverride extends viem.Account | abitype.Address | undefined = undefined>(args: viem.FillTransactionParameters<{
|
|
598
585
|
blockExplorers: {
|
|
599
586
|
readonly default: {
|
|
600
587
|
readonly name: "Etherscan";
|
|
@@ -630,7 +617,6 @@ declare class WalletManager {
|
|
|
630
617
|
sourceId?: number | undefined | undefined;
|
|
631
618
|
testnet?: boolean | undefined | undefined;
|
|
632
619
|
custom?: Record<string, unknown> | undefined;
|
|
633
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
634
620
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
635
621
|
formatters?: undefined;
|
|
636
622
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -641,7 +627,6 @@ declare class WalletManager {
|
|
|
641
627
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
642
628
|
}] | undefined;
|
|
643
629
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
644
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
645
630
|
} | {
|
|
646
631
|
blockExplorers: {
|
|
647
632
|
readonly default: {
|
|
@@ -678,7 +663,6 @@ declare class WalletManager {
|
|
|
678
663
|
sourceId?: number | undefined | undefined;
|
|
679
664
|
testnet: true;
|
|
680
665
|
custom?: Record<string, unknown> | undefined;
|
|
681
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
682
666
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
683
667
|
formatters?: undefined;
|
|
684
668
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -689,7 +673,6 @@ declare class WalletManager {
|
|
|
689
673
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
690
674
|
}] | undefined;
|
|
691
675
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
692
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
693
676
|
}, viem.Account | undefined, chainOverride, accountOverride>) => Promise<viem.FillTransactionReturnType<{
|
|
694
677
|
blockExplorers: {
|
|
695
678
|
readonly default: {
|
|
@@ -726,7 +709,6 @@ declare class WalletManager {
|
|
|
726
709
|
sourceId?: number | undefined | undefined;
|
|
727
710
|
testnet?: boolean | undefined | undefined;
|
|
728
711
|
custom?: Record<string, unknown> | undefined;
|
|
729
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
730
712
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
731
713
|
formatters?: undefined;
|
|
732
714
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -737,7 +719,6 @@ declare class WalletManager {
|
|
|
737
719
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
738
720
|
}] | undefined;
|
|
739
721
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
740
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
741
722
|
} | {
|
|
742
723
|
blockExplorers: {
|
|
743
724
|
readonly default: {
|
|
@@ -774,7 +755,6 @@ declare class WalletManager {
|
|
|
774
755
|
sourceId?: number | undefined | undefined;
|
|
775
756
|
testnet: true;
|
|
776
757
|
custom?: Record<string, unknown> | undefined;
|
|
777
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
778
758
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
779
759
|
formatters?: undefined;
|
|
780
760
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -785,7 +765,6 @@ declare class WalletManager {
|
|
|
785
765
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
786
766
|
}] | undefined;
|
|
787
767
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
788
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
789
768
|
}, chainOverride>>;
|
|
790
769
|
getBalance: (args: viem.GetBalanceParameters) => Promise<viem.GetBalanceReturnType>;
|
|
791
770
|
getBlobBaseFee: () => Promise<viem.GetBlobBaseFeeReturnType>;
|
|
@@ -802,7 +781,7 @@ declare class WalletManager {
|
|
|
802
781
|
excessBlobGas: bigint;
|
|
803
782
|
extraData: viem.Hex;
|
|
804
783
|
gasLimit: bigint;
|
|
805
|
-
miner:
|
|
784
|
+
miner: abitype.Address;
|
|
806
785
|
mixHash: viem.Hash;
|
|
807
786
|
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
808
787
|
parentHash: viem.Hash;
|
|
@@ -819,8 +798,8 @@ declare class WalletManager {
|
|
|
819
798
|
transactions: includeTransactions extends true ? ({
|
|
820
799
|
chainId?: number | undefined;
|
|
821
800
|
nonce: number;
|
|
822
|
-
from:
|
|
823
|
-
to:
|
|
801
|
+
from: abitype.Address;
|
|
802
|
+
to: abitype.Address | null;
|
|
824
803
|
hash: viem.Hash;
|
|
825
804
|
value: bigint;
|
|
826
805
|
yParity?: undefined | undefined;
|
|
@@ -844,8 +823,8 @@ declare class WalletManager {
|
|
|
844
823
|
} | {
|
|
845
824
|
chainId: number;
|
|
846
825
|
nonce: number;
|
|
847
|
-
from:
|
|
848
|
-
to:
|
|
826
|
+
from: abitype.Address;
|
|
827
|
+
to: abitype.Address | null;
|
|
849
828
|
hash: viem.Hash;
|
|
850
829
|
value: bigint;
|
|
851
830
|
yParity: number;
|
|
@@ -869,8 +848,8 @@ declare class WalletManager {
|
|
|
869
848
|
} | {
|
|
870
849
|
chainId: number;
|
|
871
850
|
nonce: number;
|
|
872
|
-
from:
|
|
873
|
-
to:
|
|
851
|
+
from: abitype.Address;
|
|
852
|
+
to: abitype.Address | null;
|
|
874
853
|
hash: viem.Hash;
|
|
875
854
|
value: bigint;
|
|
876
855
|
yParity: number;
|
|
@@ -894,8 +873,8 @@ declare class WalletManager {
|
|
|
894
873
|
} | {
|
|
895
874
|
chainId: number;
|
|
896
875
|
nonce: number;
|
|
897
|
-
from:
|
|
898
|
-
to:
|
|
876
|
+
from: abitype.Address;
|
|
877
|
+
to: abitype.Address | null;
|
|
899
878
|
hash: viem.Hash;
|
|
900
879
|
value: bigint;
|
|
901
880
|
yParity: number;
|
|
@@ -919,8 +898,8 @@ declare class WalletManager {
|
|
|
919
898
|
} | {
|
|
920
899
|
chainId: number;
|
|
921
900
|
nonce: number;
|
|
922
|
-
from:
|
|
923
|
-
to:
|
|
901
|
+
from: abitype.Address;
|
|
902
|
+
to: abitype.Address | null;
|
|
924
903
|
hash: viem.Hash;
|
|
925
904
|
value: bigint;
|
|
926
905
|
yParity: number;
|
|
@@ -948,7 +927,7 @@ declare class WalletManager {
|
|
|
948
927
|
getBytecode: (args: viem.GetBytecodeParameters) => Promise<viem.GetBytecodeReturnType>;
|
|
949
928
|
getChainId: () => Promise<viem.GetChainIdReturnType>;
|
|
950
929
|
getCode: (args: viem.GetBytecodeParameters) => Promise<viem.GetBytecodeReturnType>;
|
|
951
|
-
getContractEvents: <const abi extends
|
|
930
|
+
getContractEvents: <const abi extends abitype.Abi | readonly unknown[], eventName extends viem.ContractEventName<abi> | undefined = undefined, strict extends boolean | undefined = undefined, fromBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined, toBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined>(args: viem.GetContractEventsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<viem.GetContractEventsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
952
931
|
getEip712Domain: (args: viem.GetEip712DomainParameters) => Promise<viem.GetEip712DomainReturnType>;
|
|
953
932
|
getEnsAddress: (args: viem.GetEnsAddressParameters) => Promise<viem.GetEnsAddressReturnType>;
|
|
954
933
|
getEnsAvatar: (args: viem.GetEnsAvatarParameters) => Promise<viem.GetEnsAvatarReturnType>;
|
|
@@ -992,7 +971,6 @@ declare class WalletManager {
|
|
|
992
971
|
sourceId?: number | undefined | undefined;
|
|
993
972
|
testnet?: boolean | undefined | undefined;
|
|
994
973
|
custom?: Record<string, unknown> | undefined;
|
|
995
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
996
974
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
997
975
|
formatters?: undefined;
|
|
998
976
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1003,7 +981,6 @@ declare class WalletManager {
|
|
|
1003
981
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1004
982
|
}] | undefined;
|
|
1005
983
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1006
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1007
984
|
} | {
|
|
1008
985
|
blockExplorers: {
|
|
1009
986
|
readonly default: {
|
|
@@ -1040,7 +1017,6 @@ declare class WalletManager {
|
|
|
1040
1017
|
sourceId?: number | undefined | undefined;
|
|
1041
1018
|
testnet: true;
|
|
1042
1019
|
custom?: Record<string, unknown> | undefined;
|
|
1043
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1044
1020
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1045
1021
|
formatters?: undefined;
|
|
1046
1022
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1051,12 +1027,11 @@ declare class WalletManager {
|
|
|
1051
1027
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1052
1028
|
}] | undefined;
|
|
1053
1029
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1054
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1055
1030
|
}, chainOverride, type> | undefined) => Promise<viem.EstimateFeesPerGasReturnType<type>>;
|
|
1056
|
-
getFilterChanges: <filterType extends viem.FilterType, const abi extends
|
|
1057
|
-
getFilterLogs: <const abi extends
|
|
1031
|
+
getFilterChanges: <filterType extends viem.FilterType, const abi extends abitype.Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined, toBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined>(args: viem.GetFilterChangesParameters<filterType, abi, eventName, strict, fromBlock, toBlock>) => Promise<viem.GetFilterChangesReturnType<filterType, abi, eventName, strict, fromBlock, toBlock>>;
|
|
1032
|
+
getFilterLogs: <const abi extends abitype.Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined, toBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined>(args: viem.GetFilterLogsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<viem.GetFilterLogsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
1058
1033
|
getGasPrice: () => Promise<viem.GetGasPriceReturnType>;
|
|
1059
|
-
getLogs: <const abiEvent extends
|
|
1034
|
+
getLogs: <const abiEvent extends abitype.AbiEvent | undefined = undefined, const abiEvents extends readonly abitype.AbiEvent[] | readonly unknown[] | undefined = abiEvent extends abitype.AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined, toBlock extends viem.BlockNumber | viem.BlockTag | undefined = undefined>(args?: viem.GetLogsParameters<abiEvent, abiEvents, strict, fromBlock, toBlock> | undefined) => Promise<viem.GetLogsReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock>>;
|
|
1060
1035
|
getProof: (args: viem.GetProofParameters) => Promise<viem.GetProofReturnType>;
|
|
1061
1036
|
estimateMaxPriorityFeePerGas: <chainOverride extends viem.Chain | undefined = undefined>(args?: {
|
|
1062
1037
|
chain?: chainOverride | null | undefined;
|
|
@@ -1065,8 +1040,8 @@ declare class WalletManager {
|
|
|
1065
1040
|
getTransaction: <blockTag extends viem.BlockTag = "latest">(args: viem.GetTransactionParameters<blockTag>) => Promise<{
|
|
1066
1041
|
chainId?: number | undefined;
|
|
1067
1042
|
nonce: number;
|
|
1068
|
-
from:
|
|
1069
|
-
to:
|
|
1043
|
+
from: abitype.Address;
|
|
1044
|
+
to: abitype.Address | null;
|
|
1070
1045
|
hash: viem.Hash;
|
|
1071
1046
|
value: bigint;
|
|
1072
1047
|
yParity?: undefined | undefined;
|
|
@@ -1090,8 +1065,8 @@ declare class WalletManager {
|
|
|
1090
1065
|
} | {
|
|
1091
1066
|
chainId: number;
|
|
1092
1067
|
nonce: number;
|
|
1093
|
-
from:
|
|
1094
|
-
to:
|
|
1068
|
+
from: abitype.Address;
|
|
1069
|
+
to: abitype.Address | null;
|
|
1095
1070
|
hash: viem.Hash;
|
|
1096
1071
|
value: bigint;
|
|
1097
1072
|
yParity: number;
|
|
@@ -1115,8 +1090,8 @@ declare class WalletManager {
|
|
|
1115
1090
|
} | {
|
|
1116
1091
|
chainId: number;
|
|
1117
1092
|
nonce: number;
|
|
1118
|
-
from:
|
|
1119
|
-
to:
|
|
1093
|
+
from: abitype.Address;
|
|
1094
|
+
to: abitype.Address | null;
|
|
1120
1095
|
hash: viem.Hash;
|
|
1121
1096
|
value: bigint;
|
|
1122
1097
|
yParity: number;
|
|
@@ -1140,8 +1115,8 @@ declare class WalletManager {
|
|
|
1140
1115
|
} | {
|
|
1141
1116
|
chainId: number;
|
|
1142
1117
|
nonce: number;
|
|
1143
|
-
from:
|
|
1144
|
-
to:
|
|
1118
|
+
from: abitype.Address;
|
|
1119
|
+
to: abitype.Address | null;
|
|
1145
1120
|
hash: viem.Hash;
|
|
1146
1121
|
value: bigint;
|
|
1147
1122
|
yParity: number;
|
|
@@ -1165,8 +1140,8 @@ declare class WalletManager {
|
|
|
1165
1140
|
} | {
|
|
1166
1141
|
chainId: number;
|
|
1167
1142
|
nonce: number;
|
|
1168
|
-
from:
|
|
1169
|
-
to:
|
|
1143
|
+
from: abitype.Address;
|
|
1144
|
+
to: abitype.Address | null;
|
|
1170
1145
|
hash: viem.Hash;
|
|
1171
1146
|
value: bigint;
|
|
1172
1147
|
yParity: number;
|
|
@@ -1224,7 +1199,6 @@ declare class WalletManager {
|
|
|
1224
1199
|
sourceId?: number | undefined | undefined;
|
|
1225
1200
|
testnet?: boolean | undefined | undefined;
|
|
1226
1201
|
custom?: Record<string, unknown> | undefined;
|
|
1227
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1228
1202
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1229
1203
|
formatters?: undefined;
|
|
1230
1204
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1235,7 +1209,6 @@ declare class WalletManager {
|
|
|
1235
1209
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1236
1210
|
}] | undefined;
|
|
1237
1211
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1238
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1239
1212
|
} | {
|
|
1240
1213
|
blockExplorers: {
|
|
1241
1214
|
readonly default: {
|
|
@@ -1272,7 +1245,6 @@ declare class WalletManager {
|
|
|
1272
1245
|
sourceId?: number | undefined | undefined;
|
|
1273
1246
|
testnet: true;
|
|
1274
1247
|
custom?: Record<string, unknown> | undefined;
|
|
1275
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1276
1248
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1277
1249
|
formatters?: undefined;
|
|
1278
1250
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1283,7 +1255,6 @@ declare class WalletManager {
|
|
|
1283
1255
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1284
1256
|
}] | undefined;
|
|
1285
1257
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1286
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1287
1258
|
}>) => Promise<viem.GetTransactionConfirmationsReturnType>;
|
|
1288
1259
|
getTransactionCount: (args: viem.GetTransactionCountParameters) => Promise<viem.GetTransactionCountReturnType>;
|
|
1289
1260
|
getTransactionReceipt: (args: viem.GetTransactionReceiptParameters) => Promise<viem.TransactionReceipt>;
|
|
@@ -1324,7 +1295,6 @@ declare class WalletManager {
|
|
|
1324
1295
|
sourceId?: number | undefined | undefined;
|
|
1325
1296
|
testnet?: boolean | undefined | undefined;
|
|
1326
1297
|
custom?: Record<string, unknown> | undefined;
|
|
1327
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1328
1298
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1329
1299
|
formatters?: undefined;
|
|
1330
1300
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1335,7 +1305,6 @@ declare class WalletManager {
|
|
|
1335
1305
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1336
1306
|
}] | undefined;
|
|
1337
1307
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1338
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1339
1308
|
} | {
|
|
1340
1309
|
blockExplorers: {
|
|
1341
1310
|
readonly default: {
|
|
@@ -1372,7 +1341,6 @@ declare class WalletManager {
|
|
|
1372
1341
|
sourceId?: number | undefined | undefined;
|
|
1373
1342
|
testnet: true;
|
|
1374
1343
|
custom?: Record<string, unknown> | undefined;
|
|
1375
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1376
1344
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1377
1345
|
formatters?: undefined;
|
|
1378
1346
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1383,8 +1351,7 @@ declare class WalletManager {
|
|
|
1383
1351
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1384
1352
|
}] | undefined;
|
|
1385
1353
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1386
|
-
|
|
1387
|
-
}, chainOverride>, chainOverride extends viem.Chain | undefined = undefined, accountOverride extends viem.Account | viem.Address | undefined = undefined>(args: viem.PrepareTransactionRequestParameters<{
|
|
1354
|
+
}, chainOverride>, chainOverride extends viem.Chain | undefined = undefined, accountOverride extends viem.Account | abitype.Address | undefined = undefined>(args: viem.PrepareTransactionRequestParameters<{
|
|
1388
1355
|
blockExplorers: {
|
|
1389
1356
|
readonly default: {
|
|
1390
1357
|
readonly name: "Etherscan";
|
|
@@ -1420,7 +1387,6 @@ declare class WalletManager {
|
|
|
1420
1387
|
sourceId?: number | undefined | undefined;
|
|
1421
1388
|
testnet?: boolean | undefined | undefined;
|
|
1422
1389
|
custom?: Record<string, unknown> | undefined;
|
|
1423
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1424
1390
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1425
1391
|
formatters?: undefined;
|
|
1426
1392
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1431,7 +1397,6 @@ declare class WalletManager {
|
|
|
1431
1397
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1432
1398
|
}] | undefined;
|
|
1433
1399
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1434
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1435
1400
|
} | {
|
|
1436
1401
|
blockExplorers: {
|
|
1437
1402
|
readonly default: {
|
|
@@ -1468,7 +1433,6 @@ declare class WalletManager {
|
|
|
1468
1433
|
sourceId?: number | undefined | undefined;
|
|
1469
1434
|
testnet: true;
|
|
1470
1435
|
custom?: Record<string, unknown> | undefined;
|
|
1471
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1472
1436
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1473
1437
|
formatters?: undefined;
|
|
1474
1438
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1479,7 +1443,6 @@ declare class WalletManager {
|
|
|
1479
1443
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1480
1444
|
}] | undefined;
|
|
1481
1445
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1482
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1483
1446
|
}, viem.Account | undefined, chainOverride, accountOverride, request>) => Promise<viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<{
|
|
1484
1447
|
blockExplorers: {
|
|
1485
1448
|
readonly default: {
|
|
@@ -1516,7 +1479,6 @@ declare class WalletManager {
|
|
|
1516
1479
|
sourceId?: number | undefined | undefined;
|
|
1517
1480
|
testnet?: boolean | undefined | undefined;
|
|
1518
1481
|
custom?: Record<string, unknown> | undefined;
|
|
1519
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1520
1482
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1521
1483
|
formatters?: undefined;
|
|
1522
1484
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1527,7 +1489,6 @@ declare class WalletManager {
|
|
|
1527
1489
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1528
1490
|
}] | undefined;
|
|
1529
1491
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1530
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1531
1492
|
} | {
|
|
1532
1493
|
blockExplorers: {
|
|
1533
1494
|
readonly default: {
|
|
@@ -1564,7 +1525,6 @@ declare class WalletManager {
|
|
|
1564
1525
|
sourceId?: number | undefined | undefined;
|
|
1565
1526
|
testnet: true;
|
|
1566
1527
|
custom?: Record<string, unknown> | undefined;
|
|
1567
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1568
1528
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1569
1529
|
formatters?: undefined;
|
|
1570
1530
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1575,7 +1535,6 @@ declare class WalletManager {
|
|
|
1575
1535
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1576
1536
|
}] | undefined;
|
|
1577
1537
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1578
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1579
1538
|
}, chainOverride>, "transactionRequest", viem.TransactionRequest>, "from"> & (viem.DeriveChain<{
|
|
1580
1539
|
blockExplorers: {
|
|
1581
1540
|
readonly default: {
|
|
@@ -1612,7 +1571,6 @@ declare class WalletManager {
|
|
|
1612
1571
|
sourceId?: number | undefined | undefined;
|
|
1613
1572
|
testnet?: boolean | undefined | undefined;
|
|
1614
1573
|
custom?: Record<string, unknown> | undefined;
|
|
1615
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1616
1574
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1617
1575
|
formatters?: undefined;
|
|
1618
1576
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1623,7 +1581,6 @@ declare class WalletManager {
|
|
|
1623
1581
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1624
1582
|
}] | undefined;
|
|
1625
1583
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1626
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1627
1584
|
} | {
|
|
1628
1585
|
blockExplorers: {
|
|
1629
1586
|
readonly default: {
|
|
@@ -1660,7 +1617,6 @@ declare class WalletManager {
|
|
|
1660
1617
|
sourceId?: number | undefined | undefined;
|
|
1661
1618
|
testnet: true;
|
|
1662
1619
|
custom?: Record<string, unknown> | undefined;
|
|
1663
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1664
1620
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1665
1621
|
formatters?: undefined;
|
|
1666
1622
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1671,7 +1627,6 @@ declare class WalletManager {
|
|
|
1671
1627
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1672
1628
|
}] | undefined;
|
|
1673
1629
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1674
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1675
1630
|
}, chainOverride> extends infer T_1 ? T_1 extends viem.DeriveChain<{
|
|
1676
1631
|
blockExplorers: {
|
|
1677
1632
|
readonly default: {
|
|
@@ -1708,7 +1663,6 @@ declare class WalletManager {
|
|
|
1708
1663
|
sourceId?: number | undefined | undefined;
|
|
1709
1664
|
testnet?: boolean | undefined | undefined;
|
|
1710
1665
|
custom?: Record<string, unknown> | undefined;
|
|
1711
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1712
1666
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1713
1667
|
formatters?: undefined;
|
|
1714
1668
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1719,7 +1673,6 @@ declare class WalletManager {
|
|
|
1719
1673
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1720
1674
|
}] | undefined;
|
|
1721
1675
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1722
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1723
1676
|
} | {
|
|
1724
1677
|
blockExplorers: {
|
|
1725
1678
|
readonly default: {
|
|
@@ -1756,7 +1709,6 @@ declare class WalletManager {
|
|
|
1756
1709
|
sourceId?: number | undefined | undefined;
|
|
1757
1710
|
testnet: true;
|
|
1758
1711
|
custom?: Record<string, unknown> | undefined;
|
|
1759
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1760
1712
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1761
1713
|
formatters?: undefined;
|
|
1762
1714
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -1767,14 +1719,13 @@ declare class WalletManager {
|
|
|
1767
1719
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1768
1720
|
}] | undefined;
|
|
1769
1721
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1770
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
1771
1722
|
}, chainOverride> ? T_1 extends viem.Chain ? {
|
|
1772
1723
|
chain: T_1;
|
|
1773
1724
|
} : {
|
|
1774
1725
|
chain?: undefined;
|
|
1775
1726
|
} : never : never) & (viem.DeriveAccount<viem.Account | undefined, accountOverride> extends infer T_2 ? T_2 extends viem.DeriveAccount<viem.Account | undefined, accountOverride> ? T_2 extends viem.Account ? {
|
|
1776
1727
|
account: T_2;
|
|
1777
|
-
from:
|
|
1728
|
+
from: abitype.Address;
|
|
1778
1729
|
} : {
|
|
1779
1730
|
account?: undefined;
|
|
1780
1731
|
from?: undefined;
|
|
@@ -5021,13 +4972,13 @@ declare class WalletManager {
|
|
|
5021
4972
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
5022
4973
|
chainId?: number | undefined;
|
|
5023
4974
|
}, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "chainId" | "nonce" | "fees" | "gas" | "blobVersionedHashes" | "type") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "chainId" | "nonce" | "fees" | "gas" | "blobVersionedHashes" | "type") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: T[K]; } : never>;
|
|
5024
|
-
readContract: <const abi extends
|
|
4975
|
+
readContract: <const abi extends abitype.Abi | readonly unknown[], functionName extends viem.ContractFunctionName<abi, "pure" | "view">, const args extends viem.ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: viem.ReadContractParameters<abi, functionName, args>) => Promise<viem.ReadContractReturnType<abi, functionName, args>>;
|
|
5025
4976
|
sendRawTransaction: (args: viem.SendRawTransactionParameters) => Promise<viem.SendRawTransactionReturnType>;
|
|
5026
4977
|
sendRawTransactionSync: (args: viem.SendRawTransactionSyncParameters) => Promise<viem.TransactionReceipt>;
|
|
5027
4978
|
simulate: <const calls extends readonly unknown[]>(args: viem.SimulateBlocksParameters<calls>) => Promise<viem.SimulateBlocksReturnType<calls>>;
|
|
5028
4979
|
simulateBlocks: <const calls extends readonly unknown[]>(args: viem.SimulateBlocksParameters<calls>) => Promise<viem.SimulateBlocksReturnType<calls>>;
|
|
5029
4980
|
simulateCalls: <const calls extends readonly unknown[]>(args: viem.SimulateCallsParameters<calls>) => Promise<viem.SimulateCallsReturnType<calls>>;
|
|
5030
|
-
simulateContract: <const abi extends
|
|
4981
|
+
simulateContract: <const abi extends abitype.Abi | readonly unknown[], functionName extends viem.ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends viem.ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends viem.Chain | undefined, accountOverride extends viem.Account | abitype.Address | undefined = undefined>(args: viem.SimulateContractParameters<abi, functionName, args_1, {
|
|
5031
4982
|
blockExplorers: {
|
|
5032
4983
|
readonly default: {
|
|
5033
4984
|
readonly name: "Etherscan";
|
|
@@ -5063,7 +5014,6 @@ declare class WalletManager {
|
|
|
5063
5014
|
sourceId?: number | undefined | undefined;
|
|
5064
5015
|
testnet?: boolean | undefined | undefined;
|
|
5065
5016
|
custom?: Record<string, unknown> | undefined;
|
|
5066
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5067
5017
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5068
5018
|
formatters?: undefined;
|
|
5069
5019
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5074,7 +5024,6 @@ declare class WalletManager {
|
|
|
5074
5024
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5075
5025
|
}] | undefined;
|
|
5076
5026
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5077
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5078
5027
|
} | {
|
|
5079
5028
|
blockExplorers: {
|
|
5080
5029
|
readonly default: {
|
|
@@ -5111,7 +5060,6 @@ declare class WalletManager {
|
|
|
5111
5060
|
sourceId?: number | undefined | undefined;
|
|
5112
5061
|
testnet: true;
|
|
5113
5062
|
custom?: Record<string, unknown> | undefined;
|
|
5114
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5115
5063
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5116
5064
|
formatters?: undefined;
|
|
5117
5065
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5122,7 +5070,6 @@ declare class WalletManager {
|
|
|
5122
5070
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5123
5071
|
}] | undefined;
|
|
5124
5072
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5125
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5126
5073
|
}, chainOverride, accountOverride>) => Promise<viem.SimulateContractReturnType<abi, functionName, args_1, {
|
|
5127
5074
|
blockExplorers: {
|
|
5128
5075
|
readonly default: {
|
|
@@ -5159,7 +5106,6 @@ declare class WalletManager {
|
|
|
5159
5106
|
sourceId?: number | undefined | undefined;
|
|
5160
5107
|
testnet?: boolean | undefined | undefined;
|
|
5161
5108
|
custom?: Record<string, unknown> | undefined;
|
|
5162
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5163
5109
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5164
5110
|
formatters?: undefined;
|
|
5165
5111
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5170,7 +5116,6 @@ declare class WalletManager {
|
|
|
5170
5116
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5171
5117
|
}] | undefined;
|
|
5172
5118
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5173
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5174
5119
|
} | {
|
|
5175
5120
|
blockExplorers: {
|
|
5176
5121
|
readonly default: {
|
|
@@ -5207,7 +5152,6 @@ declare class WalletManager {
|
|
|
5207
5152
|
sourceId?: number | undefined | undefined;
|
|
5208
5153
|
testnet: true;
|
|
5209
5154
|
custom?: Record<string, unknown> | undefined;
|
|
5210
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5211
5155
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5212
5156
|
formatters?: undefined;
|
|
5213
5157
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5218,11 +5162,20 @@ declare class WalletManager {
|
|
|
5218
5162
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5219
5163
|
}] | undefined;
|
|
5220
5164
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5221
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5222
5165
|
}, viem.Account | undefined, chainOverride, accountOverride>>;
|
|
5223
5166
|
verifyHash: (args: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>;
|
|
5224
5167
|
verifyMessage: (args: viem.VerifyMessageActionParameters) => Promise<viem.VerifyMessageActionReturnType>;
|
|
5225
|
-
verifySiweMessage: (args:
|
|
5168
|
+
verifySiweMessage: (args: {
|
|
5169
|
+
blockNumber?: bigint | undefined | undefined;
|
|
5170
|
+
blockTag?: viem.BlockTag | undefined;
|
|
5171
|
+
address?: `0x${string}` | undefined;
|
|
5172
|
+
nonce?: string | undefined | undefined;
|
|
5173
|
+
domain?: string | undefined | undefined;
|
|
5174
|
+
scheme?: string | undefined | undefined;
|
|
5175
|
+
time?: Date | undefined;
|
|
5176
|
+
message: string;
|
|
5177
|
+
signature: viem.Hex;
|
|
5178
|
+
}) => Promise<boolean>;
|
|
5226
5179
|
verifyTypedData: (args: viem.VerifyTypedDataActionParameters) => Promise<viem.VerifyTypedDataActionReturnType>;
|
|
5227
5180
|
uninstallFilter: (args: viem.UninstallFilterParameters) => Promise<viem.UninstallFilterReturnType>;
|
|
5228
5181
|
waitForTransactionReceipt: (args: viem.WaitForTransactionReceiptParameters<{
|
|
@@ -5261,7 +5214,6 @@ declare class WalletManager {
|
|
|
5261
5214
|
sourceId?: number | undefined | undefined;
|
|
5262
5215
|
testnet?: boolean | undefined | undefined;
|
|
5263
5216
|
custom?: Record<string, unknown> | undefined;
|
|
5264
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5265
5217
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5266
5218
|
formatters?: undefined;
|
|
5267
5219
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5272,7 +5224,6 @@ declare class WalletManager {
|
|
|
5272
5224
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5273
5225
|
}] | undefined;
|
|
5274
5226
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5275
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5276
5227
|
} | {
|
|
5277
5228
|
blockExplorers: {
|
|
5278
5229
|
readonly default: {
|
|
@@ -5309,7 +5260,6 @@ declare class WalletManager {
|
|
|
5309
5260
|
sourceId?: number | undefined | undefined;
|
|
5310
5261
|
testnet: true;
|
|
5311
5262
|
custom?: Record<string, unknown> | undefined;
|
|
5312
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5313
5263
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5314
5264
|
formatters?: undefined;
|
|
5315
5265
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5320,7 +5270,6 @@ declare class WalletManager {
|
|
|
5320
5270
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5321
5271
|
}] | undefined;
|
|
5322
5272
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5323
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5324
5273
|
}>) => Promise<viem.TransactionReceipt>;
|
|
5325
5274
|
watchBlockNumber: (args: viem.WatchBlockNumberParameters) => viem.WatchBlockNumberReturnType;
|
|
5326
5275
|
watchBlocks: <includeTransactions extends boolean = false, blockTag extends viem.BlockTag = "latest">(args: viem.WatchBlocksParameters<viem.HttpTransport<undefined, false>, {
|
|
@@ -5359,7 +5308,6 @@ declare class WalletManager {
|
|
|
5359
5308
|
sourceId?: number | undefined | undefined;
|
|
5360
5309
|
testnet?: boolean | undefined | undefined;
|
|
5361
5310
|
custom?: Record<string, unknown> | undefined;
|
|
5362
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5363
5311
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5364
5312
|
formatters?: undefined;
|
|
5365
5313
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5370,7 +5318,6 @@ declare class WalletManager {
|
|
|
5370
5318
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5371
5319
|
}] | undefined;
|
|
5372
5320
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5373
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5374
5321
|
} | {
|
|
5375
5322
|
blockExplorers: {
|
|
5376
5323
|
readonly default: {
|
|
@@ -5407,7 +5354,6 @@ declare class WalletManager {
|
|
|
5407
5354
|
sourceId?: number | undefined | undefined;
|
|
5408
5355
|
testnet: true;
|
|
5409
5356
|
custom?: Record<string, unknown> | undefined;
|
|
5410
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5411
5357
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5412
5358
|
formatters?: undefined;
|
|
5413
5359
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5418,10 +5364,9 @@ declare class WalletManager {
|
|
|
5418
5364
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5419
5365
|
}] | undefined;
|
|
5420
5366
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5421
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5422
5367
|
}, includeTransactions, blockTag>) => viem.WatchBlocksReturnType;
|
|
5423
|
-
watchContractEvent: <const abi extends
|
|
5424
|
-
watchEvent: <const abiEvent extends
|
|
5368
|
+
watchContractEvent: <const abi extends abitype.Abi | readonly unknown[], eventName extends viem.ContractEventName<abi>, strict extends boolean | undefined = undefined>(args: viem.WatchContractEventParameters<abi, eventName, strict, viem.HttpTransport<undefined, false>>) => viem.WatchContractEventReturnType;
|
|
5369
|
+
watchEvent: <const abiEvent extends abitype.AbiEvent | undefined = undefined, const abiEvents extends readonly abitype.AbiEvent[] | readonly unknown[] | undefined = abiEvent extends abitype.AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined>(args: viem.WatchEventParameters<abiEvent, abiEvents, strict, viem.HttpTransport<undefined, false>>) => viem.WatchEventReturnType;
|
|
5425
5370
|
watchPendingTransactions: (args: viem.WatchPendingTransactionsParameters<viem.HttpTransport<undefined, false>>) => viem.WatchPendingTransactionsReturnType;
|
|
5426
5371
|
extend: <const client extends {
|
|
5427
5372
|
[x: string]: unknown;
|
|
@@ -5474,7 +5419,6 @@ declare class WalletManager {
|
|
|
5474
5419
|
sourceId?: number | undefined | undefined;
|
|
5475
5420
|
testnet?: boolean | undefined | undefined;
|
|
5476
5421
|
custom?: Record<string, unknown> | undefined;
|
|
5477
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5478
5422
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5479
5423
|
formatters?: undefined;
|
|
5480
5424
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5485,7 +5429,6 @@ declare class WalletManager {
|
|
|
5485
5429
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5486
5430
|
}] | undefined;
|
|
5487
5431
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5488
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5489
5432
|
} | {
|
|
5490
5433
|
blockExplorers: {
|
|
5491
5434
|
readonly default: {
|
|
@@ -5522,7 +5465,6 @@ declare class WalletManager {
|
|
|
5522
5465
|
sourceId?: number | undefined | undefined;
|
|
5523
5466
|
testnet: true;
|
|
5524
5467
|
custom?: Record<string, unknown> | undefined;
|
|
5525
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5526
5468
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5527
5469
|
formatters?: undefined;
|
|
5528
5470
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5533,7 +5475,6 @@ declare class WalletManager {
|
|
|
5533
5475
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5534
5476
|
}] | undefined;
|
|
5535
5477
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5536
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5537
5478
|
}, undefined>, "prepareTransactionRequest" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<viem.WalletActions<{
|
|
5538
5479
|
blockExplorers: {
|
|
5539
5480
|
readonly default: {
|
|
@@ -5570,7 +5511,6 @@ declare class WalletManager {
|
|
|
5570
5511
|
sourceId?: number | undefined | undefined;
|
|
5571
5512
|
testnet?: boolean | undefined | undefined;
|
|
5572
5513
|
custom?: Record<string, unknown> | undefined;
|
|
5573
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5574
5514
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5575
5515
|
formatters?: undefined;
|
|
5576
5516
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5581,7 +5521,6 @@ declare class WalletManager {
|
|
|
5581
5521
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5582
5522
|
}] | undefined;
|
|
5583
5523
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5584
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5585
5524
|
} | {
|
|
5586
5525
|
blockExplorers: {
|
|
5587
5526
|
readonly default: {
|
|
@@ -5618,7 +5557,6 @@ declare class WalletManager {
|
|
|
5618
5557
|
sourceId?: number | undefined | undefined;
|
|
5619
5558
|
testnet: true;
|
|
5620
5559
|
custom?: Record<string, unknown> | undefined;
|
|
5621
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5622
5560
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5623
5561
|
formatters?: undefined;
|
|
5624
5562
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5629,7 +5567,6 @@ declare class WalletManager {
|
|
|
5629
5567
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5630
5568
|
}] | undefined;
|
|
5631
5569
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5632
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5633
5570
|
}, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: viem.Client<viem.HttpTransport<undefined, false>, {
|
|
5634
5571
|
blockExplorers: {
|
|
5635
5572
|
readonly default: {
|
|
@@ -5666,7 +5603,6 @@ declare class WalletManager {
|
|
|
5666
5603
|
sourceId?: number | undefined | undefined;
|
|
5667
5604
|
testnet?: boolean | undefined | undefined;
|
|
5668
5605
|
custom?: Record<string, unknown> | undefined;
|
|
5669
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5670
5606
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5671
5607
|
formatters?: undefined;
|
|
5672
5608
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5677,7 +5613,6 @@ declare class WalletManager {
|
|
|
5677
5613
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5678
5614
|
}] | undefined;
|
|
5679
5615
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5680
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5681
5616
|
} | {
|
|
5682
5617
|
blockExplorers: {
|
|
5683
5618
|
readonly default: {
|
|
@@ -5714,7 +5649,6 @@ declare class WalletManager {
|
|
|
5714
5649
|
sourceId?: number | undefined | undefined;
|
|
5715
5650
|
testnet: true;
|
|
5716
5651
|
custom?: Record<string, unknown> | undefined;
|
|
5717
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5718
5652
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5719
5653
|
formatters?: undefined;
|
|
5720
5654
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5725,7 +5659,6 @@ declare class WalletManager {
|
|
|
5725
5659
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5726
5660
|
}] | undefined;
|
|
5727
5661
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5728
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5729
5662
|
}, undefined, viem.PublicRpcSchema, viem.PublicActions<viem.HttpTransport<undefined, false>, {
|
|
5730
5663
|
blockExplorers: {
|
|
5731
5664
|
readonly default: {
|
|
@@ -5762,7 +5695,6 @@ declare class WalletManager {
|
|
|
5762
5695
|
sourceId?: number | undefined | undefined;
|
|
5763
5696
|
testnet?: boolean | undefined | undefined;
|
|
5764
5697
|
custom?: Record<string, unknown> | undefined;
|
|
5765
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5766
5698
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5767
5699
|
formatters?: undefined;
|
|
5768
5700
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5773,7 +5705,6 @@ declare class WalletManager {
|
|
|
5773
5705
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5774
5706
|
}] | undefined;
|
|
5775
5707
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5776
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5777
5708
|
} | {
|
|
5778
5709
|
blockExplorers: {
|
|
5779
5710
|
readonly default: {
|
|
@@ -5810,7 +5741,6 @@ declare class WalletManager {
|
|
|
5810
5741
|
sourceId?: number | undefined | undefined;
|
|
5811
5742
|
testnet: true;
|
|
5812
5743
|
custom?: Record<string, unknown> | undefined;
|
|
5813
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5814
5744
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5815
5745
|
formatters?: undefined;
|
|
5816
5746
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5821,7 +5751,6 @@ declare class WalletManager {
|
|
|
5821
5751
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5822
5752
|
}] | undefined;
|
|
5823
5753
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5824
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5825
5754
|
}>>) => client) => viem.Client<viem.HttpTransport<undefined, false>, {
|
|
5826
5755
|
blockExplorers: {
|
|
5827
5756
|
readonly default: {
|
|
@@ -5858,7 +5787,6 @@ declare class WalletManager {
|
|
|
5858
5787
|
sourceId?: number | undefined | undefined;
|
|
5859
5788
|
testnet?: boolean | undefined | undefined;
|
|
5860
5789
|
custom?: Record<string, unknown> | undefined;
|
|
5861
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5862
5790
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5863
5791
|
formatters?: undefined;
|
|
5864
5792
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5869,7 +5797,6 @@ declare class WalletManager {
|
|
|
5869
5797
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5870
5798
|
}] | undefined;
|
|
5871
5799
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5872
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5873
5800
|
} | {
|
|
5874
5801
|
blockExplorers: {
|
|
5875
5802
|
readonly default: {
|
|
@@ -5906,7 +5833,6 @@ declare class WalletManager {
|
|
|
5906
5833
|
sourceId?: number | undefined | undefined;
|
|
5907
5834
|
testnet: true;
|
|
5908
5835
|
custom?: Record<string, unknown> | undefined;
|
|
5909
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5910
5836
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5911
5837
|
formatters?: undefined;
|
|
5912
5838
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5917,7 +5843,6 @@ declare class WalletManager {
|
|
|
5917
5843
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5918
5844
|
}] | undefined;
|
|
5919
5845
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5920
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5921
5846
|
}, undefined, viem.PublicRpcSchema, { [K in keyof client]: client[K]; } & viem.PublicActions<viem.HttpTransport<undefined, false>, {
|
|
5922
5847
|
blockExplorers: {
|
|
5923
5848
|
readonly default: {
|
|
@@ -5954,7 +5879,6 @@ declare class WalletManager {
|
|
|
5954
5879
|
sourceId?: number | undefined | undefined;
|
|
5955
5880
|
testnet?: boolean | undefined | undefined;
|
|
5956
5881
|
custom?: Record<string, unknown> | undefined;
|
|
5957
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
5958
5882
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
5959
5883
|
formatters?: undefined;
|
|
5960
5884
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -5965,7 +5889,6 @@ declare class WalletManager {
|
|
|
5965
5889
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5966
5890
|
}] | undefined;
|
|
5967
5891
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
5968
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
5969
5892
|
} | {
|
|
5970
5893
|
blockExplorers: {
|
|
5971
5894
|
readonly default: {
|
|
@@ -6002,7 +5925,6 @@ declare class WalletManager {
|
|
|
6002
5925
|
sourceId?: number | undefined | undefined;
|
|
6003
5926
|
testnet: true;
|
|
6004
5927
|
custom?: Record<string, unknown> | undefined;
|
|
6005
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
6006
5928
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
6007
5929
|
formatters?: undefined;
|
|
6008
5930
|
prepareTransactionRequest?: ((args: viem.PrepareTransactionRequestParameters, options: {
|
|
@@ -6013,7 +5935,6 @@ declare class WalletManager {
|
|
|
6013
5935
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
6014
5936
|
}] | undefined;
|
|
6015
5937
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
6016
|
-
verifyHash?: ((client: viem.Client, parameters: viem.VerifyHashActionParameters) => Promise<viem.VerifyHashActionReturnType>) | undefined;
|
|
6017
5938
|
}>>;
|
|
6018
5939
|
};
|
|
6019
5940
|
/**
|