├── .gitattributes ├── .github ├── scripts │ ├── release-notes.sh │ └── tag_helper.py └── workflows │ ├── deploy.yml │ └── release.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── descriptor ├── README.md ├── examples │ └── company.yaml ├── package.json ├── src │ ├── scripts │ │ └── permissionsTable.js │ └── utils │ │ └── readYaml.js └── test │ ├── permissionsTable.test.js │ └── utils │ └── cli.js ├── lerna.json ├── package.json ├── readme.md ├── shared ├── .dockerignore ├── .gitignore ├── .soliumignore ├── .soliumrc.json ├── README.md ├── constructor-args │ ├── andromeda.js │ ├── bscTest.js │ ├── goerli.js │ ├── harmony.js │ ├── harmonyTest.js │ ├── mainnet.js │ ├── matic.js │ ├── mumbai.js │ ├── rinkeby.js │ └── stardust.js ├── contracts │ ├── .npmignore │ ├── BaseTemplate.sol │ ├── Migrations.sol │ └── TokenCache.sol ├── docker-compose.yml ├── ethereum-data │ ├── geth │ │ ├── LOCK │ │ ├── chaindata │ │ │ ├── 000018.log │ │ │ ├── 000020.ldb │ │ │ ├── CURRENT │ │ │ ├── CURRENT.bak │ │ │ ├── LOCK │ │ │ ├── LOG │ │ │ └── MANIFEST-000019 │ │ ├── nodekey │ │ ├── nodes │ │ │ ├── 000014.ldb │ │ │ ├── 000015.ldb │ │ │ ├── 000016.log │ │ │ ├── CURRENT │ │ │ ├── CURRENT.bak │ │ │ ├── LOCK │ │ │ ├── LOG │ │ │ └── MANIFEST-000017 │ │ └── transactions.rlp │ ├── history │ └── keystore │ │ ├── UTC--2018-01-18T01-05-42.637024000Z--1f7402f55e142820ea3812106d0657103fc1709e │ │ ├── UTC--2018-01-18T01-06-50.619577000Z--cb409caa43e385288d6bff2c3a0635688c7b3294 │ │ ├── UTC--2018-01-18T01-07-44.712525000Z--5963e46cf9f9700e70d4d1bc09210711ab4a20b4 │ │ ├── UTC--2018-01-18T01-08-02.793570000Z--75e912af38888643829380fa9f2c4019f5710ff5 │ │ ├── UTC--2018-01-18T01-08-34.712007000Z--83a930a41a1fbc65d65203f9477ca6d1293a4d23 │ │ ├── UTC--2018-01-18T01-39-33.381836000Z--830ad8ef8b5b1c7f22fde94ddb30a19b2c34c2c8 │ │ ├── UTC--2018-01-18T01-39-50.916986000Z--d00c280f175a5935b3237b8504c5a8340c5a9fd0 │ │ ├── UTC--2018-01-18T01-40-08.561062000Z--4e8463ae7fcd8472357ceebecf20d44635a23873 │ │ ├── UTC--2018-01-18T01-40-39.367202000Z--140725c8fafc5b59d93db9a3c86717a2bc365b2d │ │ └── UTC--2018-01-18T01-41-10.283422000Z--61d3fa79ba54f08dcb850c3dc802b83e3d970552 ├── helpers │ ├── apps.js │ ├── aragonId.js │ ├── assertRevert.js │ ├── assertRole.js │ ├── encodeCall.js │ ├── events.js │ └── node.js ├── lib │ ├── TemplatesDeployer.js │ ├── arapp-file.js │ ├── ens.js │ └── network.js ├── package.json ├── scripts │ ├── deploy-template.js │ ├── prepare-args.js │ ├── sleep-until-gaslimit.js │ └── test-ganache.sh └── truffle.js └── templates ├── bare ├── .soliumignore ├── .soliumrc.json ├── arapp.json ├── contracts │ ├── BareTemplate.sol │ └── test │ │ └── TestImports.sol ├── hardhat.config.js ├── manifest.json ├── migrations │ └── .keep ├── package.json ├── scripts │ └── deploy.js ├── test │ └── bare.js └── truffle.js ├── company-board ├── .soliumignore ├── .soliumrc.json ├── README.md ├── arapp.json ├── contracts │ ├── CompanyBoardTemplate.sol │ └── test │ │ └── TestImports.sol ├── hardhat.config.js ├── manifest.json ├── migrations │ └── .keep ├── package.json ├── scripts │ └── deploy.js ├── test │ └── company-board.js └── truffle.js ├── company ├── .soliumignore ├── .soliumrc.json ├── README.md ├── arapp.json ├── buidler.config.js ├── cache │ ├── last-solc-config.json │ ├── solc-input.json │ └── solc-output.json ├── contracts │ ├── CompanyTemplate.sol │ └── test │ │ └── TestImports.sol ├── hardhat.config.js ├── manifest.json ├── migrations │ └── .keep ├── package.json ├── scripts │ └── deploy.js ├── test │ └── company.js └── truffle.js ├── dandelion ├── .gitattributes ├── .gitignore ├── .soliumrc.json ├── LICENSE ├── README.md ├── arapp.json ├── contracts │ ├── DandelionOrg.sol │ └── test │ │ └── mocks │ │ ├── ERC20Sample.sol │ │ └── TestImports.sol ├── hardhat.config.js ├── manifest.json ├── migrations │ └── .keep ├── package.json ├── scripts │ ├── deploy-dao-factory-rinkeby.js │ ├── deploy.js │ └── install-dandelion.js ├── test │ ├── Dandelion.js │ ├── helpers │ │ ├── apps.js │ │ └── events.js │ └── lib │ │ ├── arapp-file.js │ │ ├── ens.js │ │ └── network.js └── truffle.js ├── membership ├── .soliumignore ├── .soliumrc.json ├── README.md ├── arapp.json ├── buidler.config.js ├── cache │ ├── last-solc-config.json │ ├── solc-input.json │ └── solc-output.json ├── contracts │ ├── MembershipTemplate.sol │ └── test │ │ └── TestImports.sol ├── hardhat.config.js ├── manifest.json ├── migrations │ └── .keep ├── package.json ├── scripts │ └── deploy.js ├── test │ └── membership.js └── truffle.js ├── open-enterprise ├── .eslintrc.js ├── .prettierrc ├── .solcover.js ├── .soliumignore ├── .soliumrc.json ├── README.md ├── arapp.json ├── contracts │ ├── BaseCache.sol │ ├── BaseOEApps.sol │ ├── OpenEnterpriseTemplate.sol │ └── test │ │ └── TestImports.sol ├── hardhat.config.js ├── manifest.json ├── migrations │ └── .keep ├── package.json ├── public │ ├── .gitkeep │ ├── MixBytes.png │ └── Template.audit.md ├── scripts │ ├── create-dao.js │ ├── deploy.js │ └── recover-dao.js ├── tasks │ └── deploy-contract.js ├── temp │ ├── helpers │ │ ├── apps.js │ │ └── events.js │ ├── lib │ │ ├── OEDeployer.js │ │ ├── TemplatesDeployer.js │ │ ├── arapp-file.js │ │ ├── ens.js │ │ └── network.js │ └── scripts │ │ ├── deploy-standardBounties.js │ │ ├── deploy-template.js │ │ ├── new-dao.js │ │ └── test-ganache.sh ├── test │ └── OpenEnterpriseTemplate.test.js └── truffle-config.js ├── reputation ├── .soliumignore ├── .soliumrc.json ├── README.md ├── arapp.json ├── buidler.config.js ├── cache │ ├── last-solc-config.json │ ├── solc-input.json │ └── solc-output.json ├── contracts │ ├── ReputationTemplate.sol │ └── test │ │ └── TestImports.sol ├── hardhat.config.js ├── manifest.json ├── migrations │ └── .keep ├── package.json ├── scripts │ └── deploy.js ├── test │ └── reputation.js └── truffle.js └── trust ├── .soliumignore ├── .soliumrc.json ├── README.md ├── arapp.json ├── contracts ├── MultiSigWallet.sol ├── TrustTemplate.sol └── test │ └── TestImports.sol ├── hardhat.config.js ├── manifest.json ├── migrations └── .keep ├── package.json ├── scripts ├── create.js └── deploy.js ├── test └── trust.js └── truffle.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.github/scripts/release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/.github/scripts/release-notes.sh -------------------------------------------------------------------------------- /.github/scripts/tag_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/.github/scripts/tag_helper.py -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /descriptor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/descriptor/README.md -------------------------------------------------------------------------------- /descriptor/examples/company.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/descriptor/examples/company.yaml -------------------------------------------------------------------------------- /descriptor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/descriptor/package.json -------------------------------------------------------------------------------- /descriptor/src/scripts/permissionsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/descriptor/src/scripts/permissionsTable.js -------------------------------------------------------------------------------- /descriptor/src/utils/readYaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/descriptor/src/utils/readYaml.js -------------------------------------------------------------------------------- /descriptor/test/permissionsTable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/descriptor/test/permissionsTable.test.js -------------------------------------------------------------------------------- /descriptor/test/utils/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/descriptor/test/utils/cli.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/readme.md -------------------------------------------------------------------------------- /shared/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/.gitignore -------------------------------------------------------------------------------- /shared/.soliumignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /shared/.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/.soliumrc.json -------------------------------------------------------------------------------- /shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/README.md -------------------------------------------------------------------------------- /shared/constructor-args/andromeda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/andromeda.js -------------------------------------------------------------------------------- /shared/constructor-args/bscTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/bscTest.js -------------------------------------------------------------------------------- /shared/constructor-args/goerli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/goerli.js -------------------------------------------------------------------------------- /shared/constructor-args/harmony.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/harmony.js -------------------------------------------------------------------------------- /shared/constructor-args/harmonyTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/harmonyTest.js -------------------------------------------------------------------------------- /shared/constructor-args/mainnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/mainnet.js -------------------------------------------------------------------------------- /shared/constructor-args/matic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/matic.js -------------------------------------------------------------------------------- /shared/constructor-args/mumbai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/mumbai.js -------------------------------------------------------------------------------- /shared/constructor-args/rinkeby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/rinkeby.js -------------------------------------------------------------------------------- /shared/constructor-args/stardust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/constructor-args/stardust.js -------------------------------------------------------------------------------- /shared/contracts/.npmignore: -------------------------------------------------------------------------------- 1 | /test 2 | -------------------------------------------------------------------------------- /shared/contracts/BaseTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/contracts/BaseTemplate.sol -------------------------------------------------------------------------------- /shared/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/contracts/Migrations.sol -------------------------------------------------------------------------------- /shared/contracts/TokenCache.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/contracts/TokenCache.sol -------------------------------------------------------------------------------- /shared/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/docker-compose.yml -------------------------------------------------------------------------------- /shared/ethereum-data/geth/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/ethereum-data/geth/chaindata/000018.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/chaindata/000018.log -------------------------------------------------------------------------------- /shared/ethereum-data/geth/chaindata/000020.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/chaindata/000020.ldb -------------------------------------------------------------------------------- /shared/ethereum-data/geth/chaindata/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000019 2 | -------------------------------------------------------------------------------- /shared/ethereum-data/geth/chaindata/CURRENT.bak: -------------------------------------------------------------------------------- 1 | MANIFEST-000015 2 | -------------------------------------------------------------------------------- /shared/ethereum-data/geth/chaindata/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/ethereum-data/geth/chaindata/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/chaindata/LOG -------------------------------------------------------------------------------- /shared/ethereum-data/geth/chaindata/MANIFEST-000019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/chaindata/MANIFEST-000019 -------------------------------------------------------------------------------- /shared/ethereum-data/geth/nodekey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/nodekey -------------------------------------------------------------------------------- /shared/ethereum-data/geth/nodes/000014.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/nodes/000014.ldb -------------------------------------------------------------------------------- /shared/ethereum-data/geth/nodes/000015.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/nodes/000015.ldb -------------------------------------------------------------------------------- /shared/ethereum-data/geth/nodes/000016.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/nodes/000016.log -------------------------------------------------------------------------------- /shared/ethereum-data/geth/nodes/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000017 2 | -------------------------------------------------------------------------------- /shared/ethereum-data/geth/nodes/CURRENT.bak: -------------------------------------------------------------------------------- 1 | MANIFEST-000013 2 | -------------------------------------------------------------------------------- /shared/ethereum-data/geth/nodes/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/ethereum-data/geth/nodes/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/nodes/LOG -------------------------------------------------------------------------------- /shared/ethereum-data/geth/nodes/MANIFEST-000017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/nodes/MANIFEST-000017 -------------------------------------------------------------------------------- /shared/ethereum-data/geth/transactions.rlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/geth/transactions.rlp -------------------------------------------------------------------------------- /shared/ethereum-data/history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-05-42.637024000Z--1f7402f55e142820ea3812106d0657103fc1709e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-05-42.637024000Z--1f7402f55e142820ea3812106d0657103fc1709e -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-06-50.619577000Z--cb409caa43e385288d6bff2c3a0635688c7b3294: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-06-50.619577000Z--cb409caa43e385288d6bff2c3a0635688c7b3294 -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-07-44.712525000Z--5963e46cf9f9700e70d4d1bc09210711ab4a20b4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-07-44.712525000Z--5963e46cf9f9700e70d4d1bc09210711ab4a20b4 -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-08-02.793570000Z--75e912af38888643829380fa9f2c4019f5710ff5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-08-02.793570000Z--75e912af38888643829380fa9f2c4019f5710ff5 -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-08-34.712007000Z--83a930a41a1fbc65d65203f9477ca6d1293a4d23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-08-34.712007000Z--83a930a41a1fbc65d65203f9477ca6d1293a4d23 -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-39-33.381836000Z--830ad8ef8b5b1c7f22fde94ddb30a19b2c34c2c8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-39-33.381836000Z--830ad8ef8b5b1c7f22fde94ddb30a19b2c34c2c8 -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-39-50.916986000Z--d00c280f175a5935b3237b8504c5a8340c5a9fd0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-39-50.916986000Z--d00c280f175a5935b3237b8504c5a8340c5a9fd0 -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-40-08.561062000Z--4e8463ae7fcd8472357ceebecf20d44635a23873: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-40-08.561062000Z--4e8463ae7fcd8472357ceebecf20d44635a23873 -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-40-39.367202000Z--140725c8fafc5b59d93db9a3c86717a2bc365b2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-40-39.367202000Z--140725c8fafc5b59d93db9a3c86717a2bc365b2d -------------------------------------------------------------------------------- /shared/ethereum-data/keystore/UTC--2018-01-18T01-41-10.283422000Z--61d3fa79ba54f08dcb850c3dc802b83e3d970552: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/ethereum-data/keystore/UTC--2018-01-18T01-41-10.283422000Z--61d3fa79ba54f08dcb850c3dc802b83e3d970552 -------------------------------------------------------------------------------- /shared/helpers/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/helpers/apps.js -------------------------------------------------------------------------------- /shared/helpers/aragonId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/helpers/aragonId.js -------------------------------------------------------------------------------- /shared/helpers/assertRevert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/helpers/assertRevert.js -------------------------------------------------------------------------------- /shared/helpers/assertRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/helpers/assertRole.js -------------------------------------------------------------------------------- /shared/helpers/encodeCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/helpers/encodeCall.js -------------------------------------------------------------------------------- /shared/helpers/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/helpers/events.js -------------------------------------------------------------------------------- /shared/helpers/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/helpers/node.js -------------------------------------------------------------------------------- /shared/lib/TemplatesDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/lib/TemplatesDeployer.js -------------------------------------------------------------------------------- /shared/lib/arapp-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/lib/arapp-file.js -------------------------------------------------------------------------------- /shared/lib/ens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/lib/ens.js -------------------------------------------------------------------------------- /shared/lib/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/lib/network.js -------------------------------------------------------------------------------- /shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/package.json -------------------------------------------------------------------------------- /shared/scripts/deploy-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/scripts/deploy-template.js -------------------------------------------------------------------------------- /shared/scripts/prepare-args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/scripts/prepare-args.js -------------------------------------------------------------------------------- /shared/scripts/sleep-until-gaslimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/scripts/sleep-until-gaslimit.js -------------------------------------------------------------------------------- /shared/scripts/test-ganache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/scripts/test-ganache.sh -------------------------------------------------------------------------------- /shared/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/shared/truffle.js -------------------------------------------------------------------------------- /templates/bare/.soliumignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/bare/.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/bare/.soliumrc.json -------------------------------------------------------------------------------- /templates/bare/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/bare/arapp.json -------------------------------------------------------------------------------- /templates/bare/contracts/BareTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/bare/contracts/BareTemplate.sol -------------------------------------------------------------------------------- /templates/bare/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/bare/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /templates/bare/hardhat.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/hardhat-config') 2 | -------------------------------------------------------------------------------- /templates/bare/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bare Template" 3 | } -------------------------------------------------------------------------------- /templates/bare/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/bare/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/bare/package.json -------------------------------------------------------------------------------- /templates/bare/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/bare/scripts/deploy.js -------------------------------------------------------------------------------- /templates/bare/test/bare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/bare/test/bare.js -------------------------------------------------------------------------------- /templates/bare/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@aragon/os/truffle-config") 2 | -------------------------------------------------------------------------------- /templates/company-board/.soliumignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/company-board/.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company-board/.soliumrc.json -------------------------------------------------------------------------------- /templates/company-board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company-board/README.md -------------------------------------------------------------------------------- /templates/company-board/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company-board/arapp.json -------------------------------------------------------------------------------- /templates/company-board/contracts/CompanyBoardTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company-board/contracts/CompanyBoardTemplate.sol -------------------------------------------------------------------------------- /templates/company-board/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company-board/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /templates/company-board/hardhat.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/hardhat-config') 2 | -------------------------------------------------------------------------------- /templates/company-board/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Company with Board Template" 3 | } 4 | -------------------------------------------------------------------------------- /templates/company-board/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/company-board/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company-board/package.json -------------------------------------------------------------------------------- /templates/company-board/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company-board/scripts/deploy.js -------------------------------------------------------------------------------- /templates/company-board/test/company-board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company-board/test/company-board.js -------------------------------------------------------------------------------- /templates/company-board/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/templates-shared/truffle.js') 2 | -------------------------------------------------------------------------------- /templates/company/.soliumignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/company/.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/.soliumrc.json -------------------------------------------------------------------------------- /templates/company/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/README.md -------------------------------------------------------------------------------- /templates/company/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/arapp.json -------------------------------------------------------------------------------- /templates/company/buidler.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/buidler.config.js -------------------------------------------------------------------------------- /templates/company/cache/last-solc-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/cache/last-solc-config.json -------------------------------------------------------------------------------- /templates/company/cache/solc-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/cache/solc-input.json -------------------------------------------------------------------------------- /templates/company/cache/solc-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/cache/solc-output.json -------------------------------------------------------------------------------- /templates/company/contracts/CompanyTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/contracts/CompanyTemplate.sol -------------------------------------------------------------------------------- /templates/company/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /templates/company/hardhat.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/hardhat-config') 2 | -------------------------------------------------------------------------------- /templates/company/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Company Template" 3 | } 4 | -------------------------------------------------------------------------------- /templates/company/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/company/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/package.json -------------------------------------------------------------------------------- /templates/company/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/scripts/deploy.js -------------------------------------------------------------------------------- /templates/company/test/company.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/company/test/company.js -------------------------------------------------------------------------------- /templates/company/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/truffle-config-v4') 2 | -------------------------------------------------------------------------------- /templates/dandelion/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol diff linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /templates/dandelion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/.gitignore -------------------------------------------------------------------------------- /templates/dandelion/.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/.soliumrc.json -------------------------------------------------------------------------------- /templates/dandelion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/LICENSE -------------------------------------------------------------------------------- /templates/dandelion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/README.md -------------------------------------------------------------------------------- /templates/dandelion/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/arapp.json -------------------------------------------------------------------------------- /templates/dandelion/contracts/DandelionOrg.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/contracts/DandelionOrg.sol -------------------------------------------------------------------------------- /templates/dandelion/contracts/test/mocks/ERC20Sample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/contracts/test/mocks/ERC20Sample.sol -------------------------------------------------------------------------------- /templates/dandelion/contracts/test/mocks/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/contracts/test/mocks/TestImports.sol -------------------------------------------------------------------------------- /templates/dandelion/hardhat.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/hardhat-config') 2 | -------------------------------------------------------------------------------- /templates/dandelion/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dandelion-org-template" 3 | } 4 | -------------------------------------------------------------------------------- /templates/dandelion/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/dandelion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/package.json -------------------------------------------------------------------------------- /templates/dandelion/scripts/deploy-dao-factory-rinkeby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/scripts/deploy-dao-factory-rinkeby.js -------------------------------------------------------------------------------- /templates/dandelion/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/scripts/deploy.js -------------------------------------------------------------------------------- /templates/dandelion/scripts/install-dandelion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/scripts/install-dandelion.js -------------------------------------------------------------------------------- /templates/dandelion/test/Dandelion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/test/Dandelion.js -------------------------------------------------------------------------------- /templates/dandelion/test/helpers/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/test/helpers/apps.js -------------------------------------------------------------------------------- /templates/dandelion/test/helpers/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/test/helpers/events.js -------------------------------------------------------------------------------- /templates/dandelion/test/lib/arapp-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/test/lib/arapp-file.js -------------------------------------------------------------------------------- /templates/dandelion/test/lib/ens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/test/lib/ens.js -------------------------------------------------------------------------------- /templates/dandelion/test/lib/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/dandelion/test/lib/network.js -------------------------------------------------------------------------------- /templates/dandelion/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@aragon/os/truffle-config.js"); 2 | -------------------------------------------------------------------------------- /templates/membership/.soliumignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/membership/.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/.soliumrc.json -------------------------------------------------------------------------------- /templates/membership/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/README.md -------------------------------------------------------------------------------- /templates/membership/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/arapp.json -------------------------------------------------------------------------------- /templates/membership/buidler.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/buidler.config.js -------------------------------------------------------------------------------- /templates/membership/cache/last-solc-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/cache/last-solc-config.json -------------------------------------------------------------------------------- /templates/membership/cache/solc-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/cache/solc-input.json -------------------------------------------------------------------------------- /templates/membership/cache/solc-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/cache/solc-output.json -------------------------------------------------------------------------------- /templates/membership/contracts/MembershipTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/contracts/MembershipTemplate.sol -------------------------------------------------------------------------------- /templates/membership/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /templates/membership/hardhat.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/hardhat-config') 2 | -------------------------------------------------------------------------------- /templates/membership/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Membership Template" 3 | } 4 | -------------------------------------------------------------------------------- /templates/membership/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/membership/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/package.json -------------------------------------------------------------------------------- /templates/membership/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/scripts/deploy.js -------------------------------------------------------------------------------- /templates/membership/test/membership.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/membership/test/membership.js -------------------------------------------------------------------------------- /templates/membership/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/truffle-config-v4') 2 | -------------------------------------------------------------------------------- /templates/open-enterprise/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/.eslintrc.js -------------------------------------------------------------------------------- /templates/open-enterprise/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/.prettierrc -------------------------------------------------------------------------------- /templates/open-enterprise/.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/.solcover.js -------------------------------------------------------------------------------- /templates/open-enterprise/.soliumignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/open-enterprise/.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/.soliumrc.json -------------------------------------------------------------------------------- /templates/open-enterprise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/README.md -------------------------------------------------------------------------------- /templates/open-enterprise/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/arapp.json -------------------------------------------------------------------------------- /templates/open-enterprise/contracts/BaseCache.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/contracts/BaseCache.sol -------------------------------------------------------------------------------- /templates/open-enterprise/contracts/BaseOEApps.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/contracts/BaseOEApps.sol -------------------------------------------------------------------------------- /templates/open-enterprise/contracts/OpenEnterpriseTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/contracts/OpenEnterpriseTemplate.sol -------------------------------------------------------------------------------- /templates/open-enterprise/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /templates/open-enterprise/hardhat.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/hardhat-config') 2 | -------------------------------------------------------------------------------- /templates/open-enterprise/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Open Enterprise Template" 3 | } 4 | -------------------------------------------------------------------------------- /templates/open-enterprise/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/open-enterprise/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/package.json -------------------------------------------------------------------------------- /templates/open-enterprise/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/open-enterprise/public/MixBytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/public/MixBytes.png -------------------------------------------------------------------------------- /templates/open-enterprise/public/Template.audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/public/Template.audit.md -------------------------------------------------------------------------------- /templates/open-enterprise/scripts/create-dao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/scripts/create-dao.js -------------------------------------------------------------------------------- /templates/open-enterprise/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/scripts/deploy.js -------------------------------------------------------------------------------- /templates/open-enterprise/scripts/recover-dao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/scripts/recover-dao.js -------------------------------------------------------------------------------- /templates/open-enterprise/tasks/deploy-contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/tasks/deploy-contract.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/helpers/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/helpers/apps.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/helpers/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/helpers/events.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/lib/OEDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/lib/OEDeployer.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/lib/TemplatesDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/lib/TemplatesDeployer.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/lib/arapp-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/lib/arapp-file.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/lib/ens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/lib/ens.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/lib/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/lib/network.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/scripts/deploy-standardBounties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/scripts/deploy-standardBounties.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/scripts/deploy-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/scripts/deploy-template.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/scripts/new-dao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/scripts/new-dao.js -------------------------------------------------------------------------------- /templates/open-enterprise/temp/scripts/test-ganache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/temp/scripts/test-ganache.sh -------------------------------------------------------------------------------- /templates/open-enterprise/test/OpenEnterpriseTemplate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/test/OpenEnterpriseTemplate.test.js -------------------------------------------------------------------------------- /templates/open-enterprise/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/open-enterprise/truffle-config.js -------------------------------------------------------------------------------- /templates/reputation/.soliumignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/reputation/.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/.soliumrc.json -------------------------------------------------------------------------------- /templates/reputation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/README.md -------------------------------------------------------------------------------- /templates/reputation/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/arapp.json -------------------------------------------------------------------------------- /templates/reputation/buidler.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/buidler.config.js -------------------------------------------------------------------------------- /templates/reputation/cache/last-solc-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/cache/last-solc-config.json -------------------------------------------------------------------------------- /templates/reputation/cache/solc-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/cache/solc-input.json -------------------------------------------------------------------------------- /templates/reputation/cache/solc-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/cache/solc-output.json -------------------------------------------------------------------------------- /templates/reputation/contracts/ReputationTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/contracts/ReputationTemplate.sol -------------------------------------------------------------------------------- /templates/reputation/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /templates/reputation/hardhat.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/hardhat-config') 2 | -------------------------------------------------------------------------------- /templates/reputation/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Reputation Template" 3 | } 4 | -------------------------------------------------------------------------------- /templates/reputation/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/reputation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/package.json -------------------------------------------------------------------------------- /templates/reputation/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/scripts/deploy.js -------------------------------------------------------------------------------- /templates/reputation/test/reputation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/reputation/test/reputation.js -------------------------------------------------------------------------------- /templates/reputation/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/truffle-config-v4') 2 | -------------------------------------------------------------------------------- /templates/trust/.soliumignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/trust/.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/.soliumrc.json -------------------------------------------------------------------------------- /templates/trust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/README.md -------------------------------------------------------------------------------- /templates/trust/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/arapp.json -------------------------------------------------------------------------------- /templates/trust/contracts/MultiSigWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/contracts/MultiSigWallet.sol -------------------------------------------------------------------------------- /templates/trust/contracts/TrustTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/contracts/TrustTemplate.sol -------------------------------------------------------------------------------- /templates/trust/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /templates/trust/hardhat.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/hardhat-config') 2 | -------------------------------------------------------------------------------- /templates/trust/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Trust Template" 3 | } 4 | -------------------------------------------------------------------------------- /templates/trust/migrations/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/migrations/.keep -------------------------------------------------------------------------------- /templates/trust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/package.json -------------------------------------------------------------------------------- /templates/trust/scripts/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/scripts/create.js -------------------------------------------------------------------------------- /templates/trust/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/scripts/deploy.js -------------------------------------------------------------------------------- /templates/trust/test/trust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/dao-templates/HEAD/templates/trust/test/trust.js -------------------------------------------------------------------------------- /templates/trust/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/templates-shared/truffle.js') 2 | --------------------------------------------------------------------------------