@vechain/vechain-kit 2.0.2 → 2.0.3

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 CHANGED
@@ -1,142 +1,52 @@
1
- #### An all-in-one library for building VeChain applications.
1
+ An all-in-one SDK for building frontend applications on VeChain, supporting wallet integration, developer hooks, pre-built UI components, and more.
2
2
 
3
3
  <div align="center">
4
- <img src="https://prod-vechainkit-docs-images-bucket.s3.eu-west-1.amazonaws.com/intro.png" alt="VeChain Kit Banner">
4
+ <img src="https://prod-vechainkit-docs-images-bucket.s3.eu-west-1.amazonaws.com/vechain-kit-v2-shocase.png" alt="VeChain Kit Banner">
5
5
  </div>
6
6
 
7
- ## Introduction
7
+ ### Introduction
8
8
 
9
- VeChain Kit is a comprehensive library designed to make building VeChain applications fast and straightforward.
9
+ VeChain Kit is a comprehensive SDK designed to make building frontend applications on VeChain fast and straightforward. It offers:
10
10
 
11
- It offers:
12
-
13
- - <b>Seamless Wallet Integration:</b> Support for VeWorld, Sync2, WalletConnect, VeChain Embedded Wallet, and social logins (powered by Privy).
14
- - <b>Unified Ecosystem Accounts:</b> Leverage Privy’s Ecosystem feature to give users a single wallet across multiple dApps, providing a consistent identity within the VeChain network.
11
+ - <b>Seamless Wallet Integration:</b> Support for VeWorld, Sync2, WalletConnect, and social logins.
15
12
  - <b>Developer-Friendly Hooks:</b> Easy-to-use React Hooks that let you read and write data on the VeChainThor blockchain.
13
+ - <b>Token Operations:</b> Send and swap tokens, check balances, manage VET domains, and more—all in one place.
16
14
  - <b>Pre-Built UI Components:</b> Ready-to-use components (e.g., TransactionModal) to simplify wallet operations and enhance your users’ experience.
17
- - <b>Multi-Language Support:</b> Built-in i18n for a global audience.
18
- - <b>Token Operations:</b> Send tokens, check balances, manage VET domains, and more—all in one place.
19
15
 
20
16
  > **Note**: Currently supports React and Next.js only
21
17
 
