RICO
RICO copied to clipboard
The Responsible Initial Coin Offering Framework
When doing the tutorial: ``` truffle migrate --reset --network testrpc ``` > Error: Cannot find module 'truffle-hdwallet-provider'
try `npm install solidity-compiler -g` > npm ERR! code E404 npm ERR! 404 Not Found: solidity-compiler@latest Todo: - remove from dependencies - check compilation issues without solidity-compiler
add as default NPM dependancies: ``` npm install [email protected] -g npm install solidity-compiler -g npm install ganache-cli -g ```
Hi do anyone know what this error means? I am just trying to run the deploy script.
add function for KYC executes ## Checkmethod - address - maxDonations ```js function addWhitelists(address kycProvider, address) returns (bool) {} ```
check and list all code reviews - [ ] function method check - [ ] function params declared check - [ ] function statement check - [ ] function recall...
- If a token creation event has been end, Proof of Donation executes a single Token creation event. but Some ICO project implement a second ICO strategies. RICO take off...
- Raiden contain ERC223 fixed token standard ``` /* * Contract that is working with ERC223 tokens * https://github.com/ethereum/EIPs/issues/223 */ /// @title ERC223ReceivingContract - Standard contract implementation for compatibility with...