@alexvandesande I have not deployed a DAO, but a dao is essentially a contract right? So both dao address and contract address(token contract) are the same? Both the address are used to communicate or get that contract instance ?
http://chriseth.github.io/browser-solidity/?#gist=1e8ebf35ff1fd48aca46&version=soljson-latest.js
It says contract Democracy
clearly, but just making sure since DAO addresses were looking alittle different compared to the token contract ones.
I will be able to do a CONTRACT_NAME.at(addr_contract)
and get my instance right?
@alexvandesande I need to check for a particular account if n number of balance exist from another contract. I am assuming it is possible to call another contract, but how?
One token contract with one account with few token balances
One check contract which will have to check the deployed token contract to see if the given address has got tokens or not.
Hi, I have learned about creating a smart contract on MIST. Now I want to create a smart contract using MIX which my goal is running this contract on a browser.
I am learning this https://github.com/ethereum/wiki/wiki/Mix:-The-DApp-IDE#deployment-to-network tutorial.
After complete the contract.sol and index.html
I run the geth --testnet
command in the terminal (I am using Mac).
Then, I stuck on how to deploy.
In Ethereum node URL says, "Unable to contact Ethereum node on http://localhost:8545"
Would anyone please point me to the complete tutorial or how to solve this?