2014-05-10 00:00:18 +00:00
|
|
|
// Main Ethereum library
|
|
|
|
window.eth = {
|
|
|
|
prototype: Object(),
|
|
|
|
|
2014-08-13 22:18:37 +00:00
|
|
|
mutan: function(code) {
|
|
|
|
},
|
|
|
|
|
|
|
|
toHex: function(str) {
|
|
|
|
var hex = "";
|
|
|
|
for(var i = 0; i < str.length; i++) {
|
|
|
|
var n = str.charCodeAt(i).toString(16);
|
|
|
|
hex += n.length < 2 ? '0' + n : n;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hex;
|
|
|
|
},
|
|
|
|
|
|
|
|
toAscii: function(hex) {
|
|
|
|
// Find termination
|
|
|
|
var str = "";
|
|
|
|
var i = 0, l = hex.length;
|
|
|
|
for(; i < l; i+=2) {
|
|
|
|
var code = hex.charCodeAt(i)
|
|
|
|
if(code == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
str += String.fromCharCode(parseInt(hex.substr(i, 2), 16));
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
},
|
|
|
|
|
|
|
|
fromAscii: function(str, pad) {
|
|
|
|
if(pad === undefined) {
|
|
|
|
pad = 32
|
|
|
|
}
|
|
|
|
|
|
|
|
var hex = this.toHex(str);
|
|
|
|
|
|
|
|
while(hex.length < pad*2)
|
|
|
|
hex += "00";
|
|
|
|
|
|
|
|
return hex
|
|
|
|
},
|
|
|
|
|
|
|
|
|
2014-05-10 00:00:18 +00:00
|
|
|
// Retrieve block
|
|
|
|
//
|
|
|
|
// Either supply a number or a string. Type is determent for the lookup method
|
|
|
|
// string - Retrieves the block by looking up the hash
|
|
|
|
// number - Retrieves the block by looking up the block number
|
2014-08-13 22:18:37 +00:00
|
|
|
getBlock: function(numberOrHash, cb) {
|
|
|
|
var func;
|
|
|
|
if(typeof numberOrHash == "string") {
|
|
|
|
func = "getBlockByHash";
|
|
|
|
} else {
|
|
|
|
func = "getBlockByNumber";
|
|
|
|
}
|
|
|
|
postData({call: func, args: [numberOrHash]}, cb);
|
|
|
|
},
|
2014-05-10 00:00:18 +00:00
|
|
|
|
|
|
|
// Create transaction
|
|
|
|
//
|
|
|
|
// Transact between two state objects
|
2014-08-13 22:18:37 +00:00
|
|
|
transact: function(params, cb) {
|
|
|
|
if(params === undefined) {
|
|
|
|
params = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if(params.endowment !== undefined)
|
|
|
|
params.value = params.endowment;
|
|
|
|
if(params.code !== undefined)
|
|
|
|
params.data = params.code;
|
|
|
|
|
|
|
|
// Make sure everything is string
|
|
|
|
var fields = ["to", "from", "value", "gas", "gasPrice"];
|
|
|
|
for(var i = 0; i < fields.length; i++) {
|
|
|
|
if(params[fields[i]] === undefined) {
|
|
|
|
params[fields[i]] = "";
|
|
|
|
}
|
|
|
|
params[fields[i]] = params[fields[i]].toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
var data;
|
|
|
|
if(typeof params.data === "object") {
|
|
|
|
data = "";
|
|
|
|
for(var i = 0; i < params.data.length; i++) {
|
|
|
|
data += params.data[i]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
data = params.data;
|
|
|
|
}
|
2014-05-10 00:00:18 +00:00
|
|
|
|
2014-08-13 22:18:37 +00:00
|
|
|
postData({call: "transact", args: [params.from, params.to, params.value, params.gas, params.gasPrice, "0x"+data]}, cb);
|
2014-05-10 00:00:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getStorageAt: function(address, storageAddress, cb) {
|
|
|
|
postData({call: "getStorage", args: [address, storageAddress]}, cb);
|
|
|
|
},
|
|
|
|
|
2014-06-04 13:54:33 +00:00
|
|
|
getStateKeyVals: function(address, cb){
|
|
|
|
postData({call: "getStateKeyVals", args: [address]}, cb);
|
|
|
|
},
|
|
|
|
|
2014-05-10 00:00:18 +00:00
|
|
|
getKey: function(cb) {
|
|
|
|
postData({call: "getKey"}, cb);
|
|
|
|
},
|
|
|
|
|
2014-05-13 12:43:08 +00:00
|
|
|
getTxCountAt: function(address, cb) {
|
|
|
|
postData({call: "getTxCountAt", args: [address]}, cb);
|
|
|
|
},
|
|
|
|
getIsMining: function(cb){
|
|
|
|
postData({call: "getIsMining"}, cb)
|
|
|
|
},
|
|
|
|
getIsListening: function(cb){
|
|
|
|
postData({call: "getIsListening"}, cb)
|
|
|
|
},
|
|
|
|
getCoinBase: function(cb){
|
|
|
|
postData({call: "getCoinBase"}, cb);
|
|
|
|
},
|
|
|
|
getPeerCount: function(cb){
|
|
|
|
postData({call: "getPeerCount"}, cb);
|
|
|
|
},
|
2014-05-10 00:00:18 +00:00
|
|
|
getBalanceAt: function(address, cb) {
|
|
|
|
postData({call: "getBalance", args: [address]}, cb);
|
|
|
|
},
|
2014-06-25 14:12:53 +00:00
|
|
|
getTransactionsFor: function(address, cb) {
|
|
|
|
postData({call: "getTransactionsFor", args: [address]}, cb);
|
|
|
|
},
|
2014-05-10 00:00:18 +00:00
|
|
|
|
|
|
|
getSecretToAddress: function(sec, cb) {
|
|
|
|
postData({call: "getSecretToAddress", args: [sec]}, cb);
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: function(address, storageAddrOrCb, cb) {
|
|
|
|
var ev;
|
|
|
|
if(cb === undefined) {
|
|
|
|
cb = storageAddrOrCb;
|
|
|
|
storageAddrOrCb = "";
|
|
|
|
ev = "object:"+address;
|
|
|
|
} else {
|
|
|
|
ev = "storage:"+address+":"+storageAddrOrCb;
|
|
|
|
}
|
|
|
|
|
|
|
|
eth.on(ev, cb)
|
|
|
|
|
|
|
|
postData({call: "watch", args: [address, storageAddrOrCb]});
|
|
|
|
},
|
|
|
|
|
|
|
|
disconnect: function(address, storageAddrOrCb, cb) {
|
|
|
|
var ev;
|
|
|
|
if(cb === undefined) {
|
|
|
|
cb = storageAddrOrCb;
|
|
|
|
storageAddrOrCb = "";
|
|
|
|
ev = "object:"+address;
|
|
|
|
} else {
|
|
|
|
ev = "storage:"+address+":"+storageAddrOrCb;
|
|
|
|
}
|
|
|
|
|
|
|
|
eth.off(ev, cb)
|
|
|
|
|
|
|
|
postData({call: "disconnect", args: [address, storageAddrOrCb]});
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function(props) {
|
|
|
|
postData({call: "set", args: props});
|
|
|
|
},
|
|
|
|
|
|
|
|
on: function(event, cb) {
|
|
|
|
if(eth._onCallbacks[event] === undefined) {
|
|
|
|
eth._onCallbacks[event] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
eth._onCallbacks[event].push(cb);
|
|
|
|
|
|
|
|
return this
|
|
|
|
},
|
|
|
|
|
|
|
|
off: function(event, cb) {
|
|
|
|
if(eth._onCallbacks[event] !== undefined) {
|
|
|
|
var callbacks = eth._onCallbacks[event];
|
|
|
|
for(var i = 0; i < callbacks.length; i++) {
|
|
|
|
if(callbacks[i] === cb) {
|
|
|
|
delete callbacks[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this
|
|
|
|
},
|
|
|
|
|
|
|
|
trigger: function(event, data) {
|
|
|
|
var callbacks = eth._onCallbacks[event];
|
|
|
|
if(callbacks !== undefined) {
|
|
|
|
for(var i = 0; i < callbacks.length; i++) {
|
|
|
|
// Figure out whether the returned data was an array
|
|
|
|
// array means multiple return arguments (multiple params)
|
|
|
|
if(data instanceof Array) {
|
|
|
|
callbacks[i].apply(this, data);
|
|
|
|
} else {
|
|
|
|
callbacks[i].call(this, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2014-05-13 12:43:08 +00:00
|
|
|
|
|
|
|
|
2014-05-10 00:00:18 +00:00
|
|
|
}
|
|
|
|
window.eth._callbacks = {}
|
|
|
|
window.eth._onCallbacks = {}
|
|
|
|
|