You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
774 B
30 lines
774 B
const ethjsABI = require('ethjs-abi');
|
|
|
|
function findMethod (abi, name, args) {
|
|
for (let i = 0; i < abi.length; i++) {
|
|
const methodArgs = abi[i].inputs.map(input => input.type).join(',');
|
|
if ((abi[i].name === name) && (methodArgs === args)) {
|
|
return abi[i];
|
|
}
|
|
}
|
|
}
|
|
|
|
function sendTransaction (target, name, argsTypes, argsValues, opts) {
|
|
const abiMethod = findMethod(target.abi, name, argsTypes);
|
|
const encodedData = ethjsABI.encodeMethod(abiMethod, argsValues);
|
|
return target.sendTransaction(Object.assign({ data: encodedData }, opts));
|
|
}
|
|
|
|
function sendEther (from, to, value) {
|
|
web3.eth.sendTransaction({
|
|
from: from,
|
|
to: to,
|
|
value: value,
|
|
gasPrice: 0,
|
|
});
|
|
}
|
|
module.exports = {
|
|
findMethod,
|
|
sendTransaction,
|
|
sendEther,
|
|
};
|
|
|