harsta
Version:
Harsta is a contract development tool based on Hardhat, designed to streamline the development, testing, and referencing of contracts, addresses, ABIs, and contract instances.
17 lines (14 loc) • 704 B
text/typescript
import { HardhatUserConfig } from 'hardhat/types';
import { Chain } from '../types/index.mjs';
import { H as HarstaUserConfig, N as NetworkUserConfig } from '../config-DgxzTnuT.mjs';
import 'viem';
import 'hardhat/config';
import 'hardhat/internal/core/runtime-environment';
import 'hardhat-deploy/dist/src/DeploymentsManager';
import 'ethers';
import 'hardhat-deploy/dist/types';
declare function transformHarstaConfigToHardhat(harstaUserConfig: HarstaUserConfig): HardhatUserConfig & {
harsta: HarstaUserConfig;
};
declare function transformNetworkToChain(network: NetworkUserConfig, addresses?: Record<string, string>): Chain;
export { transformHarstaConfigToHardhat, transformNetworkToChain };