Configuration for Hardhat Verify Plugin

Cypress

module.exports = {
  networks: {
    klaytn: {
      chainId: 8217,
      url: "RPC_URL",
    },
  },
  etherscan: {
    apiKey: {
      klaytn: "unnecessary",
    },
    customChains: [
      {
        network: "klaytn",
        chainId: 8217,
        urls: {
          apiURL: "https://api-cypress.klaytnscope.com/api",
          browserURL: "https://klaytnscope.com",
        },
      },
    ]
  }
}

Baobab

module.exports = {
  networks: {
    klaytn: {
      chainId: 1001,
      url: "RPC_URL",
    },
  },
  etherscan: {
    apiKey: {
      klaytn: "unnecessary",
    },
    customChains: [
      {
        network: "klaytn",
        chainId: 1001,
        urls: {
          apiURL: "https://api-baobab.klaytnscope.com/api",
          browserURL: "https://baobab.klaytnscope.com",
        },
      },
    ]
  }
}

Last updated