@frakters/nft-lending-v2
Version:
Client library for interacting with nft lenging solana program
24 lines (23 loc) • 836 B
TypeScript
import { PublicKey } from '@solana/web3.js';
export declare const TOKEN_PROGRAM_ID: PublicKey;
export declare const SPL_ASSOCIATED_TOKEN_ACCOUNT_PROGRAM_ID: PublicKey;
export declare const BPF_UPGRADE_LOADER_ID: PublicKey;
export declare const MEMO_ID: PublicKey;
export declare const METADATA_PROGRAM_ID: string;
export declare const VAULT_ID: string;
export declare const AUCTION_ID: string;
export declare const METAPLEX_ID: string;
export declare const SYSTEM: PublicKey;
export declare const METADATA_SCHEMA: Map<any, any>;
export declare const METADATA_PREFIX = "metadata";
export declare const PROGRAM_IDS: {
token: PublicKey;
associatedToken: PublicKey;
bpf_upgrade_loader: PublicKey;
system: PublicKey;
metadata: string;
memo: PublicKey;
vault: string;
auction: string;
metaplex: string;
};