UNPKG

@hubbleprotocol/hubble-sdk

Version:
12 lines (11 loc) 296 B
import { PublicKey } from '@solana/web3.js'; import Decimal from 'decimal.js'; export type UserStakingState = { version: number; userId: Decimal; stakingPoolState: PublicKey; owner: PublicKey; userStake: Decimal; rewardsTally: Decimal; }; export default UserStakingState;