chainId로 인한 MetaMask의 안전모 버그 수정
고치다
hardhat.config.js 파일 구성
chaindId:1337
를 추가합니다.예를 들어
require("@nomicfoundation/hardhat-toolbox");
// The next line is part of the sample project, you don't need it in your
// project. It imports a Hardhat task definition, that can be used for
// testing the frontend.
require("./tasks/faucet");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: "0.8.9",
networks: {
hardhat: {
chainId: 1337 // We set 1337 to make interacting with MetaMask simpler
}
}
};
로컬 개발 블록체인 부팅
$ npx hardhat node
개발 블록체인 계정을 MetaMask에 연결
MetaMask를 안전모 블록체인, 네트워크 127.0.0.1:8545에 연결합니다.
스마트 계약 마이그레이션
$ npx hardhat run src/contracts/scripts/deploy.js --network localhost
드디어
즐거운 코딩하세요!❤️
💫 기여는 감사합니다..
ETH 주소: luislucena.eth
트와이:
Reference
이 문제에 관하여(chainId로 인한 MetaMask의 안전모 버그 수정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/luislucena16/hardhat-bug-fix-with-metamask-due-to-chainid-166o텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)