diff --git a/.env.template b/.env.template index 84bece3..fef90ff 100644 --- a/.env.template +++ b/.env.template @@ -88,6 +88,20 @@ STINKY_TOKEN_SYMBOL= GHOST_TOKEN_NAME= GHOST_TOKEN_SYMBOL= +################################# Governor values ################################### +## Default values for governor smart contract. ## +## extension - number of blocks to be extended if late quorum occured. ## +## delay - number of blocks before proposal becomes active. ## +## period - number of blocks for proposal to be voted on. ## +## threshold - number of votes required in order for a voter to become a proposer. ## +## fraction - percentage of supply, where denominator is 100 ## +##################################################################################### +GOVERNOR_VOTE_EXTENSION= +GOVERNOR_VOTING_DELAY= +GOVERNOR_VOTING_PERIOD= +GOVERNOR_PROPOSAL_THRESHOLD= +GOVERNOR_QUORUM_FRACTION= + ## Initial ghosted supply on gatekeeper INITIAL_GHOSTED_SUPPLY= diff --git a/deployer.sh b/deployer.sh index b40f0bd..133f49f 100644 --- a/deployer.sh +++ b/deployer.sh @@ -25,9 +25,10 @@ usage() { echo "8) StakingDistributor" echo "9) BondingCalculator" echo "10) Gatekeeper" - echo "11) AfterPartyFirst" - echo "12) AfterPartySecond" - echo "13) AfterPartyThird" + echo "11) Governor" + echo "12) AfterPartyFirst" + echo "13) AfterPartySecond" + echo "14) AfterPartyThird" exit 1 } @@ -108,10 +109,12 @@ for i in $(seq $START $END); do elif [ "10" == "$i" ]; then CONTRACT="Gatekeeper" elif [ "11" == "$i" ]; then - CONTRACT="AfterPartyFirst" + CONTRACT="Governor" elif [ "12" == "$i" ]; then - CONTRACT="AfterPartySecond" + CONTRACT="AfterPartyFirst" elif [ "13" == "$i" ]; then + CONTRACT="AfterPartySecond" + elif [ "14" == "$i" ]; then CONTRACT="AfterPartyThird" else echo "No contract found for index $i"