A dai.js plugin for interacting with the Curio Stablecoin governance system. This plugin makes it easy to integrate Curio Stablecoin governance into frontend applications. You can use it to vote, cast proposals, query the voting contract, create a vote proxy, and much more.
The Curio Stablecoin Governance Plugin requires dai.js 0.9.2 or later.
yarn add https://github.com/CurioTeam/csc-plugin-governance
We will have several examples once the api is more stable. Here is one to give you some sense of how this plugin can be used:
import governancePlugin from 'csc-plugin-governance';
import Maker from '@makerdao/dai';
(async () => {
const maker = Maker.create('browser', {
plugins: [governancePlugin]
});
await maker.authenticate();
await maker.service('chief').lock(10);
})();
This example will initiate a MetaMask transaction to lock 10 CGT into the voting system.
Note: this project utilizes the yarn package manager
Clone this repo
$ git clone https://github.com/CurioTeam/csc-plugin-governance.git
Install project dependencies
$ yarn
$ yarn test
Publish to NPM
$ yarn deploy
We run Prettier on-commit, which means you can write code in whatever style you want and it will be automatically formatted according to the common style when you run git commit
.