스마트 계약에 대한 웹 프런트엔드를 구축해 봅시다! 이것은 Solidity와 Hardhat을 사용하여 간단한 스마트 계약을 생성하는 방법에 대한 이전 게시물의 후속 글입니다. 여기 지침에서는 방금 Hardhat 환경에 배포한 것과 동일한 계약을 선택한다고 가정합니다.
지난 게시물에서 우리는 상태 변수에 저장된 카운터를 증가시키는 계약을 생성하고 테스트했습니다. Hardhat 콘솔을 사용하여 incrementCount() 및 getCount() 함수를 호출했습니다. 실제 세계에서는 계약과의 인터페이스가 개발 콘솔을 통해서 이루어지지 않습니다. 이러한 기능을 호출하는 애플리케이션을 생성하는 한 가지 방법은 웹 페이지에서 Javascript(ethers.js 라이브러리를 통해), 즉 Web3 애플리케이션!
을 사용하는 것입니다.이전 게시물에서 언급했듯이 web3 애플리케이션과 상호작용하려면 지갑이 내장된 브라우저가 필요합니다. 이 간단한 예에서는 Metamask를 사용하겠습니다. Metmask는 Etherium 및 기타 EVM 기반 블록체인용으로 사전 구성되어 제공되지만 Hardhat 환경에서는 시뮬레이션된 블록체인이 아닙니다. 이 모든 것을 실행하려면 먼저 Metmask를 설정한 다음 계약을 호출하는 데 필요한 HTML/Javascript를 생성하겠습니다.
메타마스크를 설치하세요. 여기에 있는 Chrome 확장 프로그램을 사용하겠습니다. Chrome 사용자라면 이제 web3 콘텐츠를 보고 상호작용할 수 있습니다.
초기 설정 과정을 안내하지는 않지만 기존 개인 키를 가져오거나 새 개인 키를 생성하고 복구 문구를 적어두라는 메시지가 표시될 것입니다. 그렇게 하세요.
다음으로 Metamask에 Hardhat 네트워크를 추가하겠습니다. Metamask는 원하는 모든 EVM을 지원하지만 그렇게 하려면 구성해야 합니다. 일반적으로 이는 체인 ID와 RPC URL만 추가하면 됩니다. Metamask 내부에서(Chrome 플러그인을 클릭하고 선택하여 시작해야 할 수도 있음) 상단 중앙에 공개 주소가 표시되어야 합니다. 주소 왼쪽에는 현재 네트워크를 보여주는 드롭다운이 있습니다. 사용 가능한 다른 네트워크를 보려면 해당 항목을 클릭하세요.
'맞춤 네트워크 추가'를 클릭하세요. 네트워크 이름을 "Hardhat"과 같이 입력하고 네트워크 RPC URL을 Hardhat 노드의 IP 주소와 포트로 입력합니다. 로컬에서 실행하는 경우 다음과 같을 것입니다.
http://127.0.0.1:8545/
체인 ID 1337을 입력하면 현재 기호는 ETH일 수 있습니다. 실제 Ethereum 네트워크에서는 실제 ETH를 다루지 않습니다. 그러나 지갑에 실제 ETH가 있는 경우 Hardhat 네트워크를 유지하도록 매우 주의하십시오.
이제 방금 Metamask 플러그인에 추가한 Hardhat Network로 전환하세요. 실행 중인 Hardhat 노드를 모니터링하는 터미널에서 지갑이 연결될 때 일부 활동이 표시되어야 합니다.
귀하의 Metamask 지갑에는 현재 (가짜) ETH가 없으므로 보내도록 하겠습니다. 메타마스크에서 공개 주소를 가져옵니다(메타마스크 창 상단, 지갑 이름 아래 복사 버튼 클릭). Hardhat 콘솔을 실행하는 터미널 창에서 다음을 수행합니다.
const [owner, feeCollector, operator] = await ethers.getSigners(); await owner.sendTransaction({ to: "PasteYourMetamaskAddressHere", value: ethers.parseEther("0.1") });
Metamask로 돌아가면 이제 Hardhat 지갑에 ETH가 있는 것을 볼 수 있습니다! 이제 Hardhat 네트워크에서 일부 web3 트랜잭션을 수행할 준비가 되었습니다.
카운터를 보고 증가시키는 간단한 웹페이지를 만들어 보겠습니다. 나는 무거운 프레임워크를 사용하지 않을 것이며, 단지 오래된 HTML, Javascript 및 ethers.js 라이브러리만 사용할 것입니다. 그러나 브라우저를 .htm 문서로 지정할 수는 없으며 Metamask 플러그인이 작동하려면 어딘가에서 웹 서버를 실행해야 합니다. OS에 따라 http-server 등의 경량 서버를 로컬에서 사용할 수도 있습니다.
이전 게시물에서 계약을 배포할 때부터 몇 가지 사항이 필요합니다. 지난 게시물을 참조하여 아티팩트 디렉터리에서 계약 주소와 계약의 ABI JSON 배열을 가져옵니다. 해당 파일의 나머지 JSON은 필요하지 않습니다. "abi" 속성에 있는 내용만 있으면 됩니다. [로 시작하고 ]로 끝나야 뭔가 보이는 것처럼 보입니다. 이렇게:
[ { "inputs": [], "stateMutability": "nonpayable", "type": "constructor" }, { "inputs": [], "name": "getCount", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "incrementCount", "outputs": [], "stateMutability": "nonpayable", "type": "function" } ]
이것을 HTML과 Javascript에 넣어 보겠습니다.
<html> <head> <script src="https://cdnjs.cloudflare.com/ajax/libs/ethers/5.2.0/ethers.umd.min.js" type="application/javascript"></script> </head> <body> <h2>The counter is at: <span> </li> <li> <p>We should now be able to view our HTML document in a web browser with the Metamask plugin installed. I won't go through the Javascript, but if you are familiar with JavaScript and following the concepts and what we did in the Hardhat terminal previously, what is happening in the code should be fairly straight-forward. Metamask should prompt you that you are connecting to the site and you'll need to select the Hardnet network that we set up earlier. You should see something like this in the browser:</p> <p><img src="https://img.php.cn/upload/article/000/000/000/173282167151033.jpg" alt="WebI For Simple Smart Contract" /></p> </li> <li><p>If all went well, you can click on the "Increment" button. Metamask will let you know that you are about to make a transaction and inform you of the gas fee. You can Confirm this transaction in Metamask and see the count increment on both the website and in the terminal where you have the hardhat node running!</p></li> <li><p>Congratulations, we are interacting with our contract through a web UI!</p></li> </ol> <p>A few notes as you dive deeper into Hardhat and Metamask for development:</p> <ul> <li><p>Each transaction has an nonce. When you reset your hardhat node, that nonce gets reset and you might loose sync with what Metamask thinks is a unique nonce. When that happens, Metmask has an option to set a custom nonce with the transaction, or you can reset Metamask's nonces in Settings->Advanced->Clear Activity Tab data.
You'll need to redeploy your smart contract every time you restart your Hardhat node.
If you are writing contracts that will keep track of users by their public address and want to experiment in the Hardhat console with transactions form different users, you can impersonate different addresses in the console that were displayed when you first started the Hardhat node with something like this before you connect to the contract:
const signers = await ethers.getSigners(); const newSigner = signers[1]; // Change the 1 to a different number that corolates with one of the pre-generated testing addresses const newMain = await main.connect(newSigner); newMain.setContractAddress("test","0xYourContractAddress");
위 내용은 간단한 스마트 계약을 위한 WebI의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!