UNPKG

@renec-foundation/metaplex-js

Version:

Metaplex JavaScript API

10 lines (9 loc) 411 B
import { Transaction } from '@renec-foundation/mpl-core'; import { Connection, Keypair, PublicKey } from '@solana/web3.js'; interface WrappedAccountTxs { account: Keypair; createTokenAccountTx: Transaction; closeTokenAccountTx: Transaction; } export declare function createWrappedAccountTxs(connection: Connection, owner: PublicKey, amount?: number): Promise<WrappedAccountTxs>; export {};