65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
// jail.Send() expects to find the current message id in `status.message_id`
|
|
// (if not found message id will not be injected, and operation will proceed)
|
|
var status = {
|
|
message_id: '42'
|
|
};
|
|
|
|
var _status_catalog = {
|
|
commands: {},
|
|
responses: {}
|
|
};
|
|
|
|
function call(pathStr, paramsStr) {
|
|
var params = JSON.parse(paramsStr),
|
|
path = JSON.parse(pathStr),
|
|
fn, res;
|
|
|
|
fn = path.reduce(function(catalog, name) {
|
|
if (catalog && catalog[name]) {
|
|
return catalog[name];
|
|
}
|
|
}, _status_catalog);
|
|
|
|
if (!fn) {
|
|
return null;
|
|
}
|
|
|
|
// while fn wll be executed context will be populated
|
|
// by addContext calls from status-go
|
|
res = fn(params);
|
|
|
|
return JSON.stringify(res);
|
|
}
|
|
|
|
function sendTransaction(params) {
|
|
var data = {
|
|
from: params.from,
|
|
to: params.to,
|
|
value: web3.toWei(params.value, "ether")
|
|
};
|
|
|
|
// message_id allows you to distinguish between !send invocations
|
|
// (when you receive transaction queued event, message_id will be
|
|
// attached along the queued transaction id)
|
|
status.message_id = 'foobar';
|
|
|
|
// Blocking call, it will return when transaction is complete.
|
|
// While call is executing, status-go will call up the application,
|
|
// allowing it to validate and complete transaction
|
|
var hash = web3.eth.sendTransaction(data);
|
|
|
|
return {"transaction-hash": hash};
|
|
}
|
|
|
|
_status_catalog.commands['send'] = sendTransaction;
|
|
_status_catalog.commands['getBalance'] = function (params) {
|
|
var balance = web3.eth.getBalance(params.address);
|
|
balance = web3.fromWei(balance, "ether");
|
|
if (balance < 90) {
|
|
console.log("Unexpected balance (<90): ", balance)
|
|
}
|
|
// used in tx tests, to check that non-context, non-message-is requests work too
|
|
// so actual balance is not important
|
|
return {"balance": 42}
|
|
};
|