What Developers Should Know First
- EVM Compatibility: EVM transactions run through Ethereum-compatible RPC methods.
- Consensus and state: CometBFT provides fast finality, and Cosmos SDK modules manage chain state.
- Fee model: EIP-1559-style fee market is used for EVM transactions.
- Gas token:
AULTis the native gas token symbol on AultEVM. - Protocol extensions: Some chain-native functionality is exposed through precompiles and module APIs.
EVM Compatibility
Ault is designed for familiar Ethereum workflows:- Deploy Solidity/Vyper contracts
- Use
ethers,viem, Hardhat, and Foundry - Use standard wallet flows (for example, MetaMask-compatible RPC usage)
- Use common token and contract patterns (ERC standards)
Network Values and Endpoints
For current chain IDs, RPC endpoints, explorers, faucet links, and production/testnet values:RPC Options
You can use either:- Public RPC endpoints listed in Network Information
- QuickNode RPC endpoints
Build Path
- Connect wallet/tooling to the active Ault network.
- Test RPC connectivity and submit a small transaction.
- Deploy and verify a contract.
- Integrate chain-specific features using JSON-RPC and SDK/module APIs.