The budget module is a Cosmos SDK module that implements budget functionality. It is an independent module from other SDK modules and core functionality is to enable anyone to create a budget plan through governance param change proposal. Once it is agreed within the community, voted, and passed, it uses the source address to distribute amount of coins by the rate defined in the plan to the destination address. Collecting all budgets and distribution take place every epoch blocks that can be modified by a governance proposal.
A primary use case is for Gravity DEX farming plan. The budget module can be used to create a budget plan that defines Cosmos Hub's FeeCollector module account where transaction gas fees and part of ATOM inflation are collected as source address and uses a custom module account (created by budget creator) as destination address. Read spec docs to get to know more about the module.
See the main branch for the latest, and see releases for the latest release
If you haven't already, install Golang by following the official docs. Make sure that your GOPATH
and GOBIN
environment variables are properly set up.
Requirement | Notes |
---|---|
Go version | Go1.17 or higher |
Cosmos SDK | v0.45.3 or higher |
# Use git to clone budget module source code and install `budgetd`
git clone https://github.com/tendermint/budget.git
cd budget
make install
To get started to the project, visit the TECHNICAL-SETUP.md docs.
The following documents are available to help you quickly get onboard with the budget module:
- Technical specification
- How to bootstrap a local network with budget module
- How to use Command Line Interfaces
- How to use gRPC-gateway REST Routes
- Demo for how to budget and budget modules
We welcome contributions from everyone. The main branch contains the development version of the code. You can branch of from main and create a pull request, or maintain your own fork and submit a cross-repository pull request. If you're not sure where to start check out CONTRIBUTING.md for our guidelines & policies for how we develop budget module. Thank you to all those who have contributed to budget module!