@pvpbet/pvpbet
Version:
A decentralized PVP betting platform based on the Ethereum Virtual Machine (EVM).
88 lines (82 loc) • 2.5 kB
TypeScript
// 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 IMetadata$Type {
"_format": "hh-sol-artifact-1",
"contractName": "IMetadata",
"sourceName": "contracts/interface/IMetadata.sol",
"abi": [
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "version",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"bytecode": "0x",
"deployedBytecode": "0x",
"linkReferences": {},
"deployedLinkReferences": {}
}
declare module "@nomicfoundation/hardhat-viem/types" {
export function deployContract(
contractName: "IMetadata",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<IMetadata$Type["abi"]>>;
export function deployContract(
contractName: "contracts/interface/IMetadata.sol:IMetadata",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<IMetadata$Type["abi"]>>;
export function sendDeploymentTransaction(
contractName: "IMetadata",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<IMetadata$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function sendDeploymentTransaction(
contractName: "contracts/interface/IMetadata.sol:IMetadata",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<IMetadata$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function getContractAt(
contractName: "IMetadata",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<IMetadata$Type["abi"]>>;
export function getContractAt(
contractName: "contracts/interface/IMetadata.sol:IMetadata",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<IMetadata$Type["abi"]>>;
}