findMetadataAddress static method
Find the metadata account address of the given mint
.
Implementation
static ProgramAddress findMetadataAddress(
final Pubkey mint,
) => Pubkey.findProgramAddress(
[
utf8.encode(metadataSeed),
programId.toBytes(),
mint.toBytes(),
],
programId,
);