-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #97 from kogisin/kogisin/95-porting-sdk-v0.44.0
build: bump sdk from v0.43.0 to v0.44.0
- Loading branch information
Showing
3 changed files
with
50 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,45 @@ | ||
# Farming | ||
# Farming Module | ||
|
||
This repository contains a farming module that is a Cosmos SDK module that implements farming functionality, which provides farming rewards to participants called farmers. One use case is to use this module to provide incentives for liquidity pool investors for their pool participation. | ||
A farming module is a Cosmos SDK module that implements farming functionality, which provides farming rewards to participants called farmers. One use case is to use this module to provide incentives for liquidity pool investors for their pool participation. | ||
|
||
⚠ **Farming module v1 is in active development - see "master" branch for the v1 mainnet version** ⚠ | ||
|
||
## Installation | ||
### Requirements | ||
|
||
If you haven't already, install Golang by following the [official docs](https://golang.org/doc/install). Make sure that your `GOPATH` and `GOBIN` environment variables are properly set up. | ||
|
||
Requirement | Notes | ||
----------- | ----------------- | ||
Go version | Go1.15 or higher | ||
Cosmos SDK | v0.44.0 or higher | ||
|
||
### Get Farming Module source code | ||
|
||
```bash | ||
git clone https://github.com/tendermint/farming.git | ||
cd farming | ||
make install | ||
``` | ||
|
||
## Development | ||
|
||
### Test | ||
|
||
```bash | ||
make test-all | ||
``` | ||
|
||
### Setup local testnet using script | ||
|
||
```bash | ||
# This script bootstraps a single local testnet. | ||
# Note that config, data, and keys are created in the ./data/localnet folder and | ||
# RPC, GRPC, and REST ports are all open. | ||
$ make localnet | ||
``` | ||
|
||
## Resources | ||
|
||
- [Documentation about Command-line and REST API Interfaces](./docs/How-To/client.md) | ||
- [MVP Demo](./docs/Tutorials/demo.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters