polkadot-js/api

View on GitHub
packages/types/src/metadata/util/getSiName.ts

Summary

Maintainability
A
0 mins
Test Coverage
// Copyright 2017-2024 @polkadot/types authors & contributors
// SPDX-License-Identifier: Apache-2.0

import type { ILookup } from '@polkadot/types-create/types';
import type { SiLookupTypeId } from '../../interfaces/index.js';

export function getSiName (lookup: ILookup, type: SiLookupTypeId): string {
  const typeDef = lookup.getTypeDef(type);

  return typeDef.lookupName || typeDef.type;
}