简体   繁体   中英

Get all transactions for an NFT on Solana

I want to collect all transactions for an NFT.

For example, you can display all transactions here:

https://explorer.solana.com/address/2Nzt8TYeAfgJDftKzkb7rgYShVvyXTR7cPVvpqaZ2a4V

or here:

https://solscan.io/token/2Nzt8TYeAfgJDftKzkb7rgYShVvyXTR7cPVvpqaZ2a4V#txs

But is there any way to do this with the API?

I checked

solana-py: https://michaelhly.github.io/solana-py/

and solscan api: https://public-api.solscan.io/docs/

But I could not find a way to do it.

You can use the getSignaturesForAddress RPC method on the mint address and walk backward to get all the transactions.

Here is an example in JS:

import {
  Connection,
  clusterApiUrl,
  ConfirmedSignatureInfo,
  PublicKey,
} from "@solana/web3.js";

const connection = new Connection(clusterApiUrl("mainnet-beta"));

export const getTxs = async (connection: Connection, pubkey: PublicKey) => {
  const txs: ConfirmedSignatureInfo[] = [];

  // Walk backward
  let lastTransactions = await connection.getConfirmedSignaturesForAddress2(
    pubkey
  );
  let before = lastTransactions[lastTransactions.length - 1].signature;
  txs.push(...lastTransactions);

  while (true) {
    const newTransactions = await connection.getConfirmedSignaturesForAddress2(
      pubkey,
      {
        before,
      }
    );
    if (newTransactions.length === 0) break;
    txs.push(...newTransactions);
    before = newTransactions[newTransactions.length - 1].signature;
  }

  return txs;
};

getTxs(
  connection,
  new PublicKey("2Nzt8TYeAfgJDftKzkb7rgYShVvyXTR7cPVvpqaZ2a4V")
);

The equivalent method in Solana.py is this one https://michaelhly.github.io/solana-py/rpc/api/#solana.rpc.api.Client.get_signatures_for_address

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM