Questions tagged [openzeppelyn]

4 questions
2
votes
1 answer

Multiple imports of same file in Solidity files

I'm creating a crowdsale contract that's using open-zeppelin smart contracts and the files i'm using are the base Crowdsale.sol and the CappedCrowdsale.sol extension. So, these both files are importing the SafeMath library: import…
user8085571
2
votes
4 answers

Can't deploy smart contract on Rinkeby or Ropsten via Truffle

I've been trying to set up demo ethereum based ICO fallowing this tutorial, but each time i try to deploy contract to Ropsten or Rinkeby ir fails with this error: Running migration: 2_deploy_contracts.js Deploying SuperHeroTokenThreeCrowdsale... …
Matiss
  • 5,079
  • 2
  • 27
  • 27
0
votes
0 answers

How to deal with two versions of solr installations in zeppelin

I am using zeppelin to visualize the solr data, i am using this 3rd party interpreter (https://github.com/lucidworks/zeppelin-solr/). Now the issue is, i have two versions of solr installed on two different containers like version 6 & 8. But in…
0
votes
2 answers

how to check how many token been sold for my Smart contract

I want to create a smart contract and launch it for ICO. I also create a website where people can buy my token. I want know how to check how many token been sold (live)? so i can create a live bar counter to show how many percentages of the token…