forked from 0xPolygonHermez/zkevm-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helper.go
223 lines (191 loc) · 7.35 KB
/
helper.go
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package state
import (
"fmt"
"math/big"
"strconv"
"github.com/0xPolygonHermez/zkevm-node/encoding"
"github.com/0xPolygonHermez/zkevm-node/hex"
"github.com/0xPolygonHermez/zkevm-node/log"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/rlp"
)
const (
double = 2
ether155V = 27
etherPre155V = 35
)
// EncodeTransactions RLP encodes the given transactions.
func EncodeTransactions(txs []types.Transaction) ([]byte, error) {
var batchL2Data []byte
for _, tx := range txs {
v, r, s := tx.RawSignatureValues()
sign := 1 - (v.Uint64() & 1)
nonce, gasPrice, gas, to, value, data, chainID := tx.Nonce(), tx.GasPrice(), tx.Gas(), tx.To(), tx.Value(), tx.Data(), tx.ChainId()
log.Debug(nonce, " ", gasPrice, " ", gas, " ", to, " ", value, " ", len(data), " ", chainID)
rlpFieldsToEncode := []interface{}{
nonce,
gasPrice,
gas,
to,
value,
data,
}
if tx.ChainId().Uint64() > 0 {
rlpFieldsToEncode = append(rlpFieldsToEncode, chainID)
rlpFieldsToEncode = append(rlpFieldsToEncode, uint(0))
rlpFieldsToEncode = append(rlpFieldsToEncode, uint(0))
}
txCodedRlp, err := rlp.EncodeToBytes(rlpFieldsToEncode)
if err != nil {
return nil, err
}
newV := new(big.Int).Add(big.NewInt(ether155V), big.NewInt(int64(sign)))
newRPadded := fmt.Sprintf("%064s", r.Text(hex.Base))
newSPadded := fmt.Sprintf("%064s", s.Text(hex.Base))
newVPadded := fmt.Sprintf("%02s", newV.Text(hex.Base))
txData, err := hex.DecodeString(hex.EncodeToString(txCodedRlp) + newRPadded + newSPadded + newVPadded)
if err != nil {
return nil, err
}
batchL2Data = append(batchL2Data, txData...)
}
return batchL2Data, nil
}
// EncodeUnsignedTransaction RLP encodes the given unsigned transaction
func EncodeUnsignedTransaction(tx types.Transaction, chainID uint64) ([]byte, error) {
v, _ := new(big.Int).SetString("0x1c", 0)
r, _ := new(big.Int).SetString("0xa54492cfacf71aef702421b7fbc70636537a7b2fbe5718c5ed970a001bb7756b", 0)
s, _ := new(big.Int).SetString("0x2e9fb27acc75955b898f0b12ec52aa34bf08f01db654374484b80bf12f0d841e", 0)
sign := 1 - (v.Uint64() & 1)
nonce, gasPrice, gas, to, value, data, chainID := tx.Nonce(), tx.GasPrice(), tx.Gas(), tx.To(), tx.Value(), tx.Data(), chainID //nolint:gomnd
log.Debug(nonce, " ", gasPrice, " ", gas, " ", to, " ", value, " ", len(data), " ", chainID)
txCodedRlp, err := rlp.EncodeToBytes([]interface{}{
nonce,
gasPrice,
gas,
to,
value,
data,
big.NewInt(0).SetUint64(chainID), uint(0), uint(0),
})
if err != nil {
return nil, err
}
newV := new(big.Int).Add(big.NewInt(ether155V), big.NewInt(int64(sign)))
newRPadded := fmt.Sprintf("%064s", r.Text(hex.Base))
newSPadded := fmt.Sprintf("%064s", s.Text(hex.Base))
newVPadded := fmt.Sprintf("%02s", newV.Text(hex.Base))
txData, err := hex.DecodeString(hex.EncodeToString(txCodedRlp) + newRPadded + newSPadded + newVPadded)
if err != nil {
return nil, err
}
return txData, nil
}
// DecodeTxs extracts Transactions for its encoded form
func DecodeTxs(txsData []byte) ([]types.Transaction, []byte, error) {
// Process coded txs
var pos int64
var txs []types.Transaction
const (
headerByteLength = 1
sLength = 32
rLength = 32
vLength = 1
c0 = 192 // 192 is c0. This value is defined by the rlp protocol
ff = 255 // max value of rlp header
shortRlp = 55 // length of the short rlp codification
f7 = 247 // 192 + 55 = c0 + shortRlp
mul2 = 2
)
txDataLength := len(txsData)
if txDataLength == 0 {
return txs, txsData, nil
}
for pos < int64(txDataLength) {
num, err := strconv.ParseInt(hex.EncodeToString(txsData[pos:pos+1]), hex.Base, encoding.BitSize64)
if err != nil {
log.Debug("error parsing header length: ", err)
return []types.Transaction{}, []byte{}, err
}
// First byte is the length and must be ignored
len := num - c0
if len > shortRlp { // If rlp is bigger than length 55
// n is the length of the rlp data without the header (1 byte) for example "0xf7"
n, err := strconv.ParseInt(hex.EncodeToString(txsData[pos+1:pos+1+num-f7]), hex.Base, encoding.BitSize64) // +1 is the header. For example 0xf7
if err != nil {
log.Debug("error parsing length: ", err)
return []types.Transaction{}, []byte{}, err
}
len = n + num - f7 // num - f7 is the header. For example 0xf7
}
fullDataTx := txsData[pos : pos+len+rLength+sLength+vLength+headerByteLength]
txInfo := txsData[pos : pos+len+headerByteLength]
rData := txsData[pos+len+headerByteLength : pos+len+rLength+headerByteLength]
sData := txsData[pos+len+rLength+headerByteLength : pos+len+rLength+sLength+headerByteLength]
vData := txsData[pos+len+rLength+sLength+headerByteLength : pos+len+rLength+sLength+vLength+headerByteLength]
pos = pos + len + rLength + sLength + vLength + headerByteLength
// Decode rlpFields
var rlpFields [][]byte
err = rlp.DecodeBytes(txInfo, &rlpFields)
if err != nil {
log.Debug("error decoding tx bytes: ", err, ". fullDataTx: ", hex.EncodeToString(fullDataTx), "\n tx: ", hex.EncodeToString(txInfo), "\n Txs received: ", hex.EncodeToString(txsData))
return []types.Transaction{}, []byte{}, err
}
legacyTx, chainID, err := RlpFieldsToLegacyTx(rlpFields)
if err != nil {
log.Debug("error creating tx from rlp fields: ", err, ". fullDataTx: ", hex.EncodeToString(fullDataTx), "\n tx: ", hex.EncodeToString(txInfo), "\n Txs received: ", hex.EncodeToString(txsData))
return []types.Transaction{}, []byte{}, err
}
if chainID != nil {
//v = v-27+chainId*2+35
legacyTx.V = new(big.Int).Add(new(big.Int).Sub(new(big.Int).SetBytes(vData), big.NewInt(ether155V)), new(big.Int).Add(new(big.Int).Mul(chainID, big.NewInt(mul2)), big.NewInt(etherPre155V)))
} else {
legacyTx.V = new(big.Int).SetBytes(vData)
}
legacyTx.R = new(big.Int).SetBytes(rData)
legacyTx.S = new(big.Int).SetBytes(sData)
tx := types.NewTx(legacyTx)
txs = append(txs, *tx)
}
return txs, txsData, nil
}
// DecodeTx decodes a string rlp tx representation into a types.Transaction instance
func DecodeTx(encodedTx string) (*types.Transaction, error) {
b, err := hex.DecodeHex(encodedTx)
if err != nil {
return nil, err
}
tx := new(types.Transaction)
if err := tx.UnmarshalBinary(b); err != nil {
return nil, err
}
return tx, nil
}
func generateReceipt(blockNumber *big.Int, processedTx *ProcessTransactionResponse) *types.Receipt {
receipt := &types.Receipt{
Type: uint8(processedTx.Type),
PostState: processedTx.StateRoot.Bytes(),
CumulativeGasUsed: processedTx.GasUsed,
BlockNumber: blockNumber,
GasUsed: processedTx.GasUsed,
TxHash: processedTx.Tx.Hash(),
TransactionIndex: 0,
ContractAddress: processedTx.CreateAddress,
Logs: processedTx.Logs,
}
// TODO: this fix is temporary while the Executor is returning a
// different Tx hash for the TxHash, Log.TxHash and Tx.Hash().
// At the moment, the processedTx.TxHash and Log[n].TxHash are
// returning a different hash than the Hash of the transaction
// sent to be processed by the Executor.
// The processedTx.Tx.Hash() is correct.
for i := 0; i < len(receipt.Logs); i++ {
receipt.Logs[i].TxHash = processedTx.Tx.Hash()
}
if processedTx.RomError == nil {
receipt.Status = types.ReceiptStatusSuccessful
} else {
receipt.Status = types.ReceiptStatusFailed
}
return receipt
}