Overview
Throughout this documentation, you’ll notice consistent references to:- Binary name:
evmd
- Token denominations:
test
(whole token) andatest
(18 decimals)
The evmd Reference Network
evmd is the official Cosmos EVM reference implementation available in the cosmos/evm repository. It serves as: Living Documentation: Most examples in these docs can be run verbatim usingevmd
Testing Environment: Quickly spin up a local network using the local-node.sh
script in the cosmos/evm
repo
Integration Reference: See exactly how the EVM module integrates with Cosmos SDK
Code and CLI examples are immediately executable:
Token Denomination System
The evmd network uses the EVM standard 18-decimal format for the native/staking token.Token | Decimals | Usage | Example Amount |
---|---|---|---|
test | 0 | Native Cosmos operations | 1 TEST = 1000000000000000000atest |
atest | 18 | EVM operations and gas | 1000000000000000000atest = 1 TEST |
Quick Start with evmd
1. Get the Binary
2. Initialize Local Network
3. Create Test Account
4. Start the Network
Next Steps
- Try it out: Set up your local evmd network
- Configure: Node configuration options
- Integrate: Add EVM compatibility to your chain