@embarkai/ui-kit 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +115 -150
- package/dist/iframe/index.html +1 -1
- package/dist/iframe/main.js +57 -62
- package/dist/iframe/main.js.map +1 -1
- package/dist/index.cjs +5945 -5963
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +114 -111
- package/dist/index.d.ts +114 -111
- package/dist/index.js +5746 -5764
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, { ReactNode, MutableRefObject, FC, HTMLAttributes,
|
|
3
|
+
import React__default, { ReactNode, MutableRefObject, FC, HTMLAttributes, ButtonHTMLAttributes } from 'react';
|
|
4
4
|
import * as viem from 'viem';
|
|
5
5
|
import { Address as Address$1, Hex, PublicClient, Chain, Hash as Hash$1, TransactionReceipt } from 'viem';
|
|
6
6
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
@@ -136,7 +136,6 @@ declare function useTokenBalance(tokenAddress: `0x${string}`, userAddress?: `0x$
|
|
|
136
136
|
declare global {
|
|
137
137
|
interface Window {
|
|
138
138
|
__EMBARK_SERVICES__?: Partial<{
|
|
139
|
-
bundlerUrl: string;
|
|
140
139
|
tssUrl: string;
|
|
141
140
|
shareVaultUrl: string;
|
|
142
141
|
tssRequireWasm: boolean;
|
|
@@ -254,7 +253,6 @@ interface ProviderConfig {
|
|
|
254
253
|
forceChain?: boolean;
|
|
255
254
|
};
|
|
256
255
|
services: {
|
|
257
|
-
bundlerUrl: string;
|
|
258
256
|
tssUrl: string;
|
|
259
257
|
shareVaultUrl: string;
|
|
260
258
|
iframeUrl?: string;
|
|
@@ -346,8 +344,6 @@ interface ConnectWalletButtonProps {
|
|
|
346
344
|
}
|
|
347
345
|
declare function ConnectWalletButton(props: ConnectWalletButtonProps): react_jsx_runtime.JSX.Element;
|
|
348
346
|
|
|
349
|
-
declare function RainbowKitProvider({ children }: PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
350
|
-
|
|
351
347
|
/**
|
|
352
348
|
* Account session containing wallet and smart account information.
|
|
353
349
|
* Shared across multiple modules (session, user-operations, signing, deployment).
|
|
@@ -899,6 +895,8 @@ interface SessionState {
|
|
|
899
895
|
viemChain: Chain | null;
|
|
900
896
|
/** Tracks if user explicitly selected a chain (vs using dApp config default) */
|
|
901
897
|
walletReadyStatus: WalletReadyStatus | null;
|
|
898
|
+
/** Whether zustand persist has finished hydrating from localStorage */
|
|
899
|
+
hasHydrated: boolean;
|
|
902
900
|
setUsePaymaster: (usePaymaster: boolean) => void;
|
|
903
901
|
setIsIframeReady: (ready: boolean) => void;
|
|
904
902
|
setSession: (s: AccountSession | null) => void;
|
|
@@ -934,6 +932,11 @@ declare const useSession: zustand.UseBoundStore<Omit<zustand.StoreApi<SessionSta
|
|
|
934
932
|
}, unknown>>;
|
|
935
933
|
};
|
|
936
934
|
}>;
|
|
935
|
+
/**
|
|
936
|
+
* Wait for zustand persist hydration to complete.
|
|
937
|
+
* Use in async functions to ensure activeChainId and other persisted state is available.
|
|
938
|
+
*/
|
|
939
|
+
declare function waitForStoreHydration(): Promise<void>;
|
|
937
940
|
/**
|
|
938
941
|
* Require active chain ID from session store (for non-React usage)
|
|
939
942
|
* Throws an error if the chain ID is not yet set (e.g., before store hydration)
|
|
@@ -951,7 +954,6 @@ declare const useSession: zustand.UseBoundStore<Omit<zustand.StoreApi<SessionSta
|
|
|
951
954
|
* ```
|
|
952
955
|
*/
|
|
953
956
|
declare const requireActiveChainId: () => number;
|
|
954
|
-
declare function SessionProvider({ children }: PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
955
957
|
|
|
956
958
|
declare const useIsMobileView: () => boolean;
|
|
957
959
|
declare const useBalance: () => {
|
|
@@ -977,6 +979,7 @@ declare const useLoadingStatus: () => {
|
|
|
977
979
|
declare const useRecoveryUserId: () => string;
|
|
978
980
|
declare const useHasServerVault: () => boolean;
|
|
979
981
|
declare const useActiveChainId: () => number;
|
|
982
|
+
declare const useHydrated: () => boolean;
|
|
980
983
|
|
|
981
984
|
declare enum PageKey {
|
|
982
985
|
AUTH = "auth",
|
|
@@ -1006,7 +1009,7 @@ interface PageOpenParams {
|
|
|
1006
1009
|
}
|
|
1007
1010
|
|
|
1008
1011
|
/**
|
|
1009
|
-
* Hook to programmatically open the
|
|
1012
|
+
* Hook to programmatically open the dialogs
|
|
1010
1013
|
* @example
|
|
1011
1014
|
* ```tsx
|
|
1012
1015
|
* function MyComponent() {
|
|
@@ -1014,7 +1017,7 @@ interface PageOpenParams {
|
|
|
1014
1017
|
*
|
|
1015
1018
|
* return (
|
|
1016
1019
|
* <button onClick={() => open(PageKey.BUY, { amount: 10 })}>
|
|
1017
|
-
* Buy
|
|
1020
|
+
* Buy CRYPTO
|
|
1018
1021
|
* </button>
|
|
1019
1022
|
* );
|
|
1020
1023
|
* }
|
|
@@ -1041,10 +1044,10 @@ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, VariantPr
|
|
|
1041
1044
|
asChild?: boolean;
|
|
1042
1045
|
}
|
|
1043
1046
|
|
|
1044
|
-
/**
|
|
1047
|
+
/** EmbarkAI Color Mode Switcher */
|
|
1045
1048
|
declare function ThemeToggle(props: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
1046
1049
|
|
|
1047
|
-
/**
|
|
1050
|
+
/** EmbarkAI Language Switcher */
|
|
1048
1051
|
declare function LangToggle(props: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
1049
1052
|
|
|
1050
1053
|
type ChainLike$2 = {
|
|
@@ -1721,126 +1724,126 @@ declare function useTransactions(): {
|
|
|
1721
1724
|
input: viem.Hex;
|
|
1722
1725
|
s: viem.Hex;
|
|
1723
1726
|
value: bigint;
|
|
1727
|
+
hash: Hash$1;
|
|
1728
|
+
v: bigint;
|
|
1729
|
+
r: viem.Hex;
|
|
1724
1730
|
type: "legacy";
|
|
1725
|
-
|
|
1731
|
+
to: viem.Address | null;
|
|
1726
1732
|
from: viem.Address;
|
|
1727
1733
|
gas: bigint;
|
|
1728
|
-
hash: Hash$1;
|
|
1729
1734
|
nonce: number;
|
|
1730
|
-
r: viem.Hex;
|
|
1731
|
-
to: viem.Address | null;
|
|
1732
|
-
typeHex: viem.Hex | null;
|
|
1733
|
-
v: bigint;
|
|
1734
|
-
accessList?: undefined;
|
|
1735
|
-
authorizationList?: undefined;
|
|
1736
1735
|
blobVersionedHashes?: undefined;
|
|
1737
|
-
chainId?: number;
|
|
1738
1736
|
gasPrice: bigint;
|
|
1739
1737
|
maxFeePerBlobGas?: undefined;
|
|
1740
1738
|
maxFeePerGas?: undefined;
|
|
1741
1739
|
maxPriorityFeePerGas?: undefined;
|
|
1742
|
-
|
|
1740
|
+
accessList?: undefined;
|
|
1741
|
+
authorizationList?: undefined;
|
|
1742
|
+
yParity?: undefined;
|
|
1743
|
+
typeHex: viem.Hex | null;
|
|
1744
|
+
chainId?: number;
|
|
1743
1745
|
blockNumber: bigint;
|
|
1746
|
+
blockHash: `0x${string}`;
|
|
1744
1747
|
transactionIndex: number;
|
|
1745
1748
|
} | {
|
|
1746
1749
|
input: viem.Hex;
|
|
1747
1750
|
s: viem.Hex;
|
|
1748
1751
|
value: bigint;
|
|
1752
|
+
hash: Hash$1;
|
|
1753
|
+
v: bigint;
|
|
1754
|
+
r: viem.Hex;
|
|
1749
1755
|
type: "eip2930";
|
|
1750
|
-
|
|
1756
|
+
to: viem.Address | null;
|
|
1751
1757
|
from: viem.Address;
|
|
1752
1758
|
gas: bigint;
|
|
1753
|
-
hash: Hash$1;
|
|
1754
1759
|
nonce: number;
|
|
1755
|
-
r: viem.Hex;
|
|
1756
|
-
to: viem.Address | null;
|
|
1757
|
-
typeHex: viem.Hex | null;
|
|
1758
|
-
v: bigint;
|
|
1759
|
-
accessList: viem.AccessList;
|
|
1760
|
-
authorizationList?: undefined;
|
|
1761
1760
|
blobVersionedHashes?: undefined;
|
|
1762
|
-
chainId: number;
|
|
1763
1761
|
gasPrice: bigint;
|
|
1764
1762
|
maxFeePerBlobGas?: undefined;
|
|
1765
1763
|
maxFeePerGas?: undefined;
|
|
1766
1764
|
maxPriorityFeePerGas?: undefined;
|
|
1767
|
-
|
|
1765
|
+
accessList: viem.AccessList;
|
|
1766
|
+
authorizationList?: undefined;
|
|
1767
|
+
yParity: number;
|
|
1768
|
+
typeHex: viem.Hex | null;
|
|
1769
|
+
chainId: number;
|
|
1768
1770
|
blockNumber: bigint;
|
|
1771
|
+
blockHash: `0x${string}`;
|
|
1769
1772
|
transactionIndex: number;
|
|
1770
1773
|
} | {
|
|
1771
1774
|
input: viem.Hex;
|
|
1772
1775
|
s: viem.Hex;
|
|
1773
1776
|
value: bigint;
|
|
1777
|
+
hash: Hash$1;
|
|
1778
|
+
v: bigint;
|
|
1779
|
+
r: viem.Hex;
|
|
1774
1780
|
type: "eip1559";
|
|
1775
|
-
|
|
1781
|
+
to: viem.Address | null;
|
|
1776
1782
|
from: viem.Address;
|
|
1777
1783
|
gas: bigint;
|
|
1778
|
-
hash: Hash$1;
|
|
1779
1784
|
nonce: number;
|
|
1780
|
-
r: viem.Hex;
|
|
1781
|
-
to: viem.Address | null;
|
|
1782
|
-
typeHex: viem.Hex | null;
|
|
1783
|
-
v: bigint;
|
|
1784
|
-
accessList: viem.AccessList;
|
|
1785
|
-
authorizationList?: undefined;
|
|
1786
1785
|
blobVersionedHashes?: undefined;
|
|
1787
|
-
chainId: number;
|
|
1788
1786
|
gasPrice?: undefined;
|
|
1789
1787
|
maxFeePerBlobGas?: undefined;
|
|
1790
1788
|
maxFeePerGas: bigint;
|
|
1791
1789
|
maxPriorityFeePerGas: bigint;
|
|
1792
|
-
|
|
1790
|
+
accessList: viem.AccessList;
|
|
1791
|
+
authorizationList?: undefined;
|
|
1792
|
+
yParity: number;
|
|
1793
|
+
typeHex: viem.Hex | null;
|
|
1794
|
+
chainId: number;
|
|
1793
1795
|
blockNumber: bigint;
|
|
1796
|
+
blockHash: `0x${string}`;
|
|
1794
1797
|
transactionIndex: number;
|
|
1795
1798
|
} | {
|
|
1796
1799
|
input: viem.Hex;
|
|
1797
1800
|
s: viem.Hex;
|
|
1798
1801
|
value: bigint;
|
|
1802
|
+
hash: Hash$1;
|
|
1803
|
+
v: bigint;
|
|
1804
|
+
r: viem.Hex;
|
|
1799
1805
|
type: "eip4844";
|
|
1800
|
-
|
|
1806
|
+
to: viem.Address | null;
|
|
1801
1807
|
from: viem.Address;
|
|
1802
1808
|
gas: bigint;
|
|
1803
|
-
hash: Hash$1;
|
|
1804
1809
|
nonce: number;
|
|
1805
|
-
r: viem.Hex;
|
|
1806
|
-
to: viem.Address | null;
|
|
1807
|
-
typeHex: viem.Hex | null;
|
|
1808
|
-
v: bigint;
|
|
1809
|
-
accessList: viem.AccessList;
|
|
1810
|
-
authorizationList?: undefined;
|
|
1811
1810
|
blobVersionedHashes: readonly viem.Hex[];
|
|
1812
|
-
chainId: number;
|
|
1813
1811
|
gasPrice?: undefined;
|
|
1814
1812
|
maxFeePerBlobGas: bigint;
|
|
1815
1813
|
maxFeePerGas: bigint;
|
|
1816
1814
|
maxPriorityFeePerGas: bigint;
|
|
1817
|
-
|
|
1815
|
+
accessList: viem.AccessList;
|
|
1816
|
+
authorizationList?: undefined;
|
|
1817
|
+
yParity: number;
|
|
1818
|
+
typeHex: viem.Hex | null;
|
|
1819
|
+
chainId: number;
|
|
1818
1820
|
blockNumber: bigint;
|
|
1821
|
+
blockHash: `0x${string}`;
|
|
1819
1822
|
transactionIndex: number;
|
|
1820
1823
|
} | {
|
|
1821
1824
|
input: viem.Hex;
|
|
1822
1825
|
s: viem.Hex;
|
|
1823
1826
|
value: bigint;
|
|
1827
|
+
hash: Hash$1;
|
|
1828
|
+
v: bigint;
|
|
1829
|
+
r: viem.Hex;
|
|
1824
1830
|
type: "eip7702";
|
|
1825
|
-
|
|
1831
|
+
to: viem.Address | null;
|
|
1826
1832
|
from: viem.Address;
|
|
1827
1833
|
gas: bigint;
|
|
1828
|
-
hash: Hash$1;
|
|
1829
1834
|
nonce: number;
|
|
1830
|
-
r: viem.Hex;
|
|
1831
|
-
to: viem.Address | null;
|
|
1832
|
-
typeHex: viem.Hex | null;
|
|
1833
|
-
v: bigint;
|
|
1834
|
-
accessList: viem.AccessList;
|
|
1835
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
1836
1835
|
blobVersionedHashes?: undefined;
|
|
1837
|
-
chainId: number;
|
|
1838
1836
|
gasPrice?: undefined;
|
|
1839
1837
|
maxFeePerBlobGas?: undefined;
|
|
1840
1838
|
maxFeePerGas: bigint;
|
|
1841
1839
|
maxPriorityFeePerGas: bigint;
|
|
1842
|
-
|
|
1840
|
+
accessList: viem.AccessList;
|
|
1841
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
1842
|
+
yParity: number;
|
|
1843
|
+
typeHex: viem.Hex | null;
|
|
1844
|
+
chainId: number;
|
|
1843
1845
|
blockNumber: bigint;
|
|
1846
|
+
blockHash: `0x${string}`;
|
|
1844
1847
|
transactionIndex: number;
|
|
1845
1848
|
}>;
|
|
1846
1849
|
getTransactionReceipt: (hash: Hash$1) => Promise<TransactionReceipt>;
|
|
@@ -1867,126 +1870,126 @@ declare function useSmartAccountTransactions(): {
|
|
|
1867
1870
|
input: viem.Hex;
|
|
1868
1871
|
s: viem.Hex;
|
|
1869
1872
|
value: bigint;
|
|
1873
|
+
hash: Hash$1;
|
|
1874
|
+
v: bigint;
|
|
1875
|
+
r: viem.Hex;
|
|
1870
1876
|
type: "legacy";
|
|
1871
|
-
|
|
1877
|
+
to: viem.Address | null;
|
|
1872
1878
|
from: viem.Address;
|
|
1873
1879
|
gas: bigint;
|
|
1874
|
-
hash: Hash$1;
|
|
1875
1880
|
nonce: number;
|
|
1876
|
-
r: viem.Hex;
|
|
1877
|
-
to: viem.Address | null;
|
|
1878
|
-
typeHex: viem.Hex | null;
|
|
1879
|
-
v: bigint;
|
|
1880
|
-
accessList?: undefined;
|
|
1881
|
-
authorizationList?: undefined;
|
|
1882
1881
|
blobVersionedHashes?: undefined;
|
|
1883
|
-
chainId?: number;
|
|
1884
1882
|
gasPrice: bigint;
|
|
1885
1883
|
maxFeePerBlobGas?: undefined;
|
|
1886
1884
|
maxFeePerGas?: undefined;
|
|
1887
1885
|
maxPriorityFeePerGas?: undefined;
|
|
1888
|
-
|
|
1886
|
+
accessList?: undefined;
|
|
1887
|
+
authorizationList?: undefined;
|
|
1888
|
+
yParity?: undefined;
|
|
1889
|
+
typeHex: viem.Hex | null;
|
|
1890
|
+
chainId?: number;
|
|
1889
1891
|
blockNumber: bigint;
|
|
1892
|
+
blockHash: `0x${string}`;
|
|
1890
1893
|
transactionIndex: number;
|
|
1891
1894
|
} | {
|
|
1892
1895
|
input: viem.Hex;
|
|
1893
1896
|
s: viem.Hex;
|
|
1894
1897
|
value: bigint;
|
|
1898
|
+
hash: Hash$1;
|
|
1899
|
+
v: bigint;
|
|
1900
|
+
r: viem.Hex;
|
|
1895
1901
|
type: "eip2930";
|
|
1896
|
-
|
|
1902
|
+
to: viem.Address | null;
|
|
1897
1903
|
from: viem.Address;
|
|
1898
1904
|
gas: bigint;
|
|
1899
|
-
hash: Hash$1;
|
|
1900
1905
|
nonce: number;
|
|
1901
|
-
r: viem.Hex;
|
|
1902
|
-
to: viem.Address | null;
|
|
1903
|
-
typeHex: viem.Hex | null;
|
|
1904
|
-
v: bigint;
|
|
1905
|
-
accessList: viem.AccessList;
|
|
1906
|
-
authorizationList?: undefined;
|
|
1907
1906
|
blobVersionedHashes?: undefined;
|
|
1908
|
-
chainId: number;
|
|
1909
1907
|
gasPrice: bigint;
|
|
1910
1908
|
maxFeePerBlobGas?: undefined;
|
|
1911
1909
|
maxFeePerGas?: undefined;
|
|
1912
1910
|
maxPriorityFeePerGas?: undefined;
|
|
1913
|
-
|
|
1911
|
+
accessList: viem.AccessList;
|
|
1912
|
+
authorizationList?: undefined;
|
|
1913
|
+
yParity: number;
|
|
1914
|
+
typeHex: viem.Hex | null;
|
|
1915
|
+
chainId: number;
|
|
1914
1916
|
blockNumber: bigint;
|
|
1917
|
+
blockHash: `0x${string}`;
|
|
1915
1918
|
transactionIndex: number;
|
|
1916
1919
|
} | {
|
|
1917
1920
|
input: viem.Hex;
|
|
1918
1921
|
s: viem.Hex;
|
|
1919
1922
|
value: bigint;
|
|
1923
|
+
hash: Hash$1;
|
|
1924
|
+
v: bigint;
|
|
1925
|
+
r: viem.Hex;
|
|
1920
1926
|
type: "eip1559";
|
|
1921
|
-
|
|
1927
|
+
to: viem.Address | null;
|
|
1922
1928
|
from: viem.Address;
|
|
1923
1929
|
gas: bigint;
|
|
1924
|
-
hash: Hash$1;
|
|
1925
1930
|
nonce: number;
|
|
1926
|
-
r: viem.Hex;
|
|
1927
|
-
to: viem.Address | null;
|
|
1928
|
-
typeHex: viem.Hex | null;
|
|
1929
|
-
v: bigint;
|
|
1930
|
-
accessList: viem.AccessList;
|
|
1931
|
-
authorizationList?: undefined;
|
|
1932
1931
|
blobVersionedHashes?: undefined;
|
|
1933
|
-
chainId: number;
|
|
1934
1932
|
gasPrice?: undefined;
|
|
1935
1933
|
maxFeePerBlobGas?: undefined;
|
|
1936
1934
|
maxFeePerGas: bigint;
|
|
1937
1935
|
maxPriorityFeePerGas: bigint;
|
|
1938
|
-
|
|
1936
|
+
accessList: viem.AccessList;
|
|
1937
|
+
authorizationList?: undefined;
|
|
1938
|
+
yParity: number;
|
|
1939
|
+
typeHex: viem.Hex | null;
|
|
1940
|
+
chainId: number;
|
|
1939
1941
|
blockNumber: bigint;
|
|
1942
|
+
blockHash: `0x${string}`;
|
|
1940
1943
|
transactionIndex: number;
|
|
1941
1944
|
} | {
|
|
1942
1945
|
input: viem.Hex;
|
|
1943
1946
|
s: viem.Hex;
|
|
1944
1947
|
value: bigint;
|
|
1948
|
+
hash: Hash$1;
|
|
1949
|
+
v: bigint;
|
|
1950
|
+
r: viem.Hex;
|
|
1945
1951
|
type: "eip4844";
|
|
1946
|
-
|
|
1952
|
+
to: viem.Address | null;
|
|
1947
1953
|
from: viem.Address;
|
|
1948
1954
|
gas: bigint;
|
|
1949
|
-
hash: Hash$1;
|
|
1950
1955
|
nonce: number;
|
|
1951
|
-
r: viem.Hex;
|
|
1952
|
-
to: viem.Address | null;
|
|
1953
|
-
typeHex: viem.Hex | null;
|
|
1954
|
-
v: bigint;
|
|
1955
|
-
accessList: viem.AccessList;
|
|
1956
|
-
authorizationList?: undefined;
|
|
1957
1956
|
blobVersionedHashes: readonly viem.Hex[];
|
|
1958
|
-
chainId: number;
|
|
1959
1957
|
gasPrice?: undefined;
|
|
1960
1958
|
maxFeePerBlobGas: bigint;
|
|
1961
1959
|
maxFeePerGas: bigint;
|
|
1962
1960
|
maxPriorityFeePerGas: bigint;
|
|
1963
|
-
|
|
1961
|
+
accessList: viem.AccessList;
|
|
1962
|
+
authorizationList?: undefined;
|
|
1963
|
+
yParity: number;
|
|
1964
|
+
typeHex: viem.Hex | null;
|
|
1965
|
+
chainId: number;
|
|
1964
1966
|
blockNumber: bigint;
|
|
1967
|
+
blockHash: `0x${string}`;
|
|
1965
1968
|
transactionIndex: number;
|
|
1966
1969
|
} | {
|
|
1967
1970
|
input: viem.Hex;
|
|
1968
1971
|
s: viem.Hex;
|
|
1969
1972
|
value: bigint;
|
|
1973
|
+
hash: Hash$1;
|
|
1974
|
+
v: bigint;
|
|
1975
|
+
r: viem.Hex;
|
|
1970
1976
|
type: "eip7702";
|
|
1971
|
-
|
|
1977
|
+
to: viem.Address | null;
|
|
1972
1978
|
from: viem.Address;
|
|
1973
1979
|
gas: bigint;
|
|
1974
|
-
hash: Hash$1;
|
|
1975
1980
|
nonce: number;
|
|
1976
|
-
r: viem.Hex;
|
|
1977
|
-
to: viem.Address | null;
|
|
1978
|
-
typeHex: viem.Hex | null;
|
|
1979
|
-
v: bigint;
|
|
1980
|
-
accessList: viem.AccessList;
|
|
1981
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
1982
1981
|
blobVersionedHashes?: undefined;
|
|
1983
|
-
chainId: number;
|
|
1984
1982
|
gasPrice?: undefined;
|
|
1985
1983
|
maxFeePerBlobGas?: undefined;
|
|
1986
1984
|
maxFeePerGas: bigint;
|
|
1987
1985
|
maxPriorityFeePerGas: bigint;
|
|
1988
|
-
|
|
1986
|
+
accessList: viem.AccessList;
|
|
1987
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
1988
|
+
yParity: number;
|
|
1989
|
+
typeHex: viem.Hex | null;
|
|
1990
|
+
chainId: number;
|
|
1989
1991
|
blockNumber: bigint;
|
|
1992
|
+
blockHash: `0x${string}`;
|
|
1990
1993
|
transactionIndex: number;
|
|
1991
1994
|
};
|
|
1992
1995
|
receipt: viem.TransactionReceipt;
|
|
@@ -2692,4 +2695,4 @@ declare function combineI18NResources(...resourses: TranslationResources[]): Tra
|
|
|
2692
2695
|
declare function getAvailableLanguages(resourses: TranslationResources): string[];
|
|
2693
2696
|
declare function getLanguageIcon(languageKey: string): string | null;
|
|
2694
2697
|
|
|
2695
|
-
export { AccountAbstractionError, type AccountSession, Address, type AddressProps, type Asset, type CallbacksConfig, ConnectWalletButton, type ConnectWalletButtonProps, ErrorCodes, type FingerprintVerificationResult, Hash, type HashProps, KeyshareBackupMenu as KeyshareBackup, LOCAL_STORAGE_I18N_KEY, LangToggle, type NicknameAvailability, type NicknameAvatar, type NicknameChangeResult, type NicknameInfo, type NicknameResolution, type NicknameResolveRequest, type NicknameResolvedTarget, type NicknameValidationResult, PASSPORT_TRANSLATIONS, PageKey, type PageOpenParams, Provider, type ProviderConfig, type ProviderDetail, type ProviderProps,
|
|
2698
|
+
export { AccountAbstractionError, type AccountSession, Address, type AddressProps, type Asset, type CallbacksConfig, ConnectWalletButton, type ConnectWalletButtonProps, ErrorCodes, type FingerprintVerificationResult, Hash, type HashProps, KeyshareBackupMenu as KeyshareBackup, LOCAL_STORAGE_I18N_KEY, LangToggle, type NicknameAvailability, type NicknameAvatar, type NicknameChangeResult, type NicknameInfo, type NicknameResolution, type NicknameResolveRequest, type NicknameResolvedTarget, type NicknameValidationResult, PASSPORT_TRANSLATIONS, PageKey, type PageOpenParams, Provider, type ProviderConfig, type ProviderDetail, type ProviderProps, type RegisterSmartAccountResult, type SendTransactionParams, type SendTransactionResult, type SignTypedDataParams, type SmartAccountEntry, ThemeToggle, type TokenBalance, type Transaction, TransactionsList, type TypedDataDomain, type TypedDataField, type UpdateProfileRequest, type UseErc3643ComplianceOptions, type UseErc3643ComplianceResult, type UseLogoutReturn, type UseNicknameResolveOptions, type UseNicknameResolveResult, type UseSendTransactionReturn, type UseUserOpStatusOptions, type UseUserOpStatusReturn, type UserOpMempool, type SendTransactionParams$1 as UserOpSendTransactionParams, type UserOpState, UserOpStatus, type UserOpStatusProps, type UserOperation, type UserOperationByHash, type UserOperationReceipt, UserOperationTimeoutError, type UserProfile, UserRejectedError, type WaitForReceiptOptions, type WalletReadyStatus, type WatchToken, combineI18NResources, createAccountAbstractionError, deployAccount, destroyIframeManager, generateFingerprint, getAllSmartAccounts, getAvailableLanguages, getIframeManager, getLanguageIcon, getSmartAccountForChain, getUserOperationByHash, getUserOperationReceipt, getUserProfile, looksLikeNickname, prepareUserOperation, requireActiveChainId, sendUserOperation, signTypedData, updateUserProfile, useAccountSession, useActiveChainId, useAddress, useAssets, useBalance, useColorMode, useErc3643Compliance, useError, useHasServerVault, useHydrated, useIFrameReady, useIsMobileView, useLinkedProfiles, useLoadingStatus, useLogout, useNicknameResolve, useOpenPage, useProviderConfig, useRecoveryUserId, useSendTransaction, useSession, useSmartAccountTransactions, useTokenBalance, useTokenInfo, useTransactions, useUserOpStatus, verifyFingerprint, verifyFingerprintDetailed, wagmiConfig, waitForStoreHydration, waitForUserOperationReceipt };
|