trufflesuite/truffle

View on GitHub
packages/codec-components/src/react/components/codec/format.values.function-internal-raw-info-pc-pair.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";
import type { Format } from "@truffle/codec";
import { createCodecComponent } from "../../utils/create-codec-component";
import { Code } from "../common/code";

export const { FunctionInternalRawInfoPcPair } = createCodecComponent(
  "FunctionInternalRawInfoPcPair",
  ({
    deployedProgramCounter,
    constructorProgramCounter
  }: Format.Values.FunctionInternalRawInfoPcPair) => {
    return (
      <Code>
        (constructor: {constructorProgramCounter}, deployed:{" "}
        {deployedProgramCounter})
      </Code>
    );
  }
);