@renec-foundation/metaplex-js
Version:
Metaplex JavaScript API
14 lines (13 loc) • 444 B
TypeScript
import { PublicKey } from '@solana/web3.js';
import { Wallet } from '../wallet';
import { Connection } from '../Connection';
export interface InitStoreParams {
connection: Connection;
wallet: Wallet;
isPublic?: boolean;
}
export interface InitStoreResponse {
storeId: PublicKey;
txId: string;
}
export declare const initStore: ({ connection, wallet, isPublic, }: InitStoreParams) => Promise<InitStoreResponse>;