UNPKG

@renec-foundation/metaplex-js

Version:

Metaplex JavaScript API

14 lines (13 loc) 456 B
/// <reference types="node" /> import { Transaction } from '@renec-foundation/mpl-core'; import { PublicKey, TransactionCtorFields } from '@solana/web3.js'; import { Buffer } from 'buffer'; type PayForFilesParams = { lamports: number; fileHashes: Buffer[]; arweaveWallet?: PublicKey; }; export declare class PayForFiles extends Transaction { constructor(options: TransactionCtorFields, params: PayForFilesParams); } export {};