Klaytnscope
한국어
한국어
  • Introduction
  • Dashboard
  • Blocks
    • Block Details
    • Block Countdown
  • Transactions
    • Transactions Overview
    • Transactions Details
  • Account
    • Account Details
    • Approval & Revoke
  • Contract
    • Contract Details
    • Read Contract / Write Contract / Change ABI
    • Delegate
    • Match Contract Source Code
    • Hardhat Verify Plugin 설정
  • Tokens
    • Tokens Details
  • NFTs
    • NFTs Details
  • GC Info
    • Governance Council
    • Network Information
  • Bridge
    • Bridge Dashboard
    • Bridge Assets
    • Bridge Explorer
  • Update History
  • 📣What's New?
    • 2022 4Q Update Notice
Powered by GitBook
On this page
  • Cypress
  • Baobab
  1. Contract

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",
        },
      },
    ]
  }
}
PreviousMatch Contract Source CodeNextTokens

Last updated 1 year ago