Wrap the app with our new provider
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
If you have an app with some custom login (eg: login with email, login with google, etc.) and you want to use this kit and migrate your users you will need to:
Create your Privy app
Manually add your users or use Privy's APIs
Please refer to this documentation to import users through Privy APIs: https://docs.privy.io/reference/sdk/server-auth/classes/PrivyClient#importuser
3) Toggle the "Pregenerate EVM Wallet" so an embedded wallet will be created and associated to the user.
4) If your users where logging in with social you may need to ask them to associate that social login method after they login first time with their email.
VeChain Kit is a comprehensive library designed to make building VeChain applications fast and straightforward. It offers:
Seamless Wallet Integration: Support for VeWorld, Sync2, WalletConnect, VeChain Embedded Wallet, and social logins (powered by Privy).
Unified Ecosystem Accounts: Leverage Privy’s Ecosystem feature to give users a single wallet across multiple dApps, providing a consistent identity within the VeChain network.
Developer-Friendly Hooks: Easy-to-use React Hooks that let you read and write data on the VeChainThor blockchain.
Pre-Built UI Components: Ready-to-use components (e.g., TransactionModal
) to simplify wallet operations and enhance your users’ experience.
Multi-Language Support: Built-in i18n for a global audience.
Token Operations: Send tokens, check balances, manage VET domains, and more—all in one place.
Easier Integration We provide a standardized “kit” that quickly integrates social logins and VeChain Smart Accounts—without the hassle of manual contract deployment or configuration.
Try It! Get started with our developer tools, including React Hooks, UI components, and out-of-the-box identity management, to effortlessly build your next VeChain-powered dApp.
VeChain Kit Demo: https://vechain-kit.vechain.org/
Smart Account Factory: https://vechain.github.io/smart-accounts-factory/
NPM: https://www.npmjs.com/package/@vechain/vechain-kit
Check our Troubleshooting section.
Contact us on Discord: https://discord.gg/wGkQnPpRVq
Open an issue on Github: https://github.com/vechain/vechain-kit/issues
@vechain/vechain-kit
@vechain/vechain-kit/utils
@vechain/vechain-kit/contracts
@vechain/vechain-kit/assets
1) Install and overwrite the Provider.
2) Replace all imports of @vechain/dapp-kit-react
@vechain/dapp-kit
and @vechain/dapp-kit-ui
with @vechain/vechain-kit.
3) Wherever you use the account
property from the useWallet()
hook you need to access the user address differently:
4) Use the useSendTransaction()
hook from @vechain/vechain-kit
to send your transactions to the network.
Read how to use the hook here.
6) If you use useConnex() by importing from dapp-kit, import it from vechain-kit.
7) If you are using certificate signing to authenticate your users with your backend to issue a jwt/session token you will need to switch to use signTypedData instead, since Privy and Smart Accounts does not support the VeChain certificate authentication signature type. Read how to do here.
8) Double-check your yarn.lock
to see that all the @vechain/dapp-kit-react
@vechain/dapp-kit
and @vechain/dapp-kit-ui
installs are using the the 1.5.0 version.
Remove all installations of @vechain/dapp-kit @vechain/dapp-kit-ui and @vechain/dapp-kit-react from your app. If you need some specific hooks or methods from dapp-kit you can import them directly from the @vechain/vechain-kit.
This hook will take care of checking your connection type and handle the transaction submission between privy, cross-app and wallet connections.
When implementing VeChain Kit it is mandatory to use this hook to send transaction.
Use our pre built TransactionModal
or TransactionToast
components to show your users the progress and outcome of the transaction, or build your own UX and UI.
You can build clauses with some of our available build functions, with our SDK or with connex.
If you want to interact directly with the user's smart account read the Smart Accounts section.
Important
Ensuring data is pre-fetched before initiating a transaction is crucial to avoid browser pop-up blocking for users using social login, which can adversely affect user experience.
Upgrading to Smart Account v3 unlocks multi-clause support, enhanced security, and other essential features for transactions on VeChain. This feature is available in VeChain Kit from v1.5.0.
When integrating social login in your app, users might have a version 1 smart account. This version doesn’t support multiclause transactions, potentially causing issues within your app.
To address this scenario, consider wrapping your onClick
handler or using another suitable method to prompt users to upgrade their smart accounts to version 3.
The kit makes available both the hooks to know if the upgrade is required and the component for upgrading:
useUpgradeRequired(smartAccountAddress, ownerAddress, targetVersion: 3)
is the hook that will let you know if the user is on v1 and needs to upgrade to v3
useUpgradeSmartAccountModal()
is the hook that will allow you to open the upgrade modal, that the user will use to upgrade.
You can also handle this with your own UI by using the useUpgradeSmartAccount(smartAccountAddress, targetVersion: 3)
hook.
View other useful hooks here.
You can customize the color button and size of the imported modal from the kit:
VeChain Kit supports 3 types of connections:
This connection type is often used by organizations like VeBetterDAO, Cleanify, and Greencart. When connected, users can back up their embedded wallets, sign transactions without confirmation prompts, and add login methods. By connecting with Privy, developers use their personal APP_ID and CLIENT_ID to create their own app on Privy.
When users integrate VeChain-kit using "Login with VeChain" and "Ecosystem" logins (eg: Mugshot and Greencart), this will be the default connection type. It is easily recognizable because login and wallet activities will open a secured popup window where the owner of the wallet will approve the actions.
This connection type allows login with self custody wallets, and is using the dapp-kit package under the hood.
The available wallets are: VeWorld mobile, VeWorld extension, Sync2, and Wallet Connect for VeWorld mobile.
If you want to use vechain-kit but do not care about social login then you can skip the first login modal and directly show the "Connect Wallet" modal like this:
When your app is opened inside VeWorld mobile wallet, VeWorld is always enforced as a login choice.
When installing the kit or migrating from DApp Kit, you may encounter some issues during the transition. We are committed to making this process as seamless as possible and appreciate your patience. To assist you, we've compiled a list of common problems and solutions below. If your issue is not addressed here, please reach out to us on our Discord channel or open an issue ticket on our GitHub repository for further assistance.
Discord: https://discord.gg/wGkQnPpRVq
Github: https://github.com/vechain/vechain-kit/issues
Ensure that your project's peer dependencies align with the specifications outlined by the kit. This might require updating or downgrading certain packages to maintain compatibility. In some cases, these issues can also be resolved by cleaning your project's build artifacts or deleting your node_modules
directory and reinstalling your packages. If you still face challenges, consider reaching out to the community support forums or reviewing the kit's official documentation for further guidance.
The VeChain Kit components are each wrapped in their own Chakra Provider (v2), ensuring consistent styling throughout the modal. Remember to utilize Chakra's theme options for styling your app. Be aware that conflicts may arise if you also use Chakra in your app.
Even if you do not use Chakra in your app it could still be necessary to install it as a peer dependency and add to the list of your providers. You can keep using whatever frontend framework you wish, the important is to define the provider.
The important part:
If you were already using fee delegation in your app you should remove that and use the one handled by the kit. You just need to provide the FEE_DELEGATION_URL in the provider.
If you want to delegate all transactions, also for veworld users, you need to set delegateAllTransactions
to true
.
If you do not remove your own delegation then transactions could fail because your transaction will delegate 2 times, will have 2 signatures and an incorrect format.
Whenever we need to open the privy confirmation popup (in crossapp connection) if we do operations after we trigger the onClick
function (like fetching some data and then asking privy to sign message) it creates a latency that web browsers will interpret as malicious and will block the popup.
Ensuring data is pre-fetched before initiating a transaction is crucial to avoid browser pop-up blocking for users using social login, which can adversely affect user experience.
Only supported on React and Next.js
React query, chakra and dapp-kit are peer dependencies.
On Next.js you will need to dynamically load the import
The modal implements a dynamic grid layout system that can be customized through the loginMethods
configuration.
The modal can be configured through the VeChainKitProvider
props.
Login methods selection:
vechain, dappkit, and ecosystem are always available options
The Privy-dependent methods (email, google, passkey, more) are only available when the privy prop is defined
TypeScript will show an error if someone tries to use a Privy-dependent method when privy is not configured
Fee delegation is mandatory if you want to use this kit with social login. Learn how to setup fee delegation in the following guide:
If you have your own Privy app, you can pass an additional prop with your settings.
Go to privy.io and create an app. You will find the APP ID and the CLIENT ID in the App Settings tab.
For further information on how to implement Privy SDK please refer to their docs: https://docs.privy.io/
This project uses:
@privy-io/react-auth for Privy connection type
@privy-io/cross-app-connect for ecosystem cross app connection
You can import privy from the kit as
If you setup your own Privy be sure to go over the recommended security settings provided by Privy: https://docs.privy.io/guide/security/implementation/ and https://docs.privy.io/guide/security/implementation/csp
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. You can choose between many options, leaving you complete freedom on your design.
Only available for apps with self hosted Privy .
This is an example of doing login with Google custom button, for more in depth details read here.
You can allow users connect to your app only with wallet by using the dapp-kit connect modal, as follows:
When your app is opened inside VeWorld mobile wallet, VeWorld is always enforced as a login choice.
Are you having issues using the kit? Join our discord server to receive support from our devs or open an issue on our Github!
Check our Troubleshooting section.
Contact us on Discord: https://discord.gg/wGkQnPpRVq
Open an issue on Github: https://github.com/vechain/vechain-kit/issues
The useWallet
hook provides a unified interface for managing wallet connections in a VeChain application, supporting multiple connection methods including social logins (via Privy), direct wallet connections (via DappKit), and cross-application connections.
This will be the hook you will use more frequently and it provides quite a few useful informations.
account: Wallet
The primary account being used. This will be either:
The smart account (if connected via Privy)
The wallet address (if connected via DappKit)
smartAccount: SmartAccount
Information about the user's smart account:
address
: The smart account address
domain
: Associated VeChain domain name
image
: Generated avatar image
isActive
: Whether this is the currently active account
version
: Smart account contract version
When the user is connected with Privy account
will always be equal to the smartAccount
.
connectedWallet: Wallet
The currently connected wallet, regardless of connection method (can be both a Privy Embedded Wallet or a self custody Wallet connected trough VeWorld or Sync2):
address
: Wallet address
domain
: Associated VeChain domain name
image
: Generated avatar image
privyUser: User | null
The Privy user object if connected via Privy, null otherwise
connection: ConnectionState
Current connection state information:
isConnected
: Overall connection status
isLoading
: Whether connection is in progress
isConnectedWithSocialLogin
: Connected via Privy (no crossapp)
isConnectedWithDappKit
: Connected via DappKit
isConnectedWithCrossApp
: Connected via cross-app
isConnectedWithPrivy
: Connected via Privy (social or cross-app)
isConnectedWithVeChain
: Connected with VeChain cross-app
source
: Connection source information
isInAppBrowser
: Whether your app is running in VeWorld app browser
nodeUrl
: Current node URL (if provided by you in the provider, otherwise default in use by VeChain Kit)
delegatorUrl
: Fee delegation service URL setted by you in the provider
chainId
: Current chain ID
network
: Network type (mainnet/testnet/custom)
disconnect(): Promise<void>
This function terminates the current wallet connection, ensuring cleanup of connection details and triggering necessary event listeners for state updates.
The hook supports three main connection types:
Social Login (privy
): Authentication via social providers with your own APP_ID
Wallet Connection (wallet
): Direct wallet connection via DappKit
Cross-App (privy-cross-app
): Connection through ecosystem integration
The hook dispatches a wallet_disconnected
event when the wallet is disconnected, which can be used to trigger UI updates in dependent components.
The hooks offer tools for efficient smart account management:
useGetAccountAddress
: Retrieves the smart account's address linked to the wallet.
useGetAccountVersion
: Retrieces the smart account's version even if the account is not deployed yet
useSmartAccountVersion
: Retrieves the smart account's version, but only if it is already deployed, and it will revert for v1 smart accounts (because function was not implemented in that smart contract)
useSmartAccount
: Retrieves the the account of an owner, returning additional information
useAccountImplementationAddress
: Returns the implementation address of a specific version; this hook is useful when upgrading the smart account of the user
useCurrentAccountImplementationVersion
: Returns the latest (and currently used) implementation version of the smart accounts used by the factory
useUpgradeRequired
: Returns if a smart account needs an upgrade (even if it's not yet deployed)
useUpgradeRequiredForAccount
: As above but only if the account is not yet deployed
useIsSmartAccountDeployed
: Verifies the deployment status of the smart account.
useHasV1SmartAccount
: Checks for a legacy version's existence.
useUpgradeSmartAccount
: Hook to create a transaction to upgrade the smart account to a specific version
useGetTokenUsdPrice
A React hook that fetches the current USD price for supported tokens (B3TR, VET, VTHO) from the VeChain oracle contract.
Fetch the price for the following token symbols: 'B3TR', 'VET', 'VTHO'.
The hook returns a TanStack Query result object with the following properties:
The hook internally:
Uses the VeChain oracle contract to fetch real-time price data
Automatically handles network configuration (mainnet/testnet)
Caches results using TanStack Query
Only fetches when both Thor connection and network type are available
The kit provides hooks for developers to interact with smart contracts like VeBetterDAO, VePassport, veDelegate, and price oracles.
Every hook in the @api
directory returns a consistent interface that includes:
data
: The fetched data
isLoading
: Boolean indicating if the request is in progress
isError
: Boolean indicating if the request failed
error
: Error object if the request failed
refetch
: Function to manually trigger a new fetch
isRefetching
: Boolean indicating if a refetch is in progress
Additionally, these hooks integrate with TanStack Query's global features:
Automatic background refetching
Cache invalidation
Optimistic updates
Infinite queries (for pagination)
Parallel queries
Query retrying
Query polling
All hooks use consistent query key patterns, making it easy to invalidate related queries. For example:
By default, most queries are configured with:
staleTime
: How long the data remains "fresh"
cacheTime
: How long inactive data remains in cache
refetchInterval
: For automatic background updates (if applicable)
These can be customized using TanStack Query's global configuration or per-hook options.
With every name come a set of records. These records are key value pairs that can be used to store information about the profile. Think of this as a user's digital backpack. Utalized for storage of preferences, public details, and more.
Here are some of the most commonly used records:
Currently there are a few records that have been standardised. However you are welcome to store any key value pair you desire. We generally recommend to stick to a pattern, or prefix things with your app or protocol (eg. com.discord
, or org.reddit
), as such to avoid collisions.
One of the newer standardised records is the "header" record. This header record, similar to the avatar record, accepts any IPFS, Arweave, EIP155, or regular URL to an image resource. The image is then displayed as a banner on the profile page and tends to be in a 1:3 aspect ratio.
When records are loaded they are loaded from the resolver responsible for the name. As resolvers are user controlled, we cannot guarantee a write function is available. This makes it a more in-depth process to update a users records.
useCurrentBlock()
Fetches the current block from the blockchain with automatic updates.
Features:
Auto-refreshes every 10 seconds
Caches data for 1 minute
Returns the latest block information as Connex.Thor.Block
Example:
useTxReceipt()
Polls the blockchain for a transaction receipt until it is found or times out.
Parameters:
txId: (string) The transaction ID to monitor
blockTimeout: (optional number) Number of blocks to wait before timing out (default: 5)
Returns:
data: Transaction receipt (Connex.Thor.Transaction.Receipt)
isLoading: Boolean indicating if the receipt is being fetched
error: Error object if the operation fails
Example:
getEvents()
Fetches events from the blockchain based on specified criteria.
getAllEvents()
Iteratively fetches all events matching the criteria, handling pagination automatically.
Parameters for getEvents/getAllEvents:
nodeUrl: VeChain node URL
thor: Thor client instance
filterCriteria: Array of event filter criteria
order: Sort order ('asc' or 'desc')
from: Starting block number
to: Ending block number
offset: (getEvents only) Number of events to skip
limit: (getEvents only) Maximum number of events to return
These hooks and functions are designed to work with the VeChain blockchain and require the VeChain Kit context to be properly set up in your application.
The hooks provide tools for interacting with VeBetterDAO's smart contracts and features:
useB3trDonated
: Fetches the amount of B3TR tokens donated for a given token ID
useB3trToUpgrade
: Retrieves the amount of B3TR tokens required to upgrade a specific token
useB3trToUpgradeToLevel
: Gets the amount of B3TR needed to upgrade to a specific level
useGMBaseUri
: Retrieves the base URI for the Galaxy Member NFT metadata
useGMMaxLevel
: Fetches the maximum level possible for Galaxy Member NFTs
useGMbalance
: Gets the number of GM NFTs owned by an address
useGetNodeIdAttached
: Retrieves the Vechain Node Token ID attached to a given GM Token ID
useGetTokenIdAttachedToNode
: Gets the GM Token ID attached to a given Vechain Node ID
useGetTokensInfoByOwner
: Fetches token information for a specific owner with infinite scrolling support
useIsGMclaimable
: Determines if a user can claim a GM NFT
useLevelMultiplier
: Gets the reward multiplier for a specific GM level
useLevelOfToken
: Retrieves the level of a specified token
useParticipatedInGovernance
: Checks if an address has participated in governance
useSelectedGmNft
: Comprehensive hook for retrieving data related to a Galaxy Member NFT
useSelectedTokenId
: Gets the selected token ID for the selected galaxy member
useTokenIdByAccount
: Retrieves the token ID for an address given an index
useGetNodeManager
: Gets the address of the user managing a node ID (endorsement) either through ownership or delegation
useVotingRewards
: Manages voting rewards functionality
useVotingRoundReward
: Handles rewards for specific voting rounds
Sign a string, eg "Hello VeChain", with the useSignMessage()
hook.
Use the useSignTypedData()
hook to sign structured data.
To authenticate users in your backend (BE) and issue them a JWT (JSON Web Token), you may need to check that the connected user actually holds the private keys of that wallet (assuring he is not pretending to be someone else).
The recommended approach is to use signTypedData
to have the user sign a piece of structured data, ensuring the signed payload is unique for each authentication request.
When using Privy the user owns a smart account (which is a smart contract), and he cannot directly sign a message with the smart account but needs to do it with his Embedded Wallet (the wallet created and secured by Privy). This means that when you verify identities of users connected with social login you will need to check that the address that signed the message is actually the owner of the smart account.
Create a provider that will handle the signature verification.
Wrap the app with our new provider
Handle the signature within a custom hook
On your backend validate the signature as follows:
You should deprecate this:
isDeployed
: Whether the smart account is deployed; smart accounts can be deployed on demand to avoid spending money on non active users. Learn more about smart accounts .
The hooks in this package provide a standardized way to interact with various blockchain and web services. All hooks are built using (formerly React Query), which provides powerful data-fetching and caching capabilities.
This is protocol build by ENS domains and supported by veDelegate. Follow for more information.
data
number
The current token price in USD.
isLoading
boolean
Indicates if the query is currently loading.
error
Error | null
Describes any error that occurred during query.
isError
boolean
Indicates if there was an error in the query.
display
Preferred capitalization
Luc.eth
avatar
Avatar or logo (see Avatars)
ipfs://dQw4w9WgXcQ
description
Description of the name
DevRel @ ENS Labs
keywords
List of comma-separated keywords
person, ens
Email address
Physical mailing address
V3X HQ
notice
Notice regarding this name
This is a notice
location
Generic location (e.g. "Toronto, Canada")
Breda, NL
phone
Phone number as an E.164 string
+1 234 567 890
url
Website URL
header
Image URL to be used as a header/banner
ipfs://dQw4w9WgXcQ
The hooks provide utility functions for interacting with the VeChain network and tokens:
useGetChainId
: Retrieves the chain ID from the genesis block of the connected network
useGetNodeUrl
: Returns the node URL being used, either custom or default for the network
useGetCustomTokenBalances
: Fetches balances for multiple custom tokens for a given address, returning original, scaled, and formatted values
useGetCustomTokenInfo
: Retrieves token information (name, symbol, decimals) for a custom token address
The hooks provide tools for interacting with the B3TR indexer service, offering sustainability and voting data:
useSustainabilityActions
: Fetches sustainability actions with pagination for a user or app, returning detailed impact data including:
Environmental metrics (carbon, water, energy)
Waste metrics (mass, items, reduction)
Social impact (biodiversity, people)
Resource conservation (timber, plastic)
Educational impact (learning time)
Activity metrics (trees planted, calories burned)
Energy metrics (clean energy production)
Health metrics (sleep quality)
useRoundAppVotes
: Retrieves voting results for a specific round, including:
Number of voters
Total votes cast
App-specific voting data
Round statistics
The hooks provide tools for interacting with IPFS (InterPlanetary File System):
useIpfsImage
: Fetches NFT media from IPFS, supporting various image formats (JPEG, PNG, GIF, etc.)
useIpfsImageList
: Fetches multiple IPFS images in parallel
useSingleImageUpload
: Handles single image upload with optional compression
useUploadImages
: Manages multiple image uploads with compression support
useIpfsMetadata
: Fetches and optionally parses JSON metadata from IPFS
useIpfsMetadatas
: Fetches multiple IPFS metadata files in parallel
The hooks provide tools for interacting with NFTs (Non-Fungible Tokens) on VeChain:
useNFTImage
: Fetches NFT image and metadata from IPFS, handling the complete flow from token ID to final image
useNFTMetadataUri
: Retrieves the metadata URI for an NFT using its token ID
The hooks provide tools for interacting with VET domains and their functionality:
useVechainDomain
: Resolves VET domains to addresses and vice versa, returning domain info and validation status
useIsDomainProtected
: Checks if a domain is protected from claiming
useGetDomainsOfAddress
: Gets all domains owned by an address, with optional parent domain filtering
useGetTextRecords
: Gets all text records for a domain
useGetAvatar
: Gets the avatar URL for a domain. This hook will return directly the URL of the image, removing the need for developers to convert the URI to URL manually. The response can be null if the domain name does not exist or if there is no avatar attached to this domain.
useGetAvatarOfAddress
: This hook will check if the address has any primary domain name set, if yes it will fetch and return the avatar URL (again, no need to manually convert URI to URL, the hook does it). If there is no domain name attached to it or if there is no avatar attached to the domain, it will return the Picasso image.
useGetResolverAddress
: Gets the resolver contract address for a domain
useUpdateTextRecord
: Updates text records for a domain with transaction handling
useClaimVeWorldSubdomain
: Claims a VeWorld subdomain with transaction handling and success/error callbacks
The hooks provide tools for handling transactions on VeChain:
useSendTransaction
: Core hook for sending any transaction, supporting both Privy and VeChain wallets
useTransferERC20
: Hook for sending ERC20 token transfers
useTransferVET
: Hook for sending native VET token transfers
The hooks provide authentication methods for VeChain applications:
useLoginWithPasskey
: Hook for authenticating using passkeys (biometric/device-based authentication)
useLoginWithOAuth
: Hook for authenticating using OAuth providers (Google, Twitter, Apple, Discord)
useLoginWithVeChain
: Hook for authenticating using VeChain wallet
This button acts both as a login button and as an account button (when the user is already logged).
VeChain Kit provides multiple ways to customize the UI components. Here are some examples of different button styles and variants.
Usage example
The ProfileCard component provides a comprehensive display of user profile information, including avatar, domain, social links, and customization options.
Customizable header with generated background
Avatar display with domain integration
Social links integration (Email, Website, Twitter/X)
Address display with copy functionality
Edit and logout options for connected accounts
Dark/Light mode support
The hooks provide tools for signing messages and typed data on VeChain:
useSignMessage
: Hook for signing plain text messages, supporting both Privy and VeChain wallets
useSignTypedData
: Hook for signing typed data (EIP-712), supporting both Privy and VeChain wallets
The hook offers a versatile suite of components for seamless integration into web applications. Below are some of the key components:
WalletButton: Dynamically triggers either a login or account modal based on the user's connection status.
ProfileCard: Displays essential details, including an avatar, description, and social links linked to a user's address.
Transaction Visibility:
TransactionModal
TransactionToast
AccountModal: Allows users to explore specific sections as needed.
DAppKitWalletButton: Provides a focused interface for selecting wallet connection options.
These components collectively enhance user interaction and streamline.
The hooks provide tools for managing various modals in the VeChain application:
useAccountModal
: Core account modal management
useProfileModal
: Show the user only his profile, with customize and logout option
useAccountCustomizationModal
: Account customization settings
useAccessAndSecurityModal
: Security settings and access management
useChooseNameModal
: Account name selection
useUpgradeSmartAccountModal
: Smart account upgrade management
useConnectModal
: Wallet connection modal
useWalletModal
: Combined wallet management modal
useLoginModalContent
: Login modal content configuration
useTransactionModal
: Transaction confirmation and status
useTransactionToast
: Transaction notifications
useSendTokenModal
: Token transfer interface
useReceiveModal
: Token receiving interface
useExploreEcosystemModal
: VeChain ecosystem explorer
useNotificationsModal
: Notification center
useFAQModal
: Frequently asked questions
Head over the to see all the components in action.
The configuration system in VeChain Kit provides a comprehensive way to set up different network environments and contract addresses for VeChain applications.
Three network types are supported:
main
- VeChain mainnet
test
- VeChain testnet
solo
- Local development network
Network configurations are immutable after initialization
Solo network is intended for local development
Contract addresses vary between networks
Explorer URLs are network-specific
Genesis blocks define network identity
Block time is standardized at 10 seconds
IPFS services may have rate limits
Some features may be testnet-only
Use our pre built TransactionModal
or TransactionToast
components to show your users the progress and outcome of the transaction, or build your own UX and UI.
Usage example
When a user initiates a connection through Privy, either directly or via cross-app integration, a secure wallet is immediately created for them. Privy implements a sophisticated key management technique known as key splitting, specifically using Shamir’s secret sharing method. This approach ensures that users retain full custody of their wallets without needing to manage any secret keys themselves. Importantly, neither Privy nor any integrated application ever accesses the user's keys; these secrets are only reconstituted directly on the user's device during the signing of messages or transactions. This process guarantees the utmost security and privacy for the user's onchain activities.
This type of wallet created by Privy is called Embedded Wallet.
Users benefit from an intuitively integrated wallet management experience that aligns seamlessly with their existing accounts, removing any unnecessary technical barriers. Applications built with Privy can generate wallets automatically for new accounts, such as those registered with an email address or phone number, even before the user logs in for the first time. Additionally, Privy provides users with the option to export their wallet keys, serving as an escape mechanism should they choose to transition away from Privy’s services at any point.
Privy embedded wallets are portable and can be used by any app––even apps not using Privy. Privy’s cross application wallet system supports interoperability with simple user experiences accessible to everyone, and seamlessly integrates with other Privy integrations and wallet connector solutions like RainbowKit and wagmi.
Embedded wallets can be backed up by the user through the VeChain Kit modal in the Settings page.
Many login methods can be attached to the Embedded Wallet.
Our smart accounts are a simplified version of the Account Abstraction pattern, made for the VeChain blockchain, and are required in order to enable social login.
0xC06Ad8573022e2BE416CA89DA47E8c592971679A
0x713b908Bcf77f3E00EFEf328E50b657a1A23AeaF
Testnet Factory address changed from v1 to v3 from 0x7EABA81B4F3741Ac381af7e025f3B6e0428F05Fb
to 0x713b908Bcf77f3E00EFEf328E50b657a1A23AeaF
which will cause all your testnet smart account addresses to change when upgrading to v1.5.0.
There are 2 contracts that work together to enable social login and account abstraction:
SimpleAccount: A smart contract wallet owned by the user that can:
Execute transactions directly from the owner or through signed messages
Handle both single and batch transactions
SimpleAccountFactory: Factory contract that creates and manages SimpleAccount contracts:
Creates new accounts with deterministic addresses using CREATE2
Get the account address of a smart account without deploying it
Supports multiple accounts per owner through custom salts
Manages different versions of the SimpleAccount implementation
Account Creation: When a user wants to create a smart account, they interact with the SimpleAccountFactory
, which creates a new SimpleAccount
instance with the user as the owner.
Transaction Execution: The SimpleAccount
can execute transactions in several ways:
Direct execution by the owner
Batch execution of multiple transactions
Signature-based execution (useful for social login) - Deprecated, should avoid using this
Batch signature-based execution with replay protection (useful for social login + multiclause)
Batch signature-based execution with 16-bit chain ID to allow iOS and Android developers handle VeChain chain ID.
Nonce Management: For batch transactions with authorization (executeBatchWithAuthorization
), a nonce is required to protect users against replay attacks:
The nonce should be generated when requesting the signature
Best practice is to use Date.now()
as the nonce value
Each nonce can only be used once per account
Without proper nonce management, malicious actors could replay the same signed transaction multiple times
Nonces are only used and required for executeBatchWithAuthorization
method
Social Login Integration: This system enables social login by creating deterministic account addresses for each user and allowing transactions to be signed off-chain and executed by anyone. This creates a seamless experience where users can interact with dApps using their social credentials.
The system has evolved through multiple versions to improve functionality and security:
SimpleAccount:
V1: Basic account functionality with single transaction execution
V2: Skipped for misconfiguration during upgrade
V3: Introduced batch transactions with nonce-based replay protection, ownership transfer and version tracking
SimpleAccountFactory:
V1: Basic account creation and management
V2: Added support for multiple accounts per owner using custom salts
V3: Support for V3 SimpleAccounts, enhanced version management and backward compatibility with legacy accounts
The factory maintains compatibility with all account versions, ensuring a smooth experience across different dApps and versions.
Testnet Factory address changed from v1 to v3 from 0x7EABA81B4F3741Ac381af7e025f3B6e0428F05Fb
to 0x713b908Bcf77f3E00EFEf328E50b657a1A23AeaF
which will cause all your testnet smart account addresses to change.
Upgrading the user's smart accounts from V1 to V3 is mandatory, in order to protect against reply attacks and to allow multiclause transactions on VeChain.
To facilitate the mandatory upgrade process, the kit now includes:
Built-in Check: Automatically displays an alert prompting users to upgrade if they possess a V1 smart account.
Hooks & Component: To avoid apps spending VTHO to upgrade accounts of users that won't do any action on the app we allow the developer to check upgradeability on demand by using the useUpgradeRequiredForAccount
hook and show the UpgradeSmartAccountModal
(importable from the kit).
Developers can efficiently manage smart accounts using a variety of hooks provided by the kit.
By importing these hooks, developers can:
Easily check if an upgrade is needed
Determine the current smart account version
Simplify maintaining and upgrading smart accounts
This ensures users seamlessly benefit from the latest features and protections.
Multiclause transactions offer enhanced security and flexibility within the VeChain ecosystem. Here's a breakdown of the key points for developers:
Single Clause Transactions:
You can still use executeWithAuthorization
, but keep in mind it retains a replay attack vector. This method is primarily for backward compatibility.
Recommended Adoption:
Switch to executeBatchWithAuthorization
for a more secure solution. This method:
Solves replay attack issues.
Executes multiple transactions with a single signature, simulating multiclause capabilities.
Automatic Management:
Using useSendTransaction
from the kit automates this process, negating the need for manual adjustments.
Understanding these components is crucial for those working with smart accounts outside of the vechain-kit. This knowledge ensures both security and operational efficiency.
How to use executeBatchWithAuthorization
and the nonce
:
Currently VeChain Kit does not support the handling of a smart account by a VeWorld wallet.
Fee Delegation is mostly meant to be implemented to support end-user-experience, removing the need to purchase/collect gas tokens and remove need to pay for the applications activities.
You need to set this parameter in your VeChainKitProvider weapper.
You need one per environmnet.
You can deploy this as a microservice (through lambda, cloudflare, etc.) or as an endpoint of your backend.
Fee Delegation is a simple process that creates a magical user experience using blockchains without losing decentralized benefits.
The user submitting a transaction requests a second signature from a gas payer.
When the transaction is processed, the gas costs are taken from the gas payers balance instead of the user submitting the transaction.
It creates a feeless and trustless solution for instant blockchain access.
It stops users from instantly using an application. Users that need to pay for transactions are required to obtain a token from somewhere. Regular users do not know where to go and researching a place to buy and accessing a (de)centralized exchange is too much to ask for a user that wants to use your application.
Users can open an application and interact with it instantly. An Application can submit transactions in the background and can no longer be be distinguished from regular(web2) alternatives. Fee delegation solves the biggest hurdle of user on - boarding to blockchain - applications without invalidating the web3 - principles.
Fee Delegation is mostly meant to be implemented to support end-user-experience, removing the need to purchase/collect gas tokens and remove need to pay for the applications activities.
Other use-cases are instant interactions with blockchains from different backends or processes without introducing account management for gas tokens.
Currently, it is mandatory to sponsor transaction for users that use social login. You can deploy your own custom solution or use .
To obtain one you can deploy your own custom solution or use .
You can read more about it here:
You can learn more about the feature from docs.vechain.org on .