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