├── .gitattributes ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── contracts ├── CrowdProposal.sol ├── CrowdProposalFactory.sol └── ICompound.sol ├── jest.config.js ├── package.json ├── saddle.config.js ├── script └── test ├── tests ├── CrowdProposalFactoryTest.js ├── CrowdProposalTest.js ├── Helpers.js ├── Matchers.js └── contracts │ ├── Comp.sol │ ├── GovernorBravoDelegate.sol │ ├── GovernorBravoDelegateHarness.sol │ ├── GovernorBravoDelegator.sol │ └── GovernorBravoInterfaces.sol └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/README.md -------------------------------------------------------------------------------- /contracts/CrowdProposal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/contracts/CrowdProposal.sol -------------------------------------------------------------------------------- /contracts/CrowdProposalFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/contracts/CrowdProposalFactory.sol -------------------------------------------------------------------------------- /contracts/ICompound.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/contracts/ICompound.sol -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/package.json -------------------------------------------------------------------------------- /saddle.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/saddle.config.js -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/script/test -------------------------------------------------------------------------------- /tests/CrowdProposalFactoryTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/tests/CrowdProposalFactoryTest.js -------------------------------------------------------------------------------- /tests/CrowdProposalTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/tests/CrowdProposalTest.js -------------------------------------------------------------------------------- /tests/Helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/tests/Helpers.js -------------------------------------------------------------------------------- /tests/Matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/tests/Matchers.js -------------------------------------------------------------------------------- /tests/contracts/Comp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/tests/contracts/Comp.sol -------------------------------------------------------------------------------- /tests/contracts/GovernorBravoDelegate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/tests/contracts/GovernorBravoDelegate.sol -------------------------------------------------------------------------------- /tests/contracts/GovernorBravoDelegateHarness.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/tests/contracts/GovernorBravoDelegateHarness.sol -------------------------------------------------------------------------------- /tests/contracts/GovernorBravoDelegator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/tests/contracts/GovernorBravoDelegator.sol -------------------------------------------------------------------------------- /tests/contracts/GovernorBravoInterfaces.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/tests/contracts/GovernorBravoInterfaces.sol -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compound-finance/autonomous-proposals/HEAD/yarn.lock --------------------------------------------------------------------------------