@getpara/react-sdk 2.1.0 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -47,6 +47,13 @@ export declare const getViemClient: ({ para, address, walletClientConfig, }: {
|
|
|
47
47
|
Method: "eth_estimateGas";
|
|
48
48
|
Parameters: [transaction: import("viem").RpcTransactionRequest] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag, stateOverride: import("viem").RpcStateOverride];
|
|
49
49
|
ReturnType: import("viem").Quantity;
|
|
50
|
+
}, {
|
|
51
|
+
Method: "eth_fillTransaction";
|
|
52
|
+
Parameters: [transaction: import("viem").RpcTransactionRequest];
|
|
53
|
+
ReturnType: {
|
|
54
|
+
raw: import("viem").Hex;
|
|
55
|
+
tx: import("viem").RpcTransaction;
|
|
56
|
+
};
|
|
50
57
|
}, {
|
|
51
58
|
Method: "eth_requestAccounts";
|
|
52
59
|
Parameters?: undefined;
|
|
@@ -621,6 +628,434 @@ export declare const getViemClient: ({ para, address, walletClientConfig, }: {
|
|
|
621
628
|
source: string;
|
|
622
629
|
type: "local";
|
|
623
630
|
}, chainOverride>) => Promise<import("viem").DeployContractReturnType>;
|
|
631
|
+
fillTransaction: <chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: import("viem").FillTransactionParameters<import("viem").Chain, {
|
|
632
|
+
address: import("viem").Address;
|
|
633
|
+
nonceManager?: import("viem").NonceManager | undefined;
|
|
634
|
+
sign?: ((parameters: {
|
|
635
|
+
hash: import("viem").Hash;
|
|
636
|
+
}) => Promise<import("viem").Hex>) | undefined | undefined;
|
|
637
|
+
signAuthorization?: ((parameters: import("viem").AuthorizationRequest) => Promise<import("viem/accounts").SignAuthorizationReturnType>) | undefined | undefined;
|
|
638
|
+
signMessage: ({ message }: {
|
|
639
|
+
message: import("viem").SignableMessage;
|
|
640
|
+
}) => Promise<import("viem").Hex>;
|
|
641
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, options?: {
|
|
642
|
+
serializer?: serializer | undefined;
|
|
643
|
+
} | undefined) => Promise<import("viem").Hex>;
|
|
644
|
+
signTypedData: <const typedData extends {
|
|
645
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
646
|
+
[x: `string[${string}]`]: undefined;
|
|
647
|
+
[x: `function[${string}]`]: undefined;
|
|
648
|
+
[x: `address[${string}]`]: undefined;
|
|
649
|
+
[x: `bool[${string}]`]: undefined;
|
|
650
|
+
[x: `bytes[${string}]`]: undefined;
|
|
651
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
652
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
653
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
654
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
655
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
656
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
657
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
658
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
659
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
660
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
661
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
662
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
663
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
664
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
665
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
666
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
667
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
668
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
669
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
670
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
671
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
672
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
673
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
674
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
675
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
676
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
677
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
678
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
679
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
680
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
681
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
682
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
683
|
+
[x: `int[${string}]`]: undefined;
|
|
684
|
+
[x: `int256[${string}]`]: undefined;
|
|
685
|
+
[x: `int8[${string}]`]: undefined;
|
|
686
|
+
[x: `int16[${string}]`]: undefined;
|
|
687
|
+
[x: `int24[${string}]`]: undefined;
|
|
688
|
+
[x: `int32[${string}]`]: undefined;
|
|
689
|
+
[x: `int40[${string}]`]: undefined;
|
|
690
|
+
[x: `int48[${string}]`]: undefined;
|
|
691
|
+
[x: `int56[${string}]`]: undefined;
|
|
692
|
+
[x: `int64[${string}]`]: undefined;
|
|
693
|
+
[x: `int72[${string}]`]: undefined;
|
|
694
|
+
[x: `int80[${string}]`]: undefined;
|
|
695
|
+
[x: `int88[${string}]`]: undefined;
|
|
696
|
+
[x: `int96[${string}]`]: undefined;
|
|
697
|
+
[x: `int104[${string}]`]: undefined;
|
|
698
|
+
[x: `int112[${string}]`]: undefined;
|
|
699
|
+
[x: `int120[${string}]`]: undefined;
|
|
700
|
+
[x: `int128[${string}]`]: undefined;
|
|
701
|
+
[x: `int136[${string}]`]: undefined;
|
|
702
|
+
[x: `int144[${string}]`]: undefined;
|
|
703
|
+
[x: `int152[${string}]`]: undefined;
|
|
704
|
+
[x: `int160[${string}]`]: undefined;
|
|
705
|
+
[x: `int168[${string}]`]: undefined;
|
|
706
|
+
[x: `int176[${string}]`]: undefined;
|
|
707
|
+
[x: `int184[${string}]`]: undefined;
|
|
708
|
+
[x: `int192[${string}]`]: undefined;
|
|
709
|
+
[x: `int200[${string}]`]: undefined;
|
|
710
|
+
[x: `int208[${string}]`]: undefined;
|
|
711
|
+
[x: `int216[${string}]`]: undefined;
|
|
712
|
+
[x: `int224[${string}]`]: undefined;
|
|
713
|
+
[x: `int232[${string}]`]: undefined;
|
|
714
|
+
[x: `int240[${string}]`]: undefined;
|
|
715
|
+
[x: `int248[${string}]`]: undefined;
|
|
716
|
+
[x: `uint[${string}]`]: undefined;
|
|
717
|
+
[x: `uint256[${string}]`]: undefined;
|
|
718
|
+
[x: `uint8[${string}]`]: undefined;
|
|
719
|
+
[x: `uint16[${string}]`]: undefined;
|
|
720
|
+
[x: `uint24[${string}]`]: undefined;
|
|
721
|
+
[x: `uint32[${string}]`]: undefined;
|
|
722
|
+
[x: `uint40[${string}]`]: undefined;
|
|
723
|
+
[x: `uint48[${string}]`]: undefined;
|
|
724
|
+
[x: `uint56[${string}]`]: undefined;
|
|
725
|
+
[x: `uint64[${string}]`]: undefined;
|
|
726
|
+
[x: `uint72[${string}]`]: undefined;
|
|
727
|
+
[x: `uint80[${string}]`]: undefined;
|
|
728
|
+
[x: `uint88[${string}]`]: undefined;
|
|
729
|
+
[x: `uint96[${string}]`]: undefined;
|
|
730
|
+
[x: `uint104[${string}]`]: undefined;
|
|
731
|
+
[x: `uint112[${string}]`]: undefined;
|
|
732
|
+
[x: `uint120[${string}]`]: undefined;
|
|
733
|
+
[x: `uint128[${string}]`]: undefined;
|
|
734
|
+
[x: `uint136[${string}]`]: undefined;
|
|
735
|
+
[x: `uint144[${string}]`]: undefined;
|
|
736
|
+
[x: `uint152[${string}]`]: undefined;
|
|
737
|
+
[x: `uint160[${string}]`]: undefined;
|
|
738
|
+
[x: `uint168[${string}]`]: undefined;
|
|
739
|
+
[x: `uint176[${string}]`]: undefined;
|
|
740
|
+
[x: `uint184[${string}]`]: undefined;
|
|
741
|
+
[x: `uint192[${string}]`]: undefined;
|
|
742
|
+
[x: `uint200[${string}]`]: undefined;
|
|
743
|
+
[x: `uint208[${string}]`]: undefined;
|
|
744
|
+
[x: `uint216[${string}]`]: undefined;
|
|
745
|
+
[x: `uint224[${string}]`]: undefined;
|
|
746
|
+
[x: `uint232[${string}]`]: undefined;
|
|
747
|
+
[x: `uint240[${string}]`]: undefined;
|
|
748
|
+
[x: `uint248[${string}]`]: undefined;
|
|
749
|
+
string?: undefined;
|
|
750
|
+
address?: undefined;
|
|
751
|
+
bool?: undefined;
|
|
752
|
+
bytes?: undefined;
|
|
753
|
+
bytes1?: undefined;
|
|
754
|
+
bytes12?: undefined;
|
|
755
|
+
bytes3?: undefined;
|
|
756
|
+
bytes2?: undefined;
|
|
757
|
+
bytes8?: undefined;
|
|
758
|
+
bytes4?: undefined;
|
|
759
|
+
bytes5?: undefined;
|
|
760
|
+
bytes6?: undefined;
|
|
761
|
+
bytes7?: undefined;
|
|
762
|
+
bytes9?: undefined;
|
|
763
|
+
bytes10?: undefined;
|
|
764
|
+
bytes11?: undefined;
|
|
765
|
+
bytes13?: undefined;
|
|
766
|
+
bytes14?: undefined;
|
|
767
|
+
bytes15?: undefined;
|
|
768
|
+
bytes16?: undefined;
|
|
769
|
+
bytes17?: undefined;
|
|
770
|
+
bytes18?: undefined;
|
|
771
|
+
bytes19?: undefined;
|
|
772
|
+
bytes20?: undefined;
|
|
773
|
+
bytes21?: undefined;
|
|
774
|
+
bytes22?: undefined;
|
|
775
|
+
bytes23?: undefined;
|
|
776
|
+
bytes24?: undefined;
|
|
777
|
+
bytes25?: undefined;
|
|
778
|
+
bytes26?: undefined;
|
|
779
|
+
bytes27?: undefined;
|
|
780
|
+
bytes28?: undefined;
|
|
781
|
+
bytes29?: undefined;
|
|
782
|
+
bytes30?: undefined;
|
|
783
|
+
bytes31?: undefined;
|
|
784
|
+
bytes32?: undefined;
|
|
785
|
+
int256?: undefined;
|
|
786
|
+
int8?: undefined;
|
|
787
|
+
int16?: undefined;
|
|
788
|
+
int24?: undefined;
|
|
789
|
+
int32?: undefined;
|
|
790
|
+
int40?: undefined;
|
|
791
|
+
int48?: undefined;
|
|
792
|
+
int56?: undefined;
|
|
793
|
+
int64?: undefined;
|
|
794
|
+
int72?: undefined;
|
|
795
|
+
int80?: undefined;
|
|
796
|
+
int88?: undefined;
|
|
797
|
+
int96?: undefined;
|
|
798
|
+
int104?: undefined;
|
|
799
|
+
int112?: undefined;
|
|
800
|
+
int120?: undefined;
|
|
801
|
+
int128?: undefined;
|
|
802
|
+
int136?: undefined;
|
|
803
|
+
int144?: undefined;
|
|
804
|
+
int152?: undefined;
|
|
805
|
+
int160?: undefined;
|
|
806
|
+
int168?: undefined;
|
|
807
|
+
int176?: undefined;
|
|
808
|
+
int184?: undefined;
|
|
809
|
+
int192?: undefined;
|
|
810
|
+
int200?: undefined;
|
|
811
|
+
int208?: undefined;
|
|
812
|
+
int216?: undefined;
|
|
813
|
+
int224?: undefined;
|
|
814
|
+
int232?: undefined;
|
|
815
|
+
int240?: undefined;
|
|
816
|
+
int248?: undefined;
|
|
817
|
+
uint256?: undefined;
|
|
818
|
+
uint8?: undefined;
|
|
819
|
+
uint16?: undefined;
|
|
820
|
+
uint24?: undefined;
|
|
821
|
+
uint32?: undefined;
|
|
822
|
+
uint40?: undefined;
|
|
823
|
+
uint48?: undefined;
|
|
824
|
+
uint56?: undefined;
|
|
825
|
+
uint64?: undefined;
|
|
826
|
+
uint72?: undefined;
|
|
827
|
+
uint80?: undefined;
|
|
828
|
+
uint88?: undefined;
|
|
829
|
+
uint96?: undefined;
|
|
830
|
+
uint104?: undefined;
|
|
831
|
+
uint112?: undefined;
|
|
832
|
+
uint120?: undefined;
|
|
833
|
+
uint128?: undefined;
|
|
834
|
+
uint136?: undefined;
|
|
835
|
+
uint144?: undefined;
|
|
836
|
+
uint152?: undefined;
|
|
837
|
+
uint160?: undefined;
|
|
838
|
+
uint168?: undefined;
|
|
839
|
+
uint176?: undefined;
|
|
840
|
+
uint184?: undefined;
|
|
841
|
+
uint192?: undefined;
|
|
842
|
+
uint200?: undefined;
|
|
843
|
+
uint208?: undefined;
|
|
844
|
+
uint216?: undefined;
|
|
845
|
+
uint224?: undefined;
|
|
846
|
+
uint232?: undefined;
|
|
847
|
+
uint240?: undefined;
|
|
848
|
+
uint248?: undefined;
|
|
849
|
+
} | Record<string, unknown>, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType, typedData extends {
|
|
850
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
851
|
+
[x: `string[${string}]`]: undefined;
|
|
852
|
+
[x: `function[${string}]`]: undefined;
|
|
853
|
+
[x: `address[${string}]`]: undefined;
|
|
854
|
+
[x: `bool[${string}]`]: undefined;
|
|
855
|
+
[x: `bytes[${string}]`]: undefined;
|
|
856
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
857
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
858
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
859
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
860
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
861
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
862
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
863
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
864
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
865
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
866
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
867
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
868
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
869
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
870
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
871
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
872
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
873
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
874
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
875
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
876
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
877
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
878
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
879
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
880
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
881
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
882
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
883
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
884
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
885
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
886
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
887
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
888
|
+
[x: `int[${string}]`]: undefined;
|
|
889
|
+
[x: `int256[${string}]`]: undefined;
|
|
890
|
+
[x: `int8[${string}]`]: undefined;
|
|
891
|
+
[x: `int16[${string}]`]: undefined;
|
|
892
|
+
[x: `int24[${string}]`]: undefined;
|
|
893
|
+
[x: `int32[${string}]`]: undefined;
|
|
894
|
+
[x: `int40[${string}]`]: undefined;
|
|
895
|
+
[x: `int48[${string}]`]: undefined;
|
|
896
|
+
[x: `int56[${string}]`]: undefined;
|
|
897
|
+
[x: `int64[${string}]`]: undefined;
|
|
898
|
+
[x: `int72[${string}]`]: undefined;
|
|
899
|
+
[x: `int80[${string}]`]: undefined;
|
|
900
|
+
[x: `int88[${string}]`]: undefined;
|
|
901
|
+
[x: `int96[${string}]`]: undefined;
|
|
902
|
+
[x: `int104[${string}]`]: undefined;
|
|
903
|
+
[x: `int112[${string}]`]: undefined;
|
|
904
|
+
[x: `int120[${string}]`]: undefined;
|
|
905
|
+
[x: `int128[${string}]`]: undefined;
|
|
906
|
+
[x: `int136[${string}]`]: undefined;
|
|
907
|
+
[x: `int144[${string}]`]: undefined;
|
|
908
|
+
[x: `int152[${string}]`]: undefined;
|
|
909
|
+
[x: `int160[${string}]`]: undefined;
|
|
910
|
+
[x: `int168[${string}]`]: undefined;
|
|
911
|
+
[x: `int176[${string}]`]: undefined;
|
|
912
|
+
[x: `int184[${string}]`]: undefined;
|
|
913
|
+
[x: `int192[${string}]`]: undefined;
|
|
914
|
+
[x: `int200[${string}]`]: undefined;
|
|
915
|
+
[x: `int208[${string}]`]: undefined;
|
|
916
|
+
[x: `int216[${string}]`]: undefined;
|
|
917
|
+
[x: `int224[${string}]`]: undefined;
|
|
918
|
+
[x: `int232[${string}]`]: undefined;
|
|
919
|
+
[x: `int240[${string}]`]: undefined;
|
|
920
|
+
[x: `int248[${string}]`]: undefined;
|
|
921
|
+
[x: `uint[${string}]`]: undefined;
|
|
922
|
+
[x: `uint256[${string}]`]: undefined;
|
|
923
|
+
[x: `uint8[${string}]`]: undefined;
|
|
924
|
+
[x: `uint16[${string}]`]: undefined;
|
|
925
|
+
[x: `uint24[${string}]`]: undefined;
|
|
926
|
+
[x: `uint32[${string}]`]: undefined;
|
|
927
|
+
[x: `uint40[${string}]`]: undefined;
|
|
928
|
+
[x: `uint48[${string}]`]: undefined;
|
|
929
|
+
[x: `uint56[${string}]`]: undefined;
|
|
930
|
+
[x: `uint64[${string}]`]: undefined;
|
|
931
|
+
[x: `uint72[${string}]`]: undefined;
|
|
932
|
+
[x: `uint80[${string}]`]: undefined;
|
|
933
|
+
[x: `uint88[${string}]`]: undefined;
|
|
934
|
+
[x: `uint96[${string}]`]: undefined;
|
|
935
|
+
[x: `uint104[${string}]`]: undefined;
|
|
936
|
+
[x: `uint112[${string}]`]: undefined;
|
|
937
|
+
[x: `uint120[${string}]`]: undefined;
|
|
938
|
+
[x: `uint128[${string}]`]: undefined;
|
|
939
|
+
[x: `uint136[${string}]`]: undefined;
|
|
940
|
+
[x: `uint144[${string}]`]: undefined;
|
|
941
|
+
[x: `uint152[${string}]`]: undefined;
|
|
942
|
+
[x: `uint160[${string}]`]: undefined;
|
|
943
|
+
[x: `uint168[${string}]`]: undefined;
|
|
944
|
+
[x: `uint176[${string}]`]: undefined;
|
|
945
|
+
[x: `uint184[${string}]`]: undefined;
|
|
946
|
+
[x: `uint192[${string}]`]: undefined;
|
|
947
|
+
[x: `uint200[${string}]`]: undefined;
|
|
948
|
+
[x: `uint208[${string}]`]: undefined;
|
|
949
|
+
[x: `uint216[${string}]`]: undefined;
|
|
950
|
+
[x: `uint224[${string}]`]: undefined;
|
|
951
|
+
[x: `uint232[${string}]`]: undefined;
|
|
952
|
+
[x: `uint240[${string}]`]: undefined;
|
|
953
|
+
[x: `uint248[${string}]`]: undefined;
|
|
954
|
+
string?: undefined;
|
|
955
|
+
address?: undefined;
|
|
956
|
+
bool?: undefined;
|
|
957
|
+
bytes?: undefined;
|
|
958
|
+
bytes1?: undefined;
|
|
959
|
+
bytes12?: undefined;
|
|
960
|
+
bytes3?: undefined;
|
|
961
|
+
bytes2?: undefined;
|
|
962
|
+
bytes8?: undefined;
|
|
963
|
+
bytes4?: undefined;
|
|
964
|
+
bytes5?: undefined;
|
|
965
|
+
bytes6?: undefined;
|
|
966
|
+
bytes7?: undefined;
|
|
967
|
+
bytes9?: undefined;
|
|
968
|
+
bytes10?: undefined;
|
|
969
|
+
bytes11?: undefined;
|
|
970
|
+
bytes13?: undefined;
|
|
971
|
+
bytes14?: undefined;
|
|
972
|
+
bytes15?: undefined;
|
|
973
|
+
bytes16?: undefined;
|
|
974
|
+
bytes17?: undefined;
|
|
975
|
+
bytes18?: undefined;
|
|
976
|
+
bytes19?: undefined;
|
|
977
|
+
bytes20?: undefined;
|
|
978
|
+
bytes21?: undefined;
|
|
979
|
+
bytes22?: undefined;
|
|
980
|
+
bytes23?: undefined;
|
|
981
|
+
bytes24?: undefined;
|
|
982
|
+
bytes25?: undefined;
|
|
983
|
+
bytes26?: undefined;
|
|
984
|
+
bytes27?: undefined;
|
|
985
|
+
bytes28?: undefined;
|
|
986
|
+
bytes29?: undefined;
|
|
987
|
+
bytes30?: undefined;
|
|
988
|
+
bytes31?: undefined;
|
|
989
|
+
bytes32?: undefined;
|
|
990
|
+
int256?: undefined;
|
|
991
|
+
int8?: undefined;
|
|
992
|
+
int16?: undefined;
|
|
993
|
+
int24?: undefined;
|
|
994
|
+
int32?: undefined;
|
|
995
|
+
int40?: undefined;
|
|
996
|
+
int48?: undefined;
|
|
997
|
+
int56?: undefined;
|
|
998
|
+
int64?: undefined;
|
|
999
|
+
int72?: undefined;
|
|
1000
|
+
int80?: undefined;
|
|
1001
|
+
int88?: undefined;
|
|
1002
|
+
int96?: undefined;
|
|
1003
|
+
int104?: undefined;
|
|
1004
|
+
int112?: undefined;
|
|
1005
|
+
int120?: undefined;
|
|
1006
|
+
int128?: undefined;
|
|
1007
|
+
int136?: undefined;
|
|
1008
|
+
int144?: undefined;
|
|
1009
|
+
int152?: undefined;
|
|
1010
|
+
int160?: undefined;
|
|
1011
|
+
int168?: undefined;
|
|
1012
|
+
int176?: undefined;
|
|
1013
|
+
int184?: undefined;
|
|
1014
|
+
int192?: undefined;
|
|
1015
|
+
int200?: undefined;
|
|
1016
|
+
int208?: undefined;
|
|
1017
|
+
int216?: undefined;
|
|
1018
|
+
int224?: undefined;
|
|
1019
|
+
int232?: undefined;
|
|
1020
|
+
int240?: undefined;
|
|
1021
|
+
int248?: undefined;
|
|
1022
|
+
uint256?: undefined;
|
|
1023
|
+
uint8?: undefined;
|
|
1024
|
+
uint16?: undefined;
|
|
1025
|
+
uint24?: undefined;
|
|
1026
|
+
uint32?: undefined;
|
|
1027
|
+
uint40?: undefined;
|
|
1028
|
+
uint48?: undefined;
|
|
1029
|
+
uint56?: undefined;
|
|
1030
|
+
uint64?: undefined;
|
|
1031
|
+
uint72?: undefined;
|
|
1032
|
+
uint80?: undefined;
|
|
1033
|
+
uint88?: undefined;
|
|
1034
|
+
uint96?: undefined;
|
|
1035
|
+
uint104?: undefined;
|
|
1036
|
+
uint112?: undefined;
|
|
1037
|
+
uint120?: undefined;
|
|
1038
|
+
uint128?: undefined;
|
|
1039
|
+
uint136?: undefined;
|
|
1040
|
+
uint144?: undefined;
|
|
1041
|
+
uint152?: undefined;
|
|
1042
|
+
uint160?: undefined;
|
|
1043
|
+
uint168?: undefined;
|
|
1044
|
+
uint176?: undefined;
|
|
1045
|
+
uint184?: undefined;
|
|
1046
|
+
uint192?: undefined;
|
|
1047
|
+
uint200?: undefined;
|
|
1048
|
+
uint208?: undefined;
|
|
1049
|
+
uint216?: undefined;
|
|
1050
|
+
uint224?: undefined;
|
|
1051
|
+
uint232?: undefined;
|
|
1052
|
+
uint240?: undefined;
|
|
1053
|
+
uint248?: undefined;
|
|
1054
|
+
} ? keyof typedData : string>) => Promise<import("viem").Hex>;
|
|
1055
|
+
publicKey: import("viem").Hex;
|
|
1056
|
+
source: string;
|
|
1057
|
+
type: "local";
|
|
1058
|
+
}, chainOverride, accountOverride>) => Promise<import("viem").FillTransactionReturnType<import("viem").Chain, chainOverride>>;
|
|
624
1059
|
getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
|
|
625
1060
|
getCallsStatus: (parameters: import("viem").GetCallsStatusParameters) => Promise<import("viem").GetCallsStatusReturnType>;
|
|
626
1061
|
getCapabilities: <chainId extends number | undefined>(parameters?: import("viem").GetCapabilitiesParameters<chainId>) => Promise<import("viem").GetCapabilitiesReturnType<chainId>>;
|
|
@@ -11427,7 +11862,7 @@ export declare const getViemClient: ({ para, address, walletClientConfig, }: {
|
|
|
11427
11862
|
publicKey: import("viem").Hex;
|
|
11428
11863
|
source: string;
|
|
11429
11864
|
type: "local";
|
|
11430
|
-
}, chainOverride, request>) => Promise<import("viem").
|
|
11865
|
+
}, chainOverride, request>) => Promise<import("viem").TransactionReceipt>;
|
|
11431
11866
|
showCallsStatus: (parameters: import("viem").ShowCallsStatusParameters) => Promise<import("viem").ShowCallsStatusReturnType>;
|
|
11432
11867
|
signAuthorization: (parameters: import("viem").SignAuthorizationParameters<{
|
|
11433
11868
|
address: import("viem").Address;
|
|
@@ -16406,6 +16841,13 @@ export declare const getViemClient: ({ para, address, walletClientConfig, }: {
|
|
|
16406
16841
|
Method: "eth_estimateGas";
|
|
16407
16842
|
Parameters: [transaction: import("viem").RpcTransactionRequest] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag, stateOverride: import("viem").RpcStateOverride];
|
|
16408
16843
|
ReturnType: import("viem").Quantity;
|
|
16844
|
+
}, {
|
|
16845
|
+
Method: "eth_fillTransaction";
|
|
16846
|
+
Parameters: [transaction: import("viem").RpcTransactionRequest];
|
|
16847
|
+
ReturnType: {
|
|
16848
|
+
raw: import("viem").Hex;
|
|
16849
|
+
tx: import("viem").RpcTransaction;
|
|
16850
|
+
};
|
|
16409
16851
|
}, {
|
|
16410
16852
|
Method: "eth_requestAccounts";
|
|
16411
16853
|
Parameters?: undefined;
|
|
@@ -17417,6 +17859,13 @@ export declare const getViemClient: ({ para, address, walletClientConfig, }: {
|
|
|
17417
17859
|
Method: "eth_estimateGas";
|
|
17418
17860
|
Parameters: [transaction: import("viem").RpcTransactionRequest] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag, stateOverride: import("viem").RpcStateOverride];
|
|
17419
17861
|
ReturnType: import("viem").Quantity;
|
|
17862
|
+
}, {
|
|
17863
|
+
Method: "eth_fillTransaction";
|
|
17864
|
+
Parameters: [transaction: import("viem").RpcTransactionRequest];
|
|
17865
|
+
ReturnType: {
|
|
17866
|
+
raw: import("viem").Hex;
|
|
17867
|
+
tx: import("viem").RpcTransaction;
|
|
17868
|
+
};
|
|
17420
17869
|
}, {
|
|
17421
17870
|
Method: "eth_requestAccounts";
|
|
17422
17871
|
Parameters?: undefined;
|
|
@@ -48,6 +48,13 @@ export declare const useViemClient: ({ address, walletClientConfig }: UseViemCli
|
|
|
48
48
|
Method: "eth_estimateGas";
|
|
49
49
|
Parameters: [transaction: import("viem").RpcTransactionRequest] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag, stateOverride: import("viem").RpcStateOverride];
|
|
50
50
|
ReturnType: import("viem").Quantity;
|
|
51
|
+
}, {
|
|
52
|
+
Method: "eth_fillTransaction";
|
|
53
|
+
Parameters: [transaction: import("viem").RpcTransactionRequest];
|
|
54
|
+
ReturnType: {
|
|
55
|
+
raw: import("viem").Hex;
|
|
56
|
+
tx: import("viem").RpcTransaction;
|
|
57
|
+
};
|
|
51
58
|
}, {
|
|
52
59
|
Method: "eth_requestAccounts";
|
|
53
60
|
Parameters?: undefined;
|
|
@@ -622,6 +629,434 @@ export declare const useViemClient: ({ address, walletClientConfig }: UseViemCli
|
|
|
622
629
|
source: string;
|
|
623
630
|
type: "local";
|
|
624
631
|
}, chainOverride>) => Promise<import("viem").DeployContractReturnType>;
|
|
632
|
+
fillTransaction: <chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: import("viem").FillTransactionParameters<import("viem").Chain, {
|
|
633
|
+
address: import("viem").Address;
|
|
634
|
+
nonceManager?: import("viem").NonceManager | undefined;
|
|
635
|
+
sign?: ((parameters: {
|
|
636
|
+
hash: import("viem").Hash;
|
|
637
|
+
}) => Promise<import("viem").Hex>) | undefined | undefined;
|
|
638
|
+
signAuthorization?: ((parameters: import("viem").AuthorizationRequest) => Promise<import("viem/accounts").SignAuthorizationReturnType>) | undefined | undefined;
|
|
639
|
+
signMessage: ({ message }: {
|
|
640
|
+
message: import("viem").SignableMessage;
|
|
641
|
+
}) => Promise<import("viem").Hex>;
|
|
642
|
+
signTransaction: <serializer extends import("viem").SerializeTransactionFn<import("viem").TransactionSerializable> = import("viem").SerializeTransactionFn<import("viem").TransactionSerializable>, transaction extends Parameters<serializer>[0] = Parameters<serializer>[0]>(transaction: transaction, options?: {
|
|
643
|
+
serializer?: serializer | undefined;
|
|
644
|
+
} | undefined) => Promise<import("viem").Hex>;
|
|
645
|
+
signTypedData: <const typedData extends {
|
|
646
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
647
|
+
[x: `string[${string}]`]: undefined;
|
|
648
|
+
[x: `function[${string}]`]: undefined;
|
|
649
|
+
[x: `address[${string}]`]: undefined;
|
|
650
|
+
[x: `bool[${string}]`]: undefined;
|
|
651
|
+
[x: `bytes[${string}]`]: undefined;
|
|
652
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
653
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
654
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
655
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
656
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
657
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
658
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
659
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
660
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
661
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
662
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
663
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
664
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
665
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
666
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
667
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
668
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
669
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
670
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
671
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
672
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
673
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
674
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
675
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
676
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
677
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
678
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
679
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
680
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
681
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
682
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
683
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
684
|
+
[x: `int[${string}]`]: undefined;
|
|
685
|
+
[x: `int256[${string}]`]: undefined;
|
|
686
|
+
[x: `int8[${string}]`]: undefined;
|
|
687
|
+
[x: `int16[${string}]`]: undefined;
|
|
688
|
+
[x: `int24[${string}]`]: undefined;
|
|
689
|
+
[x: `int32[${string}]`]: undefined;
|
|
690
|
+
[x: `int40[${string}]`]: undefined;
|
|
691
|
+
[x: `int48[${string}]`]: undefined;
|
|
692
|
+
[x: `int56[${string}]`]: undefined;
|
|
693
|
+
[x: `int64[${string}]`]: undefined;
|
|
694
|
+
[x: `int72[${string}]`]: undefined;
|
|
695
|
+
[x: `int80[${string}]`]: undefined;
|
|
696
|
+
[x: `int88[${string}]`]: undefined;
|
|
697
|
+
[x: `int96[${string}]`]: undefined;
|
|
698
|
+
[x: `int104[${string}]`]: undefined;
|
|
699
|
+
[x: `int112[${string}]`]: undefined;
|
|
700
|
+
[x: `int120[${string}]`]: undefined;
|
|
701
|
+
[x: `int128[${string}]`]: undefined;
|
|
702
|
+
[x: `int136[${string}]`]: undefined;
|
|
703
|
+
[x: `int144[${string}]`]: undefined;
|
|
704
|
+
[x: `int152[${string}]`]: undefined;
|
|
705
|
+
[x: `int160[${string}]`]: undefined;
|
|
706
|
+
[x: `int168[${string}]`]: undefined;
|
|
707
|
+
[x: `int176[${string}]`]: undefined;
|
|
708
|
+
[x: `int184[${string}]`]: undefined;
|
|
709
|
+
[x: `int192[${string}]`]: undefined;
|
|
710
|
+
[x: `int200[${string}]`]: undefined;
|
|
711
|
+
[x: `int208[${string}]`]: undefined;
|
|
712
|
+
[x: `int216[${string}]`]: undefined;
|
|
713
|
+
[x: `int224[${string}]`]: undefined;
|
|
714
|
+
[x: `int232[${string}]`]: undefined;
|
|
715
|
+
[x: `int240[${string}]`]: undefined;
|
|
716
|
+
[x: `int248[${string}]`]: undefined;
|
|
717
|
+
[x: `uint[${string}]`]: undefined;
|
|
718
|
+
[x: `uint256[${string}]`]: undefined;
|
|
719
|
+
[x: `uint8[${string}]`]: undefined;
|
|
720
|
+
[x: `uint16[${string}]`]: undefined;
|
|
721
|
+
[x: `uint24[${string}]`]: undefined;
|
|
722
|
+
[x: `uint32[${string}]`]: undefined;
|
|
723
|
+
[x: `uint40[${string}]`]: undefined;
|
|
724
|
+
[x: `uint48[${string}]`]: undefined;
|
|
725
|
+
[x: `uint56[${string}]`]: undefined;
|
|
726
|
+
[x: `uint64[${string}]`]: undefined;
|
|
727
|
+
[x: `uint72[${string}]`]: undefined;
|
|
728
|
+
[x: `uint80[${string}]`]: undefined;
|
|
729
|
+
[x: `uint88[${string}]`]: undefined;
|
|
730
|
+
[x: `uint96[${string}]`]: undefined;
|
|
731
|
+
[x: `uint104[${string}]`]: undefined;
|
|
732
|
+
[x: `uint112[${string}]`]: undefined;
|
|
733
|
+
[x: `uint120[${string}]`]: undefined;
|
|
734
|
+
[x: `uint128[${string}]`]: undefined;
|
|
735
|
+
[x: `uint136[${string}]`]: undefined;
|
|
736
|
+
[x: `uint144[${string}]`]: undefined;
|
|
737
|
+
[x: `uint152[${string}]`]: undefined;
|
|
738
|
+
[x: `uint160[${string}]`]: undefined;
|
|
739
|
+
[x: `uint168[${string}]`]: undefined;
|
|
740
|
+
[x: `uint176[${string}]`]: undefined;
|
|
741
|
+
[x: `uint184[${string}]`]: undefined;
|
|
742
|
+
[x: `uint192[${string}]`]: undefined;
|
|
743
|
+
[x: `uint200[${string}]`]: undefined;
|
|
744
|
+
[x: `uint208[${string}]`]: undefined;
|
|
745
|
+
[x: `uint216[${string}]`]: undefined;
|
|
746
|
+
[x: `uint224[${string}]`]: undefined;
|
|
747
|
+
[x: `uint232[${string}]`]: undefined;
|
|
748
|
+
[x: `uint240[${string}]`]: undefined;
|
|
749
|
+
[x: `uint248[${string}]`]: undefined;
|
|
750
|
+
string?: undefined;
|
|
751
|
+
address?: undefined;
|
|
752
|
+
bool?: undefined;
|
|
753
|
+
bytes?: undefined;
|
|
754
|
+
bytes1?: undefined;
|
|
755
|
+
bytes12?: undefined;
|
|
756
|
+
bytes3?: undefined;
|
|
757
|
+
bytes2?: undefined;
|
|
758
|
+
bytes8?: undefined;
|
|
759
|
+
bytes4?: undefined;
|
|
760
|
+
bytes5?: undefined;
|
|
761
|
+
bytes6?: undefined;
|
|
762
|
+
bytes7?: undefined;
|
|
763
|
+
bytes9?: undefined;
|
|
764
|
+
bytes10?: undefined;
|
|
765
|
+
bytes11?: undefined;
|
|
766
|
+
bytes13?: undefined;
|
|
767
|
+
bytes14?: undefined;
|
|
768
|
+
bytes15?: undefined;
|
|
769
|
+
bytes16?: undefined;
|
|
770
|
+
bytes17?: undefined;
|
|
771
|
+
bytes18?: undefined;
|
|
772
|
+
bytes19?: undefined;
|
|
773
|
+
bytes20?: undefined;
|
|
774
|
+
bytes21?: undefined;
|
|
775
|
+
bytes22?: undefined;
|
|
776
|
+
bytes23?: undefined;
|
|
777
|
+
bytes24?: undefined;
|
|
778
|
+
bytes25?: undefined;
|
|
779
|
+
bytes26?: undefined;
|
|
780
|
+
bytes27?: undefined;
|
|
781
|
+
bytes28?: undefined;
|
|
782
|
+
bytes29?: undefined;
|
|
783
|
+
bytes30?: undefined;
|
|
784
|
+
bytes31?: undefined;
|
|
785
|
+
bytes32?: undefined;
|
|
786
|
+
int256?: undefined;
|
|
787
|
+
int8?: undefined;
|
|
788
|
+
int16?: undefined;
|
|
789
|
+
int24?: undefined;
|
|
790
|
+
int32?: undefined;
|
|
791
|
+
int40?: undefined;
|
|
792
|
+
int48?: undefined;
|
|
793
|
+
int56?: undefined;
|
|
794
|
+
int64?: undefined;
|
|
795
|
+
int72?: undefined;
|
|
796
|
+
int80?: undefined;
|
|
797
|
+
int88?: undefined;
|
|
798
|
+
int96?: undefined;
|
|
799
|
+
int104?: undefined;
|
|
800
|
+
int112?: undefined;
|
|
801
|
+
int120?: undefined;
|
|
802
|
+
int128?: undefined;
|
|
803
|
+
int136?: undefined;
|
|
804
|
+
int144?: undefined;
|
|
805
|
+
int152?: undefined;
|
|
806
|
+
int160?: undefined;
|
|
807
|
+
int168?: undefined;
|
|
808
|
+
int176?: undefined;
|
|
809
|
+
int184?: undefined;
|
|
810
|
+
int192?: undefined;
|
|
811
|
+
int200?: undefined;
|
|
812
|
+
int208?: undefined;
|
|
813
|
+
int216?: undefined;
|
|
814
|
+
int224?: undefined;
|
|
815
|
+
int232?: undefined;
|
|
816
|
+
int240?: undefined;
|
|
817
|
+
int248?: undefined;
|
|
818
|
+
uint256?: undefined;
|
|
819
|
+
uint8?: undefined;
|
|
820
|
+
uint16?: undefined;
|
|
821
|
+
uint24?: undefined;
|
|
822
|
+
uint32?: undefined;
|
|
823
|
+
uint40?: undefined;
|
|
824
|
+
uint48?: undefined;
|
|
825
|
+
uint56?: undefined;
|
|
826
|
+
uint64?: undefined;
|
|
827
|
+
uint72?: undefined;
|
|
828
|
+
uint80?: undefined;
|
|
829
|
+
uint88?: undefined;
|
|
830
|
+
uint96?: undefined;
|
|
831
|
+
uint104?: undefined;
|
|
832
|
+
uint112?: undefined;
|
|
833
|
+
uint120?: undefined;
|
|
834
|
+
uint128?: undefined;
|
|
835
|
+
uint136?: undefined;
|
|
836
|
+
uint144?: undefined;
|
|
837
|
+
uint152?: undefined;
|
|
838
|
+
uint160?: undefined;
|
|
839
|
+
uint168?: undefined;
|
|
840
|
+
uint176?: undefined;
|
|
841
|
+
uint184?: undefined;
|
|
842
|
+
uint192?: undefined;
|
|
843
|
+
uint200?: undefined;
|
|
844
|
+
uint208?: undefined;
|
|
845
|
+
uint216?: undefined;
|
|
846
|
+
uint224?: undefined;
|
|
847
|
+
uint232?: undefined;
|
|
848
|
+
uint240?: undefined;
|
|
849
|
+
uint248?: undefined;
|
|
850
|
+
} | Record<string, unknown>, primaryType extends keyof typedData | "EIP712Domain" = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType, typedData extends {
|
|
851
|
+
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
852
|
+
[x: `string[${string}]`]: undefined;
|
|
853
|
+
[x: `function[${string}]`]: undefined;
|
|
854
|
+
[x: `address[${string}]`]: undefined;
|
|
855
|
+
[x: `bool[${string}]`]: undefined;
|
|
856
|
+
[x: `bytes[${string}]`]: undefined;
|
|
857
|
+
[x: `bytes1[${string}]`]: undefined;
|
|
858
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
859
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
860
|
+
[x: `bytes2[${string}]`]: undefined;
|
|
861
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
862
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
863
|
+
[x: `bytes5[${string}]`]: undefined;
|
|
864
|
+
[x: `bytes6[${string}]`]: undefined;
|
|
865
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
866
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
867
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
868
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
869
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
870
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
871
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
872
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
873
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
874
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
875
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
876
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
877
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
878
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
879
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
880
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
881
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
882
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
883
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
884
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
885
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
886
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
887
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
888
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
889
|
+
[x: `int[${string}]`]: undefined;
|
|
890
|
+
[x: `int256[${string}]`]: undefined;
|
|
891
|
+
[x: `int8[${string}]`]: undefined;
|
|
892
|
+
[x: `int16[${string}]`]: undefined;
|
|
893
|
+
[x: `int24[${string}]`]: undefined;
|
|
894
|
+
[x: `int32[${string}]`]: undefined;
|
|
895
|
+
[x: `int40[${string}]`]: undefined;
|
|
896
|
+
[x: `int48[${string}]`]: undefined;
|
|
897
|
+
[x: `int56[${string}]`]: undefined;
|
|
898
|
+
[x: `int64[${string}]`]: undefined;
|
|
899
|
+
[x: `int72[${string}]`]: undefined;
|
|
900
|
+
[x: `int80[${string}]`]: undefined;
|
|
901
|
+
[x: `int88[${string}]`]: undefined;
|
|
902
|
+
[x: `int96[${string}]`]: undefined;
|
|
903
|
+
[x: `int104[${string}]`]: undefined;
|
|
904
|
+
[x: `int112[${string}]`]: undefined;
|
|
905
|
+
[x: `int120[${string}]`]: undefined;
|
|
906
|
+
[x: `int128[${string}]`]: undefined;
|
|
907
|
+
[x: `int136[${string}]`]: undefined;
|
|
908
|
+
[x: `int144[${string}]`]: undefined;
|
|
909
|
+
[x: `int152[${string}]`]: undefined;
|
|
910
|
+
[x: `int160[${string}]`]: undefined;
|
|
911
|
+
[x: `int168[${string}]`]: undefined;
|
|
912
|
+
[x: `int176[${string}]`]: undefined;
|
|
913
|
+
[x: `int184[${string}]`]: undefined;
|
|
914
|
+
[x: `int192[${string}]`]: undefined;
|
|
915
|
+
[x: `int200[${string}]`]: undefined;
|
|
916
|
+
[x: `int208[${string}]`]: undefined;
|
|
917
|
+
[x: `int216[${string}]`]: undefined;
|
|
918
|
+
[x: `int224[${string}]`]: undefined;
|
|
919
|
+
[x: `int232[${string}]`]: undefined;
|
|
920
|
+
[x: `int240[${string}]`]: undefined;
|
|
921
|
+
[x: `int248[${string}]`]: undefined;
|
|
922
|
+
[x: `uint[${string}]`]: undefined;
|
|
923
|
+
[x: `uint256[${string}]`]: undefined;
|
|
924
|
+
[x: `uint8[${string}]`]: undefined;
|
|
925
|
+
[x: `uint16[${string}]`]: undefined;
|
|
926
|
+
[x: `uint24[${string}]`]: undefined;
|
|
927
|
+
[x: `uint32[${string}]`]: undefined;
|
|
928
|
+
[x: `uint40[${string}]`]: undefined;
|
|
929
|
+
[x: `uint48[${string}]`]: undefined;
|
|
930
|
+
[x: `uint56[${string}]`]: undefined;
|
|
931
|
+
[x: `uint64[${string}]`]: undefined;
|
|
932
|
+
[x: `uint72[${string}]`]: undefined;
|
|
933
|
+
[x: `uint80[${string}]`]: undefined;
|
|
934
|
+
[x: `uint88[${string}]`]: undefined;
|
|
935
|
+
[x: `uint96[${string}]`]: undefined;
|
|
936
|
+
[x: `uint104[${string}]`]: undefined;
|
|
937
|
+
[x: `uint112[${string}]`]: undefined;
|
|
938
|
+
[x: `uint120[${string}]`]: undefined;
|
|
939
|
+
[x: `uint128[${string}]`]: undefined;
|
|
940
|
+
[x: `uint136[${string}]`]: undefined;
|
|
941
|
+
[x: `uint144[${string}]`]: undefined;
|
|
942
|
+
[x: `uint152[${string}]`]: undefined;
|
|
943
|
+
[x: `uint160[${string}]`]: undefined;
|
|
944
|
+
[x: `uint168[${string}]`]: undefined;
|
|
945
|
+
[x: `uint176[${string}]`]: undefined;
|
|
946
|
+
[x: `uint184[${string}]`]: undefined;
|
|
947
|
+
[x: `uint192[${string}]`]: undefined;
|
|
948
|
+
[x: `uint200[${string}]`]: undefined;
|
|
949
|
+
[x: `uint208[${string}]`]: undefined;
|
|
950
|
+
[x: `uint216[${string}]`]: undefined;
|
|
951
|
+
[x: `uint224[${string}]`]: undefined;
|
|
952
|
+
[x: `uint232[${string}]`]: undefined;
|
|
953
|
+
[x: `uint240[${string}]`]: undefined;
|
|
954
|
+
[x: `uint248[${string}]`]: undefined;
|
|
955
|
+
string?: undefined;
|
|
956
|
+
address?: undefined;
|
|
957
|
+
bool?: undefined;
|
|
958
|
+
bytes?: undefined;
|
|
959
|
+
bytes1?: undefined;
|
|
960
|
+
bytes12?: undefined;
|
|
961
|
+
bytes3?: undefined;
|
|
962
|
+
bytes2?: undefined;
|
|
963
|
+
bytes8?: undefined;
|
|
964
|
+
bytes4?: undefined;
|
|
965
|
+
bytes5?: undefined;
|
|
966
|
+
bytes6?: undefined;
|
|
967
|
+
bytes7?: undefined;
|
|
968
|
+
bytes9?: undefined;
|
|
969
|
+
bytes10?: undefined;
|
|
970
|
+
bytes11?: undefined;
|
|
971
|
+
bytes13?: undefined;
|
|
972
|
+
bytes14?: undefined;
|
|
973
|
+
bytes15?: undefined;
|
|
974
|
+
bytes16?: undefined;
|
|
975
|
+
bytes17?: undefined;
|
|
976
|
+
bytes18?: undefined;
|
|
977
|
+
bytes19?: undefined;
|
|
978
|
+
bytes20?: undefined;
|
|
979
|
+
bytes21?: undefined;
|
|
980
|
+
bytes22?: undefined;
|
|
981
|
+
bytes23?: undefined;
|
|
982
|
+
bytes24?: undefined;
|
|
983
|
+
bytes25?: undefined;
|
|
984
|
+
bytes26?: undefined;
|
|
985
|
+
bytes27?: undefined;
|
|
986
|
+
bytes28?: undefined;
|
|
987
|
+
bytes29?: undefined;
|
|
988
|
+
bytes30?: undefined;
|
|
989
|
+
bytes31?: undefined;
|
|
990
|
+
bytes32?: undefined;
|
|
991
|
+
int256?: undefined;
|
|
992
|
+
int8?: undefined;
|
|
993
|
+
int16?: undefined;
|
|
994
|
+
int24?: undefined;
|
|
995
|
+
int32?: undefined;
|
|
996
|
+
int40?: undefined;
|
|
997
|
+
int48?: undefined;
|
|
998
|
+
int56?: undefined;
|
|
999
|
+
int64?: undefined;
|
|
1000
|
+
int72?: undefined;
|
|
1001
|
+
int80?: undefined;
|
|
1002
|
+
int88?: undefined;
|
|
1003
|
+
int96?: undefined;
|
|
1004
|
+
int104?: undefined;
|
|
1005
|
+
int112?: undefined;
|
|
1006
|
+
int120?: undefined;
|
|
1007
|
+
int128?: undefined;
|
|
1008
|
+
int136?: undefined;
|
|
1009
|
+
int144?: undefined;
|
|
1010
|
+
int152?: undefined;
|
|
1011
|
+
int160?: undefined;
|
|
1012
|
+
int168?: undefined;
|
|
1013
|
+
int176?: undefined;
|
|
1014
|
+
int184?: undefined;
|
|
1015
|
+
int192?: undefined;
|
|
1016
|
+
int200?: undefined;
|
|
1017
|
+
int208?: undefined;
|
|
1018
|
+
int216?: undefined;
|
|
1019
|
+
int224?: undefined;
|
|
1020
|
+
int232?: undefined;
|
|
1021
|
+
int240?: undefined;
|
|
1022
|
+
int248?: undefined;
|
|
1023
|
+
uint256?: undefined;
|
|
1024
|
+
uint8?: undefined;
|
|
1025
|
+
uint16?: undefined;
|
|
1026
|
+
uint24?: undefined;
|
|
1027
|
+
uint32?: undefined;
|
|
1028
|
+
uint40?: undefined;
|
|
1029
|
+
uint48?: undefined;
|
|
1030
|
+
uint56?: undefined;
|
|
1031
|
+
uint64?: undefined;
|
|
1032
|
+
uint72?: undefined;
|
|
1033
|
+
uint80?: undefined;
|
|
1034
|
+
uint88?: undefined;
|
|
1035
|
+
uint96?: undefined;
|
|
1036
|
+
uint104?: undefined;
|
|
1037
|
+
uint112?: undefined;
|
|
1038
|
+
uint120?: undefined;
|
|
1039
|
+
uint128?: undefined;
|
|
1040
|
+
uint136?: undefined;
|
|
1041
|
+
uint144?: undefined;
|
|
1042
|
+
uint152?: undefined;
|
|
1043
|
+
uint160?: undefined;
|
|
1044
|
+
uint168?: undefined;
|
|
1045
|
+
uint176?: undefined;
|
|
1046
|
+
uint184?: undefined;
|
|
1047
|
+
uint192?: undefined;
|
|
1048
|
+
uint200?: undefined;
|
|
1049
|
+
uint208?: undefined;
|
|
1050
|
+
uint216?: undefined;
|
|
1051
|
+
uint224?: undefined;
|
|
1052
|
+
uint232?: undefined;
|
|
1053
|
+
uint240?: undefined;
|
|
1054
|
+
uint248?: undefined;
|
|
1055
|
+
} ? keyof typedData : string>) => Promise<import("viem").Hex>;
|
|
1056
|
+
publicKey: import("viem").Hex;
|
|
1057
|
+
source: string;
|
|
1058
|
+
type: "local";
|
|
1059
|
+
}, chainOverride, accountOverride>) => Promise<import("viem").FillTransactionReturnType<import("viem").Chain, chainOverride>>;
|
|
625
1060
|
getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
|
|
626
1061
|
getCallsStatus: (parameters: import("viem").GetCallsStatusParameters) => Promise<import("viem").GetCallsStatusReturnType>;
|
|
627
1062
|
getCapabilities: <chainId extends number | undefined>(parameters?: import("viem").GetCapabilitiesParameters<chainId>) => Promise<import("viem").GetCapabilitiesReturnType<chainId>>;
|
|
@@ -11428,7 +11863,7 @@ export declare const useViemClient: ({ address, walletClientConfig }: UseViemCli
|
|
|
11428
11863
|
publicKey: import("viem").Hex;
|
|
11429
11864
|
source: string;
|
|
11430
11865
|
type: "local";
|
|
11431
|
-
}, chainOverride, request>) => Promise<import("viem").
|
|
11866
|
+
}, chainOverride, request>) => Promise<import("viem").TransactionReceipt>;
|
|
11432
11867
|
showCallsStatus: (parameters: import("viem").ShowCallsStatusParameters) => Promise<import("viem").ShowCallsStatusReturnType>;
|
|
11433
11868
|
signAuthorization: (parameters: import("viem").SignAuthorizationParameters<{
|
|
11434
11869
|
address: import("viem").Address;
|
|
@@ -16407,6 +16842,13 @@ export declare const useViemClient: ({ address, walletClientConfig }: UseViemCli
|
|
|
16407
16842
|
Method: "eth_estimateGas";
|
|
16408
16843
|
Parameters: [transaction: import("viem").RpcTransactionRequest] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag, stateOverride: import("viem").RpcStateOverride];
|
|
16409
16844
|
ReturnType: import("viem").Quantity;
|
|
16845
|
+
}, {
|
|
16846
|
+
Method: "eth_fillTransaction";
|
|
16847
|
+
Parameters: [transaction: import("viem").RpcTransactionRequest];
|
|
16848
|
+
ReturnType: {
|
|
16849
|
+
raw: import("viem").Hex;
|
|
16850
|
+
tx: import("viem").RpcTransaction;
|
|
16851
|
+
};
|
|
16410
16852
|
}, {
|
|
16411
16853
|
Method: "eth_requestAccounts";
|
|
16412
16854
|
Parameters?: undefined;
|
|
@@ -17418,6 +17860,13 @@ export declare const useViemClient: ({ address, walletClientConfig }: UseViemCli
|
|
|
17418
17860
|
Method: "eth_estimateGas";
|
|
17419
17861
|
Parameters: [transaction: import("viem").RpcTransactionRequest] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag, stateOverride: import("viem").RpcStateOverride];
|
|
17420
17862
|
ReturnType: import("viem").Quantity;
|
|
17863
|
+
}, {
|
|
17864
|
+
Method: "eth_fillTransaction";
|
|
17865
|
+
Parameters: [transaction: import("viem").RpcTransactionRequest];
|
|
17866
|
+
ReturnType: {
|
|
17867
|
+
raw: import("viem").Hex;
|
|
17868
|
+
tx: import("viem").RpcTransaction;
|
|
17869
|
+
};
|
|
17421
17870
|
}, {
|
|
17422
17871
|
Method: "eth_requestAccounts";
|
|
17423
17872
|
Parameters?: undefined;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getpara/react-sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@getpara/cosmjs-v0-integration": "2.
|
|
6
|
-
"@getpara/cosmos-wallet-connectors": "2.
|
|
7
|
-
"@getpara/evm-wallet-connectors": "2.
|
|
8
|
-
"@getpara/react-sdk-lite": "2.
|
|
9
|
-
"@getpara/solana-signers-v2-integration": "2.
|
|
10
|
-
"@getpara/solana-wallet-connectors": "2.
|
|
11
|
-
"@getpara/viem-v2-integration": "2.
|
|
5
|
+
"@getpara/cosmjs-v0-integration": "2.3.0",
|
|
6
|
+
"@getpara/cosmos-wallet-connectors": "2.3.0",
|
|
7
|
+
"@getpara/evm-wallet-connectors": "2.3.0",
|
|
8
|
+
"@getpara/react-sdk-lite": "2.3.0",
|
|
9
|
+
"@getpara/solana-signers-v2-integration": "2.3.0",
|
|
10
|
+
"@getpara/solana-wallet-connectors": "2.3.0",
|
|
11
|
+
"@getpara/viem-v2-integration": "2.3.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@types/react": "^18.0.31",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"package.json",
|
|
34
34
|
"styles.css"
|
|
35
35
|
],
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "c2ecd83fd7b4ede9b5365904a299564df9c79c18",
|
|
37
37
|
"main": "dist/index.js",
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@tanstack/react-query": ">=5.0.0",
|