Skip to content

Build for Testnet

Learn how to build and test smart contracts on the Koinos testnet.

Overview

Testing on testnet is essential before mainnet deployment to ensure your contract works correctly in a live environment.

Build Process

# Build contract
npm run build

# Generate ABI
npm run generate-abi

# Run tests
npm test

Next Steps