I'm looking at Crowdsale.sol from OpenZeppelin / zeppelin-solidity. Here's a snippet:
import '../token/MintableToken.sol'; contract Crowdsale { MintableToken public token; After I create the Crowdsale contract on remix.ethereum.org, Crowdsale's functions and MintableToken token's address are shown. But it does not show token's functions such as balanceOf and totalSupply. Is there a way to see this, or is this lacking in remix.ethereum.org?
[Added on 2017-08-05] I want to create Crowdsale contract, send some funds there and see my balance. This does not seem possible on remix.ethereum.org. This is possible on wallet.ethereum.org because after watching Crowdsale contract, it will show the token's address. Then you can watch the token contract and balanceOf and totalSupply will appear and be accessible. After creating Crowdsale contract on remix.ethereum.org, it shows the token's address, but there seems to be no way to access the token's functions. Is this lacking in remix.ethereum.org? On remix.ethereum.org, you can create Crowdsale.sol and MintableToken.sol contracts, but the token created by the second contract is not the same token that Crowdsale created and therefore, when you send funds to Crowdsale, your funds are going to the token that Crowdsale created, not the token that the MintableToken.sol contract created.
balanceOf,totalSupply,owner,allowance,approveetc.