├── .gitattributes ├── .gitbook.yaml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── images │ ├── architecture.svg │ └── icon.svg └── workflows │ └── project.yml ├── .gitignore ├── .soliumrc.json ├── .travis.yml ├── .vscode └── settings.json ├── LICENCE ├── README.md ├── Workflow.md ├── apps ├── aragon-fundraising │ ├── .solcover.js │ ├── .soliumignore │ ├── app │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ │ └── images │ │ │ │ └── icon.svg │ │ └── src │ │ │ ├── App.js │ │ │ ├── abi │ │ │ ├── BancorFormula.json │ │ │ ├── BatchedBancorMarketMaker.json │ │ │ ├── MiniMeToken.json │ │ │ ├── Pool.json │ │ │ ├── Presale.json │ │ │ ├── Tap.json │ │ │ ├── token-decimals.json │ │ │ ├── token-name.json │ │ │ └── token-symbol.json │ │ │ ├── appStateReducer │ │ │ ├── index.js │ │ │ └── utils.js │ │ │ ├── assets │ │ │ ├── EditIcon.svg │ │ │ ├── EmptyOrders.png │ │ │ ├── OverIcon.svg │ │ │ ├── TransferArrows.svg │ │ │ └── global.css │ │ │ ├── components │ │ │ ├── Chart │ │ │ │ ├── ChartWrapper.js │ │ │ │ ├── Navbar │ │ │ │ │ ├── ChartMenu.js │ │ │ │ │ ├── Filter.js │ │ │ │ │ └── index.js │ │ │ │ ├── PriceHistory.js │ │ │ │ ├── PriceVariation.js │ │ │ │ ├── Tooltip.js │ │ │ │ ├── index.js │ │ │ │ ├── setup.js │ │ │ │ └── utils.js │ │ │ ├── CircleGraph.js │ │ │ ├── DefinitionsBox.js │ │ │ ├── Disclaimer.js │ │ │ ├── IdentityManager.js │ │ │ ├── MenuButton.js │ │ │ ├── NewContribution │ │ │ │ ├── Contribution.js │ │ │ │ ├── Info.js │ │ │ │ ├── Total.js │ │ │ │ └── index.js │ │ │ ├── NewOrder │ │ │ │ ├── Info.js │ │ │ │ ├── Order.js │ │ │ │ ├── Total.js │ │ │ │ └── index.js │ │ │ ├── NewRefund │ │ │ │ ├── Information.js │ │ │ │ ├── Refund.js │ │ │ │ └── index.js │ │ │ ├── NoData.js │ │ │ ├── Orders │ │ │ │ ├── OrderState.js │ │ │ │ └── OrderTypeTag.js │ │ │ ├── PresaleGoal.js │ │ │ ├── Timeline.js │ │ │ ├── ToggleFiltersButton.js │ │ │ └── ValidationError.js │ │ │ ├── constants │ │ │ ├── index.js │ │ │ ├── order.js │ │ │ ├── polling.js │ │ │ ├── presale.js │ │ │ └── tokens.js │ │ │ ├── context.js │ │ │ ├── hooks │ │ │ └── use-interval.js │ │ │ ├── index.js │ │ │ ├── screens │ │ │ ├── CollateralError.js │ │ │ ├── Orders.js │ │ │ ├── Overview.js │ │ │ ├── Presale.js │ │ │ └── Reserves.js │ │ │ ├── script.js │ │ │ ├── utils │ │ │ ├── bn-utils.js │ │ │ └── retryEvery.js │ │ │ └── views │ │ │ ├── MainView.js │ │ │ └── PresaleView.js │ ├── arapp.json │ ├── contracts │ │ ├── .npmignore │ │ ├── AragonFundraisingController.sol │ │ └── test │ │ │ ├── TestImports.sol │ │ │ └── mocks │ │ │ └── PresaleMock.sol │ ├── manifest.json │ ├── migrations │ │ └── .keep │ ├── package.json │ ├── test │ │ ├── aragon-fundraising.js │ │ └── helpers │ │ │ ├── setup.js │ │ │ └── utils.js │ └── truffle.js ├── bancor-formula │ ├── arapp.json │ ├── contracts │ │ ├── BancorFormula.sol │ │ ├── interfaces │ │ │ └── IBancorFormula.sol │ │ └── utility │ │ │ ├── SafeMath.sol │ │ │ └── Utils.sol │ ├── manifest.json │ ├── package.json │ └── truffle.js ├── batched-bancor-market-maker │ ├── .solcover.js │ ├── .soliumignore │ ├── arapp.json │ ├── contracts │ │ ├── .npmignore │ │ ├── BatchedBancorMarketMaker.sol │ │ └── test │ │ │ └── TestImports.sol │ ├── manifest.json │ ├── migrations │ │ └── .keep │ ├── package.json │ ├── test │ │ └── batched-bancor-market-maker.js │ └── truffle.js ├── presale │ ├── .solcover.js │ ├── .soliumignore │ ├── arapp.json │ ├── contracts │ │ ├── .npmignore │ │ ├── Presale.sol │ │ └── test │ │ │ ├── TestImports.sol │ │ │ └── mocks │ │ │ └── PresaleMock.sol │ ├── manifest.json │ ├── migrations │ │ └── .keep │ ├── package.json │ ├── test │ │ ├── Close.test.js │ │ ├── Contribute.test.js │ │ ├── Refund.test.js │ │ ├── Setup.test.js │ │ ├── States.test.js │ │ ├── Vesting.test.js │ │ └── common │ │ │ ├── deploy.js │ │ │ └── utils.js │ └── truffle.js └── tap │ ├── .solcover.js │ ├── .soliumignore │ ├── arapp.json │ ├── contracts │ ├── .npmignore │ ├── Tap.sol │ └── test │ │ └── TestImports.sol │ ├── manifest.json │ ├── migrations │ └── .keep │ ├── package.json │ ├── test │ └── tap.js │ └── truffle.js ├── docs ├── .gitbook │ └── assets │ │ ├── architecture (1).svg │ │ ├── architecture.svg │ │ ├── capture-de-cran-2019-09-27-a-12.03.02.png │ │ ├── capture-de-cran-2019-09-27-a-12.04.26.png │ │ ├── capture-de-cran-2019-09-27-a-12.04.55.png │ │ ├── capture-de-cran-2019-09-27-a-12.06.04.png │ │ ├── capture-de-cran-2019-09-27-a-12.16.23.png │ │ ├── capture-de-cran-2019-09-27-a-12.19.39 (1).png │ │ ├── capture-de-cran-2019-09-27-a-12.19.39 (2).png │ │ ├── capture-de-cran-2019-09-27-a-12.19.39.png │ │ ├── image.png │ │ ├── screenshot-2019-10-11-at-09.26.59.png │ │ ├── screenshot-2019-10-11-at-09.27.07 (1).png │ │ ├── screenshot-2019-10-11-at-09.27.07.png │ │ ├── screenshot-2019-10-11-at-09.27.17.png │ │ ├── screenshot-2019-10-11-at-09.27.26.png │ │ ├── screenshot-2019-10-11-at-09.30.05 (1).png │ │ ├── screenshot-2019-10-11-at-09.30.05.png │ │ ├── screenshot-2019-10-11-at-09.30.13.png │ │ ├── screenshot-2019-10-11-at-09.47.07.png │ │ ├── screenshot-2019-10-11-at-09.48.33.png │ │ ├── screenshot-2019-10-11-at-09.48.40.png │ │ ├── screenshot-2019-10-11-at-09.49.12.png │ │ ├── screenshot-2019-10-11-at-09.50.28.png │ │ ├── screenshot-2019-10-11-at-09.50.41.png │ │ ├── screenshot-2019-10-11-at-09.51.06 (1).png │ │ ├── screenshot-2019-10-11-at-09.51.06 (2).png │ │ ├── screenshot-2019-10-11-at-09.51.06.png │ │ ├── screenshot-2019-10-11-at-09.56.25.png │ │ ├── screenshot-2019-10-11-at-10.03.28.png │ │ ├── screenshot-2019-10-11-at-10.03.53.png │ │ ├── screenshot-2019-10-11-at-10.04.01.png │ │ ├── screenshot-2019-10-11-at-10.09.55.png │ │ ├── screenshot-2019-10-11-at-10.40.50.png │ │ ├── screenshot-2019-10-11-at-10.42.07.png │ │ ├── screenshot-2019-10-11-at-10.42.35.png │ │ ├── screenshot-2019-10-11-at-10.43.20 (1).png │ │ ├── screenshot-2019-10-11-at-10.43.20.png │ │ ├── screenshot-2019-10-11-at-10.43.30.png │ │ ├── screenshot-2019-10-11-at-10.44.50.png │ │ ├── screenshot-2019-10-11-at-10.45.24.png │ │ ├── screenshot-2019-10-11-at-10.45.37.png │ │ ├── screenshot-2019-10-11-at-10.45.55.png │ │ ├── screenshot-2019-10-11-at-10.46.12.png │ │ ├── screenshot-2019-10-11-at-10.46.57.png │ │ ├── screenshot-2019-10-11-at-10.48.34 (1).png │ │ ├── screenshot-2019-10-11-at-10.48.34.png │ │ ├── screenshot-2019-10-11-at-10.56.07.png │ │ ├── screenshot-2019-10-11-at-11.07.16.png │ │ ├── screenshot-2019-10-11-at-11.07.24.png │ │ ├── screenshot-2019-10-11-at-11.22.52.png │ │ ├── screenshot-2019-10-11-at-11.23.04.png │ │ ├── screenshot-2019-10-11-at-13.10.27.png │ │ ├── screenshot-2019-10-11-at-13.12.33.png │ │ ├── screenshot-2019-10-11-at-13.18.07.png │ │ ├── screenshot-2019-10-11-at-13.56.36.png │ │ ├── screenshot-2019-10-11-at-14.02.00.png │ │ ├── screenshot-2019-10-11-at-14.07.53.png │ │ ├── screenshot-2019-10-11-at-14.10.15 (1).png │ │ ├── screenshot-2019-10-11-at-14.10.15.png │ │ ├── screenshot-2019-10-11-at-14.26.39.png │ │ ├── screenshot-2019-10-11-at-14.26.48.png │ │ ├── screenshot-2019-10-11-at-15.15.56 (1).png │ │ ├── screenshot-2019-10-11-at-15.15.56.png │ │ ├── screenshot-2019-10-11-at-15.18.06.png │ │ ├── screenshot-2019-10-11-at-15.22.07.png │ │ └── tdc-design-space-3.jpg ├── README.md ├── SUMMARY.md ├── a-what-the-dao.md ├── components │ ├── bonding-curve.md │ └── introduction.md ├── how-to │ ├── advanced-trading-settings-whitelisting-collaterals-fees.md │ ├── arbitrage.md │ ├── cli.md │ ├── controller.md │ ├── leveraging-other-aragon-apps │ │ ├── README.md │ │ └── dot-voting-and-allocations-for-the-tap.md │ ├── market-maker.md │ └── using-agent.md ├── overview-1 │ ├── b-fundraising-for-daos-1.md │ ├── components-1.md │ ├── governance.md │ └── resources.md ├── overview │ ├── curve-exit-the-withdraw-feature.md │ ├── email-notifications.md │ ├── orders-status-and-orders-claiming.md │ ├── orders-tab.md │ ├── overview-tab.md │ ├── permissions-settings.md │ ├── placing-an-order.md │ ├── pre-sale.md │ ├── reserves-tab.md │ ├── setting-up.md │ └── untitled.md ├── preface-and-resources.md └── untitled-1.md ├── faucet ├── README.md ├── assets │ └── logotype.svg ├── package.json └── src │ ├── App.js │ ├── abis │ └── TokenFactory.json │ ├── index.css │ ├── index.html │ └── index.js ├── lerna.json ├── package.json ├── prettier.config.js ├── shared ├── interfaces │ ├── .soliumignore │ ├── contracts │ │ ├── IAragonFundraisingController.sol │ │ ├── IPresale.sol │ │ └── ITap.sol │ ├── package.json │ └── truffle.js └── test-helpers │ ├── assertExternalEvent.js │ ├── constants.js │ ├── contracts │ ├── AragonFundraisingControllerMock.sol │ └── ForceSendETH.sol │ ├── events.js │ ├── forceSendETH.js │ ├── getBalance.js │ ├── getProxyAddress.js │ ├── increaseBlocks.js │ ├── package.json │ ├── progressToNextBatch.js │ └── random.js └── templates └── multisig ├── .soliumignore ├── README.md ├── arapp.json ├── contracts ├── .npmignore ├── FundraisingMultisigTemplate.sol └── test │ ├── TestImports.sol │ └── mocks │ └── TokenMock.sol ├── lib ├── TemplatesDeployer.js ├── arapp-file.js ├── deploy-template.js └── network.js ├── manifest.json ├── migrations └── .keep ├── package.json ├── scripts ├── deploy.js ├── deploy_dao.js └── deploy_raw.js ├── test ├── fundraising-multisig.js └── helpers │ └── utils.js └── truffle.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitbook.yaml: -------------------------------------------------------------------------------- 1 | root: ./docs/ 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/images/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/.github/images/architecture.svg -------------------------------------------------------------------------------- /.github/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/.github/images/icon.svg -------------------------------------------------------------------------------- /.github/workflows/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/.github/workflows/project.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/.gitignore -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/README.md -------------------------------------------------------------------------------- /Workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/Workflow.md -------------------------------------------------------------------------------- /apps/aragon-fundraising/.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/.solcover.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/.soliumignore: -------------------------------------------------------------------------------- 1 | contracts/test -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/.babelrc -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/.eslintrc.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/.gitignore -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/README.md -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/index.html -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/package.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/public/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/public/images/icon.svg -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/App.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/abi/BancorFormula.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/abi/BancorFormula.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/abi/BatchedBancorMarketMaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/abi/BatchedBancorMarketMaker.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/abi/MiniMeToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/abi/MiniMeToken.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/abi/Pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/abi/Pool.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/abi/Presale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/abi/Presale.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/abi/Tap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/abi/Tap.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/abi/token-decimals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/abi/token-decimals.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/abi/token-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/abi/token-name.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/abi/token-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/abi/token-symbol.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/appStateReducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/appStateReducer/index.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/appStateReducer/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/appStateReducer/utils.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/assets/EditIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/assets/EditIcon.svg -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/assets/EmptyOrders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/assets/EmptyOrders.png -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/assets/OverIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/assets/OverIcon.svg -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/assets/TransferArrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/assets/TransferArrows.svg -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/assets/global.css: -------------------------------------------------------------------------------- 1 | .plotly-notifier { display: none !important; } -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/ChartWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/ChartWrapper.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/Navbar/ChartMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/Navbar/ChartMenu.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/Navbar/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/Navbar/Filter.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/Navbar/index.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/PriceHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/PriceHistory.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/PriceVariation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/PriceVariation.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/Tooltip.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/index.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/setup.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Chart/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Chart/utils.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/CircleGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/CircleGraph.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/DefinitionsBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/DefinitionsBox.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Disclaimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Disclaimer.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/IdentityManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/IdentityManager.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/MenuButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/MenuButton.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewContribution/Contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewContribution/Contribution.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewContribution/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewContribution/Info.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewContribution/Total.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewContribution/Total.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewContribution/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewContribution/index.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewOrder/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewOrder/Info.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewOrder/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewOrder/Order.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewOrder/Total.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewOrder/Total.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewOrder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewOrder/index.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewRefund/Information.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewRefund/Information.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewRefund/Refund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewRefund/Refund.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NewRefund/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NewRefund/index.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/NoData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/NoData.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Orders/OrderState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Orders/OrderState.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Orders/OrderTypeTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Orders/OrderTypeTag.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/PresaleGoal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/PresaleGoal.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/Timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/Timeline.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/ToggleFiltersButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/ToggleFiltersButton.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/components/ValidationError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/components/ValidationError.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/constants/index.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/constants/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/constants/order.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/constants/polling.js: -------------------------------------------------------------------------------- 1 | export const Polling = { 2 | DURATION: 5000, // 5s 3 | } 4 | -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/constants/presale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/constants/presale.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/constants/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/constants/tokens.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/context.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/hooks/use-interval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/hooks/use-interval.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/index.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/screens/CollateralError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/screens/CollateralError.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/screens/Orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/screens/Orders.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/screens/Overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/screens/Overview.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/screens/Presale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/screens/Presale.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/screens/Reserves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/screens/Reserves.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/script.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/utils/bn-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/utils/bn-utils.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/utils/retryEvery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/utils/retryEvery.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/views/MainView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/views/MainView.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/app/src/views/PresaleView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/app/src/views/PresaleView.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/arapp.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/contracts/.npmignore: -------------------------------------------------------------------------------- 1 | /test -------------------------------------------------------------------------------- /apps/aragon-fundraising/contracts/AragonFundraisingController.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/contracts/AragonFundraisingController.sol -------------------------------------------------------------------------------- /apps/aragon-fundraising/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /apps/aragon-fundraising/contracts/test/mocks/PresaleMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/contracts/test/mocks/PresaleMock.sol -------------------------------------------------------------------------------- /apps/aragon-fundraising/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/manifest.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/aragon-fundraising/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/package.json -------------------------------------------------------------------------------- /apps/aragon-fundraising/test/aragon-fundraising.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/test/aragon-fundraising.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/test/helpers/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/test/helpers/setup.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/test/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/test/helpers/utils.js -------------------------------------------------------------------------------- /apps/aragon-fundraising/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/aragon-fundraising/truffle.js -------------------------------------------------------------------------------- /apps/bancor-formula/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/bancor-formula/arapp.json -------------------------------------------------------------------------------- /apps/bancor-formula/contracts/BancorFormula.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/bancor-formula/contracts/BancorFormula.sol -------------------------------------------------------------------------------- /apps/bancor-formula/contracts/interfaces/IBancorFormula.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/bancor-formula/contracts/interfaces/IBancorFormula.sol -------------------------------------------------------------------------------- /apps/bancor-formula/contracts/utility/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/bancor-formula/contracts/utility/SafeMath.sol -------------------------------------------------------------------------------- /apps/bancor-formula/contracts/utility/Utils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/bancor-formula/contracts/utility/Utils.sol -------------------------------------------------------------------------------- /apps/bancor-formula/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/bancor-formula/manifest.json -------------------------------------------------------------------------------- /apps/bancor-formula/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/bancor-formula/package.json -------------------------------------------------------------------------------- /apps/bancor-formula/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/os/truffle-config') 2 | -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/batched-bancor-market-maker/.solcover.js -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/.soliumignore: -------------------------------------------------------------------------------- 1 | contracts/test -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/batched-bancor-market-maker/arapp.json -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/contracts/.npmignore: -------------------------------------------------------------------------------- 1 | /test -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/contracts/BatchedBancorMarketMaker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/batched-bancor-market-maker/contracts/BatchedBancorMarketMaker.sol -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/batched-bancor-market-maker/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/batched-bancor-market-maker/manifest.json -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/batched-bancor-market-maker/package.json -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/test/batched-bancor-market-maker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/batched-bancor-market-maker/test/batched-bancor-market-maker.js -------------------------------------------------------------------------------- /apps/batched-bancor-market-maker/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/batched-bancor-market-maker/truffle.js -------------------------------------------------------------------------------- /apps/presale/.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/.solcover.js -------------------------------------------------------------------------------- /apps/presale/.soliumignore: -------------------------------------------------------------------------------- 1 | contracts/test -------------------------------------------------------------------------------- /apps/presale/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/arapp.json -------------------------------------------------------------------------------- /apps/presale/contracts/.npmignore: -------------------------------------------------------------------------------- 1 | /test -------------------------------------------------------------------------------- /apps/presale/contracts/Presale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/contracts/Presale.sol -------------------------------------------------------------------------------- /apps/presale/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /apps/presale/contracts/test/mocks/PresaleMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/contracts/test/mocks/PresaleMock.sol -------------------------------------------------------------------------------- /apps/presale/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/manifest.json -------------------------------------------------------------------------------- /apps/presale/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/presale/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/package.json -------------------------------------------------------------------------------- /apps/presale/test/Close.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/test/Close.test.js -------------------------------------------------------------------------------- /apps/presale/test/Contribute.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/test/Contribute.test.js -------------------------------------------------------------------------------- /apps/presale/test/Refund.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/test/Refund.test.js -------------------------------------------------------------------------------- /apps/presale/test/Setup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/test/Setup.test.js -------------------------------------------------------------------------------- /apps/presale/test/States.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/test/States.test.js -------------------------------------------------------------------------------- /apps/presale/test/Vesting.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/test/Vesting.test.js -------------------------------------------------------------------------------- /apps/presale/test/common/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/test/common/deploy.js -------------------------------------------------------------------------------- /apps/presale/test/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/presale/test/common/utils.js -------------------------------------------------------------------------------- /apps/presale/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/os/truffle-config') 2 | -------------------------------------------------------------------------------- /apps/tap/.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/tap/.solcover.js -------------------------------------------------------------------------------- /apps/tap/.soliumignore: -------------------------------------------------------------------------------- 1 | contracts/test -------------------------------------------------------------------------------- /apps/tap/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/tap/arapp.json -------------------------------------------------------------------------------- /apps/tap/contracts/.npmignore: -------------------------------------------------------------------------------- 1 | /test -------------------------------------------------------------------------------- /apps/tap/contracts/Tap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/tap/contracts/Tap.sol -------------------------------------------------------------------------------- /apps/tap/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/tap/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /apps/tap/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/tap/manifest.json -------------------------------------------------------------------------------- /apps/tap/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/tap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/tap/package.json -------------------------------------------------------------------------------- /apps/tap/test/tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/apps/tap/test/tap.js -------------------------------------------------------------------------------- /apps/tap/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/os/truffle-config') 2 | -------------------------------------------------------------------------------- /docs/.gitbook/assets/architecture (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/architecture (1).svg -------------------------------------------------------------------------------- /docs/.gitbook/assets/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/architecture.svg -------------------------------------------------------------------------------- /docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.03.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.03.02.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.04.26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.04.26.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.04.55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.04.55.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.06.04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.06.04.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.16.23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.16.23.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.19.39 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.19.39 (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.19.39 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.19.39 (2).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.19.39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/capture-de-cran-2019-09-27-a-12.19.39.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/image.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.26.59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.26.59.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.27.07 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.27.07 (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.27.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.27.07.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.27.17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.27.17.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.27.26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.27.26.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.30.05 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.30.05 (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.30.05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.30.05.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.30.13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.30.13.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.47.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.47.07.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.48.33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.48.33.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.48.40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.48.40.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.49.12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.49.12.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.50.28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.50.28.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.50.41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.50.41.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.51.06 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.51.06 (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.51.06 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.51.06 (2).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.51.06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.51.06.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-09.56.25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-09.56.25.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.03.28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.03.28.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.03.53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.03.53.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.04.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.04.01.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.09.55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.09.55.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.40.50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.40.50.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.42.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.42.07.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.42.35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.42.35.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.43.20 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.43.20 (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.43.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.43.20.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.43.30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.43.30.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.44.50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.44.50.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.45.24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.45.24.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.45.37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.45.37.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.45.55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.45.55.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.46.12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.46.12.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.46.57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.46.57.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.48.34 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.48.34 (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.48.34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.48.34.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-10.56.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-10.56.07.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-11.07.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-11.07.16.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-11.07.24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-11.07.24.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-11.22.52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-11.22.52.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-11.23.04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-11.23.04.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-13.10.27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-13.10.27.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-13.12.33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-13.12.33.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-13.18.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-13.18.07.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-13.56.36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-13.56.36.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-14.02.00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-14.02.00.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-14.07.53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-14.07.53.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-14.10.15 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-14.10.15 (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-14.10.15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-14.10.15.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-14.26.39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-14.26.39.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-14.26.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-14.26.48.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-15.15.56 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-15.15.56 (1).png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-15.15.56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-15.15.56.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-15.18.06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-15.18.06.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/screenshot-2019-10-11-at-15.22.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/screenshot-2019-10-11-at-15.22.07.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/tdc-design-space-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/.gitbook/assets/tdc-design-space-3.jpg -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/a-what-the-dao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/a-what-the-dao.md -------------------------------------------------------------------------------- /docs/components/bonding-curve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/components/bonding-curve.md -------------------------------------------------------------------------------- /docs/components/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/components/introduction.md -------------------------------------------------------------------------------- /docs/how-to/advanced-trading-settings-whitelisting-collaterals-fees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/how-to/advanced-trading-settings-whitelisting-collaterals-fees.md -------------------------------------------------------------------------------- /docs/how-to/arbitrage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/how-to/arbitrage.md -------------------------------------------------------------------------------- /docs/how-to/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/how-to/cli.md -------------------------------------------------------------------------------- /docs/how-to/controller.md: -------------------------------------------------------------------------------- 1 | # Controller 2 | 3 | -------------------------------------------------------------------------------- /docs/how-to/leveraging-other-aragon-apps/README.md: -------------------------------------------------------------------------------- 1 | # Leveraging other Aragon Apps 2 | 3 | -------------------------------------------------------------------------------- /docs/how-to/leveraging-other-aragon-apps/dot-voting-and-allocations-for-the-tap.md: -------------------------------------------------------------------------------- 1 | # Dot Voting and Allocations for the Tap 2 | 3 | -------------------------------------------------------------------------------- /docs/how-to/market-maker.md: -------------------------------------------------------------------------------- 1 | # Market Maker 2 | 3 | -------------------------------------------------------------------------------- /docs/how-to/using-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/how-to/using-agent.md -------------------------------------------------------------------------------- /docs/overview-1/b-fundraising-for-daos-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview-1/b-fundraising-for-daos-1.md -------------------------------------------------------------------------------- /docs/overview-1/components-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview-1/components-1.md -------------------------------------------------------------------------------- /docs/overview-1/governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview-1/governance.md -------------------------------------------------------------------------------- /docs/overview-1/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview-1/resources.md -------------------------------------------------------------------------------- /docs/overview/curve-exit-the-withdraw-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/curve-exit-the-withdraw-feature.md -------------------------------------------------------------------------------- /docs/overview/email-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/email-notifications.md -------------------------------------------------------------------------------- /docs/overview/orders-status-and-orders-claiming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/orders-status-and-orders-claiming.md -------------------------------------------------------------------------------- /docs/overview/orders-tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/orders-tab.md -------------------------------------------------------------------------------- /docs/overview/overview-tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/overview-tab.md -------------------------------------------------------------------------------- /docs/overview/permissions-settings.md: -------------------------------------------------------------------------------- 1 | # Permissions Settings 2 | 3 | -------------------------------------------------------------------------------- /docs/overview/placing-an-order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/placing-an-order.md -------------------------------------------------------------------------------- /docs/overview/pre-sale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/pre-sale.md -------------------------------------------------------------------------------- /docs/overview/reserves-tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/reserves-tab.md -------------------------------------------------------------------------------- /docs/overview/setting-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/setting-up.md -------------------------------------------------------------------------------- /docs/overview/untitled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/overview/untitled.md -------------------------------------------------------------------------------- /docs/preface-and-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/preface-and-resources.md -------------------------------------------------------------------------------- /docs/untitled-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/docs/untitled-1.md -------------------------------------------------------------------------------- /faucet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/faucet/README.md -------------------------------------------------------------------------------- /faucet/assets/logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/faucet/assets/logotype.svg -------------------------------------------------------------------------------- /faucet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/faucet/package.json -------------------------------------------------------------------------------- /faucet/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/faucet/src/App.js -------------------------------------------------------------------------------- /faucet/src/abis/TokenFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/faucet/src/abis/TokenFactory.json -------------------------------------------------------------------------------- /faucet/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/faucet/src/index.css -------------------------------------------------------------------------------- /faucet/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/faucet/src/index.html -------------------------------------------------------------------------------- /faucet/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/faucet/src/index.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/prettier.config.js -------------------------------------------------------------------------------- /shared/interfaces/.soliumignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/interfaces/contracts/IAragonFundraisingController.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/interfaces/contracts/IAragonFundraisingController.sol -------------------------------------------------------------------------------- /shared/interfaces/contracts/IPresale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/interfaces/contracts/IPresale.sol -------------------------------------------------------------------------------- /shared/interfaces/contracts/ITap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/interfaces/contracts/ITap.sol -------------------------------------------------------------------------------- /shared/interfaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/interfaces/package.json -------------------------------------------------------------------------------- /shared/interfaces/truffle.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@aragon/os/truffle-config') 2 | -------------------------------------------------------------------------------- /shared/test-helpers/assertExternalEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/assertExternalEvent.js -------------------------------------------------------------------------------- /shared/test-helpers/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/constants.js -------------------------------------------------------------------------------- /shared/test-helpers/contracts/AragonFundraisingControllerMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/contracts/AragonFundraisingControllerMock.sol -------------------------------------------------------------------------------- /shared/test-helpers/contracts/ForceSendETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/contracts/ForceSendETH.sol -------------------------------------------------------------------------------- /shared/test-helpers/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/events.js -------------------------------------------------------------------------------- /shared/test-helpers/forceSendETH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/forceSendETH.js -------------------------------------------------------------------------------- /shared/test-helpers/getBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/getBalance.js -------------------------------------------------------------------------------- /shared/test-helpers/getProxyAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/getProxyAddress.js -------------------------------------------------------------------------------- /shared/test-helpers/increaseBlocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/increaseBlocks.js -------------------------------------------------------------------------------- /shared/test-helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/package.json -------------------------------------------------------------------------------- /shared/test-helpers/progressToNextBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/progressToNextBatch.js -------------------------------------------------------------------------------- /shared/test-helpers/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/shared/test-helpers/random.js -------------------------------------------------------------------------------- /templates/multisig/.soliumignore: -------------------------------------------------------------------------------- 1 | contracts/test -------------------------------------------------------------------------------- /templates/multisig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/README.md -------------------------------------------------------------------------------- /templates/multisig/arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/arapp.json -------------------------------------------------------------------------------- /templates/multisig/contracts/.npmignore: -------------------------------------------------------------------------------- 1 | /test -------------------------------------------------------------------------------- /templates/multisig/contracts/FundraisingMultisigTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/contracts/FundraisingMultisigTemplate.sol -------------------------------------------------------------------------------- /templates/multisig/contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /templates/multisig/contracts/test/mocks/TokenMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/contracts/test/mocks/TokenMock.sol -------------------------------------------------------------------------------- /templates/multisig/lib/TemplatesDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/lib/TemplatesDeployer.js -------------------------------------------------------------------------------- /templates/multisig/lib/arapp-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/lib/arapp-file.js -------------------------------------------------------------------------------- /templates/multisig/lib/deploy-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/lib/deploy-template.js -------------------------------------------------------------------------------- /templates/multisig/lib/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/lib/network.js -------------------------------------------------------------------------------- /templates/multisig/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Fundraising with Multisig Template" 3 | } 4 | -------------------------------------------------------------------------------- /templates/multisig/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/multisig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/package.json -------------------------------------------------------------------------------- /templates/multisig/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/scripts/deploy.js -------------------------------------------------------------------------------- /templates/multisig/scripts/deploy_dao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/scripts/deploy_dao.js -------------------------------------------------------------------------------- /templates/multisig/scripts/deploy_raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/scripts/deploy_raw.js -------------------------------------------------------------------------------- /templates/multisig/test/fundraising-multisig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/test/fundraising-multisig.js -------------------------------------------------------------------------------- /templates/multisig/test/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/test/helpers/utils.js -------------------------------------------------------------------------------- /templates/multisig/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AragonBlack/fundraising/HEAD/templates/multisig/truffle.js --------------------------------------------------------------------------------