├── .env.template ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── broadcast └── Deploy.s.sol │ └── 1 │ ├── run-1680890319.json │ ├── run-1690817978.json │ └── run-latest.json ├── foundry.toml ├── script ├── Deploy.s.sol ├── DeployInput.sol └── Propose.s.sol ├── src ├── GitcoinGovernor.sol └── interfaces │ ├── IGTC.sol │ └── IGovernorAlpha.sol └── test └── GitcoinGovernor.t.sol /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/.env.template -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/README.md -------------------------------------------------------------------------------- /broadcast/Deploy.s.sol/1/run-1680890319.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/broadcast/Deploy.s.sol/1/run-1680890319.json -------------------------------------------------------------------------------- /broadcast/Deploy.s.sol/1/run-1690817978.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/broadcast/Deploy.s.sol/1/run-1690817978.json -------------------------------------------------------------------------------- /broadcast/Deploy.s.sol/1/run-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/broadcast/Deploy.s.sol/1/run-latest.json -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/foundry.toml -------------------------------------------------------------------------------- /script/Deploy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/script/Deploy.s.sol -------------------------------------------------------------------------------- /script/DeployInput.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/script/DeployInput.sol -------------------------------------------------------------------------------- /script/Propose.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/script/Propose.s.sol -------------------------------------------------------------------------------- /src/GitcoinGovernor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/src/GitcoinGovernor.sol -------------------------------------------------------------------------------- /src/interfaces/IGTC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/src/interfaces/IGTC.sol -------------------------------------------------------------------------------- /src/interfaces/IGovernorAlpha.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/src/interfaces/IGovernorAlpha.sol -------------------------------------------------------------------------------- /test/GitcoinGovernor.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/Alpha-Governor-Upgrade/HEAD/test/GitcoinGovernor.t.sol --------------------------------------------------------------------------------