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) 340 B
import { Text } from '@polkadot/types'; import { PalletConstantMetadataLatest } from '@polkadot/types/interfaces'; import { IAt } from '.'; import { IPallet } from './Pallet'; export interface IPalletConstants extends IPallet { at: IAt; pallet: string; palletIndex: number; items: PalletConstantMetadataLatest[] | Text[]; }