UNPKG

@pvpbet/pvpbet

Version:

A decentralized PVP betting platform based on the Ethereum Virtual Machine (EVM).

81 lines (75 loc) 2.5 kB
// 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 IBetChipFactory$Type { "_format": "hh-sol-artifact-1", "contractName": "IBetChipFactory", "sourceName": "contracts/interface/IBetChipFactory.sol", "abi": [ { "inputs": [ { "internalType": "address", "name": "token", "type": "address" } ], "name": "createBetChip", "outputs": [ { "internalType": "address", "name": "", "type": "address" } ], "stateMutability": "nonpayable", "type": "function" } ], "bytecode": "0x", "deployedBytecode": "0x", "linkReferences": {}, "deployedLinkReferences": {} } declare module "@nomicfoundation/hardhat-viem/types" { export function deployContract( contractName: "IBetChipFactory", constructorArgs?: [], config?: DeployContractConfig ): Promise<GetContractReturnType<IBetChipFactory$Type["abi"]>>; export function deployContract( contractName: "contracts/interface/IBetChipFactory.sol:IBetChipFactory", constructorArgs?: [], config?: DeployContractConfig ): Promise<GetContractReturnType<IBetChipFactory$Type["abi"]>>; export function sendDeploymentTransaction( contractName: "IBetChipFactory", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType<IBetChipFactory$Type["abi"]>; deploymentTransaction: GetTransactionReturnType; }>; export function sendDeploymentTransaction( contractName: "contracts/interface/IBetChipFactory.sol:IBetChipFactory", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType<IBetChipFactory$Type["abi"]>; deploymentTransaction: GetTransactionReturnType; }>; export function getContractAt( contractName: "IBetChipFactory", address: Address, config?: GetContractAtConfig ): Promise<GetContractReturnType<IBetChipFactory$Type["abi"]>>; export function getContractAt( contractName: "contracts/interface/IBetChipFactory.sol:IBetChipFactory", address: Address, config?: GetContractAtConfig ): Promise<GetContractReturnType<IBetChipFactory$Type["abi"]>>; }