// This file was autogenerated by hardhat-viem, do not edit it. // prettier-ignore // tslint:disable // eslint-disable import type { Address } from "viem"; import type { GetContractReturnType } from "@nomicfoundation/hardhat-viem/types"; import "@nomicfoundation/hardhat-viem/types"; export interface IRiskOracle$Type { "_format": "hh-sol-artifact-1", "contractName": "IRiskOracle", "sourceName": "contracts/verifier/lib/ChaosLabs.sol", "abi": [ { "inputs": [ { "internalType": "uint256", "name": "updateId", "type": "uint256" } ], "name": "getUpdateById", "outputs": [ { "components": [ { "internalType": "uint256", "name": "timestamp", "type": "uint256" }, { "internalType": "bytes", "name": "newValue", "type": "bytes" }, { "internalType": "string", "name": "referenceId", "type": "string" }, { "internalType": "bytes", "name": "previousValue", "type": "bytes" }, { "internalType": "string", "name": "updateType", "type": "string" }, { "internalType": "uint256", "name": "updateId", "type": "uint256" }, { "internalType": "address", "name": "market", "type": "address" }, { "internalType": "bytes", "name": "additionalData", "type": "bytes" } ], "internalType": "struct IRiskOracle.RiskParameterUpdate", "name": "", "type": "tuple" } ], "stateMutability": "view", "type": "function" } ], "bytecode": "0x", "deployedBytecode": "0x", "linkReferences": {}, "deployedLinkReferences": {} } declare module "@nomicfoundation/hardhat-viem/types" { export function deployContract( contractName: "IRiskOracle", constructorArgs?: [], config?: DeployContractConfig ): Promise>; export function deployContract( contractName: "contracts/verifier/lib/ChaosLabs.sol:IRiskOracle", constructorArgs?: [], config?: DeployContractConfig ): Promise>; export function sendDeploymentTransaction( contractName: "IRiskOracle", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType; deploymentTransaction: GetTransactionReturnType; }>; export function sendDeploymentTransaction( contractName: "contracts/verifier/lib/ChaosLabs.sol:IRiskOracle", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType; deploymentTransaction: GetTransactionReturnType; }>; export function getContractAt( contractName: "IRiskOracle", address: Address, config?: GetContractAtConfig ): Promise>; export function getContractAt( contractName: "contracts/verifier/lib/ChaosLabs.sol:IRiskOracle", address: Address, config?: GetContractAtConfig ): Promise>; }