UNPKG

@substrate/api-sidecar

Version:

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

9 lines (8 loc) 254 B
import { BalanceOf, EraIndex, RewardPoint } from '@polkadot/types/interfaces'; import { IPayout } from '.'; export interface IEraPayouts { era: EraIndex; totalEraRewardPoints: RewardPoint; totalEraPayout: BalanceOf; payouts: IPayout[]; }