Skip to content

Interchain Security is an open sourced IBC application which allows cosmos blockchains to lease their proof-of-stake security to one another.

License

Notifications You must be signed in to change notification settings

cosmos/interchain-security

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Sep 21, 2024
a3525b9 · Sep 21, 2024
Sep 18, 2024
Sep 18, 2024
Sep 6, 2024
Sep 6, 2024
Sep 21, 2024
Sep 11, 2024
Sep 6, 2024
Sep 13, 2024
Sep 12, 2024
Sep 21, 2024
Aug 29, 2024
Jun 21, 2023
Sep 6, 2022
Sep 13, 2024
Aug 15, 2023
Jun 13, 2023
Sep 13, 2024
Jul 11, 2022
Sep 11, 2024
Jun 25, 2024
Sep 6, 2024
Sep 6, 2024
Sep 6, 2024
Sep 5, 2024
Jun 30, 2022
Sep 11, 2024
Sep 11, 2024
Sep 5, 2024
Jun 24, 2024
Jul 24, 2024
Nov 17, 2023
Dec 5, 2023
Aug 6, 2024
Sep 10, 2024
Jun 21, 2023
Sep 18, 2024
Sep 18, 2024
May 3, 2023
Nov 27, 2023

Repository files navigation

Interchain Security

Go Report Card Security Rating Vulnerabilities Bugs Lines of Code Coverage

interchain-security contains a working and in-production implementation of the Interchain Security (ICS) protocol. ICS is an open sourced IBC application which allows cosmos blockchains to lease their proof-of-stake security to one another.

For more details on the Interchain Security protocol, take a look at the docs or technical specification.

For a list of currently active releases, see RELEASES.md.

For a list of major ICS features available in the currently active releases, see FEATURES.md.

Instructions

Prerequisites

## For OSX or Linux

# go 1.21 (https://formulae.brew.sh/formula/go)
brew install [email protected]
# jq (optional, for testnet) (https://formulae.brew.sh/formula/jq)
brew install jq
# docker (optional, for integration tests, testnet) (https://docs.docker.com/get-docker/)

Installing and running binaries

# 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 on $PATH)
export PATH=$PATH:$(go env GOPATH)/bin

Inspect the Makefile if curious.

Testing

See testing docs.

Learn more