@remitano-anhdt/metaplex-js
Version:
Metaplex JavaScript API
12 lines (11 loc) • 466 B
TypeScript
import { Transaction } from '@remitano-anhdt/mpl-core';
import { PublicKey, TransactionCtorFields } from '@solana/web3.js';
type CreateAssociatedTokenAccountParams = {
associatedTokenAddress: PublicKey;
walletAddress?: PublicKey;
splTokenMintAddress: PublicKey;
};
export declare class CreateAssociatedTokenAccount extends Transaction {
constructor(options: TransactionCtorFields, params: CreateAssociatedTokenAccountParams);
}
export {};