Roman Storm

Results 59 issues of Roman Storm

Any docs on how would I use it for private chain?

main_files only adds some files, would be great to override it

enhancement

How would you do this ? to make sure that the url is authorized **Update: Answer from @koistya on [Gitter](https://gitter.im/kriasoft/react-starter-kit): > One way to do so is to have a...

https://gist.github.com/rstormsf/5506292c7af735e6abf1f9e7aac7714e

![image](https://user-images.githubusercontent.com/9360827/35478671-5c2e27be-0398-11e8-9245-bb2cf774acd9.png) Which timezone are current settings are being taken from?

enhancement
Step3-CrowdsaleSetup

it would be nice if you could add gitter URL link to footer: https://wizard.poa.network/ ![image](https://user-images.githubusercontent.com/9360827/44457576-6f058b80-a5b8-11e8-9318-742272f19325.png)

low priority

Hi guys, Is there a way to do https://github.com/moqod/ios-scratch-n-see in React Native? Or should I wrap this module and provide a JS bridge to use that lib? or maybe I...

enhancement
help wanted
question

As an investor, I'd like to buy tokens using contact address which is fallback function. I see this pattern is used quite extensively in your contracts with 1 caution: all...

https://github.com/TokenMarketNet/ico/blob/master/contracts/CrowdsaleBase.sol#L250 I believe that the check that if the contract is finalizeAgent should be done first and only then to modify state variable ``` function setFinalizeAgent(FinalizeAgent addr) onlyOwner { require(addr.isFinalizeAgent());...

https://github.com/TokenMarketNet/ico/blob/master/contracts/PricingStrategy.sol the contract is being used as an interface. In Solidity, there is keyword: `interface` which must be used instead of `contract` Also, it shouldn't have any state variables and...