banx-token-lending-sdk
Version:
Banx Token Lending sdk
19 lines (18 loc) • 929 B
TypeScript
import { BN, web3 } from '@coral-xyz/anchor';
/** Address of the SPL Token program */
export declare const TOKEN_PROGRAM_ID: web3.PublicKey;
/** Address of the SPL Token 2022 program */
export declare const TOKEN_2022_PROGRAM_ID: web3.PublicKey;
/** Address of the SPL Associated Token Account program */
export declare const ASSOCIATED_TOKEN_PROGRAM_ID: web3.PublicKey;
/** Address of the special mint for wrapped native SOL in spl-token */
export declare const NATIVE_MINT: web3.PublicKey;
/** Address of the special mint for wrapped native SOL in spl-token-2022 */
export declare const NATIVE_MINT_2022: web3.PublicKey;
/** Address of the Banx Sol lst mint */
export declare const BANX_SOL_MINT: web3.PublicKey;
export declare const ENCODER: TextEncoder;
export declare const BASE_POINTS = 10000;
export declare const BASE_POINTS_BN: BN;
export declare const SECONDS_IN_YEAR = 31536000;
export declare const WAD = 1000000000;