Official open-source Vexanium token contract used across the Wind Stack ecosystem.
This repository includes ready-to-deploy sources, compiled artifacts (.wasm, .abi), and developer instructions.
It can be built with the VexChain compiler toolchain, which is designed specifically for the Vexanium blockchain.
This contract implements a standard fungible token system inspired by eosio.token, optimized for the Wind Stack DApp ecosystem.
Main features:
- Create and issue fungible tokens
- Standard transfer and retire actions
- Open / close balance entries
- Compatible with
@wharfkit/antelopeand Wind Stack DApp tools - Includes pre-built ABI and WASM binaries for direct integration
VexChain is the official compiler and toolchain for Vexanium smart contracts.
It provides a modern, optimized eosio-cpp replacement compatible with VEX Leap environments.
# Clone VexChain & Manual Build
git clone https://github.com/vexanium/VexChain.git
cd VexChain
# Install dependencies and build
./scripts/eosio_build.sh
./scripts/eosio_install.shOnce VexChain is installed:
eosio-cpp -abigen -I include -contract token -o token.wasm src/token.wind.cpp
⚠️ Warnings about Ricardian clauses are informational only.
They indicate missing documentation clauses and do not affect functionality.
-
Set contract:
cleos set contract token.wind /path/to/token.wind/ -p token.wind@active -
Create a token:
cleos push action token.wind create '["issueracc", "1000000000.0000 WIND"]' -p token.wind@active -
Issue tokens:
cleos push action token.wind issue '["useracc", "100.0000 WIND", "Initial issue"]' -p issueracc@active -
Transfer tokens:
cleos push action token.wind transfer '["useracc", "otheracc", "10.0000 WIND", "test"]' -p useracc@active
token.wind/
├── include/
│ └── token.wind.hpp # Header file (contract definition)
├── src/
│ └── token.wind.cpp # Main contract implementation
├── token.abi # ABI (Application Binary Interface)
├── token.wasm # Compiled WASM bytecode
└── wallet.txt # (optional) local test wallet / notes
The contract’s ABI and WASM are directly consumable by:
- Wind Wallet
- Wind DApp (token, staking, and DEX modules)
- Wind Explorer (ABI decoding, transaction tracing)
Developers can use Antelope formatters to integrate:
import { Asset } from '@wharfkit/antelope'Released under the MIT License.
You are free to use, modify, and distribute this contract with proper attribution.
- Author: Gilang Ramadan (Founder of Wind)
- Ecosystem: Wind Stack
- Blockchain: Vexanium Mainnet
- Compiler Tool: VexChain