22
- 📚 For detailed documentation, visit our [VeChain Kit Docs](https://docs.vechainkit.vechain.org/)
23
-
24
- ## Demo & Examples
18
+ ### Resources
25
19
 
26
20
  - [Live Demo](https://vechainkit.vechain.org/)
27
- - [Sample Next.js App](https://github.com/vechain/vechain-kit/tree/main/examples/next-template)
28
- - [Smart Account Factory](https://vechain.github.io/smart-accounts/)
21
+ - [Documentation](https://docs.vechainkit.vechain.org/)
22
+
23
+ ### Quicks Start
29
24
 
30
- # Installation
25
+ #### Install dependencies
31
26
 
32
27
  ```bash
33
- yarn add @tanstack/react-query@"^5.64.2" @chakra-ui/react@"^2.8.2" @vechain/dapp-kit-react@"2.0.4" @vechain/vechain-kit
28
+ yarn add @tanstack/react-query@"^5.64.2" @chakra-ui/react@"^2.8.2" @vechain/dapp-kit-react@"2.1.0-rc.1" @vechain/vechain-kit
34
29
  ```
35
30
 
36
- # Quick Start
31
+ #### Basic Usage
37
32
 
38
- ### Define Provider
33
+ Wrap your app with the VeChainKitProvider:
39
34
 
40
35
  ```typescript
41
36
  'use client';
42
37
 
43
38
  import { VeChainKitProvider } from '@vechain/vechain-kit';
44
39
 
45
- export function VeChainKitProviderWrapper({ children }: Props) {
40
+ export function Providers({ children }: { children: React.ReactNode }) {
46
41
  return (
47
- <VechainKitProvider
48
- feeDelegation={{
49
- delegatorUrl: process.env.NEXT_PUBLIC_DELEGATOR_URL!,
50
- }}
51
- loginMethods={[
52
- { method: 'vechain', gridColumn: 4 },
53
- { method: 'dappkit', gridColumn: 4 },
54
- ]}
55
- dappKit={{
56
- allowedWallets: ['veworld', 'wallet-connect', 'sync2'],
57
- walletConnectOptions: {
58
- projectId:
59
- // Get this on https://cloud.reown.com/sign-in
60
- process.env.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID!,
61
- metadata: {
62
- name: 'Your App Name',
63
- description:
64
- 'This is the description of your app visible in VeWorld upon connection request.',
65
- url:
66
- typeof window !== 'undefined'
67
- ? window.location.origin
68
- : '',
69
- icons: ['https://path-to-logo.png'],
70
- },
71
- },
72
- }}
73
- darkMode={true}
74
- language="en"
75
- network={{
76
- type: 'main',
77
- }}
78
- >
42
+ <VeChainKitProvider network={{ type: 'test' }}>
79
43
  {children}
80
- </VechainKitProvider>
44
+ </VeChainKitProvider>
81
45
  );
82
46
  }
83
47
  ```
84
48
 
85
- On Next.js you will need to dynamically load the import
86
-
87
- ```typescript
88
- import dynamic from 'next/dynamic';
89
- const VeChainKitProvider = dynamic(
90
- async () => (await import('@vechain/vechain-kit')).VeChainKitProvider,
91
- {
92
- ssr: false,
93
- },
94
- );
95
- interface Props {
96
- children: React.ReactNode;
97
- }
98
- ```
99
-
100
- ### Login Methods
101
-
102
- The modal implements a dynamic grid layout system that can be customized through the `loginMethods` configuration.
103
-
104
- The modal can be configured through the `VeChainKitProvider` props.
105
-
106
- ```typescript
107
- <VeChainKitProvider
108
- loginModalUI={{
109
- logo: '/your-logo.png',
110
- description: 'Custom login description',
111
- }}
112
- loginMethods={[
113
- { method: 'vechain', gridColumn: 4 },
114
- { method: 'dappkit', gridColumn: 4 }, // VeChain wallets, always available
115
- { method: 'ecosystem', gridColumn: 4 }, // Mugshot, Cleanify, Greencart, ...
116
- { method: 'email', gridColumn: 2 }, // only available with your own Privy
117
- { method: 'passkey', gridColumn: 2 }, // only available with your own Privy
118
- { method: 'google', gridColumn: 4 }, // only available with your own Privy
119
- { method: 'more', gridColumn: 2 }, // will open your own Privy login, only available with your own Privy
120
- ]}
121
- allowCustomTokens={false} // allow the user to manage custom tokens
122
- >
123
- {children}
124
- </VeChainKitProvider>
125
- ```
126
-
127
- ### Setup Fee Delegation (mandatory if allowing social login)
128
-
129
- Fee delegation is mandatory if you want to use this kit with social login. Learn how to setup fee delegation in the following guide:
130
-
131
- [Fee Delegation](https://docs.vechainkit.vechain.org/vechain-kit/fee-delegation)
132
-
133
- ### Show the login button
134
-
135
- Once you set up the kit provider, you are good to go, and you can allow your users to login, customizing the login experience based on your needs.
136
-
137
- #### Wallet Button
138
-
139
- You can use this component by importing it from the kit, it will handle for you the connection state and show a login button if the user is disconnected or the profile button when the user is connected.
49
+ #### Login
140
50
 
141
51
  ```typescript
142
52
  'use client';
@@ -148,181 +58,10 @@ export function Page() {
148
58
  }
149
59
  ```
150
60
 
151
- #### Custom button
152
-
153
- Alternatively, you can create your own custom button and invoke the connect modal or account modal based on your needs.
154
-
155
- ```typescript
156
- 'use client';
157
-
158
- import {
159
- useConnectModal,
160
- useAccountModal,
161
- useWallet,
162
- } from '@vechain/vechain-kit';
163
-
164
- export function Page() {
165
- const { connection } = useWallet();
166
-
167
- const {
168
- open: openConnectModal,
169
- close: closeConnectModal,
170
- isOpen: isConnectModalOpen,
171
- } = useConnectModal();
172
-
173
- const {
174
- open: openAccountModal,
175
- close: openAccountModal,
176
- isOpen: isAccountModalOpen,
177
- } = useAccountModal();
178
-
179
- if (!connection.isConnected) {
180
- return <button onClick={openConnectModal}> Connect </button>;
181
- }
182
-
183
- return <button onClick={openAccountModal}> View Account </button>;
184
- }
185
- ```
186
-
187
- # Hooks
188
-
189
- The kit provides hooks for developers to interact with smart contracts like VeBetterDAO, VePassport, veDelegate, and price oracles.
190
-
191
- The hooks in this package provide a standardized way to interact with various blockchain and web services. All hooks are built using TanStack Query (formerly React Query), which provides powerful data-fetching and caching capabilities.
192
-
193
- ## Main Hooks
194
-
195
- ### useWallet
196
-
197
- The `useWallet` hook will be the one you will use more frequently and it provides quite a few useful informations like the connected account, the connected wallet, the smart account, the dappkit wallet, the embedded wallet, the cross app wallet, the privy user and the connection status.
198
-
199
- ```typescript
200
- import { useWallet } from "@vechain/vechain-kit";
201
-
202
- function MyComponent = () => {
203
- const {
204
- account,
205
- connectedWallet,
206
- smartAccount,
207
- connection,
208
- disconnect
209
- } = useWallet();
210
-
211
- return <></>
212
- }
213
- ```
214
-
215
- ### useSendTransaction
216
-
217
- This hook will take care of checking your connection type and handle the transaction submission between privy, cross-app and wallet connections.
218
- When implementing VeChain Kit it is mandatory to use this hook to send transaction.
219
-
220
- ```typescript
221
- 'use client';
222
-
223
- import {
224
- useWallet,
225
- useSendTransaction,
226
- getConfig
227
- } from '@vechain/vechain-kit';
228
- import { IB3TR__factory } from '@vechain/vechain-kit/contracts';
229
- import { humanAddress } from '@vechain/vechain-kit/utils';
230
- import { useMemo, useCallback } from 'react';
231
-
232
- export function TransactionExamples() {
233
- const { account } = useWallet();
234
- const b3trMainnetAddress = getConfig("main").b3trContractAddress;
235
-
236
- const clauses = useMemo(() => {
237
- const B3TRInterface = IB3TR__factory.createInterface();
238
-
239
- const clausesArray: any[] = [];
240
- clausesArray.push({
241
- to: b3trMainnetAddress,
242
- value: '0x0',
243
- data: B3TRInterface.encodeFunctionData('transfer', [
244
- "0x0, // receiver address
245
- '0', // 0 B3TR (in wei)
246
- ]),
247
- comment: `This is a dummy transaction to test the transaction modal. Confirm to transfer ${0} B3TR to ${humanAddress("Ox0")}`,
248
- abi: B3TRInterface.getFunction('transfer'),
249
- });
250
-
251
- return clausesArray;
252
- }, [connectedWallet?.address]);
253
-
254
- const {
255
- sendTransaction,
256
- status,
257
- txReceipt,
258
- resetStatus,
259
- isTransactionPending,
260
- error,
261
- } = useSendTransaction({
262
- signerAccountAddress: account?.address ?? '',
263
- });
264
-
265
- // This is the function triggering the transaction and opening the modal
266
- const handleTransaction = useCallback(async () => {
267
- openTransactionModal();
268
- await sendTransaction(clauses);
269
- }, [sendTransaction, clauses, openTransactionModal]);
270
-
271
- return (
272
- <>
273
- <button
274
- onClick={handleTransactionWithModal}
275
- isLoading={isTransactionPending}
276
- isDisabled={isTransactionPending}
277
- >
278
- Send B3TR
279
- </button>
280
- </>
281
- );
282
- }
283
- ```
284
-
285
- ## Blockchain Data Reading
286
-
287
- The kit provides hooks for developers to interact with smart contracts like VeBetterDAO, VePassport, veDelegate, and price oracles. These hooks work with react-query, improving query capabilities by caching responses and offering real-time states like isLoading and isError. This helps developers manage and update user interfaces effectively, ensuring a responsive experience.
288
-
289
-
290
- ### Contract Getters Package
291
-
292
- VeChain Kit now makes use of and maintains two external packages:
293
-
294
- * [`contract-getters`](https://www.npmjs.com/package/@vechain/contract-getters) — standardized methods for fetching blockchain data
295
- * [`contracts-types`](https://www.npmjs.com/package/@vechain/vechain-contract-types) — TypeScript contract interfaces and type definitions
296
-
297
- The `contract-getters` package provides efficient methods for:
298
-
299
- * **Avatar Management**: Retrieve user avatars and profile information
300
- * **Token Balances**: Fetch B3TR and VOT3 balances
301
- * **Domain Services**: Resolve domain addresses or get user-owned domains
302
- * **Smart Contract Data**: Access information from core VeChain ecosystem contracts
303
-
304
- Together, these packages ensure consistent data-fetching patterns across the ecosystem and deliver optimized queries for better performance.
305
-
306
- ### Usage Example
307
-
308
- For example you can use `useGetB3trBalance` to get the balance of the user's wallet which is using `getB3trbalance` from `contract-getters`:
309
-
310
- ```typescript
311
- import { useGetB3trBalance } from '@vechain/vechain-kit';
312
-
313
- const { data: balance, isLoading, isError } = useGetB3trBalance('0x.....');
314
-
315
- console.log(balance.formatted, balance.original, balance.scaled);
316
- ```
317
-
318
- # Resources
319
-
320
- Read the complete documentation on [VeChain Kit Docs](https://docs.vechainkit.vechain.org/)
321
-
322
- Are you having issues using the kit? Join our discord server to receive support from our devs or open an issue on our Github!
323
-
324
- Check our [Troubleshooting](https://docs.vechainkit.vechain.org/vechain-kit/troubleshooting) section.
61
+ # Troubleshooting
325
62
 
326
- Contact us on [Discord](https://discord.gg/wGkQnPpRVq)
63
+ Are you having issues using the kit?
327
64
 
328
- Open an issue on [Github](https://github.com/vechain/vechain-kit/issues)
65
+ - Check our [Troubleshooting](https://docs.vechainkit.vechain.org/vechain-kit/troubleshooting) section.
66
+ - Contact us on [Discord](https://discord.gg/wGkQnPpRVq)
67
+ - Open an issue on [Github](https://github.com/vechain/vechain-kit/issues)
@@ -1,2 +1,2 @@
1
- import { C as TwitterLogo, S as VechainLogo, T as GoogleLogo, _ as VechainIcon, a as VeWorldLogoDark, b as VechainLogoLight, c as VETLogo, d as VeBetterIcon, f as VeBetterLogoDark, g as VechainIconLight, h as VechainIconDark, i as PrivyLogo, l as VeBetterIconDark, m as VeBetterLogo, n as BetterSwapLogo, o as VeWorldLogoLight, p as VeBetterLogoLight, r as VechainEnergy, s as VTHOLogo, t as VeTradeLogo, u as VeBetterIconLight, v as VechainLogoHorizontalLight, w as GitHubLogo, x as VechainLogoDark, y as VechainLogoHorizontalDark } from "../index--hSO7Xv4.mjs";
1
+ import { C as TwitterLogo, S as VechainLogo, T as GoogleLogo, _ as VechainIcon, a as VeWorldLogoDark, b as VechainLogoLight, c as VETLogo, d as VeBetterIcon, f as VeBetterLogoDark, g as VechainIconLight, h as VechainIconDark, i as PrivyLogo, l as VeBetterIconDark, m as VeBetterLogo, n as BetterSwapLogo, o as VeWorldLogoLight, p as VeBetterLogoLight, r as VechainEnergy, s as VTHOLogo, t as VeTradeLogo, u as VeBetterIconLight, v as VechainLogoHorizontalLight, w as GitHubLogo, x as VechainLogoDark, y as VechainLogoHorizontalDark } from "../index-CWViOs1U.mjs";
2
2
  export { BetterSwapLogo, GitHubLogo, GoogleLogo, PrivyLogo, TwitterLogo, VETLogo, VTHOLogo, VeBetterIcon, VeBetterIconDark, VeBetterIconLight, VeBetterLogo, VeBetterLogoDark, VeBetterLogoLight, VeTradeLogo, VeWorldLogoDark, VeWorldLogoLight, VechainEnergy, VechainIcon, VechainIconDark, VechainIconLight, VechainLogo, VechainLogoDark, VechainLogoHorizontalDark, VechainLogoHorizontalLight, VechainLogoLight };
@@ -1,6 +1,6 @@
1
1
  import { BoxProps, IconProps, ImageProps } from "@chakra-ui/react";
2
2
  import React from "react";
3
- import * as react_jsx_runtime6 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime49 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/assets/icons/GoogleLogo/GoogleLogo.d.ts
6
6
  type Props$22 = {
@@ -121,7 +121,7 @@ declare const BetterSwapLogo: ({
121
121
  }: {
122
122
  boxSize?: string;
123
123
  [key: string]: any;
124
- }) => react_jsx_runtime6.JSX.Element;
124
+ }) => react_jsx_runtime49.JSX.Element;
125
125
  //#endregion
126
126
  //#region src/assets/icons/VeTradeLogo/VeTradeLogo.d.ts
127
127
  declare const VeTradeLogo: ({
@@ -130,7 +130,7 @@ declare const VeTradeLogo: ({
130
130
  }: {
131
131
  boxSize?: string;
132
132
  [key: string]: any;
133
- }) => react_jsx_runtime6.JSX.Element;
133
+ }) => react_jsx_runtime49.JSX.Element;
134
134
  //#endregion
135
135
  export { TwitterLogo as C, VechainLogo as S, GoogleLogo as T, VechainIcon as _, VeWorldLogoDark as a, VechainLogoLight as b, VETLogo as c, VeBetterIcon as d, VeBetterLogoDark as f, VechainIconLight as g, VechainIconDark as h, PrivyLogo as i, VeBetterIconDark as l, VeBetterLogo as m, BetterSwapLogo as n, VeWorldLogoLight as o, VeBetterLogoLight as p, VechainEnergy as r, VTHOLogo as s, VeTradeLogo as t, VeBetterIconLight as u, VechainLogoHorizontalLight as v, GitHubLogo as w, VechainLogoDark as x, VechainLogoHorizontalDark as y };
136
- //# sourceMappingURL=index--hSO7Xv4.d.mts.map
136
+ //# sourceMappingURL=index-CWViOs1U.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index--hSO7Xv4.d.mts","names":[],"sources":["../src/assets/icons/GoogleLogo/GoogleLogo.tsx","../src/assets/icons/GitHubLogo/GitHubLogo.tsx","../src/assets/icons/TwitterLogo/TwitterLogo.tsx","../src/assets/icons/VechainLogo/VechainLogo.tsx","../src/assets/icons/VechainLogo/VechainLogoDark.tsx","../src/assets/icons/VechainLogo/VechainLogoLight.tsx","../src/assets/icons/VechainLogo/VechainLogoHorizontalDark.tsx","../src/assets/icons/VechainLogo/VechainLogoHorizontalLight.tsx","../src/assets/icons/VechainLogo/VechainIcon.tsx","../src/assets/icons/VechainLogo/VechainIconLight.tsx","../src/assets/icons/VechainLogo/VechainIconDark.tsx","../src/assets/icons/VechainLogo/VeBetterLogo.tsx","../src/assets/icons/VechainLogo/VeBetterLogoLight.tsx","../src/assets/icons/VechainLogo/VeBetterLogoDark.tsx","../src/assets/icons/VechainLogo/VeBetterIcon.tsx","../src/assets/icons/VechainLogo/VeBetterIconLight.tsx","../src/assets/icons/VechainLogo/VeBetterIconDark.tsx","../src/assets/icons/VechainLogo/VETLogo.tsx","../src/assets/icons/VechainLogo/VTHOLogo.tsx","../src/assets/icons/VechainLogo/VeWorldLogoLight.tsx","../src/assets/icons/VechainLogo/VeWorldLogoDark.tsx","../src/assets/icons/PrivyLogo/PrivyLogo.tsx","../src/assets/icons/VechainEnergy/VechainEnergy.tsx","../src/assets/icons/BetterSwapLogo/BetterSwapLogo.tsx","../src/assets/icons/VeTradeLogo/VeTradeLogo.tsx"],"sourcesContent":[],"mappings":";;;;;KAIK,QAAA;;IAED,KAAK;AAFJ,cAIQ,UAFJ,EAEgB,KAAA,CAAM,EAF3B,CAE8B,QAF1B,CAAA;;;KCHH,QAAA;;IAED,KAAK;ADDJ,cCSQ,UDPJ,ECOgB,KAAA,CAAM,EDP3B,CCO8B,QDP1B,CAAA;;;KEFH,QAAA;;;AFHqB,CAAA,GEMtB,IFHC,CEGI,QFHC,EAAA,yBAEF,CAAA;AAEK,cECA,WFDqB,EECR,KAAA,CAAM,EFDP,CECU,QFDJ,CAAE;;;KGJ5B,QAAA;;IAED,KAAK;AHFJ,cGIQ,WHFJ,EGEiB,KAAA,CAAM,EHF5B,CGE+B,QHF3B,CAAA;;;KIHH,QAAA,GAAQ,KAAK;cAEL,iBAAiB,KAAA,CAAM,GAAG;;;KCFlC,QAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCFnC,QAAA,GAAQ,KAAK;cAEL,2BAA2B,KAAA,CAAM,GAAG;;;KCF5C,QAAA,GAAQ,KAAK;cAEL,4BAA4B,KAAA,CAAM,GAAG;;;KCA7C,QAAA;;IAED,KAAK;ARHJ,cQKQ,WRHJ,EQGiB,KAAA,CAAM,ERH5B,CQG+B,QRH3B,CAAA;;;KSHH,QAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCFnC,QAAA,GAAQ,KAAK;cAEL,iBAAiB,KAAA,CAAM,GAAG;;;KCAlC,QAAA;;IAED,KAAK;AXHJ,cWKQ,YXHJ,EWGkB,KAAA,CAAM,EXHzB,CWG4B,QXH5B,CAAA;;;KYHH,QAAA,GAAQ,KAAK;cAEL,mBAAmB,KAAA,CAAM,GAAG;;;KCFpC,OAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCAnC,OAAA;;IAED,KAAK;AdHJ,ccKQ,YdHJ,EcGkB,KAAA,CAAM,EdHzB,CcG4B,OdH5B,CAAA;;;KeHH,OAAA,GAAQ,KAAK;cAEL,mBAAmB,KAAA,CAAM,GAAG;;;KCFpC,OAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCFnC,OAAA,GAAQ,KAAK;cAEL,SAAS,KAAA,CAAM,GAAG;;;KCF1B,OAAA,GAAQ,KAAK;cAEL,UAAU,KAAA,CAAM,GAAG;;;KCF3B,OAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCFnC,OAAA,GAAQ,KAAK;cAEL,iBAAiB,KAAA,CAAM,GAAG;;;KCFlC,OAAA;;IAED,KAAK;ArBDJ,cqBGQ,SrBDJ,EqBCe,KAAA,CAAM,ErBD1B,CqBC6B,OrBDzB,CAAA;;;KsBFH,KAAA;;;AtBHqB,CAAA,GsBMtB,ItBHC,CsBGI,QtBHC,EAAA,yBAEF,CAAA;AAEK,csBCA,atBDqB,EsBCN,KAAA,CAAM,EtBDT,CsBCY,KtBDJ,CAAA;;;cuBNpB;;;;;;MAA0F,kBAAA,CAAA,GAAA,CAAA;;;cCA1F;;;;;;MAAuF,kBAAA,CAAA,GAAA,CAAA"}
1
+ {"version":3,"file":"index-CWViOs1U.d.mts","names":[],"sources":["../src/assets/icons/GoogleLogo/GoogleLogo.tsx","../src/assets/icons/GitHubLogo/GitHubLogo.tsx","../src/assets/icons/TwitterLogo/TwitterLogo.tsx","../src/assets/icons/VechainLogo/VechainLogo.tsx","../src/assets/icons/VechainLogo/VechainLogoDark.tsx","../src/assets/icons/VechainLogo/VechainLogoLight.tsx","../src/assets/icons/VechainLogo/VechainLogoHorizontalDark.tsx","../src/assets/icons/VechainLogo/VechainLogoHorizontalLight.tsx","../src/assets/icons/VechainLogo/VechainIcon.tsx","../src/assets/icons/VechainLogo/VechainIconLight.tsx","../src/assets/icons/VechainLogo/VechainIconDark.tsx","../src/assets/icons/VechainLogo/VeBetterLogo.tsx","../src/assets/icons/VechainLogo/VeBetterLogoLight.tsx","../src/assets/icons/VechainLogo/VeBetterLogoDark.tsx","../src/assets/icons/VechainLogo/VeBetterIcon.tsx","../src/assets/icons/VechainLogo/VeBetterIconLight.tsx","../src/assets/icons/VechainLogo/VeBetterIconDark.tsx","../src/assets/icons/VechainLogo/VETLogo.tsx","../src/assets/icons/VechainLogo/VTHOLogo.tsx","../src/assets/icons/VechainLogo/VeWorldLogoLight.tsx","../src/assets/icons/VechainLogo/VeWorldLogoDark.tsx","../src/assets/icons/PrivyLogo/PrivyLogo.tsx","../src/assets/icons/VechainEnergy/VechainEnergy.tsx","../src/assets/icons/BetterSwapLogo/BetterSwapLogo.tsx","../src/assets/icons/VeTradeLogo/VeTradeLogo.tsx"],"sourcesContent":[],"mappings":";;;;;KAIK,QAAA;;IAED,KAAK;AAFJ,cAIQ,UAFJ,EAEgB,KAAA,CAAM,EAF3B,CAE8B,QAF1B,CAAA;;;KCHH,QAAA;;IAED,KAAK;ADDJ,cCSQ,UDPJ,ECOgB,KAAA,CAAM,EDP3B,CCO8B,QDP1B,CAAA;;;KEFH,QAAA;;;AFHqB,CAAA,GEMtB,IFHC,CEGI,QFHC,EAAA,yBAEF,CAAA;AAEK,cECA,WFDqB,EECR,KAAA,CAAM,EFDP,CECU,QFDJ,CAAE;;;KGJ5B,QAAA;;IAED,KAAK;AHFJ,cGIQ,WHFJ,EGEiB,KAAA,CAAM,EHF5B,CGE+B,QHF3B,CAAA;;;KIHH,QAAA,GAAQ,KAAK;cAEL,iBAAiB,KAAA,CAAM,GAAG;;;KCFlC,QAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCFnC,QAAA,GAAQ,KAAK;cAEL,2BAA2B,KAAA,CAAM,GAAG;;;KCF5C,QAAA,GAAQ,KAAK;cAEL,4BAA4B,KAAA,CAAM,GAAG;;;KCA7C,QAAA;;IAED,KAAK;ARHJ,cQKQ,WRHJ,EQGiB,KAAA,CAAM,ERH5B,CQG+B,QRH3B,CAAA;;;KSHH,QAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCFnC,QAAA,GAAQ,KAAK;cAEL,iBAAiB,KAAA,CAAM,GAAG;;;KCAlC,QAAA;;IAED,KAAK;AXHJ,cWKQ,YXHJ,EWGkB,KAAA,CAAM,EXHzB,CWG4B,QXH5B,CAAA;;;KYHH,QAAA,GAAQ,KAAK;cAEL,mBAAmB,KAAA,CAAM,GAAG;;;KCFpC,OAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCAnC,OAAA;;IAED,KAAK;AdHJ,ccKQ,YdHJ,EcGkB,KAAA,CAAM,EdHzB,CcG4B,OdH5B,CAAA;;;KeHH,OAAA,GAAQ,KAAK;cAEL,mBAAmB,KAAA,CAAM,GAAG;;;KCFpC,OAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCFnC,OAAA,GAAQ,KAAK;cAEL,SAAS,KAAA,CAAM,GAAG;;;KCF1B,OAAA,GAAQ,KAAK;cAEL,UAAU,KAAA,CAAM,GAAG;;;KCF3B,OAAA,GAAQ,KAAK;cAEL,kBAAkB,KAAA,CAAM,GAAG;;;KCFnC,OAAA,GAAQ,KAAK;cAEL,iBAAiB,KAAA,CAAM,GAAG;;;KCFlC,OAAA;;IAED,KAAK;ArBDJ,cqBGQ,SrBDJ,EqBCe,KAAA,CAAM,ErBD1B,CqBC6B,OrBDzB,CAAA;;;KsBFH,KAAA;;;AtBHqB,CAAA,GsBMtB,ItBHC,CsBGI,QtBHC,EAAA,yBAEF,CAAA;AAEK,csBCA,atBDqB,EsBCN,KAAA,CAAM,EtBDT,CsBCY,KtBDJ,CAAA;;;cuBNpB;;;;;;MAA0F,mBAAA,CAAA,GAAA,CAAA;;;cCA1F;;;;;;MAAuF,mBAAA,CAAA,GAAA,CAAA"}