ICS1 - A fresh implementation of Interchain Security for AtomOne
Forked from Cosmos Interchain Security v5.2.0 and reimagined for the AtomOne ecosystem. This is ICS1 - a new baseline, not an incremental update.
This fork includes the following changes from the upstream Cosmos Interchain Security v5.2.0:
- AtomOne SDK Integration - Uses AtomOne's fork of Cosmos SDK v0.50.14-atomone.1 with custom governance
- IBC v10 Upgrade - Migrated from IBC v8 to v10 for improved interchain communication
- VSCMatured Packet Removal - Optimization that removes VSCMatured packets from provider and consumer chains
- Module Namespace Change - Updated from
cosmostoallinbitsnamespace - Lightweight TopN - Retains minimal TopN parameter for governance control
- Removed Advanced PSS - Power shaping and consumer-specific commission rates removed
- IBC Connection Reuse - Support for reusing IBC connections during standalone→consumer chain transitions
- IBC Transfer Memos - Added memo support to IBC transfers for reward attribution
- Consumer Chain-ID Updates - Support for updating consumer chain identifiers
- Removed Legacy Code - Removed v4→v5 and v5→v6 migration code and x/crisis module
See CHANGELOG.md for detailed technical changes.
This implementation aligns with the AtomOne Constitution's goals for Interchain Security:
- Every validator is compensated for running ICS consumer chains
- Hub remains minimal with clear separation between core shards and consumer chains
- All ICS zones must be profitable to validators
- Governance-controlled validator set management
For more details, see the AtomOne Constitution.
- Go 1.24 or later
- jq (optional, for testnet)
- Docker (optional, for integration tests)
# Install interchain-security-pd and interchain-security-cd binaries
make install
# Run provider
interchain-security-pd
# Run consumer
interchain-security-cd
# If the above fail, ensure ~/go/bin is on $PATH
export PATH=$PATH:$(go env GOPATH)/binSee TESTING.md for detailed testing instructions.
# Run unit tests
make test-unit
# Run integration tests
make test-integration
# Build everything
go build ./...This software is based on Cosmos Interchain Security v5.2.0.