获取与 Solana 钱包地址关联的资产列表

Get the list of assets associated to a Solana wallet address

我正在使用 Solana 的 web3 sdk 查询余额或进行交易。现在我想知道是否有可能实现以下操作之一:

  1. 从提供的钱包地址获取资产列表。
  2. 从提供的 nft 地址获取钱包地址。两者都可以的话这个就更好了

当然可以,回答你的问题:

  1. getTokenAccountsByOwner,其中所有者为钱包地址:https://solana-labs.github.io/solana-web3.js/classes/Connection.html#getTokenAccountsByOwner
  2. getTokenLargestAccounts 将为 nft 的持有者提供:https://solana-labs.github.io/solana-web3.js/classes/Connection.html#getTokenLargestAccounts