├── .gitignore ├── How-it-works.md ├── LICENSE ├── README.md ├── abi ├── knc.json └── tomo.json ├── contracts ├── BigbomContributorWhiteList.sol ├── BigbomCrowdSale.sol ├── BigbomPrivateSaleList.sol ├── BigbomToken.sol ├── BigbomTokenExtended.sol ├── BigbomTokenSale.sol ├── Migrations.sol └── zeppelin │ ├── math │ └── SafeMath.sol │ ├── ownership │ └── Ownable.sol │ └── token │ ├── BasicToken.sol │ ├── ERC20.sol │ ├── ERC20Basic.sol │ └── StandardToken.sol ├── coverage.json ├── coverage ├── base.css ├── contracts │ ├── BigBomToken.sol.html │ ├── BigbomContributorWhiteList.sol.html │ ├── BigbomPrivateSaleList.sol.html │ ├── BigbomTokenSale.sol.html │ ├── index.html │ └── zeppelin │ │ ├── math │ │ ├── SafeMath.sol.html │ │ └── index.html │ │ ├── ownership │ │ ├── Ownable.sol.html │ │ └── index.html │ │ └── token │ │ ├── BasicToken.sol.html │ │ ├── ERC20.sol.html │ │ ├── ERC20Basic.sol.html │ │ ├── StandardToken.sol.html │ │ └── index.html ├── index.html ├── lcov-report │ ├── base.css │ ├── contracts │ │ ├── BigBomToken.sol.html │ │ ├── BigbomContributorWhiteList.sol.html │ │ ├── BigbomPrivateSaleList.sol.html │ │ ├── BigbomTokenSale.sol.html │ │ ├── index.html │ │ └── zeppelin │ │ │ ├── math │ │ │ ├── SafeMath.sol.html │ │ │ └── index.html │ │ │ ├── ownership │ │ │ ├── Ownable.sol.html │ │ │ └── index.html │ │ │ └── token │ │ │ ├── BasicToken.sol.html │ │ │ ├── ERC20.sol.html │ │ │ ├── ERC20Basic.sol.html │ │ │ ├── StandardToken.sol.html │ │ │ └── index.html │ ├── index.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ └── sorter.js ├── lcov.info ├── prettify.css ├── prettify.js ├── sort-arrow-sprite.png └── sorter.js ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── scripts ├── 3_setCap_private_sale.js ├── 4_transfer_private_sale.js ├── 5_deploy_bbo_ext.js ├── 6_airdrop.js ├── 7_getlisttokenholder.js ├── 8_watch_knc_event.js ├── 8_watch_refund_event.js ├── 8_watch_tomo_events.js └── 9_deploy_bbo_second_sale.js ├── test ├── helpers.js └── unit │ ├── 0_privatelist.js │ ├── 1_whitelist.js │ ├── 2_bbotokensale.js │ └── 3_bbotoken.js └── truffle.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /How-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/How-it-works.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/README.md -------------------------------------------------------------------------------- /abi/knc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/abi/knc.json -------------------------------------------------------------------------------- /abi/tomo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/abi/tomo.json -------------------------------------------------------------------------------- /contracts/BigbomContributorWhiteList.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/BigbomContributorWhiteList.sol -------------------------------------------------------------------------------- /contracts/BigbomCrowdSale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/BigbomCrowdSale.sol -------------------------------------------------------------------------------- /contracts/BigbomPrivateSaleList.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/BigbomPrivateSaleList.sol -------------------------------------------------------------------------------- /contracts/BigbomToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/BigbomToken.sol -------------------------------------------------------------------------------- /contracts/BigbomTokenExtended.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/BigbomTokenExtended.sol -------------------------------------------------------------------------------- /contracts/BigbomTokenSale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/BigbomTokenSale.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/zeppelin/math/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/zeppelin/math/SafeMath.sol -------------------------------------------------------------------------------- /contracts/zeppelin/ownership/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/zeppelin/ownership/Ownable.sol -------------------------------------------------------------------------------- /contracts/zeppelin/token/BasicToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/zeppelin/token/BasicToken.sol -------------------------------------------------------------------------------- /contracts/zeppelin/token/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/zeppelin/token/ERC20.sol -------------------------------------------------------------------------------- /contracts/zeppelin/token/ERC20Basic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/zeppelin/token/ERC20Basic.sol -------------------------------------------------------------------------------- /contracts/zeppelin/token/StandardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/contracts/zeppelin/token/StandardToken.sol -------------------------------------------------------------------------------- /coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage.json -------------------------------------------------------------------------------- /coverage/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/base.css -------------------------------------------------------------------------------- /coverage/contracts/BigBomToken.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/BigBomToken.sol.html -------------------------------------------------------------------------------- /coverage/contracts/BigbomContributorWhiteList.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/BigbomContributorWhiteList.sol.html -------------------------------------------------------------------------------- /coverage/contracts/BigbomPrivateSaleList.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/BigbomPrivateSaleList.sol.html -------------------------------------------------------------------------------- /coverage/contracts/BigbomTokenSale.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/BigbomTokenSale.sol.html -------------------------------------------------------------------------------- /coverage/contracts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/index.html -------------------------------------------------------------------------------- /coverage/contracts/zeppelin/math/SafeMath.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/zeppelin/math/SafeMath.sol.html -------------------------------------------------------------------------------- /coverage/contracts/zeppelin/math/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/zeppelin/math/index.html -------------------------------------------------------------------------------- /coverage/contracts/zeppelin/ownership/Ownable.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/zeppelin/ownership/Ownable.sol.html -------------------------------------------------------------------------------- /coverage/contracts/zeppelin/ownership/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/zeppelin/ownership/index.html -------------------------------------------------------------------------------- /coverage/contracts/zeppelin/token/BasicToken.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/zeppelin/token/BasicToken.sol.html -------------------------------------------------------------------------------- /coverage/contracts/zeppelin/token/ERC20.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/zeppelin/token/ERC20.sol.html -------------------------------------------------------------------------------- /coverage/contracts/zeppelin/token/ERC20Basic.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/zeppelin/token/ERC20Basic.sol.html -------------------------------------------------------------------------------- /coverage/contracts/zeppelin/token/StandardToken.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/zeppelin/token/StandardToken.sol.html -------------------------------------------------------------------------------- /coverage/contracts/zeppelin/token/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/contracts/zeppelin/token/index.html -------------------------------------------------------------------------------- /coverage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/BigBomToken.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/BigBomToken.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/BigbomContributorWhiteList.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/BigbomContributorWhiteList.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/BigbomPrivateSaleList.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/BigbomPrivateSaleList.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/BigbomTokenSale.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/BigbomTokenSale.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/zeppelin/math/SafeMath.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/zeppelin/math/SafeMath.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/zeppelin/math/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/zeppelin/math/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/zeppelin/ownership/Ownable.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/zeppelin/ownership/Ownable.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/zeppelin/ownership/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/zeppelin/ownership/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/zeppelin/token/BasicToken.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/zeppelin/token/BasicToken.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/zeppelin/token/ERC20.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/zeppelin/token/ERC20.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/zeppelin/token/ERC20Basic.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/zeppelin/token/ERC20Basic.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/zeppelin/token/StandardToken.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/zeppelin/token/StandardToken.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/zeppelin/token/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/contracts/zeppelin/token/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /coverage/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/prettify.css -------------------------------------------------------------------------------- /coverage/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/prettify.js -------------------------------------------------------------------------------- /coverage/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/coverage/sorter.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/package.json -------------------------------------------------------------------------------- /scripts/3_setCap_private_sale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/scripts/3_setCap_private_sale.js -------------------------------------------------------------------------------- /scripts/4_transfer_private_sale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/scripts/4_transfer_private_sale.js -------------------------------------------------------------------------------- /scripts/5_deploy_bbo_ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/scripts/5_deploy_bbo_ext.js -------------------------------------------------------------------------------- /scripts/6_airdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/scripts/6_airdrop.js -------------------------------------------------------------------------------- /scripts/7_getlisttokenholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/scripts/7_getlisttokenholder.js -------------------------------------------------------------------------------- /scripts/8_watch_knc_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/scripts/8_watch_knc_event.js -------------------------------------------------------------------------------- /scripts/8_watch_refund_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/scripts/8_watch_refund_event.js -------------------------------------------------------------------------------- /scripts/8_watch_tomo_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/scripts/8_watch_tomo_events.js -------------------------------------------------------------------------------- /scripts/9_deploy_bbo_second_sale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/scripts/9_deploy_bbo_second_sale.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/unit/0_privatelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/test/unit/0_privatelist.js -------------------------------------------------------------------------------- /test/unit/1_whitelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/test/unit/1_whitelist.js -------------------------------------------------------------------------------- /test/unit/2_bbotokensale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/test/unit/2_bbotokensale.js -------------------------------------------------------------------------------- /test/unit/3_bbotoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/test/unit/3_bbotoken.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbomio/BigBomTokenSale/HEAD/truffle.js --------------------------------------------------------------------------------