solariskit 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,326 @@
1
+
2
+ import { o as WalletInstance } from "./Wallet-B3fOxQx_.js";
3
+ import React, { JSX, ReactNode } from "react";
4
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
5
+ import { Address } from "viem";
6
+ import { Chain } from "wagmi/chains";
7
+ import { RequiredConditionalValue } from "@vanilla-extract/sprinkles";
8
+
9
+ //#region src/css/sprinkles.css.d.ts
10
+ declare const themeContractValues: {
11
+ colors: {
12
+ accentColor: string;
13
+ accentColorForeground: string;
14
+ actionButtonBorder: string;
15
+ actionButtonBorderMobile: string;
16
+ actionButtonSecondaryBackground: string;
17
+ closeButton: string;
18
+ closeButtonBackground: string;
19
+ connectButtonBackground: string;
20
+ connectButtonBackgroundError: string;
21
+ connectButtonInnerBackground: string;
22
+ connectButtonText: string;
23
+ connectButtonTextError: string;
24
+ connectionIndicator: string;
25
+ downloadBottomCardBackground: string;
26
+ downloadTopCardBackground: string;
27
+ error: string;
28
+ generalBorder: string;
29
+ generalBorderDim: string;
30
+ menuItemBackground: string;
31
+ modalBackdrop: string;
32
+ modalBackground: string;
33
+ modalBorder: string;
34
+ modalText: string;
35
+ modalTextDim: string;
36
+ modalTextSecondary: string;
37
+ profileAction: string;
38
+ profileActionHover: string;
39
+ profileForeground: string;
40
+ selectedOptionBorder: string;
41
+ standby: string;
42
+ };
43
+ fonts: {
44
+ body: string;
45
+ };
46
+ radii: {
47
+ actionButton: string;
48
+ connectButton: string;
49
+ menuButton: string;
50
+ modal: string;
51
+ modalMobile: string;
52
+ };
53
+ shadows: {
54
+ connectButton: string;
55
+ dialog: string;
56
+ profileDetailsAction: string;
57
+ selectedOption: string;
58
+ selectedWallet: string;
59
+ walletLogo: string;
60
+ };
61
+ blurs: {
62
+ modalOverlay: string;
63
+ };
64
+ };
65
+ type ThemeVars = typeof themeContractValues;
66
+ declare const responsiveProperties: {
67
+ conditions: {
68
+ defaultCondition: "smallScreen";
69
+ conditionNames: ("smallScreen" | "largeScreen")[];
70
+ };
71
+ styles: {
72
+ alignItems: {
73
+ values: {
74
+ center: {
75
+ defaultClass: string;
76
+ conditions: {
77
+ smallScreen: string;
78
+ largeScreen: string;
79
+ };
80
+ };
81
+ "flex-end": {
82
+ defaultClass: string;
83
+ conditions: {
84
+ smallScreen: string;
85
+ largeScreen: string;
86
+ };
87
+ };
88
+ "flex-start": {
89
+ defaultClass: string;
90
+ conditions: {
91
+ smallScreen: string;
92
+ largeScreen: string;
93
+ };
94
+ };
95
+ };
96
+ };
97
+ display: {
98
+ values: {
99
+ block: {
100
+ defaultClass: string;
101
+ conditions: {
102
+ smallScreen: string;
103
+ largeScreen: string;
104
+ };
105
+ };
106
+ none: {
107
+ defaultClass: string;
108
+ conditions: {
109
+ smallScreen: string;
110
+ largeScreen: string;
111
+ };
112
+ };
113
+ flex: {
114
+ defaultClass: string;
115
+ conditions: {
116
+ smallScreen: string;
117
+ largeScreen: string;
118
+ };
119
+ };
120
+ inline: {
121
+ defaultClass: string;
122
+ conditions: {
123
+ smallScreen: string;
124
+ largeScreen: string;
125
+ };
126
+ };
127
+ };
128
+ };
129
+ };
130
+ };
131
+ type ResponsiveValue<Value extends string | number | boolean> = RequiredConditionalValue<typeof responsiveProperties, Value>;
132
+ //#endregion
133
+ //#region src/components/RainbowKitProvider/AppContext.d.ts
134
+ type DisclaimerComponent = React.FunctionComponent<{
135
+ Text: React.FunctionComponent<{
136
+ children: ReactNode;
137
+ }>;
138
+ Link: React.FunctionComponent<{
139
+ children: ReactNode;
140
+ href: string;
141
+ }>;
142
+ }>;
143
+ //#endregion
144
+ //#region src/components/RainbowKitProvider/AvatarContext.d.ts
145
+ type AvatarComponentProps = {
146
+ address: string;
147
+ ensImage?: string | null;
148
+ size: number;
149
+ };
150
+ type AvatarComponent = React.FunctionComponent<AvatarComponentProps>;
151
+ //#endregion
152
+ //#region src/components/RainbowKitProvider/ModalSizeContext.d.ts
153
+ declare const ModalSizeOptions: {
154
+ readonly COMPACT: "compact";
155
+ readonly WIDE: "wide";
156
+ };
157
+ type ModalSizes = (typeof ModalSizeOptions)[keyof typeof ModalSizeOptions];
158
+ //#endregion
159
+ //#region src/components/RainbowKitProvider/RainbowKitProvider.d.ts
160
+ type Theme = ThemeVars | {
161
+ lightMode: ThemeVars;
162
+ darkMode: ThemeVars;
163
+ };
164
+ interface RainbowKitProviderProps {
165
+ initialChain?: Chain | number;
166
+ chainSearchThreshold?: number;
167
+ id?: string;
168
+ children: ReactNode;
169
+ theme?: Theme | null;
170
+ showRecentTransactions?: boolean;
171
+ appInfo?: {
172
+ appName?: string;
173
+ learnMoreUrl?: string;
174
+ disclaimer?: DisclaimerComponent;
175
+ };
176
+ avatar?: AvatarComponent;
177
+ modalSize?: ModalSizes;
178
+ }
179
+ declare function RainbowKitProvider({
180
+ appInfo,
181
+ avatar,
182
+ chainSearchThreshold,
183
+ children,
184
+ id,
185
+ initialChain,
186
+ modalSize,
187
+ showRecentTransactions,
188
+ theme
189
+ }: RainbowKitProviderProps): _$react_jsx_runtime0.JSX.Element;
190
+ //#endregion
191
+ //#region src/components/RainbowKitProvider/AuthenticationContext.d.ts
192
+ type AuthenticationStatus = "loading" | "unauthenticated" | "authenticated";
193
+ interface AuthenticationAdapter<Message> {
194
+ getNonce: () => Promise<string>;
195
+ createMessage: (args: {
196
+ nonce: string;
197
+ address: Address;
198
+ chainId: number;
199
+ }) => Promise<Message> | Message;
200
+ verify: (args: {
201
+ message: Message;
202
+ signature: string;
203
+ }) => Promise<boolean>;
204
+ signOut: () => Promise<void>;
205
+ }
206
+ interface AuthenticationConfig<Message> {
207
+ adapter: AuthenticationAdapter<Message>;
208
+ status: AuthenticationStatus;
209
+ }
210
+ declare function createAuthenticationAdapter<Message>(adapter: AuthenticationAdapter<Message>): AuthenticationAdapter<Message>;
211
+ interface RainbowKitAuthenticationProviderProps<Message> extends AuthenticationConfig<Message> {
212
+ enabled?: boolean;
213
+ children: ReactNode;
214
+ }
215
+ declare function RainbowKitAuthenticationProvider<Message = unknown>({
216
+ adapter,
217
+ children,
218
+ enabled,
219
+ status
220
+ }: RainbowKitAuthenticationProviderProps<Message>): _$react_jsx_runtime0.JSX.Element;
221
+ //#endregion
222
+ //#region src/components/ConnectButton/ConnectButtonRenderer.d.ts
223
+ interface ConnectButtonRendererProps {
224
+ children: (renderProps: {
225
+ account?: {
226
+ address: string;
227
+ balanceDecimals?: number;
228
+ balanceFormatted?: string;
229
+ balanceSymbol?: string;
230
+ displayBalance?: string;
231
+ displayName: string;
232
+ ensAvatar?: string;
233
+ ensName?: string;
234
+ hasPendingTransactions: boolean;
235
+ };
236
+ chain?: {
237
+ hasIcon: boolean;
238
+ iconUrl?: string;
239
+ iconBackground?: string;
240
+ id: number;
241
+ name?: string;
242
+ unsupported?: boolean;
243
+ };
244
+ mounted: boolean;
245
+ authenticationStatus?: AuthenticationStatus;
246
+ openAccountModal: () => void;
247
+ openChainModal: () => void;
248
+ openConnectModal: () => void;
249
+ accountModalOpen: boolean;
250
+ chainModalOpen: boolean;
251
+ connectModalOpen: boolean;
252
+ }) => ReactNode;
253
+ }
254
+ declare function ConnectButtonRenderer({
255
+ children
256
+ }: ConnectButtonRendererProps): _$react_jsx_runtime0.JSX.Element;
257
+ declare namespace ConnectButtonRenderer {
258
+ var displayName: string;
259
+ }
260
+ //#endregion
261
+ //#region src/components/ConnectButton/ConnectButton.d.ts
262
+ type AccountStatus = "full" | "avatar" | "address";
263
+ type ChainStatus = "full" | "icon" | "name" | "none";
264
+ interface ConnectButtonProps {
265
+ accountStatus?: ResponsiveValue<AccountStatus>;
266
+ showBalance?: ResponsiveValue<boolean>;
267
+ chainStatus?: ResponsiveValue<ChainStatus>;
268
+ label?: string;
269
+ }
270
+ declare function ConnectButton({
271
+ accountStatus,
272
+ chainStatus,
273
+ label,
274
+ showBalance
275
+ }: ConnectButtonProps): _$react_jsx_runtime0.JSX.Element | null;
276
+ declare namespace ConnectButton {
277
+ var __defaultProps: {
278
+ readonly accountStatus: "full";
279
+ readonly chainStatus: {
280
+ readonly largeScreen: "full";
281
+ readonly smallScreen: "icon";
282
+ };
283
+ readonly label: "Connect Wallet";
284
+ readonly showBalance: {
285
+ readonly largeScreen: true;
286
+ readonly smallScreen: false;
287
+ };
288
+ };
289
+ var Custom: typeof ConnectButtonRenderer;
290
+ }
291
+ //#endregion
292
+ //#region src/wallets/useWalletConnectors.d.ts
293
+ interface WalletConnector extends WalletInstance {
294
+ ready?: boolean;
295
+ connect: WalletInstance["connect"];
296
+ showWalletConnectModal?: () => void;
297
+ recent: boolean;
298
+ getDesktopUri?: () => Promise<string>;
299
+ getQrCodeUri?: () => Promise<string>;
300
+ getMobileUri?: () => Promise<string>;
301
+ }
302
+ //#endregion
303
+ //#region src/components/WalletButton/WalletButtonRenderer.d.ts
304
+ interface WalletButtonRendererProps {
305
+ wallet?: string;
306
+ children: (renderProps: {
307
+ error: boolean;
308
+ loading: boolean;
309
+ connected: boolean;
310
+ ready: boolean;
311
+ mounted: boolean;
312
+ connector: WalletConnector;
313
+ connect: () => Promise<void>;
314
+ }) => ReactNode;
315
+ }
316
+ //#endregion
317
+ //#region src/components/WalletButton/WalletButton.d.ts
318
+ interface WalletButtonProps {
319
+ wallet?: string;
320
+ }
321
+ declare const WalletButton: {
322
+ (props: WalletButtonProps): JSX.Element | undefined;
323
+ Custom: (props: WalletButtonRendererProps) => ReactNode;
324
+ };
325
+ //#endregion
326
+ export { ConnectButtonProps as a, RainbowKitAuthenticationProvider as c, RainbowKitProviderProps as d, Theme as f, ThemeVars as g, DisclaimerComponent as h, ConnectButton as i, createAuthenticationAdapter as l, AvatarComponentProps as m, WalletButtonProps as n, AuthenticationConfig as o, AvatarComponent as p, WalletButtonRendererProps as r, AuthenticationStatus as s, WalletButton as t, RainbowKitProvider as u };
@@ -0,0 +1,6 @@
1
+ "use client";
2
+ //#region src/components/Icons/assets.svg
3
+ var assets_default = "data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 48 48\"><path fill=\"url(%23a)\" d=\"M1.09 5.46C0 7.6 0 10.4 0 16v16c0 5.6 0 8.4 1.09 10.54a10 10 0 0 0 4.37 4.37C7.6 48 10.4 48 16 48h16c1.752 0 3.23 0 4.5-.033 0-1.362 0-2.044.066-2.616a10 10 0 0 1 8.785-8.785c.572-.066 1.254-.066 2.616-.066C48 35.23 48 33.752 48 32V16c0-5.6 0-8.4-1.09-10.54a10 10 0 0 0-4.37-4.37C40.4 0 37.6 0 32 0H16C10.4 0 7.6 0 5.46 1.09a10 10 0 0 0-4.37 4.37Z\"/><path fill=\"url(%23b)\" d=\"M1.09 5.46C0 7.6 0 10.4 0 16v16c0 5.6 0 8.4 1.09 10.54a10 10 0 0 0 4.37 4.37C7.6 48 10.4 48 16 48h16c1.752 0 3.23 0 4.5-.033 0-1.362 0-2.044.066-2.616a10 10 0 0 1 8.785-8.785c.572-.066 1.254-.066 2.616-.066C48 35.23 48 33.752 48 32V16c0-5.6 0-8.4-1.09-10.54a10 10 0 0 0-4.37-4.37C40.4 0 37.6 0 32 0H16C10.4 0 7.6 0 5.46 1.09a10 10 0 0 0-4.37 4.37Z\"/><path fill=\"%23000\" fill-opacity=\".04\" fill-rule=\"evenodd\" d=\"M35.5 35.5h11.486C47 34.475 47 33.32 47 32V16c0-2.817 0-4.87-.133-6.487-.131-1.605-.387-2.694-.848-3.599a9 9 0 0 0-3.933-3.933c-.905-.461-1.994-.717-3.6-.848C36.87 1 34.816 1 32 1H16c-2.817 0-4.87 0-6.487.133-1.605.131-2.694.387-3.599.848a9 9 0 0 0-3.933 3.933c-.461.905-.717 1.994-.848 3.6C1 11.13 1 13.183 1 16v16c0 2.817 0 4.87.133 6.486.131 1.606.387 2.695.848 3.6a9 9 0 0 0 3.933 3.933c.905.461 1.994.717 3.6.848C11.13 47 13.183 47 16 47h16c1.32 0 2.475 0 3.5-.014V35.5Zm1 12.467C35.23 48 33.752 48 32 48H16c-5.6 0-8.4 0-10.54-1.09a10 10 0 0 1-4.37-4.37C0 40.4 0 37.6 0 32V16c0-5.6 0-8.4 1.09-10.54a10 10 0 0 1 4.37-4.37C7.6 0 10.4 0 16 0h16c5.6 0 8.4 0 10.54 1.09a10 10 0 0 1 4.37 4.37C48 7.6 48 10.4 48 16v16c0 1.752 0 3.23-.033 4.5H36.5v11.467Z\" clip-rule=\"evenodd\"/><path fill=\"%23000\" fill-opacity=\".8\" d=\"M3 14.2c0-3.92 0-5.88.763-7.378a7 7 0 0 1 3.06-3.059C8.318 3 10.28 3 14.2 3h19.6c3.92 0 5.88 0 7.378.763a7 7 0 0 1 3.059 3.06C45 8.318 45 10.28 45 14.2v19.6c0 3.92 0 5.88-.763 7.378a7 7 0 0 1-3.06 3.059C39.682 45 37.72 45 33.8 45H14.2c-3.92 0-5.88 0-7.378-.763a7 7 0 0 1-3.059-3.06C3 39.682 3 37.72 3 33.8V14.2Z\"/><path fill=\"%23000\" fill-rule=\"evenodd\" d=\"M33.8 3.5H14.2c-1.968 0-3.415 0-4.557.094-1.136.093-1.927.275-2.594.614A6.5 6.5 0 0 0 4.21 7.05c-.34.667-.522 1.458-.615 2.594C3.5 10.785 3.5 12.232 3.5 14.2v19.6c0 1.968 0 3.415.094 4.557.093 1.136.275 1.928.614 2.594a6.5 6.5 0 0 0 2.841 2.84c.667.34 1.458.522 2.594.615 1.142.094 2.589.094 4.557.094h19.6c1.968 0 3.415 0 4.557-.094 1.136-.093 1.928-.275 2.594-.614a6.499 6.499 0 0 0 2.84-2.841c.34-.666.522-1.458.615-2.594.094-1.142.094-2.589.094-4.557V14.2c0-1.968 0-3.415-.094-4.557-.093-1.136-.275-1.927-.614-2.594a6.5 6.5 0 0 0-2.841-2.84c-.666-.34-1.458-.522-2.594-.615C37.215 3.5 35.768 3.5 33.8 3.5ZM3.763 6.822C3 8.32 3 10.28 3 14.2v19.6c0 3.92 0 5.88.763 7.378a7 7 0 0 0 3.06 3.059C8.318 45 10.28 45 14.2 45h19.6c3.92 0 5.88 0 7.378-.763a7 7 0 0 0 3.059-3.06C45 39.682 45 37.72 45 33.8V14.2c0-3.92 0-5.88-.763-7.378a7 7 0 0 0-3.06-3.059C39.682 3 37.72 3 33.8 3H14.2c-3.92 0-5.88 0-7.378.763a7 7 0 0 0-3.059 3.06Z\" clip-rule=\"evenodd\"/><path fill=\"%23DFD7D5\" d=\"M25 13c0-2.8 0-4.2.545-5.27a5 5 0 0 1 2.185-2.185C28.8 5 30.2 5 33 5h2c2.8 0 4.2 0 5.27.545a5 5 0 0 1 2.185 2.185C43 8.8 43 10.2 43 13v2c0 2.8 0 4.2-.545 5.27a5 5 0 0 1-2.185 2.185C39.2 23 37.8 23 35 23h-2c-2.8 0-4.2 0-5.27-.545a5 5 0 0 1-2.185-2.185C25 19.2 25 17.8 25 15v-2Z\"/><path fill=\"%23E1D7D5\" d=\"M38 5h-8a5 5 0 0 0-5 5v8a5 5 0 0 0 5 5h8a5 5 0 0 0 5-5v-8a5 5 0 0 0-5-5Z\"/><path fill=\"%23D22209\" d=\"M37.938 16.813h-7.876v.562h7.875v-.563Zm0 .562h-7.876v.563h7.875v-.563Z\"/><path fill=\"%23D22209\" d=\"M37.938 17.938h-7.876v.562h7.875v-.563Zm0 .562h-7.876v.563h7.875V18.5Z\"/><path fill=\"%23D22209\" d=\"M31.188 19.063h-1.125v.562h1.125v-.563Zm6.75 0H31.75v.562h6.188v-.563Zm-6.75.562h-1.125v.563h1.125v-.563Zm6.75 0H31.75v.563h6.188v-.563Z\"/><path fill=\"%23D22209\" d=\"M31.188 20.188h-1.125v.562h1.125v-.563Zm6.75 0H31.75v.562h6.188v-.563Zm-6.75.562h-1.125v.563h1.125v-.563Zm6.75 0H31.75v.563h6.188v-.563Z\"/><path fill=\"%23D22209\" d=\"M31.188 21.313h-1.125v.562h1.125v-.563Zm6.75 0H31.75v.562h6.188v-.563Zm-6.75.562h-1.125v.563h1.125v-.563Zm6.75 0H31.75v.563h6.188v-.563Z\"/><path fill=\"%23D22209\" d=\"M31.188 22.438h-1.125V23h1.125v-.563Zm6.75 0H31.75V23h6.188v-.563Z\"/><path fill=\"%23fff\" d=\"M32.875 17.938h-.563v.562h.563v-.563Zm2.25 0H34v.562h1.125v-.563Zm1.125 0h-.563v.562h.563v-.563Zm-3.375.562h-.563v.563h.563V18.5Zm2.25 0H34v.563h1.125V18.5Zm1.125 0h-.563v.563h.563V18.5Z\"/><path fill=\"%23fff\" d=\"M33.438 19.063h-1.126v.562h1.126v-.563Zm1.687 0H34v.562h1.125v-.563Zm1.688 0h-1.126v.562h1.126v-.563Z\"/><path fill=\"%23C16710\" d=\"M33.438 8.375h-.563v.563h.563v-.563Zm1.687 0H34v.563h1.125v-.563Z\"/><path fill=\"%23D4A015\" d=\"M31.75 8.938h-1.688V9.5h1.688v-.563Z\"/><path fill=\"%23C16710\" d=\"M35.688 8.938h-3.376V9.5h3.376v-.563Z\"/><path fill=\"%23D4A015\" d=\"M37.938 8.938H36.25V9.5h1.688v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 9.5h-1.125v.563h1.125V9.5Z\"/><path fill=\"%23D4A015\" d=\"M31.75 9.5h-1.688v.563h1.688V9.5Z\"/><path fill=\"%23C16710\" d=\"M35.125 9.5H31.75v.563h3.375V9.5Z\"/><path fill=\"%23D4A015\" d=\"M37.938 9.5H36.25v.563h1.688V9.5Z\"/><path fill=\"%23C16710\" d=\"M30.063 10.063h-1.125v.562h1.125v-.563Z\"/><path fill=\"%23D4A015\" d=\"M34 10.063h-3.938v.562H34v-.563Z\"/><path fill=\"%23C16710\" d=\"M34.563 10.063H34v.562h.563v-.563Z\"/><path fill=\"%23D4A015\" d=\"M37.938 10.063h-3.376v.562h3.376v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 10.625h-1.688v.563h1.688v-.563Z\"/><path fill=\"%23D4A015\" d=\"M33.438 10.625h-3.376v.563h3.375v-.563Z\"/><path fill=\"%23FFE939\" d=\"M35.125 10.625h-1.688v.563h1.688v-.563Z\"/><path fill=\"%23D4A015\" d=\"M37.938 10.625h-2.813v.563h2.813v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 11.188h-1.125v.562h1.125v-.563Z\"/><path fill=\"%23D4A015\" d=\"M34 11.188h-3.938v.562H34v-.563Z\"/><path fill=\"%23FFE939\" d=\"M34.563 11.188H34v.562h.563v-.563Z\"/><path fill=\"%23D4A015\" d=\"M37.938 11.188h-3.376v.562h3.376v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 11.75h-1.125v.563h1.125v-.563Z\"/><path fill=\"%23D4A015\" d=\"M34 11.75h-3.938v.563H34v-.563Z\"/><path fill=\"%23FFE939\" d=\"M34.563 11.75H34v.563h.563v-.563Z\"/><path fill=\"%23D4A015\" d=\"M37.938 11.75h-3.376v.563h3.376v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 12.313h-1.688v.562h1.688v-.563Z\"/><path fill=\"%23D4A015\" d=\"M34 12.313h-3.938v.562H34v-.563Z\"/><path fill=\"%23FFE939\" d=\"M34.563 12.313H34v.562h.563v-.563Z\"/><path fill=\"%23D4A015\" d=\"M37.938 12.313h-3.376v.562h3.376v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 12.875h-1.125v.563h1.125v-.563Z\"/><path fill=\"%23D4A015\" d=\"M34 12.875h-3.938v.563H34v-.563Z\"/><path fill=\"%23FFE939\" d=\"M34.563 12.875H34v.563h.563v-.563Z\"/><path fill=\"%23D4A015\" d=\"M37.938 12.875h-3.376v.563h3.376v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 13.438h-1.125V14h1.125v-.563Z\"/><path fill=\"%23D4A015\" d=\"M34 13.438h-3.938V14H34v-.563Z\"/><path fill=\"%23FFE939\" d=\"M34.563 13.438H34V14h.563v-.563Z\"/><path fill=\"%23D4A015\" d=\"M37.938 13.438h-3.376V14h3.376v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 14h-1.688v.563h1.688V14Z\"/><path fill=\"%23D08B11\" d=\"M40.188 14H30.062v.563h10.125V14Z\"/><path fill=\"%23C16710\" d=\"M30.063 14.563h-1.125v.562h1.125v-.563Z\"/><path fill=\"%23D08B11\" d=\"M37.938 14.563h-7.876v.562h7.875v-.563Z\"/><path fill=\"%23000\" d=\"M38.5 14.563h-.563v.562h.563v-.563Z\"/><path fill=\"%23D08B11\" d=\"M39.063 14.563H38.5v.562h.563v-.563Z\"/><path fill=\"%23000\" d=\"M39.625 14.563h-.563v.562h.563v-.563Z\"/><path fill=\"%23D08B11\" d=\"M40.188 14.563h-.563v.562h.563v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 15.125h-1.688v.563h1.688v-.563Z\"/><path fill=\"%23D08B11\" d=\"M31.188 15.125h-1.125v.563h1.125v-.563Z\"/><path fill=\"%23FFE939\" d=\"M31.75 15.125h-.563v.563h.563v-.563Z\"/><path fill=\"%23000\" d=\"M32.313 15.125h-.563v.563h.563v-.563Z\"/><path fill=\"%23FFE939\" d=\"M32.875 15.125h-.563v.563h.563v-.563Z\"/><path fill=\"%23000\" d=\"M33.438 15.125h-.563v.563h.563v-.563Z\"/><path fill=\"%23FFE939\" d=\"M34 15.125h-.563v.563H34v-.563Z\"/><path fill=\"%23000\" d=\"M34.563 15.125H34v.563h.563v-.563Z\"/><path fill=\"%23FFE939\" d=\"M35.125 15.125h-.563v.563h.563v-.563Z\"/><path fill=\"%23D08B11\" d=\"M40.188 15.125h-5.063v.563h5.063v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 15.688h-2.25v.562h2.25v-.563Z\"/><path fill=\"%23D08B11\" d=\"M40.188 15.688H30.062v.562h10.125v-.563Z\"/><path fill=\"%23C16710\" d=\"M30.063 16.25h-1.688v.563h1.688v-.563Z\"/><path fill=\"%23D08B11\" d=\"M40.188 16.25H30.062v.563h10.125v-.563Z\"/><path fill=\"%23C16710\" d=\"M28.938 16.813h-.563v.562h.563v-.563Zm1.125 0H29.5v.562h.563v-.563Z\"/><path fill=\"%23D08B11\" d=\"M37.938 16.813h-7.876v.562h7.875v-.563Z\"/><path fill=\"%23B9185C\" d=\"M34 11.188h-3.375v.562H34v-.563Zm3.938 0h-3.376v.562h3.376v-.563Zm-6.75.562h-.563v.563h.563v-.563Z\"/><path fill=\"%23fff\" d=\"M32.313 11.75h-1.126v.563h1.125v-.563Z\"/><path fill=\"%23000\" d=\"M33.438 11.75h-1.126v.563h1.126v-.563Z\"/><path fill=\"%23B9185C\" d=\"M34 11.75h-.563v.563H34v-.563Zm1.125 0h-.563v.563h.563v-.563Z\"/><path fill=\"%23fff\" d=\"M36.25 11.75h-1.125v.563h1.125v-.563Z\"/><path fill=\"%23000\" d=\"M37.375 11.75H36.25v.563h1.125v-.563Z\"/><path fill=\"%23B9185C\" d=\"M37.938 11.75h-.563v.563h.563v-.563Zm-6.75.563h-2.25v.562h2.25v-.563Z\"/><path fill=\"%23fff\" d=\"M32.313 12.313h-1.126v.562h1.125v-.563Z\"/><path fill=\"%23000\" d=\"M33.438 12.313h-1.126v.562h1.126v-.563Z\"/><path fill=\"%23B9185C\" d=\"M35.125 12.313h-1.688v.562h1.688v-.563Z\"/><path fill=\"%23fff\" d=\"M36.25 12.313h-1.125v.562h1.125v-.563Z\"/><path fill=\"%23000\" d=\"M37.375 12.313H36.25v.562h1.125v-.563Z\"/><path fill=\"%23B9185C\" d=\"M37.938 12.313h-.563v.562h.563v-.563Zm-8.438.562h-.563v.563h.563v-.563Zm1.688 0h-.563v.563h.563v-.563Z\"/><path fill=\"%23fff\" d=\"M32.313 12.875h-1.126v.563h1.125v-.563Z\"/><path fill=\"%23000\" d=\"M33.438 12.875h-1.126v.563h1.126v-.563Z\"/><path fill=\"%23B9185C\" d=\"M34 12.875h-.563v.563H34v-.563Zm1.125 0h-.563v.563h.563v-.563Z\"/><path fill=\"%23fff\" d=\"M36.25 12.875h-1.125v.563h1.125v-.563Z\"/><path fill=\"%23000\" d=\"M37.375 12.875H36.25v.563h1.125v-.563Z\"/><path fill=\"%23B9185C\" d=\"M37.938 12.875h-.563v.563h.563v-.563Zm-8.438.563h-.563V14h.563v-.563Zm1.688 0h-.563V14h.563v-.563Z\"/><path fill=\"%23fff\" d=\"M32.313 13.438h-1.126V14h1.125v-.563Z\"/><path fill=\"%23000\" d=\"M33.438 13.438h-1.126V14h1.126v-.563Z\"/><path fill=\"%23B9185C\" d=\"M34 13.438h-.563V14H34v-.563Zm1.125 0h-.563V14h.563v-.563Z\"/><path fill=\"%23fff\" d=\"M36.25 13.438h-1.125V14h1.125v-.563Z\"/><path fill=\"%23000\" d=\"M37.375 13.438H36.25V14h1.125v-.563Z\"/><path fill=\"%23B9185C\" d=\"M37.938 13.438h-.563V14h.563v-.563ZM34 14h-3.375v.563H34V14Zm3.938 0h-3.376v.563h3.376V14Z\"/><path fill=\"%23fff\" fill-opacity=\".3\" fill-rule=\"evenodd\" d=\"M35 5.5h-2c-1.408 0-2.435 0-3.243.066-.803.066-1.347.194-1.8.424a4.5 4.5 0 0 0-1.966 1.967c-.231.453-.359.997-.424 1.8-.067.808-.067 1.835-.067 3.243v2c0 1.408 0 2.435.067 3.243.065.803.193 1.347.424 1.8a4.5 4.5 0 0 0 1.966 1.966c.453.231.997.359 1.8.424.808.067 1.835.067 3.243.067h2c1.408 0 2.435 0 3.243-.067.803-.065 1.347-.193 1.8-.424a4.5 4.5 0 0 0 1.967-1.966c.23-.453.358-.997.424-1.8.066-.808.066-1.835.066-3.243v-2c0-1.408 0-2.435-.066-3.243-.066-.803-.194-1.347-.424-1.8a4.5 4.5 0 0 0-1.967-1.967c-.453-.23-.997-.358-1.8-.424C37.435 5.5 36.408 5.5 35 5.5Zm-9.455 2.23C25 8.8 25 10.2 25 13v2c0 2.8 0 4.2.545 5.27a5 5 0 0 0 2.185 2.185C28.8 23 30.2 23 33 23h2c2.8 0 4.2 0 5.27-.545a5 5 0 0 0 2.185-2.185C43 19.2 43 17.8 43 15v-2c0-2.8 0-4.2-.545-5.27a5 5 0 0 0-2.185-2.185C39.2 5 37.8 5 35 5h-2c-2.8 0-4.2 0-5.27.545a5 5 0 0 0-2.185 2.185Z\" clip-rule=\"evenodd\"/><path fill=\"%23564CBF\" d=\"M5 33c0-2.8 0-4.2.545-5.27a5 5 0 0 1 2.185-2.185C8.8 25 10.2 25 13 25h2c2.8 0 4.2 0 5.27.545a5 5 0 0 1 2.185 2.185C23 28.8 23 30.2 23 33v2c0 2.8 0 4.2-.545 5.27a5 5 0 0 1-2.185 2.185C19.2 43 17.8 43 15 43h-2c-2.8 0-4.2 0-5.27-.545a5 5 0 0 1-2.185-2.185C5 39.2 5 37.8 5 35v-2Z\"/><path fill=\"%23FF66B3\" d=\"M11.188 26.125h.562v2.813h.563v-2.813h.562V29.5h.563v-3.375H14V29.5h.563v-3.375h.562v2.813h.563v-2.813h.562v2.25h.563v-1.688h.562v2.25h-.563v.563h-.562v.563h-1.125v.562h-2.813v-.563h-1.124V29.5h-.563v-.563h-.563v-2.25h.563v1.688h.563v-2.25Z\"/><path fill=\"%23B3FFCC\" d=\"M13.438 30.625H14v.563h1.125v2.25h1.125v-.563h.563V34h-1.688v1.125h-.563v1.125h.563v5.625h-.563v-5.063H14v-.562h-1.688v-1.125h.563v.563H14v-1.126h.563V31.75h-1.126v-1.125Z\"/><path fill=\"%23000\" fill-opacity=\".9\" d=\"M16.25 26.125h.563v2.25h-.563v-2.25Zm-5.625.563h.563v1.687h-.563v-1.688Z\"/><path fill=\"%23000\" fill-opacity=\".9\" d=\"M17.938 26.688h-.563v2.25h-.563v.562h-.562v.563h.563V29.5h.562v-.563h.563v-2.25Zm-6.188-.563h.563v2.813h-.563v-2.813Zm3.938 0h-.563v2.813h.563v-2.813Zm-2.813 0h.563V29.5h-.563v-3.375Zm1.688 0H14V29.5h.563v-3.375Zm.562 3.938h.563v.562h-.563v-.563Zm-.562.562H14v.563h.563v-.563Zm.562.563h.563v2.25h-.563v-2.25Zm2.25 1.687h-.563V34h.563v-1.125ZM15.125 34h.563v1.125h-.563V34Zm0 2.25v-1.125h-.563v1.125h.563Zm0 0v5.625h.563V36.25h-.563Zm-2.25-1.125h.563v.563h-.563v-.563Z\"/><path fill=\"%23fff\" fill-opacity=\".12\" fill-rule=\"evenodd\" d=\"M15 25.5h-2c-1.408 0-2.435 0-3.243.067-.803.065-1.347.193-1.8.424a4.5 4.5 0 0 0-1.967 1.966c-.23.453-.358.997-.424 1.8C5.5 30.565 5.5 31.592 5.5 33v2c0 1.408 0 2.435.066 3.243.066.803.194 1.347.424 1.8a4.5 4.5 0 0 0 1.967 1.967c.453.23.997.358 1.8.424.808.066 1.835.066 3.243.066h2c1.408 0 2.435 0 3.243-.066.803-.066 1.347-.194 1.8-.424a4.5 4.5 0 0 0 1.966-1.967c.231-.453.359-.997.424-1.8.067-.808.067-1.835.067-3.243v-2c0-1.408 0-2.435-.067-3.243-.065-.803-.193-1.347-.424-1.8a4.5 4.5 0 0 0-1.966-1.966c-.453-.231-.997-.359-1.8-.424-.808-.067-1.835-.067-3.243-.067Zm-9.455 2.23C5 28.8 5 30.2 5 33v2c0 2.8 0 4.2.545 5.27a5 5 0 0 0 2.185 2.185C8.8 43 10.2 43 13 43h2c2.8 0 4.2 0 5.27-.545a5 5 0 0 0 2.185-2.185C23 39.2 23 37.8 23 35v-2c0-2.8 0-4.2-.545-5.27a5 5 0 0 0-2.185-2.185C19.2 25 17.8 25 15 25h-2c-2.8 0-4.2 0-5.27.545a5 5 0 0 0-2.185 2.185Z\" clip-rule=\"evenodd\"/><path fill=\"%23172D99\" d=\"M5 13c0-2.8 0-4.2.545-5.27A5 5 0 0 1 7.73 5.545C8.8 5 10.2 5 13 5h2c2.8 0 4.2 0 5.27.545a5 5 0 0 1 2.185 2.185C23 8.8 23 10.2 23 13v2c0 2.8 0 4.2-.545 5.27a5 5 0 0 1-2.185 2.185C19.2 23 17.8 23 15 23h-2c-2.8 0-4.2 0-5.27-.545a5 5 0 0 1-2.185-2.185C5 19.2 5 17.8 5 15v-2Z\"/><path fill=\"%2300A2D8\" fill-rule=\"evenodd\" d=\"M11.3 13.1H8.6v.9h2.7v-.9Zm0 .9h1.8v.9h.9v1.8h-.9v-.9h-.9v-.9h-.9V14Zm2.7 2.7h.9v2.7H14v-2.7Z\" clip-rule=\"evenodd\"/><path fill=\"%2300DE6F\" fill-rule=\"evenodd\" d=\"M11.3 12.2H8.6v.9h2.7v-.9Zm0 .9h1.8v.9h-1.8v-.9Zm2.7 1.8h-.9V14h.9v.9Zm.9 1.8H14v-1.8h.9v1.8Zm0 0h.9v2.7h-.9v-2.7Z\" clip-rule=\"evenodd\"/><path fill=\"%23FFEB00\" fill-rule=\"evenodd\" d=\"M11.3 11.3H8.6v.9h2.7v-.9Zm0 .9h1.8v.9h-1.8v-.9ZM14 14h-.9v-.9h.9v.9Zm.9.9H14V14h.9v.9Zm.9 1.8h-.9v-1.8h.9v1.8Zm0 0h.9v2.7h-.9v-2.7Z\" clip-rule=\"evenodd\"/><path fill=\"%23FA0\" fill-rule=\"evenodd\" d=\"M11.3 10.4H8.6v.9h2.7v-.9Zm0 .9H14v.9h.9v.9h.9v.9h.9v1.8h.9v3.6h-.9v-2.7h-.9v-1.8h-.9V14H14v-.9h-.9v-.9h-1.8v-.9Z\" clip-rule=\"evenodd\"/><path fill=\"%23DD3D1C\" fill-rule=\"evenodd\" d=\"M12.2 9.5H8.6v.9h2.7v.9H14v.9h.9v.9h.9v.9h.9v1.8h.9v3.6h.9v-3.6h-.9V14h-.9v-.9h-.9v-.9h-.9v-.9H14v-.9h-1.8v-.9Z\" clip-rule=\"evenodd\"/><path fill=\"%23C03078\" fill-rule=\"evenodd\" d=\"M12.2 8.6H8.6v.9h3.6v-.9Zm0 .9H14v.9h-1.8v-.9Zm5.4 4.5h-.9v-.9h-.9v-.9h-.9v-.9H14v-.9h1.8v.9h.9v.9h.9V14Zm.9 1.8h-.9V14h.9v1.8Zm0 0h.9v3.6h-.9v-3.6Z\" clip-rule=\"evenodd\"/><path fill=\"%23fff\" fill-opacity=\".12\" fill-rule=\"evenodd\" d=\"M15 5.5h-2c-1.408 0-2.435 0-3.243.066-.803.066-1.347.194-1.8.424A4.5 4.5 0 0 0 5.99 7.957c-.23.453-.358.997-.424 1.8C5.5 10.565 5.5 11.592 5.5 13v2c0 1.408 0 2.435.066 3.243.066.803.194 1.347.424 1.8a4.5 4.5 0 0 0 1.967 1.966c.453.231.997.359 1.8.424.808.067 1.835.067 3.243.067h2c1.408 0 2.435 0 3.243-.067.803-.065 1.347-.193 1.8-.424a4.5 4.5 0 0 0 1.966-1.966c.231-.453.359-.997.424-1.8.067-.808.067-1.835.067-3.243v-2c0-1.408 0-2.435-.067-3.243-.065-.803-.193-1.347-.424-1.8a4.5 4.5 0 0 0-1.966-1.967c-.453-.23-.997-.358-1.8-.424C17.435 5.5 16.408 5.5 15 5.5ZM5.545 7.73C5 8.8 5 10.2 5 13v2c0 2.8 0 4.2.545 5.27a5 5 0 0 0 2.185 2.185C8.8 23 10.2 23 13 23h2c2.8 0 4.2 0 5.27-.545a5 5 0 0 0 2.185-2.185C23 19.2 23 17.8 23 15v-2c0-2.8 0-4.2-.545-5.27a5 5 0 0 0-2.185-2.185C19.2 5 17.8 5 15 5h-2c-2.8 0-4.2 0-5.27.545A5 5 0 0 0 5.545 7.73Z\" clip-rule=\"evenodd\"/><path fill=\"%2399B3FF\" d=\"M48 36.5C48 42.851 42.851 48 36.5 48S25 42.851 25 36.5 30.149 25 36.5 25 48 30.149 48 36.5Z\"/><path fill=\"%23000\" fill-opacity=\".12\" fill-rule=\"evenodd\" d=\"M36.5 47.5c6.075 0 11-4.925 11-11s-4.925-11-11-11-11 4.925-11 11 4.925 11 11 11Zm0 .5C42.851 48 48 42.851 48 36.5S42.851 25 36.5 25 25 30.149 25 36.5 30.149 48 36.5 48Z\" clip-rule=\"evenodd\"/><path fill=\"%237F91EB\" d=\"M46 36.5a9.5 9.5 0 1 1-19 0 9.5 9.5 0 0 1 19 0Z\"/><path fill=\"%23000\" fill-opacity=\".12\" fill-rule=\"evenodd\" d=\"M36.5 45.5a9 9 0 1 0 0-18 9 9 0 0 0 0 18Zm0 .5a9.5 9.5 0 1 0 0-19 9.5 9.5 0 0 0 0 19Z\" clip-rule=\"evenodd\"/><path fill=\"%23fff\" fill-opacity=\".2\" fill-rule=\"evenodd\" d=\"M31.912 37.037a.5.5 0 0 1-.139-.665l4.298-7.13a.5.5 0 0 1 .856 0l4.297 7.13a.5.5 0 0 1-.137.664.5.5 0 0 1 .119.698l-4.3 6.055a.5.5 0 0 1-.815 0l-4.297-6.055a.5.5 0 0 1 .118-.697Zm.29.408 4.297 2.538 4.3-2.538-4.3 6.055-4.297-6.055Zm0-.815 4.297-7.13 4.297 7.13-4.297 2.54-4.297-2.54Z\" clip-rule=\"evenodd\"/><path fill=\"%23000\" fill-opacity=\".55\" d=\"M36.499 29.5v9.67l4.297-2.54-4.297-7.13Z\"/><path fill=\"%23000\" fill-opacity=\".3\" d=\"m36.499 29.5-4.297 7.13 4.297 2.54V29.5Z\"/><path fill=\"%23000\" fill-opacity=\".55\" d=\"M36.499 39.983V43.5l4.3-6.055-4.3 2.538Z\"/><path fill=\"%23000\" fill-opacity=\".3\" d=\"M36.499 43.5v-3.517l-4.297-2.538 4.297 6.055Z\"/><path fill=\"%23000\" d=\"m36.499 39.17 4.297-2.54-4.297-1.953v4.493Z\"/><path fill=\"%23000\" fill-opacity=\".6\" d=\"m32.202 36.63 4.297 2.54v-4.493l-4.297 1.953Z\"/><defs><linearGradient id=\"a\" x1=\"24\" x2=\"24\" y1=\"0\" y2=\"48\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"%23174299\"/><stop offset=\"1\" stop-color=\"%23001E59\"/></linearGradient><linearGradient id=\"b\" x1=\"24\" x2=\"24\" y1=\"0\" y2=\"48\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"%23D2D8E4\"/><stop offset=\"1\" stop-color=\"%23C2C9D6\"/></linearGradient></defs></svg>";
4
+
5
+ //#endregion
6
+ export { assets_default as default };
@@ -0,0 +1,6 @@
1
+ "use client";
2
+ //#region src/wallets/walletConnectors/base/base.svg
3
+ var base_default = "data:image/svg+xml,<svg width=\"96\" height=\"96\" viewBox=\"0 0 96 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M0 7.584C0 4.98628 0 3.68742 0.489468 2.68829C0.958114 1.73167 1.73167 0.958114 2.68829 0.489468C3.68742 0 4.98628 0 7.584 0H88.416C91.0137 0 92.3126 0 93.3117 0.489468C94.2683 0.958114 95.0419 1.73167 95.5105 2.68829C96 3.68742 96 4.98628 96 7.584V88.416C96 91.0137 96 92.3126 95.5105 93.3117C95.0419 94.2683 94.2683 95.0419 93.3117 95.5105C92.3126 96 91.0137 96 88.416 96H7.584C4.98628 96 3.68742 96 2.68829 95.5105C1.73167 95.0419 0.958114 94.2683 0.489468 93.3117C0 92.3126 0 91.0137 0 88.416V7.584Z\" fill=\"%230000FF\"/>%0A</svg>%0A";
4
+
5
+ //#endregion
6
+ export { base_default as default };
@@ -0,0 +1,151 @@
1
+
2
+ import { a as ConnectButtonProps, d as RainbowKitProviderProps, i as ConnectButton, m as AvatarComponentProps, n as WalletButtonProps, p as AvatarComponent, t as WalletButton, u as RainbowKitProvider } from "../WalletButton-DkkREZEg.js";
3
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
4
+
5
+ //#region src/components/Avatar/Avatar.d.ts
6
+ interface AvatarProps {
7
+ address: string;
8
+ loading?: boolean;
9
+ imageUrl?: string | null;
10
+ size: number;
11
+ }
12
+ declare function Avatar({
13
+ address,
14
+ imageUrl,
15
+ loading,
16
+ size
17
+ }: AvatarProps): _$react_jsx_runtime0.JSX.Element;
18
+ //#endregion
19
+ //#region src/components/Avatar/EmojiAvatar.d.ts
20
+ declare const EmojiAvatar: AvatarComponent;
21
+ //#endregion
22
+ //#region src/components/Avatar/emojiAvatarForAddress.d.ts
23
+ declare const avatars: readonly [{
24
+ readonly color: "#FC5C54";
25
+ readonly emoji: "🌶";
26
+ }, {
27
+ readonly color: "#FFD95A";
28
+ readonly emoji: "🤑";
29
+ }, {
30
+ readonly color: "#E95D72";
31
+ readonly emoji: "🐙";
32
+ }, {
33
+ readonly color: "#6A87C8";
34
+ readonly emoji: "🫐";
35
+ }, {
36
+ readonly color: "#5FD0F3";
37
+ readonly emoji: "🐳";
38
+ }, {
39
+ readonly color: "#FC5C54";
40
+ readonly emoji: "🤶";
41
+ }, {
42
+ readonly color: "#75C06B";
43
+ readonly emoji: "🌲";
44
+ }, {
45
+ readonly color: "#FFDD86";
46
+ readonly emoji: "🌞";
47
+ }, {
48
+ readonly color: "#5FC6D4";
49
+ readonly emoji: "🐒";
50
+ }, {
51
+ readonly color: "#FF949A";
52
+ readonly emoji: "🐵";
53
+ }, {
54
+ readonly color: "#FF8024";
55
+ readonly emoji: "🦊";
56
+ }, {
57
+ readonly color: "#9BA1A4";
58
+ readonly emoji: "🐼";
59
+ }, {
60
+ readonly color: "#EC66FF";
61
+ readonly emoji: "🦄";
62
+ }, {
63
+ readonly color: "#FF8CBC";
64
+ readonly emoji: "🐷";
65
+ }, {
66
+ readonly color: "#FF9A23";
67
+ readonly emoji: "🐧";
68
+ }, {
69
+ readonly color: "#FF949A";
70
+ readonly emoji: "🦩";
71
+ }, {
72
+ readonly color: "#C5DADB";
73
+ readonly emoji: "👽";
74
+ }, {
75
+ readonly color: "#FC5C54";
76
+ readonly emoji: "🎈";
77
+ }, {
78
+ readonly color: "#FF949A";
79
+ readonly emoji: "🍉";
80
+ }, {
81
+ readonly color: "#FFD95A";
82
+ readonly emoji: "🎉";
83
+ }, {
84
+ readonly color: "#A8CE63";
85
+ readonly emoji: "🐲";
86
+ }, {
87
+ readonly color: "#71ABFF";
88
+ readonly emoji: "🌎";
89
+ }, {
90
+ readonly color: "#FFE279";
91
+ readonly emoji: "🍊";
92
+ }, {
93
+ readonly color: "#B6B1B6";
94
+ readonly emoji: "🐭";
95
+ }, {
96
+ readonly color: "#FF6780";
97
+ readonly emoji: "🍣";
98
+ }, {
99
+ readonly color: "#FFD95A";
100
+ readonly emoji: "🐥";
101
+ }, {
102
+ readonly color: "#A575FF";
103
+ readonly emoji: "👾";
104
+ }, {
105
+ readonly color: "#A8CE63";
106
+ readonly emoji: "🥦";
107
+ }, {
108
+ readonly color: "#FC5C54";
109
+ readonly emoji: "👹";
110
+ }, {
111
+ readonly color: "#FFE279";
112
+ readonly emoji: "🙀";
113
+ }, {
114
+ readonly color: "#5FD0F3";
115
+ readonly emoji: "⛱";
116
+ }, {
117
+ readonly color: "#4D82FF";
118
+ readonly emoji: "⛵️";
119
+ }, {
120
+ readonly color: "#FFE279";
121
+ readonly emoji: "🥳";
122
+ }, {
123
+ readonly color: "#FF949A";
124
+ readonly emoji: "🤯";
125
+ }, {
126
+ readonly color: "#FFB35A";
127
+ readonly emoji: "🤠";
128
+ }];
129
+ declare function emojiAvatarForAddress(address: string): (typeof avatars)[number];
130
+ //#endregion
131
+ //#region src/components/AccountModal/AccountModal.d.ts
132
+ interface AccountModalProps {
133
+ open: boolean;
134
+ onClose: () => void;
135
+ }
136
+ declare function AccountModal({
137
+ onClose,
138
+ open
139
+ }: AccountModalProps): _$react_jsx_runtime0.JSX.Element | null;
140
+ //#endregion
141
+ //#region src/components/ChainModal/ChainModal.d.ts
142
+ interface ChainModalProps {
143
+ open: boolean;
144
+ onClose: () => void;
145
+ }
146
+ declare function ChainModal({
147
+ onClose,
148
+ open
149
+ }: ChainModalProps): _$react_jsx_runtime0.JSX.Element | null;
150
+ //#endregion
151
+ export { AccountModal, type AccountModalProps, Avatar, type AvatarProps, ChainModal, type ChainModalProps, ConnectButton, type ConnectButtonProps, EmojiAvatar, type AvatarComponentProps as EmojiAvatarProps, RainbowKitProvider, type RainbowKitProviderProps, WalletButton, type WalletButtonProps, emojiAvatarForAddress };