fbonds-core
Version:
Banx protocol sdk
12 lines (11 loc) • 644 B
TypeScript
import { web3 } from '@coral-xyz/anchor';
import { BanxStake, BanxTokenStake, BanxAdventure, BanxAdventureSubscription, BanxStakingSettings, BanxPointsMap, BanxAdventureSubscriptionSnapshot } from '../../types';
export declare const getBanxStakingAccounts: (programId: web3.PublicKey, connection: web3.Connection) => Promise<{
banxStakes: BanxStake[];
banxTokenStake: BanxTokenStake[];
adventures: BanxAdventure[];
adventureSubscriptions: BanxAdventureSubscription[];
banxPointsMaps: BanxPointsMap[];
stakingSettings: BanxStakingSettings;
banxAdventureSubscriptionSnapshots: BanxAdventureSubscriptionSnapshot[];
}>;