A lite, easy to use toolkit for interacting with the Osmosis Blockchain. The first of many projects spearheaded by the Osmosis Support Lab, a community funded organization for the Osmosis community.
- Mobile first, simple, Material Design based UI built with Quasar and Vue.js
- Interaction with the Osmosis Blockchain via Keplr and OsmoJS
| Feature | Status |
|---|---|
| Swaps | |
| Joining/Exiting Pools | |
| Bonding/Unbonding from Pools |
The below steps are what one would need to do to either contribute, or run a local version.
- Clone and fork the Github repo.
git clone https://github.com/osmosis-support-lab/osmosis-toolkit
cd osmosis-toolkit
git fetch upstream
git checkout dev- Install all dependencies.
yarnYou can down run a local copy of the Osmosis tool kit! Simply run:
yarn devThis will automatically create a "hot-refresh" build in which you can make changes to the code, save the file, and see the change live! Or, if you simply want to utilize a local copy.
For those wishing to contribute please read along.
Contributions are always welcome! See contributing.md for ways to get started. Please adhere to this project's code of conduct.
If you followed the above steps to get a local copy up and running, congratulations! You're halfway there!
This repo follows the git flow model of repositories. For in-depth information please visit the contributing guide.
- New Feature:
- Start:
git flow feature start <name> - End:
git flow feature finish <name> - Publish:
git flow feature publish <name>
- Start:
- Bugfixes:
- Start:
git flow bugfix start <name> - End:
git flow bugfix finish <name> - Publish:
git flow bugfix publish <name>
- Start:
We are asking all contributors to ensure that all files are linted, and formatted. Before a release build is created, the repo maintainers also perform these steps as a back up, but the less errors at build time, the better!
To Lint:
yarn lintTo Format:
yarn format