@vechain/vechain-kit 2.10.0 → 2.10.1
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 +91 -41
- package/dist/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-Bekk3wer.d.cts → index-BjQrND59.d.mts} +4 -4
- package/dist/{index-Bekk3wer.d.cts.map → index-BjQrND59.d.mts.map} +1 -1
- package/dist/{index-BvuXDx6d.d.mts → index-C8Uj8ple.d.cts} +4 -4
- package/dist/{index-BvuXDx6d.d.mts.map → index-C8Uj8ple.d.cts.map} +1 -1
- package/dist/{index-DqmXn4Mz.d.mts → index-Gsp1h6d7.d.mts} +51 -51
- package/dist/{index-DqmXn4Mz.d.mts.map → index-Gsp1h6d7.d.mts.map} +1 -1
- package/dist/{index-lFyi52Xi.d.cts → index-aWHEC3vV.d.cts} +51 -51
- package/dist/{index-lFyi52Xi.d.cts.map → index-aWHEC3vV.d.cts.map} +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,29 +4,77 @@ An all-in-one SDK for building frontend applications on VeChain, supporting wall
|
|
|
4
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
|
-
|
|
7
|
+
## What's inside
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
- **Seamless Wallet Integration:** VeWorld, Sync2, WalletConnect, and social logins (Google, Apple, GitHub, X/Twitter, Discord, TikTok, LINE, email, passkey via Privy).
|
|
10
|
+
- **Custom Connection UI:** A themeable connect modal owns the VeWorld and Sync2 flows end-to-end. WalletConnect's QR modal is preserved.
|
|
11
|
+
- **Developer-Friendly Hooks:** Easy-to-use React Hooks that let you read and write data on VeChainThor.
|
|
12
|
+
- **Pre-Built UI Components:** TransactionModal, ProfileModal, SendTokenModal — drop them in and go.
|
|
13
|
+
- **Token Operations:** Send, swap, check balances, manage VET domains.
|
|
10
14
|
|
|
11
|
-
|
|
12
|
-
- <b>Custom Connection UI:</b> A built-in, themeable connect modal owns the VeWorld and Sync2 flows end-to-end (no dapp-kit modal hand-off). WalletConnect's QR modal is preserved.
|
|
13
|
-
- <b>Developer-Friendly Hooks:</b> Easy-to-use React Hooks that let you read and write data on the VeChainThor blockchain.
|
|
14
|
-
- <b>Token Operations:</b> Send and swap tokens, check balances, manage VET domains, and more—all in one place.
|
|
15
|
-
- <b>Pre-Built UI Components:</b> Ready-to-use components (e.g., TransactionModal) to simplify wallet operations and enhance your users’ experience.
|
|
15
|
+
> **Note:** Currently supports React and Next.js only.
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
## Start with AI (recommended)
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
The fastest path is to hand a prompt to your coding agent (Claude Code, Cursor, or any agent). The prompts below tell the agent to read the relevant [VeChain AI Skill](https://github.com/vechain/vechain-ai-skills) first so it follows current conventions.
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
### 🚀 Start a new VeChain dApp
|
|
22
|
+
|
|
23
|
+
```text
|
|
24
|
+
Before doing anything, read these VeChain AI Skills so you follow current conventions:
|
|
25
|
+
- create-vechain-dapp: https://github.com/vechain/vechain-ai-skills/tree/main/skills/create-vechain-dapp
|
|
26
|
+
- vechain-kit: https://github.com/vechain/vechain-ai-skills/tree/main/skills/vechain-kit
|
|
27
|
+
|
|
28
|
+
Now the task:
|
|
29
|
+
|
|
30
|
+
Scaffold a new VeChain dApp for me using create-vechain-dapp, with:
|
|
31
|
+
- VeChain Kit pre-wired (Privy social login: Google + email, plus VeWorld and WalletConnect)
|
|
32
|
+
- Chakra UI v3 (with next-themes) and dark mode by default — follow the next-chakra-v3 example in the vechain-kit repo for wiring the kit's `theme` prop via `useChakraContext().token.var(...)` so theme tokens stay reactive
|
|
33
|
+
- A landing page that shows the connected user's address, B3TR balance, and a "Send B3TR" button
|
|
34
|
+
- A GitHub Pages deploy workflow ready to use
|
|
35
|
+
|
|
36
|
+
Name the project "my-vechain-dapp". When done, run `yarn dev` and tell me the URL.
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Or: add VeChain Kit to an existing project
|
|
40
|
+
|
|
41
|
+
```text
|
|
42
|
+
Before doing anything, read this VeChain AI Skill so you follow current conventions:
|
|
43
|
+
- vechain-kit: https://github.com/vechain/vechain-ai-skills/tree/main/skills/vechain-kit
|
|
44
|
+
|
|
45
|
+
Now the task:
|
|
46
|
+
|
|
47
|
+
I already have a Next.js app and I want to add VeChain Kit to it.
|
|
48
|
+
|
|
49
|
+
1. Install @vechain/vechain-kit and any required peer deps.
|
|
50
|
+
2. Find my root layout (app/layout.tsx for App Router or pages/_app.tsx for Pages Router) and wrap it with VeChainKitProvider.
|
|
51
|
+
3. Enable Privy social login (Google + email), VeWorld and WalletConnect.
|
|
52
|
+
4. Read Privy keys from NEXT_PUBLIC_PRIVY_* and the WalletConnect projectId from NEXT_PUBLIC_WC_PROJECT_ID.
|
|
53
|
+
5. Add a <WalletButton /> to my existing header.
|
|
54
|
+
6. Don't change my existing Chakra theme.
|
|
55
|
+
|
|
56
|
+
If you hit peer-dependency conflicts, stop and tell me before applying any fix.
|
|
57
|
+
```
|
|
23
58
|
|
|
24
|
-
###
|
|
59
|
+
### Why this works
|
|
25
60
|
|
|
26
|
-
|
|
61
|
+
[VeChain AI Skills](https://github.com/vechain/vechain-ai-skills) give your coding agent up-to-date domain knowledge (wallet UX, smart contracts, VeBetterDAO, StarGate, and more). Install once:
|
|
27
62
|
|
|
28
|
-
|
|
63
|
+
```bash
|
|
64
|
+
npx skills add vechain/vechain-ai-skills
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Or in Claude Code:
|
|
68
|
+
|
|
69
|
+
```text
|
|
70
|
+
/plugin marketplace add vechain/vechain-ai-skills
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Browse all 11 skills and try each in context: <https://playground.vechainkit.vechain.org/ai-skills>.
|
|
74
|
+
|
|
75
|
+
## Manual install
|
|
29
76
|
|
|
77
|
+
Prefer to wire it yourself?
|
|
30
78
|
|
|
31
79
|
```bash
|
|
32
80
|
yarn add @vechain/vechain-kit \
|
|
@@ -38,30 +86,21 @@ yarn add @vechain/vechain-kit \
|
|
|
38
86
|
framer-motion@^11.15.0
|
|
39
87
|
```
|
|
40
88
|
|
|
89
|
+
Wrap your app with the provider:
|
|
41
90
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
Wrap your app with the VeChainKitProvider:
|
|
45
|
-
|
|
46
|
-
```typescript
|
|
91
|
+
```tsx
|
|
47
92
|
'use client';
|
|
48
93
|
|
|
49
94
|
import { VeChainKitProvider } from '@vechain/vechain-kit';
|
|
50
95
|
|
|
51
96
|
export function Providers({ children }: { children: React.ReactNode }) {
|
|
52
|
-
return
|
|
53
|
-
<VeChainKitProvider>
|
|
54
|
-
{children}
|
|
55
|
-
</VeChainKitProvider>
|
|
56
|
-
);
|
|
97
|
+
return <VeChainKitProvider>{children}</VeChainKitProvider>;
|
|
57
98
|
}
|
|
58
99
|
```
|
|
59
100
|
|
|
60
|
-
|
|
101
|
+
Add a wallet button anywhere:
|
|
61
102
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
```typescript
|
|
103
|
+
```tsx
|
|
65
104
|
'use client';
|
|
66
105
|
|
|
67
106
|
import { WalletButton } from '@vechain/vechain-kit';
|
|
@@ -71,6 +110,7 @@ export function Page() {
|
|
|
71
110
|
}
|
|
72
111
|
```
|
|
73
112
|
|
|
113
|
+
That's it — your app is ready to connect to VeChain mainnet with VeWorld.
|
|
74
114
|
|
|
75
115
|
#### Customize the login modal
|
|
76
116
|
|
|
@@ -78,29 +118,39 @@ The connect modal renders a grid of login methods. Reorder, hide, or swap them v
|
|
|
78
118
|
|
|
79
119
|
```tsx
|
|
80
120
|
<VeChainKitProvider
|
|
81
|
-
privy={{
|
|
82
|
-
|
|
121
|
+
privy={{
|
|
122
|
+
appId: '...',
|
|
123
|
+
clientId: '...',
|
|
124
|
+
loginMethods: ['google', 'apple', 'email'],
|
|
125
|
+
appearance: { /* ... */ },
|
|
126
|
+
}}
|
|
127
|
+
dappKit={{
|
|
128
|
+
allowedWallets: ['veworld', 'sync2', 'wallet-connect'],
|
|
129
|
+
walletConnectOptions: { /* ... */ },
|
|
130
|
+
}}
|
|
83
131
|
loginMethods={[
|
|
84
|
-
{ method: 'veworld', gridColumn: 4 },
|
|
132
|
+
{ method: 'veworld', gridColumn: 4 }, // primary CTA (filled, recommended)
|
|
85
133
|
{ method: 'google', gridColumn: 4 },
|
|
86
134
|
{ method: 'apple', gridColumn: 4 },
|
|
87
|
-
{ method: 'more', gridColumn: 4 },
|
|
135
|
+
{ method: 'more', gridColumn: 4 }, // opens an in-modal sub-view
|
|
88
136
|
]}
|
|
89
|
-
// Optional: theme the brand accent (spinner, focus rings, "Waiting for signature…" headline)
|
|
90
137
|
theme={{ accent: '#3b82f6' }}
|
|
91
138
|
>
|
|
92
139
|
```
|
|
93
140
|
|
|
94
|
-
Available `method` values: `veworld`, `sync2`, `wallet-connect`, `google`, `apple`, `github`, `email`, `passkey`, `vechain` (cross-app), `ecosystem`, `more`, and the legacy `dappkit
|
|
141
|
+
Available `method` values: `veworld`, `sync2`, `wallet-connect`, `google`, `apple`, `github`, `email`, `passkey`, `vechain` (cross-app), `ecosystem`, `more`, and the legacy `dappkit`.
|
|
95
142
|
|
|
96
|
-
For
|
|
143
|
+
For full configuration options see the [documentation](https://docs.vechainkit.vechain.org/) or try every feature live in the [playground](https://playground.vechainkit.vechain.org/).
|
|
97
144
|
|
|
98
|
-
|
|
145
|
+
## Resources
|
|
99
146
|
|
|
100
|
-
|
|
147
|
+
- [VeKit Playground](https://playground.vechainkit.vechain.org/) — interactive demos + code + AI prompts for every kit feature
|
|
148
|
+
- [Homepage](https://vechainkit.vechain.org/)
|
|
149
|
+
- [Documentation](https://docs.vechainkit.vechain.org/)
|
|
150
|
+
- [VeChain AI Skills](https://github.com/vechain/vechain-ai-skills)
|
|
101
151
|
|
|
102
|
-
|
|
152
|
+
## Troubleshooting
|
|
103
153
|
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
- Open an issue on
|
|
154
|
+
- [Troubleshooting docs](https://docs.vechainkit.vechain.org/vechain-kit/troubleshooting)
|
|
155
|
+
- [Discord](https://discord.gg/wGkQnPpRVq)
|
|
156
|
+
- [Open an issue on GitHub](https://github.com/vechain/vechain-kit/issues)
|
package/dist/assets/index.d.cts
CHANGED
|
@@ -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-
|
|
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-C8Uj8ple.cjs";
|
|
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 };
|
package/dist/assets/index.d.mts
CHANGED
|
@@ -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-
|
|
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-BjQrND59.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
|
|
3
|
+
import * as react_jsx_runtime53 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
|
-
}) =>
|
|
124
|
+
}) => react_jsx_runtime53.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
|
-
}) =>
|
|
133
|
+
}) => react_jsx_runtime53.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-
|
|
136
|
+
//# sourceMappingURL=index-BjQrND59.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-BjQrND59.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;;;KCDlC,OAAA;;IAED,KAAK;ArBFJ,cqBIQ,SrBFJ,EqBEe,KAAA,CAAM,ErBF1B,CqBE6B,OrBFzB,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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BoxProps, IconProps, ImageProps } from "@chakra-ui/react";
|
|
2
2
|
import React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime5 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
|
-
}) =>
|
|
124
|
+
}) => react_jsx_runtime5.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
|
-
}) =>
|
|
133
|
+
}) => react_jsx_runtime5.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-
|
|
136
|
+
//# sourceMappingURL=index-C8Uj8ple.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-C8Uj8ple.d.cts","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;;;KCDlC,OAAA;;IAED,KAAK;ArBFJ,cqBIQ,SrBFJ,EqBEe,KAAA,CAAM,ErBF1B,CqBE6B,OrBFzB,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"}
|