Variable hardhatConst

hardhat: {
    id: 31337;
    name: "Hardhat";
    nativeCurrency: {
        decimals: 18;
        name: "Ether";
        symbol: "ETH";
    };
    network: "hardhat";
    rpcUrls: {
        default: {
            http: readonly ["http://127.0.0.1:8545"];
        };
        public: {
            http: readonly ["http://127.0.0.1:8545"];
        };
    };
}

Type declaration

  • Readonly id: 31337
  • Readonly name: "Hardhat"
  • Readonly nativeCurrency: {
        decimals: 18;
        name: "Ether";
        symbol: "ETH";
    }
    • Readonly decimals: 18
    • Readonly name: "Ether"
    • Readonly symbol: "ETH"
  • Readonly network: "hardhat"
  • Readonly rpcUrls: {
        default: {
            http: readonly ["http://127.0.0.1:8545"];
        };
        public: {
            http: readonly ["http://127.0.0.1:8545"];
        };
    }
    • Readonly default: {
          http: readonly ["http://127.0.0.1:8545"];
      }
      • Readonly http: readonly ["http://127.0.0.1:8545"]
    • Readonly public: {
          http: readonly ["http://127.0.0.1:8545"];
      }
      • Readonly http: readonly ["http://127.0.0.1:8545"]

Generated using TypeDoc