// Copyright 2017-2021 @polkadot/api-derive authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiInterfaceRx } from '@polkadot/api/types'; import type { Observable } from '@polkadot/x-rxjs'; import type { DeriveStakingOverview } from '../types'; import { combineLatest } from '@polkadot/x-rxjs'; import { map } from '@polkadot/x-rxjs/operators'; import { memo } from '../util'; /** * @description Retrieve the staking overview, including elected and points earned */ export function overview (instanceId: string, api: ApiInterfaceRx): () => Observable { return memo(instanceId, (): Observable => combineLatest([ api.derive.session.indexes(), api.derive.staking.validators() ]).pipe( map(([indexes, { nextElected, validators }]): DeriveStakingOverview => ({ ...indexes, nextElected, validators })) )); }