good morning!!!!

Skip to content
Snippets Groups Projects
Commit 91824af4 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Changed getkey and secrettoaddress

parent dd45197b
No related branches found
No related tags found
No related merge requests found
...@@ -36,11 +36,14 @@ window.eth = { ...@@ -36,11 +36,14 @@ window.eth = {
postData({call: "getKey"}, cb); postData({call: "getKey"}, cb);
}, },
getBalanceAt: function(address, cb) { getBalanceAt: function(address, cb) {
postData({call: "getBalance", args: [address]}, cb); postData({call: "getBalance", args: [address]}, cb);
}, },
getSecretToAddress: function(sec, cb) {
postData({call: "getSecretToAddress", args: [sec]}, cb);
},
watch: function(address, storageAddrOrCb, cb) { watch: function(address, storageAddrOrCb, cb) {
var ev; var ev;
if(cb === undefined) { if(cb === undefined) {
......
...@@ -81,8 +81,9 @@ ApplicationWindow { ...@@ -81,8 +81,9 @@ ApplicationWindow {
break break
case "getKey": case "getKey":
var keys = eth.getKey() var key = eth.getKey().privateKey;
postData(data._seed, keys)
postData(data._seed, key)
break break
case "watch": case "watch":
require(1) require(1)
...@@ -99,14 +100,13 @@ ApplicationWindow { ...@@ -99,14 +100,13 @@ ApplicationWindow {
} }
} }
break; break;
case "getSecretToAddress":
require(1)
postData(data._seed, eth.secretToAddress(data.args[0]))
break;
case "debug": case "debug":
console.log(data.args[0]); console.log(data.args[0]);
break; break;
case "test":
console.log("in")
webview.experimental.evaluateJavaScript("hello()")
console.log("out")
break;
} }
} catch(e) { } catch(e) {
console.log(data.call + ": " + e) console.log(data.call + ": " + e)
...@@ -134,7 +134,6 @@ ApplicationWindow { ...@@ -134,7 +134,6 @@ ApplicationWindow {
postEvent("object:"+stateObject.address(), stateObject) postEvent("object:"+stateObject.address(), stateObject)
} }
function onStorageChangeCb(storageObject) { function onStorageChangeCb(storageObject) {
console.log("storage object cb", storageObject)
var ev = ["storage", storageObject.stateAddress, storageObject.address].join(":"); var ev = ["storage", storageObject.stateAddress, storageObject.address].join(":");
postEvent(ev, [storageObject.address, storageObject.value]) postEvent(ev, [storageObject.address, storageObject.value])
} }
......
...@@ -26,17 +26,19 @@ function createTransaction() { ...@@ -26,17 +26,19 @@ function createTransaction() {
function init() { function init() {
eth.set({width: 500}); eth.set({width: 500});
eth.getKey(function(keyPair) { eth.getKey(function(sec) {
mAddr = keyPair.privateKey; eth.getSecretToAddress(sec, function(addr) {
mAddr = addr;
eth.getStorageAt(jefcoinAddr, keyPair.address, function(storage) { eth.getStorageAt(jefcoinAddr, addr, function(storage) {
document.querySelector("#current-amount").innerHTML = storage; document.querySelector("#current-amount").innerHTML = storage;
}); });
eth.watch(jefcoinAddr, keyPair.address, function(addr, value) { eth.watch(jefcoinAddr, addr, function(addr, value) {
document.querySelector("#current-amount").innerHTML = value document.querySelector("#current-amount").innerHTML = value
}); });
}); });
});
} }
</script> </script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment