首頁 > web前端 > js教程 > 用於簡單智能合約的 WebI

用於簡單智能合約的 WebI

Susan Sarandon
發布: 2024-11-29 03:21:08
原創
503 人瀏覽過

讓我們為智慧合約建立一個 Web 前端!這是我之前關於使用 Solidity 和 Hardhat 創建簡單智能合約的文章的後續內容。這裡的說明假設您正在使用我們剛剛部署到 Hardhat 環境的相同合約。

在上一篇文章中,我們建立並測試了一個合約,該合約將增加儲存在狀態變數中的計數器。使用 Hardhat 控制台,我們呼叫了incrementCount() 和getCount() 函數。在現實世界中,與合約的互動不會透過開發控制台進行。創建調用這些函數的應用程式的一種方法是透過網頁中的 Javascript(透過 ethers.js 庫) - Web3 應用程式!

如上一篇文章所述,與 web3 應用程式互動需要具有內建錢包的瀏覽器。在這個簡單的範例中,我們將使用 Metamask。 Metmask 已針對 Etherium 以及其他一些基於 EVM 的區塊鏈進行了預配置,但不是我們在 Hardhat 環境中的模擬區塊鏈。為了讓這一切運作起來,我們將首先設定 Metmask,然後建立呼叫我們的合約所需的 HTML/Javascript。

Metamask / Web3 瀏覽器

  1. 安裝 Metamask。我將使用此處找到的 Chrome 擴充功能。如果您是 Chrome 用戶,現在您可以查看 web3 內容並與之互動。

    我不會引導您完成初始設置,但係統可能會提示您匯入現有私鑰或產生新私鑰並記下恢復短語。就這麼做吧。

  2. 接下來我們將把 Hardhat 網路加入 Metamask。 Metamask 支援您想要的任何 EVM,但需要對其進行配置才能實現。通常這只是添加鏈 ID 和 RPC URL 的問題。從 Metamask 內部(您可能需要透過點擊 Chrome 外掛程式並選擇它來啟動它),您應該在頂部中間看到您的公共地址。在您的地址左側將有一個下拉列表,顯示當前網路。按一下該按鈕查看其他可用網路:

    WebI For Simple Smart Contract

    點選「新增自訂網路」。填入網路名稱,例如“Hardhat”,網路 RPC URL 以及 Hardhat 節點的 IP 位址和端口,如果您在本地運行,可能是這樣的:
    http://127.0.0.1:8545/

    輸入鏈ID 1337,符號暫時只能是ETH。請注意,我們在真實的以太坊網路上處理真實的 ETH,但如果您的錢包中有真實的 ​​ETH,請務必小心留在我們的 Hardhat 網路上。

    現在切換到我們剛剛在 Metamask 外掛程式中新增的 Hardhat 網路。在監控正在運行的 Hardhat 節點的終端中,您應該會在錢包連接時看到一些活動。

  3. 由於您的 Metamask 錢包目前沒有任何(假)ETH,所以我們發送一些。從 Metamask 取得您的公共地址(在 Metamask 視窗頂部的錢包名稱下方,按一下複製按鈕)。從運行 Hardhat 控制台的終端窗口,執行:

    const [owner,  feeCollector, operator] = await 
    ethers.getSigners();
    await owner.sendTransaction({ to: "PasteYourMetamaskAddressHere", value: ethers.parseEther("0.1") });
    
    登入後複製

    如果您返回 Metamask,您應該會看到您的 Hardhat 錢包中現在有一些 ETH!現在我們準備在 Hardhat 網路上進行一些 web3 交易。

建立 Web3 網頁

  1. 讓我們建立一個簡單的網頁來檢視和增加計數器。我不會使用任何重型框架,而只是使用普通的舊式 HTML、Javascript 和 ethers.js 函式庫。但是,您不能僅將瀏覽器指向 .htm 文檔,您需要在某處運行網頁伺服器才能使 Metamask 插件正常運作。根據您的作業系統,您也許可以使用輕量級伺服器,例如 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"
        }
      ]
    
    登入後複製
  2. 讓我們將其放入一些 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. 
    登入後複製
  3. You'll need to redeploy your smart contract every time you restart your Hardhat node.

  4. 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中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板