subtly
10 years ago
272 changed files with 17865 additions and 2798 deletions
@ -1,5 +1,5 @@ |
|||||
{ |
{ |
||||
"directory": "example/js/", |
"directory": "bower", |
||||
"cwd": "./", |
"cwd": "./", |
||||
"analytics": false |
"analytics": false |
||||
} |
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,153 @@ |
|||||
|
<!doctype> |
||||
|
<html> |
||||
|
<title>JevCoin</title> |
||||
|
<head> |
||||
|
<script type="text/javascript" src="../dist/web3.js"></script> |
||||
|
</head> |
||||
|
<body> |
||||
|
|
||||
|
<h1>JevCoin <code id="contract_addr"></code></h1> |
||||
|
<div> |
||||
|
<strong>Balance</strong> |
||||
|
<span id="balance"></strong> |
||||
|
</div> |
||||
|
|
||||
|
<div> |
||||
|
<span>Address:</span> |
||||
|
<input type="text" id="address" style="width:200px"> |
||||
|
<span>Amount:</span> |
||||
|
<input type="text" id="amount" style="width:200px"> |
||||
|
<button onclick="transact()">Send</button> |
||||
|
<span id="message"></span> |
||||
|
</div> |
||||
|
|
||||
|
<hr> |
||||
|
|
||||
|
<table width="100%" id="table"> |
||||
|
<tr><td style="width:40%;">Address</td><td>Balance</td></tr> |
||||
|
<tbody id="table_body"></tbody> |
||||
|
</table> |
||||
|
|
||||
|
</body> |
||||
|
|
||||
|
<script type="text/javascript"> |
||||
|
var web3 = require('web3'); |
||||
|
var eth = web3.eth; |
||||
|
|
||||
|
web3.setProvider(new web3.providers.HttpProvider('http://localhost:8080')); |
||||
|
var desc = [{ |
||||
|
"name": "balance(address)", |
||||
|
"type": "function", |
||||
|
"inputs": [{ |
||||
|
"name": "who", |
||||
|
"type": "address" |
||||
|
}], |
||||
|
"constant": true, |
||||
|
"outputs": [{ |
||||
|
"name": "value", |
||||
|
"type": "uint256" |
||||
|
}] |
||||
|
}, { |
||||
|
"name": "send(address,uint256)", |
||||
|
"type": "function", |
||||
|
"inputs": [{ |
||||
|
"name": "to", |
||||
|
"type": "address" |
||||
|
}, { |
||||
|
"name": "value", |
||||
|
"type": "uint256" |
||||
|
}], |
||||
|
"outputs": [] |
||||
|
}, { |
||||
|
"name":"Changed", |
||||
|
"type":"event", |
||||
|
"inputs": [ |
||||
|
{"name":"from","type":"address","indexed":true}, |
||||
|
{"name":"amount","type":"uint256","indexed":true}, |
||||
|
], |
||||
|
}]; |
||||
|
|
||||
|
var address = localStorage.getItem("address"); |
||||
|
// deploy if not exist |
||||
|
if(address === null) { |
||||
|
var code = "0x60056013565b61014f8061003a6000396000f35b620f42406000600033600160a060020a0316815260200190815260200160002081905550560060e060020a600035048063d0679d3414610020578063e3d670d71461003457005b61002e600435602435610049565b60006000f35b61003f600435610129565b8060005260206000f35b806000600033600160a060020a03168152602001908152602001600020541061007157610076565b610125565b806000600033600160a060020a03168152602001908152602001600020908154039081905550806000600084600160a060020a031681526020019081526020016000209081540190819055508033600160a060020a03167fb52dda022b6c1a1f40905a85f257f689aa5d69d850e49cf939d688fbe5af594660006000a38082600160a060020a03167fb52dda022b6c1a1f40905a85f257f689aa5d69d850e49cf939d688fbe5af594660006000a35b5050565b60006000600083600160a060020a0316815260200190815260200160002054905091905056"; |
||||
|
address = web3.eth.transact({from: eth.coinbase, data: code, gas: "1000000"}); |
||||
|
localStorage.setItem("address", address); |
||||
|
} |
||||
|
document.querySelector("#contract_addr").innerHTML = address; |
||||
|
|
||||
|
var Contract = web3.eth.contract(desc); |
||||
|
contract = new Contract(address); |
||||
|
contract.Changed({from: eth.accounts[0]}).changed(function() { |
||||
|
refresh(); |
||||
|
}); |
||||
|
|
||||
|
function refresh() { |
||||
|
document.querySelector("#balance").innerHTML = contract.balance(eth.coinbase); |
||||
|
|
||||
|
var table = document.querySelector("#table_body"); |
||||
|
table.innerHTML = ""; // clear |
||||
|
|
||||
|
/*var storage = eth.getStorage(address);*/ |
||||
|
/*table.innerHTML = "";*/ |
||||
|
/*for( var item in storage ) {*/ |
||||
|
/*table.innerHTML += "<tr><td>"+item+"</td><td>"+web3.toDecimal(storage[item])+"</td></tr>";*/ |
||||
|
/*}*/ |
||||
|
} |
||||
|
|
||||
|
function transact() { |
||||
|
var to = document.querySelector("#address"); |
||||
|
if( to.value.length == 0 ) { |
||||
|
to = "0x4205b06c2cfa0e30359edcab94543266cb6fa1d3"; |
||||
|
} else { |
||||
|
if (to.value.substr(0,2) != "0x") |
||||
|
to.value = "0x"+to.value; |
||||
|
} |
||||
|
|
||||
|
var value = document.querySelector("#amount"); |
||||
|
var amount = parseInt( value.value ); |
||||
|
console.log("transact: ", to.value, " => ", amount) |
||||
|
|
||||
|
contract.sendTransaction({from: eth.accounts[0]}).send( to.value, amount ); |
||||
|
|
||||
|
to.value = ""; |
||||
|
value.value = ""; |
||||
|
|
||||
|
var message = document.querySelector("#message") |
||||
|
message.innerHTML = "Submitted"; |
||||
|
setTimeout(function() { |
||||
|
message.innerHTML = ""; |
||||
|
}, 1000); |
||||
|
} |
||||
|
|
||||
|
refresh(); |
||||
|
</script> |
||||
|
</html> |
||||
|
|
||||
|
<!-- |
||||
|
contract JevCoin { |
||||
|
function JevCoin() |
||||
|
{ |
||||
|
balances[msg.sender] = 1000000; |
||||
|
} |
||||
|
|
||||
|
event Changed(address indexed from, uint indexed amount); |
||||
|
function send(address to, uint value) |
||||
|
{ |
||||
|
if( balances[msg.sender] < value ) return; |
||||
|
|
||||
|
balances[msg.sender] -= value; |
||||
|
balances[to] += value; |
||||
|
|
||||
|
Changed(msg.sender, value); |
||||
|
Changed(to, value); |
||||
|
} |
||||
|
|
||||
|
function balance(address who) constant returns(uint t) |
||||
|
{ |
||||
|
t = balances[who]; |
||||
|
} |
||||
|
|
||||
|
mapping(address => uint256) balances; |
||||
|
} |
||||
|
-!> |
@ -1,7 +1,14 @@ |
|||||
var web3 = require('./lib/web3'); |
// dont override global variable
|
||||
|
if (typeof web3 !== 'undefined') { |
||||
|
var web3; |
||||
|
} |
||||
|
|
||||
|
web3 = require('./lib/web3'); |
||||
web3.providers.HttpProvider = require('./lib/web3/httpprovider'); |
web3.providers.HttpProvider = require('./lib/web3/httpprovider'); |
||||
web3.providers.QtSyncProvider = require('./lib/web3/qtsync'); |
web3.providers.QtSyncProvider = require('./lib/web3/qtsync'); |
||||
web3.eth.contract = require('./lib/web3/contract'); |
web3.eth.contract = require('./lib/web3/contract'); |
||||
web3.abi = require('./lib/solidity/abi'); |
web3.abi = require('./lib/solidity/abi'); |
||||
|
|
||||
|
|
||||
|
|
||||
module.exports = web3; |
module.exports = web3; |
||||
|
@ -0,0 +1,4 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
module.exports = BigNumber; // jshint ignore:line
|
||||
|
|
@ -0,0 +1,9 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
// go env doesn't have and need XMLHttpRequest
|
||||
|
if (typeof XMLHttpRequest === 'undefined') { |
||||
|
exports.XMLHttpRequest = {}; |
||||
|
} else { |
||||
|
exports.XMLHttpRequest = XMLHttpRequest; // jshint ignore:line
|
||||
|
} |
||||
|
|
@ -0,0 +1,3 @@ |
|||||
|
{ |
||||
|
"version": "0.2.5" |
||||
|
} |
@ -0,0 +1,38 @@ |
|||||
|
/* |
||||
|
This file is part of ethereum.js. |
||||
|
|
||||
|
ethereum.js is free software: you can redistribute it and/or modify |
||||
|
it under the terms of the GNU Lesser General Public License as published by |
||||
|
the Free Software Foundation, either version 3 of the License, or |
||||
|
(at your option) any later version. |
||||
|
|
||||
|
ethereum.js is distributed in the hope that it will be useful, |
||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
GNU Lesser General Public License for more details. |
||||
|
|
||||
|
You should have received a copy of the GNU Lesser General Public License |
||||
|
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
/** |
||||
|
* @file errors.js |
||||
|
* @author Marek Kotewicz <marek@ethdev.com> |
||||
|
* @date 2015 |
||||
|
*/ |
||||
|
|
||||
|
var utils = require('../utils/utils'); |
||||
|
|
||||
|
module.exports = { |
||||
|
InvalidNumberOfParams: new Error('Invalid number of input parameters'), |
||||
|
InvalidProvider: new Error('Providor not set or invalid'), |
||||
|
InvalidResponse: function(result){ |
||||
|
var message = 'Invalid JSON RPC response'; |
||||
|
|
||||
|
if(utils.isObject(result) && result.error && result.error.message) { |
||||
|
message = result.error.message; |
||||
|
} |
||||
|
|
||||
|
return new Error(message); |
||||
|
} |
||||
|
}; |
||||
|
|
@ -0,0 +1,159 @@ |
|||||
|
/* |
||||
|
This file is part of ethereum.js. |
||||
|
|
||||
|
ethereum.js is free software: you can redistribute it and/or modify |
||||
|
it under the terms of the GNU Lesser General Public License as published by |
||||
|
the Free Software Foundation, either version 3 of the License, or |
||||
|
(at your option) any later version. |
||||
|
|
||||
|
ethereum.js is distributed in the hope that it will be useful, |
||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
GNU Lesser General Public License for more details. |
||||
|
|
||||
|
You should have received a copy of the GNU Lesser General Public License |
||||
|
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
/** |
||||
|
* @file method.js |
||||
|
* @author Marek Kotewicz <marek@ethdev.com> |
||||
|
* @date 2015 |
||||
|
*/ |
||||
|
|
||||
|
var RequestManager = require('./requestmanager'); |
||||
|
var utils = require('../utils/utils'); |
||||
|
var errors = require('./errors'); |
||||
|
|
||||
|
var Method = function (options) { |
||||
|
this.name = options.name; |
||||
|
this.call = options.call; |
||||
|
this.params = options.params || 0; |
||||
|
this.inputFormatter = options.inputFormatter; |
||||
|
this.outputFormatter = options.outputFormatter; |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should be used to determine name of the jsonrpc method based on arguments |
||||
|
* |
||||
|
* @method getCall |
||||
|
* @param {Array} arguments |
||||
|
* @return {String} name of jsonrpc method |
||||
|
*/ |
||||
|
Method.prototype.getCall = function (args) { |
||||
|
return utils.isFunction(this.call) ? this.call(args) : this.call; |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should be used to extract callback from array of arguments. Modifies input param |
||||
|
* |
||||
|
* @method extractCallback |
||||
|
* @param {Array} arguments |
||||
|
* @return {Function|Null} callback, if exists |
||||
|
*/ |
||||
|
Method.prototype.extractCallback = function (args) { |
||||
|
if (utils.isFunction(args[args.length - 1])) { |
||||
|
return args.pop(); // modify the args array!
|
||||
|
} |
||||
|
return null; |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should be called to check if the number of arguments is correct |
||||
|
* |
||||
|
* @method validateArgs |
||||
|
* @param {Array} arguments |
||||
|
* @throws {Error} if it is not |
||||
|
*/ |
||||
|
Method.prototype.validateArgs = function (args) { |
||||
|
if (args.length !== this.params) { |
||||
|
throw errors.InvalidNumberOfParams; |
||||
|
} |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should be called to format input args of method |
||||
|
* |
||||
|
* @method formatInput |
||||
|
* @param {Array} |
||||
|
* @return {Array} |
||||
|
*/ |
||||
|
Method.prototype.formatInput = function (args) { |
||||
|
if (!this.inputFormatter) { |
||||
|
return args; |
||||
|
} |
||||
|
|
||||
|
return this.inputFormatter.map(function (formatter, index) { |
||||
|
return formatter ? formatter(args[index]) : args[index]; |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should be called to format output(result) of method |
||||
|
* |
||||
|
* @method formatOutput |
||||
|
* @param {Object} |
||||
|
* @return {Object} |
||||
|
*/ |
||||
|
Method.prototype.formatOutput = function (result) { |
||||
|
return this.outputFormatter && result !== null ? this.outputFormatter(result) : result; |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should attach function to method |
||||
|
* |
||||
|
* @method attachToObject |
||||
|
* @param {Object} |
||||
|
* @param {Function} |
||||
|
*/ |
||||
|
Method.prototype.attachToObject = function (obj) { |
||||
|
var func = this.send.bind(this); |
||||
|
func.call = this.call; // that's ugly. filter.js uses it
|
||||
|
var name = this.name.split('.'); |
||||
|
if (name.length > 1) { |
||||
|
obj[name[0]] = obj[name[0]] || {}; |
||||
|
obj[name[0]][name[1]] = func; |
||||
|
} else { |
||||
|
obj[name[0]] = func; |
||||
|
} |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should create payload from given input args |
||||
|
* |
||||
|
* @method toPayload |
||||
|
* @param {Array} args |
||||
|
* @return {Object} |
||||
|
*/ |
||||
|
Method.prototype.toPayload = function (args) { |
||||
|
var call = this.getCall(args); |
||||
|
var callback = this.extractCallback(args); |
||||
|
var params = this.formatInput(args); |
||||
|
this.validateArgs(params); |
||||
|
|
||||
|
return { |
||||
|
method: call, |
||||
|
params: params, |
||||
|
callback: callback |
||||
|
}; |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should send request to the API |
||||
|
* |
||||
|
* @method send |
||||
|
* @param list of params |
||||
|
* @return result |
||||
|
*/ |
||||
|
Method.prototype.send = function () { |
||||
|
var payload = this.toPayload(Array.prototype.slice.call(arguments)); |
||||
|
if (payload.callback) { |
||||
|
var self = this; |
||||
|
return RequestManager.getInstance().sendAsync(payload, function (err, result) { |
||||
|
payload.callback(null, self.formatOutput(result)); |
||||
|
}); |
||||
|
} |
||||
|
return this.formatOutput(RequestManager.getInstance().send(payload)); |
||||
|
}; |
||||
|
|
||||
|
module.exports = Method; |
||||
|
|
@ -0,0 +1,104 @@ |
|||||
|
/* |
||||
|
This file is part of ethereum.js. |
||||
|
|
||||
|
ethereum.js is free software: you can redistribute it and/or modify |
||||
|
it under the terms of the GNU Lesser General Public License as published by |
||||
|
the Free Software Foundation, either version 3 of the License, or |
||||
|
(at your option) any later version. |
||||
|
|
||||
|
ethereum.js is distributed in the hope that it will be useful, |
||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
GNU Lesser General Public License for more details. |
||||
|
|
||||
|
You should have received a copy of the GNU Lesser General Public License |
||||
|
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
/** |
||||
|
* @file property.js |
||||
|
* @author Fabian Vogelsteller <fabian@frozeman.de> |
||||
|
* @author Marek Kotewicz <marek@ethdev.com> |
||||
|
* @date 2015 |
||||
|
*/ |
||||
|
|
||||
|
var RequestManager = require('./requestmanager'); |
||||
|
|
||||
|
var Property = function (options) { |
||||
|
this.name = options.name; |
||||
|
this.getter = options.getter; |
||||
|
this.setter = options.setter; |
||||
|
this.outputFormatter = options.outputFormatter; |
||||
|
this.inputFormatter = options.inputFormatter; |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should be called to format input args of method |
||||
|
* |
||||
|
* @method formatInput |
||||
|
* @param {Array} |
||||
|
* @return {Array} |
||||
|
*/ |
||||
|
Property.prototype.formatInput = function (arg) { |
||||
|
return this.inputFormatter ? this.inputFormatter(arg) : arg; |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should be called to format output(result) of method |
||||
|
* |
||||
|
* @method formatOutput |
||||
|
* @param {Object} |
||||
|
* @return {Object} |
||||
|
*/ |
||||
|
Property.prototype.formatOutput = function (result) { |
||||
|
return this.outputFormatter && result !== null ? this.outputFormatter(result) : result; |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should attach function to method |
||||
|
* |
||||
|
* @method attachToObject |
||||
|
* @param {Object} |
||||
|
* @param {Function} |
||||
|
*/ |
||||
|
Property.prototype.attachToObject = function (obj) { |
||||
|
var proto = { |
||||
|
get: this.get.bind(this), |
||||
|
set: this.set.bind(this) |
||||
|
}; |
||||
|
|
||||
|
var name = this.name.split('.'); |
||||
|
if (name.length > 1) { |
||||
|
obj[name[0]] = obj[name[0]] || {}; |
||||
|
Object.defineProperty(obj[name[0]], name[1], proto); |
||||
|
} else { |
||||
|
Object.defineProperty(obj, name[0], proto); |
||||
|
} |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should be used to get value of the property |
||||
|
* |
||||
|
* @method get |
||||
|
* @return {Object} value of the property |
||||
|
*/ |
||||
|
Property.prototype.get = function () { |
||||
|
return this.formatOutput(RequestManager.getInstance().send({ |
||||
|
method: this.getter |
||||
|
})); |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* Should be used to set value of the property |
||||
|
* |
||||
|
* @method set |
||||
|
* @param {Object} new value of the property |
||||
|
*/ |
||||
|
Property.prototype.set = function (value) { |
||||
|
return RequestManager.getInstance().send({ |
||||
|
method: this.setter, |
||||
|
params: [this.formatInput(value)] |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
|
module.exports = Property; |
||||
|
|
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue