[GUEST ACCESS MODE: Data is scrambled or limited to provide examples. Make requests using your API key to unlock full data. Check https://lunarcrush.ai/auth for authentication information.]
@VechainBuilders
"VeFam today we're hosting another livestream Workshop on YouTube 12pm EST (5pm BST X pm CET) Join us we'll be talking about VeChain's interoperability with @wanchain_org and showing you how to implement it in your apps"
X Link @VechainBuilders 2025-09-16T13:37Z 1233 followers, 59.4K engagements
"@NAJCRYPTO @vechainofficial"
X Link @VechainBuilders 2025-10-07T14:51Z 1231 followers, XX engagements
"Once your X2Earn app is registered on VeBetter you need to distribute B3TR rewards to users for sustainable actions ๐ Getting Your APP_ID: Find your unique APP_ID on the VeBetter dashboard after app registration. This identifier links all reward distributions to your application. Distribution Function - use the X2EarnRewardsPool contract to distribute rewards: await x2EarnRewardsPool.distributeRewardWithProof( APP_ID // Your app identifier rewardAmount // B3TR tokens to distribute userAddress // Recipient wallet "image" // Proof types // Proof URLs "carbon" // Impact codes 1000 // Impact"
X Link @VechainBuilders 2025-10-13T15:56Z 1233 followers, 1560 engagements
"๐ข Hackathon starts on Monday ๐ Want to onboard users from other blockchains WanChain bridge expands your user base: If you are building applications that sell assets or subscriptions WanChain allows users to pay with Bitcoin and other cryptocurrencies from different blockchains. This removes the friction of requiring users to first acquire VET tokens. Users can bridge their existing crypto holdings to VeChainThor and immediately start using your application. This is particularly valuable for applications targeting users who may not be familiar with VeChain but have cryptocurrency on other"
X Link @VechainBuilders 2025-09-19T14:27Z 1233 followers, 11.1K engagements
"๐จ VeChain Global Hackathon closes at midnight UTC tonight Were excited We know youre excited too. $30k is at stake ๐ But even more importantly a great submission could land you a place in the VeChain ecosystem where you can continue to grow your project and reach thousands of users along with grants rewards for your users and much more All submissions must be completed by XXXXX pm UTC. Good Luck Builders ๐"
X Link @VechainBuilders 2025-10-05T16:00Z 1233 followers, 2515 engagements
"The VeBetter ecosystem is providing a fertile ground for all Web3 builders in Europe (and outside) to launch and grow their apps and communities ๐ฑ ๐ฒ VeFam is building apps we'll all be using soon. Join the movement build on proven ground and spend your time and talents making your apps impactful instead of worrying if they are compliant"
X Link @VechainBuilders 2025-10-10T14:31Z 1232 followers, 5196 engagements
"๐ Organizing Data with Solidity Structs Learn how to bundle related information into clean reusable data structures. What you'll see: A Student struct that combines wallet address name registration status and certificate hash into one organized unit. Much cleaner than scattered variables. The key lesson: Privacy matters on public blockchains. Only store what's absolutely necessary. Not everything belongs on-chain especially personally identifiable data. This pattern applies to any VeChain app managing user data - educational platforms credential systems membership apps and more. Essential"
X Link @VechainBuilders 2025-10-14T15:55Z 1233 followers, XXX engagements
"Builders this is important ๐"
X Link @VechainBuilders 2025-10-15T09:11Z 1235 followers, 10.6K engagements
"Before distributing B3TR rewards you need your user's wallet address. VeChain Kit makes this simple. Getting the Wallet Address: import useWallet from '@vechain/dapp-kit-react'; async function RewardComponent() const account = useWallet(); // account contains the connected wallet address const userAddress = account; // Use this address in your reward distribution await distributeReward(userAddress rewardAmount); Integration Flow: X User connects wallet via VeChain Kit X Your app captures the wallet address X User completes sustainable action X Your backend/contract distributes B3TR to that"
X Link @VechainBuilders 2025-10-16T13:04Z 1235 followers, 10.3K engagements
"The VeChain Global Hackathon is wrapping up. Now we want to hear about your experience with the developer tools โ ๐ Fill out the feedback form: ๐ฐ There's $2000 in rewards for participants who share detailed actionable feedback about VeChain developer tools. What we're asking: You used VeChain SDK VeChain Kit dApp Kit Hardhat plugin or other tooling in your hackathon project Tell us what worked and what didn't. Decided not to use certain tools That's valuable feedback too. We want to know why. Your feedback directly improves the developer experience. Better tooling means faster builds fewer"
X Link @VechainBuilders 2025-10-08T14:09Z 1233 followers, 1394 engagements
"Builders if you encountered this error during development: Uncaught TypeError: Cannot read properties of undefined (reading '3') This typically indicates a dependency conflict with VeChain Kit. ๐กSolution: Uninstall and reinstall your VeChain Kit and dependencies: npm i @tanstack/react-query @chakra-ui/react @vechain/dapp-kit-react @vechain/vechain-kit This ensures all packages are properly installed with compatible versions. Still having issues Join our developer Telegram for real-time support:"
X Link @VechainBuilders 2025-10-09T14:37Z 1232 followers, 1241 engagements
"Were Entering the Final XX Hours VeChain Global Hackathon Builders The deadline is midnight UTC on October 5th. Here's what you need to submit ๐ The submissions must include: ๐ธVideo demo ๐ธPublic link to your repo ๐ธPitch deck link Were expecting at least X people per team and all apps need to follow the suggested judging criteria for the highest chances to win. You can check the criteria on the Need last-minute support Join our official Telegram: And as always follow @vechainofficial and @vechainbuilders to stay updated with all things building on VeChain"
X Link @VechainBuilders 2025-10-04T16:00Z 1233 followers, 7811 engagements
"โ
VeChain Global Hackathon submissions are now closed. A big thank you to all the builders who participated You built on production-grade infrastructure that powers real enterprise applications ๐๐ An impressive XXX hackers participated submitting XX worthy entries Judges now have the difficult job of selecting the winners. ๐ถ Submissions are being reviewed by our judging panel ๐ถ Projects will be evaluated on technical quality innovation business model and real-world applicability ๐ถ Winners will be announced on October 13th Whether you submitted a VeBetter sustainability app DeFi app"
X Link @VechainBuilders 2025-10-06T15:41Z 1233 followers, 8320 engagements
"@NAJCRYPTO @vechainofficial โโ"
X Link @VechainBuilders 2025-10-14T16:11Z 1233 followers, XX engagements
"New to Solidity on VeChain This workshop clip covers the fundamentals of contract setup. You'll see how to structure an X2Earn contract: ๐ธstarting with the pragma declaration (Shanghai-compatible for VeChain) ๐ธdefining state variables for storing data like institute names and admin addresses ๐ธusing the constructor to set initial values when deploying. Understanding these basics is essential before you can implement features like reward distribution user management or any custom logic your app needs. Perfect for developers moving from web2 to blockchain or starting their first VeChain"
X Link @VechainBuilders 2025-10-07T14:50Z 1233 followers, 7513 engagements
"๐ข VeFam the Global Hackathon results are here The final decision was beyond difficult. With so many great projects it took a long time for the judges to come to a consensus but we're ready to announce the winners ๐ Without further ado your Global Hackathon winners are: X - Social Impact 1st Prize: VeFarmers by @devarogundade 2nd Prize: Proof of Impact by @deaneries_ 3rd Prize: VeCare by @notnotrachit @Syndrizzle X - Economic & Environmental Impact 1st Prize: DropLess by @kiv1n 2nd Prize: Arbor by @thearborapp @PaullyTVvet @wildbillart 3rd Prize: ReLoop by @DavidMarvyy X - Ecosystem &"
X Link @VechainBuilders 2025-10-13T20:31Z 1235 followers, 15.1K engagements