UNPKG

@substrate/api-sidecar

Version:

REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.

11 lines (10 loc) 336 B
import { Balance, Perbill, RewardPoint } from '@polkadot/types/interfaces'; export interface IPayout { validatorId: string; nominatorStakingPayout: string; claimed: boolean; validatorCommission: Perbill; totalValidatorRewardPoints: RewardPoint; totalValidatorExposure: Balance; nominatorExposure: Balance; }