trufflesuite/truffle

View on GitHub
packages/codec-components/src/docs/data/codec/format.values.uint-value.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Format } from "@truffle/codec";
import BN from "bn.js";

export default {
  uint8: {
    kind: "value",
    type: { bits: 8, typeClass: "uint" },
    value: { asBN: new BN("ff", 16) },
    interpretations: {}
  },
  uint256: {
    kind: "value",
    type: { bits: 256, typeClass: "uint", typeHint: "uint256" },
    value: { asBN: new BN("ffffffff", 16) },
    interpretations: {}
  }
} satisfies Record<string, Format.Values.UintValue>;