-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
452 lines (417 loc) · 19.6 KB
/
index.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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
// index.js
require('dotenv').config();
const bs58 = require('bs58');
const BN = require('bn.js');
const Buffer = require('buffer').Buffer;
const { Connection, LAMPORTS_PER_SOL, PublicKey, TransactionInstruction } = require('@solana/web3.js');
const { stringify } = require('csv-stringify/sync');
// const { publicKey, u64 } = require('@solana/buffer-layout-utils');
// const { blob, u8, u32, nu64, ns64, struct, seq } = require('@solana/buffer-layout'); // Layout
const programMap = require('./src/utils/programMap');
const { parseSystemInstruction } = require('./src/system/system');
const { parseStakeInstruction } = require('./src/stake/stake');
const { parseVoteInstruction } = require('./src/vote/vote');
const { parseSplTokenInstruction } = require('./src/spl-token/spl-token');
const { parseComputeBudgetInstruction } = require('./src/compute-budget/compute-budget');
const { getOwnerOrTokenOwner, findOwnerBalanceChanges, findTokenBalanceChanges } = require('./src/utils/balanceChanges');
const { parseMerkleDistInstruction } = require('./src/merkle-distributor/merkle-distributor');
const { parseUnknownInstruction } = require('./src/unknown');
const { logCSV, getCSVHeader } = require('./src/utils/csvlogger');
const { logJSON } = require('./src/utils/jsonlogger');
const SOLANA_CONNECTION = new Connection(process.env.SOLANA_CONNECTION, 'confirmed', {
maxSupportedTransactionVersion: 0
});
async function parseSolanaTransaction() {
try {
const promises = []; // Array to hold promises
const signature = process.argv[2];
const userAccount = process.argv[3]
const format = process.argv[4]
const data = await SOLANA_CONNECTION.getTransaction(signature, {
maxSupportedTransactionVersion: 0
});
// console.log(`data: ${JSON.stringify(data, null, 2)}`);
let jsonOutput = [];
let csvOutput = [getCSVHeader()];
const tx_version = data?.version;
// console.log(`tx_version: ${tx_version}`);
let accountKeys = [];
let preBalances = [];
let postBalances = [];
let preTokenBalances = [];
let postTokenBalances = [];
let signers = [];
if (tx_version === "legacy") {
accountKeys = data?.transaction.message.accountKeys;
preBalances = data?.meta.preBalances;
postBalances = data?.meta.postBalances;
preTokenBalances = data?.meta.preTokenBalances;
postTokenBalances = data?.meta.postTokenBalances;
signers = data?.transaction.message.accountKeys.slice(0, data?.transaction.message.header.numRequiredSignatures) || null;
} else if (tx_version === 0) {
accountKeys = data?.transaction.message.staticAccountKeys
// console.log(`accountKeys: ${JSON.stringify(accountKeys, null, 2)}`);
preBalances = data?.meta.preBalances
postBalances = data?.meta.postBalances
preTokenBalances = data?.meta.preTokenBalances
postTokenBalances = data?.meta.postTokenBalances
signers = data?.transaction.message.staticAccountKeys.slice(0, data?.transaction.message.header.numRequiredSignatures) || null;
} else {
console.log(`tx_version not supported: ${tx_version}`);
}
let owner;
if (userAccount.length > 40) { // userAccount = string; if length > 40, it's a pubkey provided
owner = await getOwnerOrTokenOwner(userAccount);
// console.log(`owner provided: ${owner}`);
} else { // if an empty or null field provided, use the first signer as the owner
owner = new PublicKey(signers[0]).toBase58();
// owner = signers[0];
// console.log(`owner extracted: ${owner}`);
}
// console.log(JSON.stringify(data, null, 2));
// console.log(`signers: ${JSON.stringify(signers, null, 2)}`);
// balance changes logic
const ownerBalanceChanges = await findOwnerBalanceChanges(accountKeys, preBalances, postBalances, owner)
// console.log(`ownerBalanceChanges: ${JSON.stringify(ownerBalanceChanges, null, 2)}`);
// const ownerTokenBalanceChanges = [];
const ownerTokenBalanceChanges = await findTokenBalanceChanges(preTokenBalances, postTokenBalances, owner, accountKeys)
// console.log(`ownerTokenBalanceChanges: ${JSON.stringify(ownerTokenBalanceChanges, null, 2)}`);
// // create txContext
const transaction = data;
const txContext = {};
txContext.signature = signature;
txContext.slot = data?.slot;
txContext.blocktime = data?.blockTime;
txContext.err = data?.meta.err;
txContext.fee = data?.meta.fee / LAMPORTS_PER_SOL;
txContext.data = data;
txContext.owner = owner;
txContext.ownerBalanceChanges = ownerBalanceChanges;
txContext.ownerTokenBalanceChanges = ownerTokenBalanceChanges;
txContext.signers = signers;
// console.log(`txContext: ${JSON.stringify(txContext, null, 2)}`);
// iterate through all instructions
if (tx_version == "legacy") {
data?.transaction.message.instructions.map(async (instr, index) => {
const { accounts, data, programIdIndex } = instr;
const keys = accounts.map(accountIndex => ({
pubkey: new PublicKey(transaction.transaction.message.accountKeys[accountIndex]),
isSigner: transaction.transaction.message.header.numRequiredSignatures > accountIndex,
isWritable: transaction.transaction.message.header.numReadonlySignedAccounts > accountIndex ||
transaction.transaction.message.header.numReadonlyUnsignedAccounts > (accountIndex - transaction.transaction.message.header.numRequiredSignatures)
}));
const programId = new PublicKey(transaction.transaction.message.accountKeys[programIdIndex]);
const dataBuffer = bs58.decode(data);
const instruction = new TransactionInstruction({
keys,
programId,
data: dataBuffer
});
const program = programMap.get(programId.toBase58()) || "unknown";
// fetch the instruction discriminator
const ix = bs58.decode(instr.data);
let disc;
try {
if (program === 'spl-token') {
disc = ix.slice(0, 1);
} else {
disc = (Buffer.from(ix.slice(0, 4))).readUInt32LE()
}
} catch (err) {
disc = 999;
}
// pass each instruction off to different parser modules
if (program == 'system') {
resultPromise = parseSystemInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else if (program == 'stake') {
resultPromise = parseStakeInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else if (program == 'vote') {
resultPromise = parseVoteInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else if (program == 'spl-token') {
const resultPromise = parseSplTokenInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else if (program == 'compute-budget') {
// promise wasn't needed, because parseComputeBudgetInstruction was not async until you messed with it.
const resultPromise = parseComputeBudgetInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else {
resultPromise = parseUnknownInstruction(txContext, disc, instruction, ix, program);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
});
}
else if (tx_version === 0) {
data?.transaction.message.compiledInstructions.map(async (instr, index) => {
const { accountKeyIndexes, data, programIdIndex } = instr;
// console.log(`accountKeyIndexes: ${JSON.stringify(accountKeyIndexes, null, 2)}`);
const keys = accountKeyIndexes.map(accountIndex => ({
pubkey: new PublicKey(transaction.transaction.message.staticAccountKeys[accountIndex]),
isSigner: transaction.transaction.message.header.numRequiredSignatures > accountIndex,
isWritable: transaction.transaction.message.header.numReadonlySignedAccounts > accountIndex ||
transaction.transaction.message.header.numReadonlyUnsignedAccounts > (accountIndex - transaction.transaction.message.header.numRequiredSignatures)
}));
// console.log(`keys: ${JSON.stringify(keys, null, 2)}`);
const programId = new PublicKey(transaction.transaction.message.staticAccountKeys[programIdIndex]);
// console.log(`programId: ${programId}`);
// Handle the Buffer data
let dataBuffer;
dataBuffer = Buffer.from(data);
// if (data.type == 'Buffer') {
// dataBuffer = Buffer.from(data.data);
// console.log(`dataBuffer - b: ${dataBuffer}`);
// } else {
// dataBuffer = bs58.decode(data);
// console.log(`dataBuffer - bs58: ${dataBuffer}`);
// }
// Log the data in a readable format
const instruction = new TransactionInstruction({
keys,
programId,
data: dataBuffer
});
// console.log(`instruction: ${JSON.stringify(instruction)}`);
// console.log(`programId: ${programId}`)
const program = programMap.get(programId.toBase58()) || "unknown";
console.log(`program: ${program}`)
// fetch the instruction discriminator
const ix = dataBuffer;
// const ix = bs58.decode(instr.data);
let disc;
try {
if (program === 'spl-token') {
disc = ix.slice(0, 1);
} else {
disc = (Buffer.from(ix.slice(0, 4))).readUInt32LE()
}
} catch (err) {
disc = 999;
}
// pass each instruction off to different parser modules
if (program == 'system') {
resultPromise = parseSystemInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else if (program == 'stake') {
resultPromise = parseStakeInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else if (program == 'vote') {
resultPromise = parseVoteInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else if (program == 'spl-token') {
const resultPromise = parseSplTokenInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else if (program == 'compute-budget') {
// promise wasn't needed, because parseComputeBudgetInstruction was not async until you messed with it.
const resultPromise = parseComputeBudgetInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else if (program == 'merkle-distributor' || program == 'jupiter-merkle-distributor' || program == 'jito-merkle-distributor' || program == 'saber-merkle-distributor') {
const resultPromise = parseMerkleDistInstruction(txContext, disc, instruction, ix);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
else {
console.log(`parsing an unknown instruction: ${program}`)
resultPromise = parseUnknownInstruction(txContext, disc, instruction, ix, program);
promises.push(resultPromise.then(result => {
if (format == 'csv')
csvOutput.push(logCSV([result]));
else if (format == 'json')
jsonOutput.push(logJSON([result]));
// console.log(JSON.stringify(result));
}));
}
});
}
// // Process inner instructions
// if (data?.meta?.innerInstructions) {
// console.log("Processing inner instructions...")
// data.meta.innerInstructions.forEach((innerInstructionSet, index) => {
// // console.log(`Inner instruction set: ${JSON.stringify(innerInstructionSet, null, 2)}`)
// innerInstructionSet.instructions.forEach((instr, innerIndex) => {
// const { accounts, data: instrData, programIdIndex } = instr;
// // console.log(`inner instruction: ${JSON.stringify(instr, null, 2)}`)
// // console.log(`inner instruction accounts: ${JSON.stringify(accounts, null, 2)}`)
// // console.log(`inner instruction data: ${JSON.stringify(instrData, null, 2)}`)
// // console.log(`inner instruction programIdIndex: ${JSON.stringify(programIdIndex, null, 2)}`)
// let keys, programId;
// if (tx_version === "legacy") {
// keys = accounts.map(accountIndex => ({
// pubkey: new PublicKey(transaction.transaction.message.accountKeys[accountIndex]),
// isSigner: transaction.transaction.message.isAccountSigner(accountIndex),
// isWritable: transaction.transaction.message.isAccountWritable(accountIndex)
// }));
// // console.log(`inner instruction keys: ${JSON.stringify(keys, null, 2)}`)
// programId = new PublicKey(transaction.transaction.message.accountKeys[programIdIndex]);
// } else if (tx_version === 0) {
// keys = accounts.map(accountIndex => ({
// pubkey: new PublicKey(transaction.transaction.message.staticAccountKeys[accountIndex]),
// isSigner: transaction.transaction.message.header.numRequiredSignatures > accountIndex,
// isWritable: transaction.transaction.message.header.numReadonlySignedAccounts > accountIndex ||
// transaction.transaction.message.header.numReadonlyUnsignedAccounts > (accountIndex - transaction.transaction.message.header.numRequiredSignatures)
// }));
// // console.log(`inner instruction keys: ${JSON.stringify(keys, null, 2)}`)
// programId = new PublicKey(transaction.transaction.message.staticAccountKeys[programIdIndex]);
// } else {
// console.error(`Unsupported transaction version: ${tx_version}`);
// return;
// }
// console.log(`we made it here!`)
// const dataBuffer = Buffer.from(bs58.decode(instrData));
// // console.log(`inner instruction dataBuffer: ${JSON.stringify(dataBuffer, null, 2)}`)
// const instruction = new TransactionInstruction({
// keys,
// programId,
// data: dataBuffer
// });
// console.log(`we created a new compiled instruction`)
// // console.log(`instruction: ${JSON.stringify(instruction, null, 2)}`)
// const program = programMap.get(programId.toBase58()) || "unknown";
// console.log(`program: ${program}`)
// let disc;
// try {
// if (program === 'spl-token') {
// disc = dataBuffer.slice(0, 1);
// } else {
// disc = dataBuffer.slice(0, 4).readUInt32LE();
// }
// } catch (err) {
// disc = 999;
// }
// console.log(`disc: ${disc}`)
// let resultPromise;
// switch (program) {
// case 'system':
// console.log(`we are in the system case`)
// resultPromise = parseSystemInstruction(txContext, disc, instruction, dataBuffer);
// console.log(`resultPromise: ${JSON.stringify(resultPromise, null, 2)}`)
// break;
// case 'stake':
// resultPromise = parseStakeInstruction(txContext, disc, instruction, dataBuffer);
// break;
// case 'vote':
// resultPromise = parseVoteInstruction(txContext, disc, instruction, dataBuffer);
// break;
// case 'spl-token':
// resultPromise = parseSplTokenInstruction(txContext, disc, instruction, dataBuffer);
// break;
// case 'compute-budget':
// resultPromise = parseComputeBudgetInstruction(txContext, disc, instruction, dataBuffer);
// break;
// case 'merkle-distributor':
// case 'jupiter-merkle-distributor':
// case 'jito-merkle-distributor':
// case 'saber-merkle-distributor':
// resultPromise = parseMerkleDistInstruction(txContext, disc, instruction, dataBuffer);
// break;
// default:
// resultPromise = parseUnknownInstruction(txContext, disc, instruction, dataBuffer, program);
// }
// promises.push(resultPromise.then(result => {
// result.isInnerInstruction = true;
// result.innerInstructionIndex = `${index}.${innerIndex}`;
// if (format === 'csv')
// csvOutput.push(logCSV([result]));
// else if (format === 'json')
// jsonOutput.push(logJSON([result]));
// }));
// });
// });
// }
// Wait for all promises to resolve
await Promise.all(promises);
if (format == 'json') {
console.log(JSON.stringify(jsonOutput));
} else if (format == 'csv') {
console.log(csvOutput.join('\n'));
// console.log(csvOutput);
// csvOutput.map(line => console.log(line));
}
process.exit(0); // Exit with success code
} catch (error) {
console.error(error);
}
}
parseSolanaTransaction();