-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsigner-ethereumjs.js
80 lines (71 loc) · 2.2 KB
/
signer-ethereumjs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
'use strict';
const EthereumTx = require('ethereumjs-tx')
const ethUtil = require('ethereumjs-util')
module.exports = (rawTx, param) => {
// Check rawTxd
if (rawTx === undefined || rawTx === {}) {
throw("rawTx is undefined or empty")
}
if (rawTx.to === undefined) {
throw("rawTx.to is undefined")
}
if (rawTx.data === undefined) {
throw("rawTx.data is undefined")
}
if (rawTx.gasPrice === undefined) {
throw("rawTx.gasPrice is undefined")
}
if (rawTx.nonce === undefined) {
throw("rawTx.nonce is undefined")
}
//Check param
if (param === undefined || param === {}) {
throw("param is undefined or empty")
}
if (param.contractAddress === undefined) {
throw("param.contractAddress is undefined")
}
if (ethUtil.isValidAddress(param.contractAddress) === false) {
throw("param.contractAddress is not a valid address")
}
if (param.wallet === undefined || param.wallet === {}) {
throw("param.wallet is undefined or empty")
}
if (param.wallet.public === undefined) {
throw("param.wallet.public is undefined")
}
if (ethUtil.isValidAddress(param.wallet.public) === false) {
throw("param.wallet.public is not a valid address")
}
if (param.wallet.private === undefined) {
throw("param.wallet.private is undefined")
}
if (param.wallet.maxGas === undefined) {
throw("param.wallet.maxGas is undefined")
}
const privateKey = ethUtil.toBuffer(ethUtil.addHexPrefix(param.wallet.private))
if (ethUtil.isValidPrivate(privateKey) === false) {
throw("param.wallet.private is not a valid private key")
}
const publicKey = ethUtil.bufferToHex(ethUtil.privateToAddress(privateKey))
if (param.wallet.public !== publicKey) {
throw("param.wallet.public is does not match the private key")
}
//check authorization
if (rawTx.to !== param.contractAddress) {
throw("rawTx.to is not same as contractAddress")
}
//replace rawTx data
rawTx.from = param.wallet.public
rawTx.gas = param.wallet.maxGas
//sign
const tx = new EthereumTx(rawTx)
tx.sign(privateKey)
//validate
let error = tx.validate(true)
if (error.length > 0) {
throw error
}
const serializedTx = ethUtil.bufferToHex(tx.serialize())
return serializedTx
}