@thenamespace/ens-components 0.0.4-alpha → 0.0.6-alpha
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/index.css +218 -208
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +35 -24
- package/dist/index.js +928 -634
- package/dist/index.js.map +1 -1
- package/dist/types/components/index.d.ts +3 -2
- package/dist/types/hooks/useWeb3Clients.d.ts +14 -14
- package/package.json +7 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { EnsRecords as EnsRecords$1, ChainName as ChainName$1, ContenthashProtocol as ContenthashProtocol$1, EnsTextRecord as EnsTextRecord$1, EnsAddressRecord as EnsAddressRecord$1, EnsContenthashRecord as EnsContenthashRecord$1 } from '@/types';
|
|
3
2
|
import React$1, { ReactNode } from 'react';
|
|
3
|
+
import { ChainName as ChainName$1, ContenthashProtocol as ContenthashProtocol$1, EnsRecords as EnsRecords$1, EnsTextRecord as EnsTextRecord$1, EnsAddressRecord as EnsAddressRecord$1, EnsContenthashRecord as EnsContenthashRecord$1 } from '@/types';
|
|
4
|
+
import * as viem from 'viem';
|
|
5
|
+
import { Address as Address$1, Hash } from 'viem';
|
|
4
6
|
import { IconName as IconName$1 } from '@/components';
|
|
5
7
|
import * as node_modules_viem__types_actions_siwe_verifySiweMessage from 'node_modules/viem/_types/actions/siwe/verifySiweMessage';
|
|
6
8
|
import * as wagmi from 'wagmi';
|
|
7
9
|
import * as node_modules_viem__types_utils_ccip from 'node_modules/viem/_types/utils/ccip';
|
|
8
|
-
import * as viem from 'viem';
|
|
9
|
-
|
|
10
|
-
interface SelectRecordsFormProps {
|
|
11
|
-
records: EnsRecords$1;
|
|
12
|
-
onRecordsUpdated: (records: EnsRecords$1) => void;
|
|
13
|
-
}
|
|
14
|
-
declare const SelectRecordsForm: ({ records, onRecordsUpdated, }: SelectRecordsFormProps) => react_jsx_runtime.JSX.Element;
|
|
15
10
|
|
|
16
11
|
declare enum TransactionState {
|
|
17
12
|
InProgress = "In Progress",
|
|
@@ -142,6 +137,22 @@ interface ModalProps {
|
|
|
142
137
|
}
|
|
143
138
|
declare const Modal: React$1.FC<ModalProps>;
|
|
144
139
|
|
|
140
|
+
interface EditRecordsFormProps {
|
|
141
|
+
initialRecords?: EnsRecords$1;
|
|
142
|
+
resolverAddress: Address$1;
|
|
143
|
+
name: string;
|
|
144
|
+
chainId?: number;
|
|
145
|
+
onCancel?: () => void;
|
|
146
|
+
onSuccess?: (txHash: Hash) => void;
|
|
147
|
+
}
|
|
148
|
+
declare const EnsRecordsForm: ({ name, initialRecords, chainId, resolverAddress, onCancel, onSuccess, }: EditRecordsFormProps) => react_jsx_runtime.JSX.Element;
|
|
149
|
+
|
|
150
|
+
interface SelectRecordsFormProps {
|
|
151
|
+
records: EnsRecords$1;
|
|
152
|
+
onRecordsUpdated: (records: EnsRecords$1) => void;
|
|
153
|
+
}
|
|
154
|
+
declare const SelectRecordsForm: ({ records, onRecordsUpdated, }: SelectRecordsFormProps) => react_jsx_runtime.JSX.Element;
|
|
155
|
+
|
|
145
156
|
interface SupportedEnsAddress {
|
|
146
157
|
validateFunc?: (value: string) => boolean;
|
|
147
158
|
isEMV?: boolean;
|
|
@@ -4684,8 +4695,8 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
4684
4695
|
[x: `bytes8[${string}]`]: undefined;
|
|
4685
4696
|
[x: `bytes2[${string}]`]: undefined;
|
|
4686
4697
|
[x: `bytes10[${string}]`]: undefined;
|
|
4687
|
-
[x: `bytes18[${string}]`]: undefined;
|
|
4688
4698
|
[x: `bytes16[${string}]`]: undefined;
|
|
4699
|
+
[x: `bytes18[${string}]`]: undefined;
|
|
4689
4700
|
[x: `bytes22[${string}]`]: undefined;
|
|
4690
4701
|
[x: `bytes12[${string}]`]: undefined;
|
|
4691
4702
|
[x: `bytes30[${string}]`]: undefined;
|
|
@@ -4784,8 +4795,8 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
4784
4795
|
bytes8?: undefined;
|
|
4785
4796
|
bytes2?: undefined;
|
|
4786
4797
|
bytes10?: undefined;
|
|
4787
|
-
bytes18?: undefined;
|
|
4788
4798
|
bytes16?: undefined;
|
|
4799
|
+
bytes18?: undefined;
|
|
4789
4800
|
bytes22?: undefined;
|
|
4790
4801
|
bytes12?: undefined;
|
|
4791
4802
|
bytes30?: undefined;
|
|
@@ -4894,7 +4905,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
4894
4905
|
transport?: undefined;
|
|
4895
4906
|
type?: undefined;
|
|
4896
4907
|
uid?: undefined;
|
|
4897
|
-
} & viem.ExactPartial<Pick<viem.PublicActions<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain, viem.Account>, "
|
|
4908
|
+
} & viem.ExactPartial<Pick<viem.PublicActions<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain, viem.Account>, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<viem.WalletActions<viem.Chain, viem.Account>, "sendTransaction" | "writeContract">>>(fn: (client: viem.Client<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain, viem.Account, viem.WalletRpcSchema, viem.WalletActions<viem.Chain, viem.Account>>) => client) => viem.Client<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain, viem.Account, viem.WalletRpcSchema, { [K in keyof client]: client[K]; } & viem.WalletActions<viem.Chain, viem.Account>>;
|
|
4898
4909
|
} | undefined;
|
|
4899
4910
|
publicClient: {
|
|
4900
4911
|
account: undefined;
|
|
@@ -4965,7 +4976,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
4965
4976
|
s: viem.Hex;
|
|
4966
4977
|
v: bigint;
|
|
4967
4978
|
chainId?: number | undefined;
|
|
4968
|
-
yParity?: undefined | undefined;
|
|
4969
4979
|
gas: bigint;
|
|
4970
4980
|
maxFeePerBlobGas?: undefined | undefined;
|
|
4971
4981
|
gasPrice: bigint;
|
|
@@ -4975,6 +4985,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
4975
4985
|
blobVersionedHashes?: undefined | undefined;
|
|
4976
4986
|
authorizationList?: undefined | undefined;
|
|
4977
4987
|
hash: viem.Hash;
|
|
4988
|
+
yParity?: undefined | undefined;
|
|
4978
4989
|
typeHex: viem.Hex | null;
|
|
4979
4990
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
4980
4991
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
@@ -4990,7 +5001,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
4990
5001
|
s: viem.Hex;
|
|
4991
5002
|
v: bigint;
|
|
4992
5003
|
chainId: number;
|
|
4993
|
-
yParity: number;
|
|
4994
5004
|
gas: bigint;
|
|
4995
5005
|
maxFeePerBlobGas?: undefined | undefined;
|
|
4996
5006
|
gasPrice: bigint;
|
|
@@ -5000,6 +5010,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5000
5010
|
blobVersionedHashes?: undefined | undefined;
|
|
5001
5011
|
authorizationList?: undefined | undefined;
|
|
5002
5012
|
hash: viem.Hash;
|
|
5013
|
+
yParity: number;
|
|
5003
5014
|
typeHex: viem.Hex | null;
|
|
5004
5015
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
|
|
5005
5016
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
@@ -5015,7 +5026,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5015
5026
|
s: viem.Hex;
|
|
5016
5027
|
v: bigint;
|
|
5017
5028
|
chainId: number;
|
|
5018
|
-
yParity: number;
|
|
5019
5029
|
gas: bigint;
|
|
5020
5030
|
maxFeePerBlobGas?: undefined | undefined;
|
|
5021
5031
|
gasPrice?: undefined | undefined;
|
|
@@ -5025,6 +5035,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5025
5035
|
blobVersionedHashes?: undefined | undefined;
|
|
5026
5036
|
authorizationList?: undefined | undefined;
|
|
5027
5037
|
hash: viem.Hash;
|
|
5038
|
+
yParity: number;
|
|
5028
5039
|
typeHex: viem.Hex | null;
|
|
5029
5040
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
|
|
5030
5041
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
@@ -5040,7 +5051,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5040
5051
|
s: viem.Hex;
|
|
5041
5052
|
v: bigint;
|
|
5042
5053
|
chainId: number;
|
|
5043
|
-
yParity: number;
|
|
5044
5054
|
gas: bigint;
|
|
5045
5055
|
maxFeePerBlobGas: bigint;
|
|
5046
5056
|
gasPrice?: undefined | undefined;
|
|
@@ -5050,6 +5060,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5050
5060
|
blobVersionedHashes: readonly viem.Hex[];
|
|
5051
5061
|
authorizationList?: undefined | undefined;
|
|
5052
5062
|
hash: viem.Hash;
|
|
5063
|
+
yParity: number;
|
|
5053
5064
|
typeHex: viem.Hex | null;
|
|
5054
5065
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
|
|
5055
5066
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
@@ -5065,7 +5076,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5065
5076
|
s: viem.Hex;
|
|
5066
5077
|
v: bigint;
|
|
5067
5078
|
chainId: number;
|
|
5068
|
-
yParity: number;
|
|
5069
5079
|
gas: bigint;
|
|
5070
5080
|
maxFeePerBlobGas?: undefined | undefined;
|
|
5071
5081
|
gasPrice?: undefined | undefined;
|
|
@@ -5075,6 +5085,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5075
5085
|
blobVersionedHashes?: undefined | undefined;
|
|
5076
5086
|
authorizationList: viem.SignedAuthorizationList;
|
|
5077
5087
|
hash: viem.Hash;
|
|
5088
|
+
yParity: number;
|
|
5078
5089
|
typeHex: viem.Hex | null;
|
|
5079
5090
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
|
|
5080
5091
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
|
|
@@ -5115,7 +5126,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5115
5126
|
s: viem.Hex;
|
|
5116
5127
|
v: bigint;
|
|
5117
5128
|
chainId?: number | undefined;
|
|
5118
|
-
yParity?: undefined | undefined;
|
|
5119
5129
|
gas: bigint;
|
|
5120
5130
|
maxFeePerBlobGas?: undefined | undefined;
|
|
5121
5131
|
gasPrice: bigint;
|
|
@@ -5125,6 +5135,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5125
5135
|
blobVersionedHashes?: undefined | undefined;
|
|
5126
5136
|
authorizationList?: undefined | undefined;
|
|
5127
5137
|
hash: viem.Hash;
|
|
5138
|
+
yParity?: undefined | undefined;
|
|
5128
5139
|
typeHex: viem.Hex | null;
|
|
5129
5140
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
5130
5141
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
@@ -5140,7 +5151,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5140
5151
|
s: viem.Hex;
|
|
5141
5152
|
v: bigint;
|
|
5142
5153
|
chainId: number;
|
|
5143
|
-
yParity: number;
|
|
5144
5154
|
gas: bigint;
|
|
5145
5155
|
maxFeePerBlobGas?: undefined | undefined;
|
|
5146
5156
|
gasPrice: bigint;
|
|
@@ -5150,6 +5160,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5150
5160
|
blobVersionedHashes?: undefined | undefined;
|
|
5151
5161
|
authorizationList?: undefined | undefined;
|
|
5152
5162
|
hash: viem.Hash;
|
|
5163
|
+
yParity: number;
|
|
5153
5164
|
typeHex: viem.Hex | null;
|
|
5154
5165
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
|
|
5155
5166
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
@@ -5165,7 +5176,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5165
5176
|
s: viem.Hex;
|
|
5166
5177
|
v: bigint;
|
|
5167
5178
|
chainId: number;
|
|
5168
|
-
yParity: number;
|
|
5169
5179
|
gas: bigint;
|
|
5170
5180
|
maxFeePerBlobGas?: undefined | undefined;
|
|
5171
5181
|
gasPrice?: undefined | undefined;
|
|
@@ -5175,6 +5185,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5175
5185
|
blobVersionedHashes?: undefined | undefined;
|
|
5176
5186
|
authorizationList?: undefined | undefined;
|
|
5177
5187
|
hash: viem.Hash;
|
|
5188
|
+
yParity: number;
|
|
5178
5189
|
typeHex: viem.Hex | null;
|
|
5179
5190
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
|
|
5180
5191
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
@@ -5190,7 +5201,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5190
5201
|
s: viem.Hex;
|
|
5191
5202
|
v: bigint;
|
|
5192
5203
|
chainId: number;
|
|
5193
|
-
yParity: number;
|
|
5194
5204
|
gas: bigint;
|
|
5195
5205
|
maxFeePerBlobGas: bigint;
|
|
5196
5206
|
gasPrice?: undefined | undefined;
|
|
@@ -5200,6 +5210,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5200
5210
|
blobVersionedHashes: readonly viem.Hex[];
|
|
5201
5211
|
authorizationList?: undefined | undefined;
|
|
5202
5212
|
hash: viem.Hash;
|
|
5213
|
+
yParity: number;
|
|
5203
5214
|
typeHex: viem.Hex | null;
|
|
5204
5215
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
|
|
5205
5216
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
@@ -5215,7 +5226,6 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5215
5226
|
s: viem.Hex;
|
|
5216
5227
|
v: bigint;
|
|
5217
5228
|
chainId: number;
|
|
5218
|
-
yParity: number;
|
|
5219
5229
|
gas: bigint;
|
|
5220
5230
|
maxFeePerBlobGas?: undefined | undefined;
|
|
5221
5231
|
gasPrice?: undefined | undefined;
|
|
@@ -5225,6 +5235,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
5225
5235
|
blobVersionedHashes?: undefined | undefined;
|
|
5226
5236
|
authorizationList: viem.SignedAuthorizationList;
|
|
5227
5237
|
hash: viem.Hash;
|
|
5238
|
+
yParity: number;
|
|
5228
5239
|
typeHex: viem.Hex | null;
|
|
5229
5240
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
|
|
5230
5241
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
|
|
@@ -8518,7 +8529,7 @@ declare const useWeb3Client: ({ chainId }: {
|
|
|
8518
8529
|
transport?: undefined;
|
|
8519
8530
|
type?: undefined;
|
|
8520
8531
|
uid?: undefined;
|
|
8521
|
-
} & viem.ExactPartial<Pick<viem.PublicActions<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain, undefined>, "
|
|
8532
|
+
} & viem.ExactPartial<Pick<viem.PublicActions<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain, undefined>, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<viem.WalletActions<viem.Chain, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: viem.Client<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain, undefined, viem.PublicRpcSchema, viem.PublicActions<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain>>) => client) => viem.Client<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain, undefined, viem.PublicRpcSchema, { [K in keyof client]: client[K]; } & viem.PublicActions<wagmi.Transport<string, Record<string, any>, viem.EIP1193RequestFn>, viem.Chain>>;
|
|
8522
8533
|
} | undefined;
|
|
8523
8534
|
};
|
|
8524
8535
|
|
|
@@ -8639,5 +8650,5 @@ interface ThemeProviderProps {
|
|
|
8639
8650
|
declare const ThemeProvider: React$1.FC<ThemeProviderProps>;
|
|
8640
8651
|
declare const useTheme: () => ThemeContextValue;
|
|
8641
8652
|
|
|
8642
|
-
export { Alert, Button, ChainIcon, ContenthashIcon, ContenthashProtocol, Dropdown, ENS_RESOLVER_ABI, Icon, Input, MULTICALL, Modal, PendingTransaction, SET_ADDRESS_FUNC, SET_CONTENTHASH_FUNC, SET_TEXT_FUNC, SelectRecordsForm, Text, TextRecordCategory, ThemeProvider, Tooltip, TransactionState, capitalize, convertEVMChainIdToCoinType, deepCopy, equalsIgnoreCase, getEnsRecordsDiff, getSupportedAddressByCoin, getSupportedAddressByName, getSupportedAddressMap, getSupportedChashByProtocol, getSupportedText, getSupportedTextMap, isContenthashValid, supportedAddresses, supportedContenthashRecords, supportedTexts, useTheme, useWaitForTransaction, useWeb3Client };
|
|
8643
|
-
export type { AlertProps, AlertVariant, ButtonProps, ButtonSize, ButtonVariant, ChainName, DropdownProps, EnsAddressRecord, EnsContenthashRecord, EnsRecords, EnsRecordsDiff, EnsTextRecord, IconName, IconProps, InputProps, InputSize, InputType, ModalProps, ModalSize, SupportedContenthashRecord, SupportedEnsAddress, SupportedTextRecord, TextColor, TextProps, TextSize, TextWeight, ThemeContextValue, ThemeName, ThemeProviderProps, TooltipPosition, TooltipProps };
|
|
8653
|
+
export { Alert, Button, ChainIcon, ContenthashIcon, ContenthashProtocol, Dropdown, ENS_RESOLVER_ABI, EnsRecordsForm, Icon, Input, MULTICALL, Modal, PendingTransaction, SET_ADDRESS_FUNC, SET_CONTENTHASH_FUNC, SET_TEXT_FUNC, SelectRecordsForm, Text, TextRecordCategory, ThemeProvider, Tooltip, TransactionState, capitalize, convertEVMChainIdToCoinType, deepCopy, equalsIgnoreCase, getEnsRecordsDiff, getSupportedAddressByCoin, getSupportedAddressByName, getSupportedAddressMap, getSupportedChashByProtocol, getSupportedText, getSupportedTextMap, isContenthashValid, supportedAddresses, supportedContenthashRecords, supportedTexts, useTheme, useWaitForTransaction, useWeb3Client };
|
|
8654
|
+
export type { AlertProps, AlertVariant, ButtonProps, ButtonSize, ButtonVariant, ChainName, DropdownProps, EnsAddressRecord, EnsContenthashRecord, EnsRecords, EnsRecordsDiff, EnsTextRecord, IconName, IconProps, InputProps, InputSize, InputType, ModalProps, ModalSize, SelectRecordsFormProps, SupportedContenthashRecord, SupportedEnsAddress, SupportedTextRecord, TextColor, TextProps, TextSize, TextWeight, ThemeContextValue, ThemeName, ThemeProviderProps, TooltipPosition, TooltipProps };
|