UNPKG

@nolus/nolusjs

Version:

JS library for NodeJS and Web browsers to interact with the Nolus Protocol

54 lines (53 loc) 1.29 kB
export declare const getLppBalanceMsg: () => { lpp_balance: never[]; }; export declare const getStableBalanceMsg: (oracleAddress: string) => { stable_balance: { oracle_addr: string; }; }; export declare const getDepositCapacityMsg: () => { deposit_capacity: never[]; }; export declare const getLppConfigMsg: () => { config: never[]; }; export declare const getLPNMsg: () => { lpn: never[]; }; export declare const getLoanInformationMsg: (leaseAddress: string) => { loan: { lease_addr: string; }; }; export declare const getPriceMsg: () => { price: never[]; }; export declare const getLenderRewardsMsg: (lenderAddress: string) => { rewards: { address: string; }; }; export declare const getLenderDepositMsg: (lenderAddress: string) => { balance: { address: string; }; }; export declare const claimRewardsMsg: (recipientAddress?: string) => { claim_rewards: { other_recipient: string | undefined; }; }; export declare const depositMsg: () => { deposit: never[]; }; export declare const distributeRewardsMsg: () => { distribute_rewards: never[]; }; export declare const burnMsg: (burnAmount: string) => { burn: { amount: { amount: string; }; }; };