@magiceden/magiceden-sdk
Version:
A TypeScript SDK for interacting with Magic Eden's API across multiple chains.
22 lines (21 loc) • 412 B
TypeScript
import { BlockhashWithExpiryBlockHeight } from '@solana/web3.js';
/**
* Buffer interface
*/
interface Buffer {
type: 'Buffer';
data: number[];
}
/**
* Instruction response interface
*/
export interface SolanaInstructionsResponse {
tx: Buffer;
txSigned?: Buffer;
v0?: {
tx: Buffer;
txSigned?: Buffer;
};
blockhashData?: BlockhashWithExpiryBlockHeight;
}
export {};