Skip to content

atomone-hub/atomone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AtomOne

AtomOne is built using the Cosmos SDK as a fork of the Cosmos Hub at version v15.2.0 (common commit hash 7281c9b).

The following modifications have been made to the Cosmos Hub software to create AtomOne:

  1. Removed x/globalfee module and revert to older and simpler fee decorator
  2. Removed IBC and related modules (e.g. ICA, Packet Forwarding Middleware, etc.)
  3. Removed Interchain Security module
  4. Reverted to standard Cosmos SDK v0.47.10 without the Liquid Staking Module (LSM)
  5. Changed Bech32 prefixes to atone (see cmd/atomoned/cmd/config.go)
  6. Removed ability for validators to vote on proposals with delegations, they can only use their own stake

Reproducible builds

An effort has been made to make it possible to build the exact same binary locally as the Github Release section. To do this:

  • Checkout to the expected released version
  • Run make build (which will output the binary to the build directory) or make install. Note that a fixed version of the go binary is required, follow the command instructions to install this specific version if needed.
  • The resulted binary should have the same sha256 hash than the one from the Github Release section.

Ledger support

Run make build-ledger to have ledger support in ./build/atomoned binary. Note that this will disable reproducible builds, as it introduces OS dependencies.

Genesis file

The proposed genesis files for atomone can be found in the genesis repo.

Public RPC and fullnode endpoints

The public RPC and fullnode endpoints directory can be found in the registry repo.

Acknowledgements

Portions of this codebase are copied or adapted from cosmos/gaia@v15, and cosmos/[email protected].

Their original licenses are both included in ATTRIBUTION