UNPKG

@pvpbet/pvpbet

Version:

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

85 lines (79 loc) 2.48 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 Receivable$Type { "_format": "hh-sol-artifact-1", "contractName": "Receivable", "sourceName": "contracts/base/Receivable.sol", "abi": [ { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "sender", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "Received", "type": "event" }, { "stateMutability": "payable", "type": "receive" } ], "bytecode": "0x", "deployedBytecode": "0x", "linkReferences": {}, "deployedLinkReferences": {} } declare module "@nomicfoundation/hardhat-viem/types" { export function deployContract( contractName: "Receivable", constructorArgs?: [], config?: DeployContractConfig ): Promise<GetContractReturnType<Receivable$Type["abi"]>>; export function deployContract( contractName: "contracts/base/Receivable.sol:Receivable", constructorArgs?: [], config?: DeployContractConfig ): Promise<GetContractReturnType<Receivable$Type["abi"]>>; export function sendDeploymentTransaction( contractName: "Receivable", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType<Receivable$Type["abi"]>; deploymentTransaction: GetTransactionReturnType; }>; export function sendDeploymentTransaction( contractName: "contracts/base/Receivable.sol:Receivable", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType<Receivable$Type["abi"]>; deploymentTransaction: GetTransactionReturnType; }>; export function getContractAt( contractName: "Receivable", address: Address, config?: GetContractAtConfig ): Promise<GetContractReturnType<Receivable$Type["abi"]>>; export function getContractAt( contractName: "contracts/base/Receivable.sol:Receivable", address: Address, config?: GetContractAtConfig ): Promise<GetContractReturnType<Receivable$Type["abi"]>>; }