forked from meetsiraja/tron-tx-decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecoder.js
379 lines (331 loc) · 12.6 KB
/
decoder.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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
const axios = require('axios')
const { utils } = require('ethers')
class TronTxDecoder {
/**
* Create a TronTxDecoder object
*
* @param {String} node the rootchain configuration string
* @param {Web3} config.web3 a web3 instance
* @param {string} config.plasmaContractAddress the address of the PlasmaFramework contract
* @return {TronTxDecoder} a TronWeb object
*
*/
constructor (node) {
this.tronNode = node;
// (this.tronWeb, this.tronNode) = initTronWeb(mainnet);
}
/**
* Decode result data from the transaction hash
*
* @method decodeResultById
* @param {string} transactionID the transaction hash
* @return {Object} decoded result with method name
*/
async decodeResultById(transactionID){
try{
let transaction = await _getTransaction(transactionID, this.tronNode);
let data = '0x'+transaction.raw_data.contract[0].parameter.value.data;
let contractAddress = transaction.raw_data.contract[0].parameter.value.contract_address;
if(contractAddress === undefined)
throw 'No Contract found for this transaction hash.';
let abi = await _getContractABI(contractAddress, this.tronNode);
const resultInput = _extractInfoFromABI(data, abi);
let functionABI = abi.find(i => i.name === resultInput.method);
if(!functionABI.outputs)
return {
methodName: resultInput.method,
outputNames: {},
outputTypes: {},
decodedOutput: { _length: 0 }
};
let outputType = functionABI.outputs;
const types = outputType.map(({type}) => type);
const names = resultInput.namesOutput;
names.forEach(function(n,l){this[l]||(this[l]=null);},names);
var encodedResult = await _getHexEncodedResult(transactionID, this.tronNode);
if(!encodedResult.includes('0x')){
let resMessage = "";
let i = 0, l = encodedResult.length;
for (; i < l; i += 2) {
let code = parseInt(encodedResult.substr(i, 2), 16);
resMessage += String.fromCharCode(code);
}
return {
methodName: resultInput.method,
outputNames: names,
outputTypes: types,
decodedOutput: resMessage
};
}
var outputs = utils.defaultAbiCoder.decode(types, encodedResult);
let outputObject = {_length: types.length}
for(var i=0; i<types.length; i++){
let output = outputs[i]
outputObject[i] = output;
}
return {
methodName: resultInput.method,
outputNames: names,
outputTypes: types,
decodedOutput: outputObject
};
}catch(err){
throw new Error(err)
}
}
/**
* Decode result data from the transaction hash
*
* @method decodeResultById
* @param {string} transactionID the transaction hash
* @return {Object} decoded result with method name
*/
async decodeInputById(transactionID){
try{
let transaction = await _getTransaction(transactionID, this.tronNode);
let data = '0x'+transaction.raw_data.contract[0].parameter.value.data;
let contractAddress = transaction.raw_data.contract[0].parameter.value.contract_address;
if(contractAddress === undefined)
throw 'No Contract found for this transaction hash.';
let abi = await _getContractABI(contractAddress, this.tronNode);
const resultInput = _extractInfoFromABI(data, abi);
var names = resultInput.namesInput;
var inputs = resultInput.inputs;
var types = resultInput.typesInput;
let inputObject = {_length: names.length};
for(var i=0; i<names.length; i++){
let input = inputs[i]
inputObject[i] = input;
}
return {
methodName: resultInput.method,
inputNames: names,
inputTypes: types,
decodedInput: inputObject
};
}catch(err){
throw new Error(err)
}
}
decodeLog(types, data) {
return utils.defaultAbiCoder.decode(types, "0x" + data);
}
async decodeLogsById(transactionID) {
try{
const unknownLog = {
eventName: 'unknown',
inputNames: [],
inputTypes: [],
decodedInput: { _length: 0 }
}
let transaction = await _getTransaction(transactionID, this.tronNode);
let contractAddress = transaction.raw_data.contract[0].parameter.value.contract_address;
if(contractAddress === undefined)
throw 'No Contract found for this transaction hash.';
let abi = await _getContractABI(contractAddress, this.tronNode);
let info = await _getTransactionInfo(transactionID, this.tronNode);
let events = abi.filter(i => i.type === 'Event');
let hexEvents = events.map(event => {
if (!event.inputs) return;
let types = event.inputs.map(({type}) => type);
let names = event.inputs.map(({name}) => name);
let hexName = _genMethodId(event.name, types);
return Object.assign(event, {
hexName,
types,
names
})
}).filter(i => i !== undefined);
let decodedLogs = [];
const createEvent = (event, decodedInput) => {
decodedLogs.push({
eventName: event.name,
inputNames: event.names,
inputTypes: event.types,
decodedInput: Object.assign({}, decodedInput)
});
}
for(let i=0; i<info.log.length; i++){
let log = info.log[i];
let eventId = log.topics[0].substring(0, 8);
let event = hexEvents.find(event => event.hexName === eventId);
if (event) {
const decode = (types) => {
try {
const decodedInput = this.decodeLog(types, log.data);
decodedLogs.push(createEvent(event, decodedInput));
} catch (error) {
decode([types[2]]);
}
}
decode(event.types);
} else {
decodedLogs.push(unknownLog);
}
}
return decodedLogs.filter(i => i !== undefined);
}catch(err){
throw new Error(err)
}
}
/**
* Decode revert message from the transaction hash (if any)
*
* @method decodeRevertMessage
* @param {string} transactionID the transaction hash
* @return {Object} decoded result with method name
*/
async decodeRevertMessage(transactionID){
try{
let transaction = await _getTransaction(transactionID, this.tronNode);
let contractAddress = transaction.raw_data.contract[0].parameter.value.contract_address;
if(contractAddress === undefined)
throw 'No Contract found for this transaction hash.';
let txStatus = transaction.ret[0].contractRet;
if(txStatus == 'REVERT'){
let encodedResult = await _getHexEncodedResult(transactionID, this.tronNode)
encodedResult = encodedResult.substring(encodedResult.length - 64, encodedResult.length);
let resMessage = (Buffer.from(encodedResult, 'hex').toString('utf8')).replace(/\0/g, '');
return {
txStatus: txStatus,
revertMessage: resMessage.replace(/\0/g, '')
};
} else {
return {
txStatus: txStatus,
revertMessage: ''
};
}
}catch(err){
throw new Error(err)
}
}
}
async function _getTransaction(transactionID, tronNode){
try{
const transaction = await axios.post(`${tronNode}/wallet/gettransactionbyid`, { value: transactionID});
if (!Object.keys(transaction.data).length)
throw 'Transaction not found';
return transaction.data
}catch(error){
throw error;
}
}
async function _getTransactionInfo(transactionID, tronNode){
try{
const transaction = await axios.post(`${tronNode}/wallet/gettransactioninfobyid`, { value: transactionID});
if (!Object.keys(transaction.data).length)
throw 'Transaction not found';
return transaction.data
}catch(error){
throw error;
}
}
async function _getHexEncodedResult(transactionID, tronNode){
try{
const transaction = await axios.post(`${tronNode}/wallet/gettransactioninfobyid`, { value: transactionID});
if (!Object.keys(transaction.data).length)
throw 'Transaction not found';
return "" == transaction.data.contractResult[0] ? transaction.data.resMessage : "0x"+transaction.data.contractResult[0];
}catch(error){
throw error;
}
}
async function _getContractABI(contractAddress, tronNode){
try{
const contract = await axios.post(`${tronNode}/wallet/getcontract`, { value: contractAddress});
if (contract.Error)
throw 'Contract does not exist';
return contract.data.abi.entrys;
}catch(error){
throw error;
}
}
function _genMethodId (methodName, types) {
const input = methodName + '(' + (types.reduce((acc, x) => {
acc.push(_handleInputs(x))
return acc
}, []).join(',')) + ')'
return utils.keccak256(Buffer.from(input)).slice(2, 10)
}
function _extractInfoFromABI(data, abi){
const dataBuf = Buffer.from(data.replace(/^0x/, ''), 'hex');
const methodId = Array.from(dataBuf.subarray(0, 4), function (byte) {
return ('0' + (byte & 0xFF).toString(16)).slice(-2);
}).join('');
var inputsBuf = dataBuf.subarray(4);
return abi.reduce((acc, obj) => {
if (obj.type === 'constructor') return acc
if (obj.type === 'event') return acc
const method = obj.name || null
let typesInput = obj.inputs ? obj.inputs.map(x => {
if (x.type === 'tuple[]') {
return x
} else {
return x.type
}
}) : [];
let typesOutput = obj.outputs ? obj.outputs.map(x => {
if (x.type === 'tuple[]') {
return x
} else {
return x.type
}
}) : []
let namesInput = obj.inputs ? obj.inputs.map(x => {
if (x.type === 'tuple[]') {
return ''
} else {
return x.name
}
}) : [];
let namesOutput = obj.outputs ? obj.outputs.map(x => {
if (x.type === 'tuple[]') {
return ''
} else {
return x.name
}
}) : []
const hash = _genMethodId(method, typesInput)
if (hash === methodId) {
let inputs = []
inputs = utils.defaultAbiCoder.decode(typesInput, inputsBuf);
return {
method,
typesInput,
inputs,
namesInput,
typesOutput,
namesOutput
}
}
return acc;
}, { method: null, typesInput: [], inputs: [], namesInput: [], typesOutput:[], namesOutput:[] });
}
function _handleInputs (input) {
let tupleArray = false
if (input instanceof Object && input.components) {
input = input.components
tupleArray = true
}
if (!Array.isArray(input)) {
if (input instanceof Object && input.type) {
return input.type
}
return input
}
let ret = '(' + input.reduce((acc, x) => {
if (x.type === 'tuple') {
acc.push(handleInputs(x.components))
} else if (x.type === 'tuple[]') {
acc.push(handleInputs(x.components) + '[]')
} else {
acc.push(x.type)
}
return acc
}, []).join(',') + ')'
if (tupleArray) {
return ret + '[]'
}
}
module.exports = TronTxDecoder;