UNPKG

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.

15 lines (13 loc) 397 B
import { HARDHAT_NETWORK_NAME } from 'hardhat/plugins' import { hardhatConf } from '../../constants' import type { NetworkUserConfig } from '../../types' export const DEFAULT_HARDHAT_NETWORK_CONFIG: NetworkUserConfig = { currency: { decimals: 18, name: 'Ether', symbol: 'ETH', }, id: hardhatConf.networks.hardhat.chainId, name: HARDHAT_NETWORK_NAME, testnet: true, } as any