mintBlue SDK
SDK Scripts
Retrieve and decode transactions
1min
Replace the [PROJECT_ID] string with the ID of the project you wish to query.
īģŋ
īģŋ
Updated 03 Mar 2023
Did this page help you?
Replace the [PROJECT_ID] string with the ID of the project you wish to query.
// get a project's transaction list await client.listTransactions(project).then(txs=> { // for each transaction txs.forEach(tx => { // decode and decrypt transaction content const txContent = await client.getTransaction(tx.txid); // show decoded and decrypted transaction console.log(txContent); }); })
īģŋ