Raw Transaction History
Returns the raw transaction history for a given address
Use https://api-devnet.helius.xyz/v0/addresses/{address}/raw-transactions for devnet transactions
Oops, something is missing.
We could not find the original source to display this content.
rawTransactions.js
const axios = require('axios')
const url = "https://api.helius.xyz/v0/addresses/M2mx93ekt1fmXSVkTrUL9xVFHkmME8HTUi5Cyc5aF7K/raw-transactions?api-key=<your-key>"
const rawTransactions = async () => {
const { data } = await axios.get(url)
console.log("raw transactions: ", data)
}
rawTransactions()
Last modified 8d ago