UNPKG

solana-options

Version:

Minting of options contract NFTs on the Solana blockchain

15 lines 434 B
/// <reference types="node" /> export declare const OPTION_ACCOUNT_DATA_LAYOUT: any; export interface OptionLayout { writer_pubkey: Uint8Array; ownership_nft_token: Uint8Array; collateral_acc_pubkey: Uint8Array; recv_acc_pubkey: Uint8Array; expiry_date: Buffer; strike: Buffer; multiple: Buffer; is_expired: boolean; is_initialized: boolean; kind: number; } //# sourceMappingURL=layout.d.ts.map