banx-token-lending-sdk
Version:
Banx Token Lending sdk
8 lines (7 loc) • 409 B
TypeScript
import { BN } from '@coral-xyz/anchor';
export declare function toWad(x: BN, wad?: number): BN;
export declare function fromWad(xWad: BN, wad?: number): BN;
export declare function bpToWad(basePoints: BN, wad?: number): BN;
export declare function wadMul(xWad: BN, yWad: BN, wad?: number): BN;
export declare function wadDiv(xWad: BN, yWad: BN, wad?: number): BN;
export declare function sqrtBN(num: BN): BN;