mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
67 lines
2.4 KiB
Markdown
67 lines
2.4 KiB
Markdown
<p align="center">
|
|
<img src="./kava-logo.svg" width="300">
|
|
</p>
|
|
<h3 align="center">DeFi for Crypto.</h3>
|
|
|
|
<div align="center">
|
|
|
|
[![version](https://img.shields.io/github/tag/kava-labs/kava.svg)](https://github.com/kava-labs/kava/releases/latest)
|
|
[![CircleCI](https://circleci.com/gh/Kava-Labs/kava/tree/master.svg?style=shield)](https://circleci.com/gh/Kava-Labs/kava/tree/master)
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/kava-labs/kava)](https://goreportcard.com/report/github.com/kava-labs/kava)
|
|
[![API Reference](https://godoc.org/github.com/Kava-Labs/kava?status.svg)](https://godoc.org/github.com/Kava-Labs/kava)
|
|
[![GitHub](https://img.shields.io/github/license/kava-labs/kava.svg)](https://github.com/Kava-Labs/kava/blob/master/LICENSE.md)
|
|
[![Twitter Follow](https://img.shields.io/twitter/follow/kava_labs.svg?label=Follow&style=social)](https://twitter.com/kava_labs)
|
|
[![riot.im](https://img.shields.io/badge/riot.im-JOIN%20CHAT-green.svg)](https://riot.im/app/#/room/#kava-validators:matrix.org)
|
|
|
|
</div>
|
|
|
|
<div align="center">
|
|
|
|
### [Telegram](https://t.me/kavalabs) | [Medium](https://medium.com/kava-labs) | [Validator Chat](https://riot.im/app/#/room/#kava-validators:matrix.org)
|
|
|
|
### Participate in the Kava testnet and [snag a founder badge](./docs/REWARDS.md)!
|
|
|
|
</div>
|
|
|
|
## Installing
|
|
|
|
This guide assumes you have worked with `cosmos-sdk` blockchains previously. If you are just getting started, great! See the complete guide [here](https://medium.com/kava-labs).
|
|
|
|
#### Installing KVD
|
|
|
|
```
|
|
git clone https://github.com/Kava-Labs/kava.git
|
|
cd kava
|
|
# Ensure GO Modules are enabled
|
|
export GO111MODULE=on
|
|
make install
|
|
```
|
|
|
|
#### Create a Wallet
|
|
|
|
```
|
|
kvd init --chain-id=kava-testnet-2000 <your-moniker>
|
|
kvcli keys add <your_wallet_name>
|
|
```
|
|
|
|
**Be sure to back up your mnemonic!**
|
|
|
|
#### Create a Genesis Transaction
|
|
|
|
```
|
|
kvd add-genesis-account $(kvcli keys show <your_wallet_name> -a) 1000000000000ukava
|
|
kvd gentx --name <your_wallet_name> --amount 1000000000000ukava --ip <your-public-ip>
|
|
```
|
|
|
|
A genesis transaction should be written to `$HOME/.kvd/config/gentx/gentx-<gen_tx_hash>.json`
|
|
|
|
#### Submit Genesis Transaction
|
|
|
|
To be included in the genesis file for testnet two, fork the [testnets repo](https://github.com/Kava-Labs/kava-testnets) and copy your genesis transaction to the `2000` directory. Submit your fork including your genesis transaction as a PR.
|
|
|
|
## License
|
|
|
|
Copyright © Kava Labs, Inc. All rights reserved.
|
|
|
|
Licensed under the [Apache v2 License](LICENSE).
|