/**
 * ABI for the ISemver contract
 */
export const ISemverAbi = [
  {
    "inputs": [],
    "name": "version",
    "outputs": [
      {
        "internalType": "string",
        "name": "",
        "type": "string"
      }
    ],
    "stateMutability": "pure",
    "type": "function"
  }
] as const

/**
 * Type-safe ABI for the ISemver contract
 */
export type ISemverAbiType = typeof ISemverAbi

/**
 * Bytecode for the ISemver contract
 */
export const ISemverBytecode = "0x"

/**
 * Deployed bytecode for the ISemver contract
 */
export const ISemverDeployedBytecode = "0x"
