├── .github └── FUNDING.yml ├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── contract-builder ├── index.js └── template │ ├── contracts │ ├── Crowdsale.sol │ ├── Migrations.sol │ └── Token.sol │ ├── deploy.sh │ ├── migrations │ └── 1_initial_migration.js │ ├── package-lock.json │ ├── package.json │ ├── scripts │ ├── createRealAccount.js │ ├── createTestAccount.js │ └── setDefaultAccount.js │ ├── truffle-config.js │ └── truffle.js ├── contract-constructor.js ├── contract ├── contracts │ ├── FDUCrowdsale.sol │ ├── FDUToken.sol │ └── flat.sol ├── migrations │ └── 1_initial_migration.js ├── package-lock.json ├── package.json ├── truffle-config.js └── truffle.js ├── docs └── CNAME ├── img ├── logo.png └── ph.png ├── index.html └── style.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: backmeupplz 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | fondu.io -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/README.md -------------------------------------------------------------------------------- /contract-builder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/index.js -------------------------------------------------------------------------------- /contract-builder/template/contracts/Crowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/contracts/Crowdsale.sol -------------------------------------------------------------------------------- /contract-builder/template/contracts/Migrations.sol: -------------------------------------------------------------------------------- 1 | pragma solidity ^0.5.8; 2 | 3 | contract Migrations {} -------------------------------------------------------------------------------- /contract-builder/template/contracts/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/contracts/Token.sol -------------------------------------------------------------------------------- /contract-builder/template/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/deploy.sh -------------------------------------------------------------------------------- /contract-builder/template/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /contract-builder/template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/package-lock.json -------------------------------------------------------------------------------- /contract-builder/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/package.json -------------------------------------------------------------------------------- /contract-builder/template/scripts/createRealAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/scripts/createRealAccount.js -------------------------------------------------------------------------------- /contract-builder/template/scripts/createTestAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/scripts/createTestAccount.js -------------------------------------------------------------------------------- /contract-builder/template/scripts/setDefaultAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/scripts/setDefaultAccount.js -------------------------------------------------------------------------------- /contract-builder/template/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/truffle-config.js -------------------------------------------------------------------------------- /contract-builder/template/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-builder/template/truffle.js -------------------------------------------------------------------------------- /contract-constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract-constructor.js -------------------------------------------------------------------------------- /contract/contracts/FDUCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract/contracts/FDUCrowdsale.sol -------------------------------------------------------------------------------- /contract/contracts/FDUToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract/contracts/FDUToken.sol -------------------------------------------------------------------------------- /contract/contracts/flat.sol: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contract/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /contract/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract/package-lock.json -------------------------------------------------------------------------------- /contract/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract/package.json -------------------------------------------------------------------------------- /contract/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract/truffle-config.js -------------------------------------------------------------------------------- /contract/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/contract/truffle.js -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | fondu.io -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/img/ph.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/index.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borodutch/fondu/HEAD/style.css --------------------------------------------------------------------------------