【Solana, TypeScript】NFTのmintアドレスから現在のオーナーアドレスを取得
4284 ワード
動作確認環境
- M1 Mac (macOS Monterey 12.3)
- @solana/web3.js : 1.36.0
コード
connection
変数は@solana/wallet-adapterで取得したもの。
getTokenLargestAccounts
で対象トークンを多く所有しているアカウントのアドレスがわかる。
sample.ts
import * as web3 from '@solana/web3.js';
const getNftOwner = (mintAddress: string): Promise<string> => {
return connection
.getTokenLargestAccounts(new web3.PublicKey(mintAddress))
.then(res => {
const tokenAccount = res.value[0].address;
return connection.getParsedAccountInfo(tokenAccount);
})
.then(res => {
const data = res.value?.data as web3.ParsedAccountData;
const ownerAddress = data.parsed.info.owner;
return ownerAddress;
});
};
// How to use (Owner of "Degen Ape #1506")
const address = 'HgDxaNFdq5HExHm2am6UfvVeiCTWdT6J5UzVu4NQR9MN';
getNftOwner(address).then(res => console.log('owner:', res));
参考
Author And Source
この問題について(【Solana, TypeScript】NFTのmintアドレスから現在のオーナーアドレスを取得), 我々は、より多くの情報をここで見つけました https://qiita.com/derodero24/items/c5ea1c6f9468879a6085著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .