Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/KYVENetwork/chain
https://github.com/KYVENetwork/chain
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/KYVENetwork/chain
- Owner: KYVENetwork
- License: mit
- Created: 2023-02-07T11:21:15.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-10T12:34:07.000Z (8 months ago)
- Last Synced: 2024-04-10T14:49:22.941Z (8 months ago)
- Language: Go
- Size: 3.32 MB
- Stars: 21
- Watchers: 4
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-ccamel - KYVENetwork/chain - (Go)
README
# The KYVE Network
###### v1.5.0
The KYVE consensus layer is the backbone of the KYVE ecosystem. This layer is a
sovereign Delegated Proof of Stake network built using the
[Cosmos SDK](https://github.com/cosmos/cosmos-sdk) and
[CometBFT (BFT Consensus)](https://github.com/cometbft/cometbft).The main branch always contains the latest commits during development.
Check out the `/release/v1.x.x` branches for stable releases.## Building from source
```shell
make build
```You can find the `kyved` binary in the `./build` directory.
If you need binaries for alternative architectures than your host:
```shell
make release ENV=mainnet
```The different binaries can be found in the `./release` directory.
### Building for the Kaon testnet
If you want to build the binary for the Kaon testnet, you will need to specify
its build environment. This is important because mainnet and testnet use
different denoms for the native token.```shell
make build ENV=kaon
```You can verify the build information using the following command:
```shell
kyved info
```### Building docker image
#### Root
To create a regular `kyve-network/kyve:${VERSION}` docker image with `kyved` binary only execute:
```bash
make docker-image
```
To create the corresponding debug image containing a `sh` shell execute `make docker-image-debug`.#### Nonroot
To create a nonroot docker image `kyve-network/kyve:${VERSION}-nonroot` running with user `nonroot:65532`:
```bash
make docker-image-nonroot
```
To create the corresponding debug image `kyve-network/kyve:${VERSION}-debug-nonroot` execute `make docker-image-debug-nonroot`.