UNPKG

@pvpbet/pvpbet

Version:

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

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