gill
Version:
a modern javascript/typescript client library for interacting with the Solana blockchain
8 lines • 343 B
TypeScript
import { type Address, type KeyPairSigner } from "@solana/kit";
/**
* Derive the Token Metadata address from a token's mint address
*
* @param `mint` - `Address` or `KeyPairSigner` of the token mint
*/
export declare function getTokenMetadataAddress(mint: Address | KeyPairSigner): Promise<Address>;
//# sourceMappingURL=addresses.d.ts.map