Skip to content

ligolang/dao-cameligo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DAO-cameligo

A modular example DAO contract on Tezos written in Ligolang.

Intro

This example DAO allows FA2 token holders to vote on proposals, which trigger on-chain changes when accepted. It is using token based quorum voting, requiring a given threshold of participating tokens for a proposal to pass. The contract code uses Ligo modules, and the tezos-ligo-fa2 package.

The used FA2 token is expected to extend the TZIP-12 standard with an on-chain view total_supply returning the total supply of tokens. This number, of type nat is then used as base for the participation computation, see example FA2 in the test directory.

Requirements

The contract is written in cameligo flavour of LigoLANG, to be able to compile the contract, you need either:

  • a ligo binary, in this case, to use the binary, you need to have set up a LIGO environment variable, pointing to the binary (see Makefile)
  • or docker

For deploy scripts, you also need to have nodejs installed, up to version 14 and docker if you wish to deploy on a sandbox.

Usage

  1. Run make install to install dependencies
  2. Run make compile to compile the contracts
  3. Run make deploy to deploy the contracts. You have to rename deploy/.env.dist to deploy/.env and fill the required variables.

You can also override make parameters by running :

make compile ligo_compiler=<LIGO_EXECUTABLE> protocol_opt="--protocol <PROTOCOL>"

Documentation

See Documentation

Follow-Up

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published