ethereum-webpack-example-dapp icon indicating copy to clipboard operation
ethereum-webpack-example-dapp copied to clipboard

Template for Ethereum (Solidity) smart contract decentralized app (dapp) and test suite with Webpack.

Results 5 ethereum-webpack-example-dapp issues
Sort by recently updated
recently updated
newest added

Everything will work just fine with the new syntax. Only the `solc` is to be upgraded as well via: ``` npm install [email protected] ```

``` web3Loader: { constructorParams: { MyToken: [ 250000, 'The Coin', 2, 'TC$', '1.0.0' ] } }, ``` `Invalid configuration object. Webpack has been initialised using a configuration object that does...

Just trying to get this working, but I get an error trying to run `npm start`: ``` [543] ./dapp/js/component/Web3.jsx 1.65 kB {0} [built] [1 error] [545] ./dapp/js/component/MyToken.jsx 1.65 kB {0}...

question

``` main.js:110 Uncaught TypeError: Cannot read property 'name' of undefined at renderTokenDetails (main.js:110) at window.onload (main.js:68) ``` ``` function renderTokenDetails() { document.getElementById('token-name').innerHTML = _MyToken.MyToken.name(); document.getElementById('token-symbol').innerHTML = _MyToken.MyToken.symbol(); document.getElementById('total-supply').innerHTML = _MyToken.MyToken.totalSupply();...

There are currently these popular Ethereum DAapp frameworks: Truffle, Dapple, Embark. I'm wondering if there is room for another one, an expansion of this repo, that keeps the following visions:...

discussion