Commit 81fb02da authored by yann300's avatar yann300

Merge pull request #11 from LianaHus/master

updated package.json
parents 16b1aef6 3c9fc69d
...@@ -2,17 +2,31 @@ ...@@ -2,17 +2,31 @@
"name": "remix", "name": "remix",
"version": "0.0.1", "version": "0.0.1",
"description": "Ethereum IDE and tools for the web", "description": "Ethereum IDE and tools for the web",
"contributors": [
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
},
{
"name": "Liana Husikyan",
"email": "liana@ethdev.com"
}
],
"main": "index.js", "main": "index.js",
"dependencies": { "dependencies": {
"babel-preset-react": "^6.5.0", "babel-preset-react": "^6.5.0",
"babelify": "^7.2.0", "babelify": "^7.2.0",
"react": "^15.0.1", "react": "^15.0.1",
"react-dom": "^15.0.1" "react-dom": "^15.0.1",
"web3": "^0.15.3"
},
"devDependencies": {
"web3": "^0.15.3"
}, },
"devDependencies": {},
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "install": "npm install --save react react-dom; npm install -g browserify; npm install --save babelify babel-preset-react; npm install web3",
"build": "browserify -t [ babelify --presets [ react ] ] src/index.js -o build/app.js" "start_node": "../../build/webthree/eth/./eth --rpccorsdomain \"*\" -j --admin-via-http -v 0",
"build": "mkdir -p build; browserify -t [ babelify --presets [ react ] ] src/index.js -o build/app.js"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
......
...@@ -27,8 +27,8 @@ module.exports = React.createClass({ ...@@ -27,8 +27,8 @@ module.exports = React.createClass({
return ( return (
<div> <div>
<div><h3>Transaction details</h3></div> <div><h3>Transaction details</h3></div>
<input onChange={this.updateBlockN} type="text" placeholder={this.state.blockNumber}></input> <input onChange={this.updateBlockN} type="text" placeholder= {"Block number e.g. : " + this.state.blockNumber}></input>
<input onChange={this.updateTxN} type="text" placeholder={this.state.txNumber}></input> <input onChange={this.updateTxN} type="text" placeholder={"Transaction Number e.g. : " + this.state.txNumber}></input>
<button onClick={this.submit}>Get</button> <button onClick={this.submit}>Get</button>
</div> </div>
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment