UNPKG

@nomyx/hardhat-adminui

Version:

A comprehensive Hardhat plugin providing a web-based admin UI for deployed smart contracts with Diamond proxy support, contract interaction, event monitoring, and deployment dashboard.

13 lines (12 loc) 410 B
/** * Check if a port is available */ export declare function isPortAvailable(port: number): Promise<boolean>; /** * Find the next available port starting from the given port */ export declare function findAvailablePort(startPort: number, maxPort?: number): Promise<number>; /** * Get the configured port from environment or hardhat config */ export declare function getConfiguredPort(hre: any): number;