Requirements
Before installing and using Voyager Verifier, ensure your system meets these requirements.
System Requirements
Operating System
Voyager Verifier supports:
- Linux (Ubuntu, Debian, Fedora, Arch, etc.)
- macOS (10.14 Mojave or later)
- Windows (via WSL2 recommended, native Windows support available)
Hardware
Minimum requirements:
- RAM: 2GB minimum, 4GB recommended
- Disk Space: 500MB for installation and dependencies
- Network: Internet connection required for verification API
Software Prerequisites
Required
Scarb
Voyager Verifier requires scarb (Cairo/Starknet development toolchain) to be installed and available in your PATH.
Installation:
asdf install scarb latest
asdf global scarb latest
Verify installation:
scarb --version
For more details, see the official Scarb documentation.
For Cargo Installation
If installing via Cargo, you’ll need:
- Rust toolchain (stable channel, version 1.70 or later)
- System dependencies:
- Linux:
pkg-config,libssl-dev(Ubuntu/Debian) oropenssl-devel(Fedora/RHEL) - macOS:
pkg-config,openssl(via Homebrew) - Windows: Visual Studio Build Tools
- Linux:
Optional
Git
Required if:
- Installing the asdf plugin
- Installing from Git repository
- Contributing to development
Installation:
- Linux:
sudo apt-get install git(Debian/Ubuntu) - macOS:
brew install gitor Xcode Command Line Tools - Windows: Git for Windows
asdf
Only required for asdf installation method.
Project Requirements
To verify a contract, your project must meet these requirements:
Successful Build
Your project must build successfully with:
scarb --release build
Important: The remote compiler uses
scarb --release build, so all compiler configurations must be in the[profile.release]section of yourScarb.toml.
Scarb.toml Configuration
Minimum configuration:
[package]
name = "my_project"
version = "0.1.0"
[dependencies]
starknet = ">=2.11.2"
[[target.starknet-contract]]
sierra = true
With release profile (recommended):
[package]
name = "my_project"
version = "0.1.0"
[dependencies]
starknet = ">=2.11.2"
[[target.starknet-contract]]
sierra = true
[profile.release.cairo]
# Add any compiler configurations needed for deployment
# For example:
# sierra-replace-ids = true
# inlining-strategy = "avoid"
Contract Class Information
You must have:
- Class Hash: The class hash of your declared contract class
- Contract Name: The name of the contract to verify
- Network: Where the contract class is declared (mainnet, sepolia, etc.)
License (Optional)
A valid SPDX license identifier. You can specify this:
-
In
Scarb.toml:[package] license = "MIT" -
Via CLI flag:
--license MIT -
In
.voyager.tomlconfig file:[voyager] license = "MIT"
If not specified, defaults to “All Rights Reserved”.
For valid license identifiers, see SPDX License List.
Supported Versions
Cairo
The verifier is version-agnostic. Support is determined by server availability.
Currently supported (as of 2025):
- Cairo up to 2.11.4
- Newer versions are added with a slight lag after release
Scarb
The verifier supports all Scarb versions compatible with supported Cairo versions.
Recommended:
- Scarb 2.8.0 or later
Dojo (for Dojo projects)
For Dojo projects:
- Dojo 0.7.0 or later
- Automatic version detection from
Scarb.toml
Network Requirements
API Endpoints
The verifier needs access to:
- Mainnet API:
https://api.voyager.online/beta - Sepolia API:
https://sepolia-api.voyager.online/beta - Custom endpoints: If using
--urlflag
Firewall/Proxy
If behind a corporate firewall or proxy:
- Ensure HTTPS outbound traffic is allowed to Voyager API endpoints
- Configure proxy settings if needed (via environment variables:
HTTP_PROXY,HTTPS_PROXY)
Desktop Notifications (Optional)
For desktop notification support:
- Linux: Requires D-Bus and a notification daemon
- macOS: Works out of the box
- Windows: Works with Windows 10/11 notification system
Can be disabled during build with --no-default-features if not needed.
Verification Checklist
Before attempting verification, ensure:
- Scarb is installed and in PATH
- Your project builds with
scarb --release build - You have the class hash of your declared contract class
- You know your contract name
- Release profile configuration is in
Scarb.tomlif needed - Network connectivity to Voyager API
- (Optional) License identifier is specified
Next Steps
Once you’ve verified all requirements are met:
- Install voyager-verifier using asdf or Cargo
- Proceed to the Quickstart Guide
Troubleshooting
If you’re missing requirements:
- Scarb not found: Install from Scarb documentation
- Build fails: Check your
Scarb.tomlconfiguration and dependencies - Network issues: Verify firewall/proxy settings
- Version compatibility: Update to supported Cairo/Scarb versions
For more help, see the Troubleshooting Guide.