UNPKG

fbonds-core

Version:

Banx protocol sdk

12 lines (11 loc) 647 B
import { BanxAdventure, BanxAdventureSubscription, BanxAdventureSubscriptionSnapshot, BanxPointsMap, BanxStake, BanxStakingSettings, BanxTokenStake } from '../../types'; import { web3 } from '@coral-xyz/anchor'; export declare const getActiveBanxStakingAccounts: (programId: web3.PublicKey, connection: web3.Connection) => Promise<{ banxStakes: BanxStake[]; banxTokenStake: BanxTokenStake[]; adventures: BanxAdventure[]; adventureSubscriptions: BanxAdventureSubscription[]; adventureSubscriptionsSnapshots: BanxAdventureSubscriptionSnapshot[]; stakingSettings: BanxStakingSettings; banxPointsMaps: BanxPointsMap[]; }>;