No description provided.
This module provides functionality to logging data for vechain-sdk
This module is dedicated to managing and customizing errors within the VeChain SDK
This module serves as the standard interface connecting decentralized applications (dApps) and users to the VeChainThor blockchain
Typescript library to aid DApp development on VeChain Thor
CLI to scaffold a new Thor Commerce V0-native application
Open-source repository that houses the smart contracts powering the decentralized VeBetterDAO on the VeChain Thor blockchain.
Standard interface to connect DApp with VeChain and user
A Model Context Protocol (MCP) server that provides AI assistants with access to VeChain ecosystem documentation and blockchain data. This server enables seamless integration of VeChain capabilities into AI workflows through the MCP standard.
A web3 adaptor for VeChain Thor RESTful HTTP API.
Thor finance dashboard developed by Multifarm
Shared TypeScript types for Thor Commerce ecosystem - Framework-agnostic type definitions
CLI for flashing Samsung firmware over serial download mode.
Thor Commerce multi-tenant admin extensions for Medusa v2
The Vechain DApp Kit serves as a sophisticated layer built upon @vechain/sdk-network, providing a simplified and efficient avenue for engaging with a multitude of Vechain wallets. This innovative toolkit enhances the ease of interaction, offering develope
thor-io.vnext represents the next generation of thor-io.Thor-IO is a fundament for stateful real-time communication.TCP/IP,WebSockets & WebRTC or whatever you need and desire.
Ejecting Thor's configurable biz pages to static biz pages
RMWC avatar component
Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js
thor-io.client-vnext gives you the tools to connect, use and take advantage of the power that thor-io.vnext. It brings you a set of tools when it comes to simplify real-time communication in your web, native and IoT applications.
These are the reasons why this repo was created
Serves a webpack app. Updates the browser on changes.
Communication bridge between embedded apps and the Thor Commerce dashboard
An light weight web framework for node-js.
Thor tasks for rapid deployment new rails apps on server
Flex SDK Gem for redistribution to build servers and other developers. Also provides a simple DSL for calling Mxmlc and Compc from Thor tasks
Breeze makes it easy to automate server installation and configuration. It provides example scripts and configuration files that you can modify and keep in your revision control system. Thor tasks are provided to create server images, launch server instances etc.
Load any Thor CLI directly as a StdIO MCP server
Dolphin: deploy agilely like dolphins can swim. A multi-threaded multi-stage deployment tool utilizes the full power of Git and Ruby.
Vimdo is a ruby gem to automate tasks with vim remote servers. Predefined tasks include diff, merge, etc. You can define your own recipes to run tasks with Vim. For example, you can define `DirDiff` recipe: ```ruby module VimDo class CLI < Thor desc "dirdiff", "directory diff in vim" def dirdiff(from, to) [from, to].each do |f| unless File.directory?(f) raise PathError "#{f} is not directory!" end end from, to = [from, to].map {|f| File.expand_path(f) } commands(%Q{exec 'DirDiff ' fnameescape("#{from}") fnameescape("#{to}")}) end end end ``` Then run `vimdo dirdiff path/to/a path/to/b` from the command line or other tools