polkadot-js/api

View on GitHub
packages/types/src/interfaces/blockbuilder/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */

import type { BTreeMap, Bytes, Struct, U8aFixed, bool } from '@polkadot/types-codec';

/** @name CheckInherentsResult */
export interface CheckInherentsResult extends Struct {
  readonly okay: bool;
  readonly fatalError: bool;
  readonly errors: InherentData;
}

/** @name InherentData */
export interface InherentData extends Struct {
  readonly data: BTreeMap<InherentIdentifier, Bytes>;
}

/** @name InherentIdentifier */
export interface InherentIdentifier extends U8aFixed {}

export type PHANTOM_BLOCKBUILDER = 'blockbuilder';