Developer tools
Details are provisional and may be updated during development.
Arichain CLI (ari-tools)
npm install -g @arichain/cli
# or
curl -sSL https://install.arichain.io/cli | sh# Create new Multi-VM project
ari-tools init my-dapp --template multivm
# Initialize EVM-only project
ari-tools init my-evm-dapp --template evm --framework hardhat
# Initialize SVM-only project
ari-tools init my-svm-dapp --template svm --framework anchor# Deploy to specific VM
ari-tools deploy --vm evm --contract MyContract.sol --network testnet
ari-tools deploy --vm svm --program my_program.so --network testnet
# Deploy to multiple VMs
ari-tools deploy --multi-vm --config deploy.json --network testnetDevelopment Workflow Integration
Last updated

