├── .github └── workflows │ ├── autoupdate.yml │ └── proposal.yml ├── .gitignore ├── LICENSE ├── Params.py ├── Pool.py ├── Pools.py ├── Propose.py ├── Query.py ├── README.md ├── Update.py ├── data ├── empty ├── incentives.csv └── new_gauges.csv └── util.py /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/.github/workflows/proposal.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/LICENSE -------------------------------------------------------------------------------- /Params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/Params.py -------------------------------------------------------------------------------- /Pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/Pool.py -------------------------------------------------------------------------------- /Pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/Pools.py -------------------------------------------------------------------------------- /Propose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/Propose.py -------------------------------------------------------------------------------- /Query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/Query.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/README.md -------------------------------------------------------------------------------- /Update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/Update.py -------------------------------------------------------------------------------- /data/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/incentives.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/data/incentives.csv -------------------------------------------------------------------------------- /data/new_gauges.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/data/new_gauges.csv -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsmosisIncentivesCommittee/OsmoIncentives/HEAD/util.py --------------------------------------------------------------------------------