polkadot-js/api

View on GitHub
packages/types-codec/src/primitive/I256.ts

Summary

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

import { Int } from '../base/Int.js';

/**
 * @name i256
 * @description
 * A 256-bit signed integer
 */
export class i256 extends Int.with(256) {
  // NOTE without this, we cannot properly determine extensions
  readonly __IntType = 'i256';
}