1. 程式人生 > 實用技巧 >SimpleChain Dapp開發入門例項

SimpleChain Dapp開發入門例項

SimpleChian技術社群最近準備舉辦開發挑戰賽,很多社群老鐵都躍躍欲試想基於SimpleChain開發Dapp應用。鑑於此種情況,本期我們就來聊一下如何基於SimpleChain開發Dapp。 下面是開發Dapp開發的詳細過程,流程梳理如下:

環境準備

除了Mac電腦,還需要安裝SimpleChain開發的相關環境。環境如下:

nodejs truffle solidity testrpc

另外,教程中還會用到webpack,安裝教程網上也有很多。這部分如果不熟悉的話請自行查閱學習下。

編寫智慧合約

前面我們已經安裝了truffle,我們只需要在 電腦的專案目錄下新建conference目錄,進入目錄執行truffle init,就可以使用truffle這個Dapp前端框架來初始化自己的專案。執行完後建立如下的子目錄和檔案:

contracts/: 智慧合約存放的目錄,預設情況下已經幫你建立 Migrations.sol合約。 migrations/: 存放部署指令碼 test/: 存放測試指令碼 truffle.js: truffle的配置檔案

修改truffle.js檔案,改成如下:

module.exports = {
  networks: {
        development: {
            host: "localhost",
            port: 8545,
            network_id: "*" // 匹配任何network id
         }
    }
};

上面的是設定我們稍後要部署智慧合約的位置, 否則會報網路錯誤。

開啟電腦的一個終端,輸入testrpc執行測試節點。testrpc是一個完整的在記憶體中的區塊鏈測試環境,啟動 testrpc 經後,會預設建立10個帳號,Available Accounts是帳號列表,Private Keys是相對應的帳號金鑰。如下圖:

進入contracts目錄,此目錄是存放合約程式碼的地方。我們可以使用程式設計工具(Viscode)編寫測試合約程式碼。我這裡貼出的是投票的智慧合約

pragma solidity ^0.4.2;

contract Migrations {
  address public owner;
  uint public last_completed_migration;

  modifier restricted() {
    if (msg.sender == owner) _;
  }

  function Migrations() {
    owner = msg.sender;
  }

  function setCompleted(uint completed) restricted {
    last_completed_migration = completed;
  }

  function upgrade(address new_address) restricted {
    Migrations upgraded = Migrations(new_address);
    upgraded.setCompleted(last_completed_migration);
  }
}

合約內容很簡單,是一個針對鏈上投票的策略。使用者可以鏈上投票,保證投票的真實性和客觀性。

編譯部署智慧合約

修改migrations下的1_initial_migration.js檔案,改成如下:

//var Migrations = artifacts.require("./Migrations.sol");
var Conference = artifacts.require("./Voting.sol");

module.exports = function(deployer) {
  //deployer.deploy(Migrations);
  deployer.deploy(Conference);
};

編譯:

$ sudo truffle compile --compile-all

注意看下有無報錯:

Truffle僅預設編譯自上次編譯後被修改過的檔案,來減少不必要的編譯。如果你想編譯全部檔案,可以使用--compile-all選項。

然後會多出一個build目錄,該目錄下的檔案都不要做任何的修改。

部署:

$ sudo truffle migrate --reset

這個命令會執行所有migrations目錄下的js檔案。如果之前執行過truffle migrate命令,再次執行,只會部署新的js檔案,如果沒有新的js檔案,不會起任何作用。如果使用--reset引數,則會重新的執行所有指令碼的部署。

測試下,在test目錄新增一個conference.js測試檔案,

var Conference = artifacts.require("./Voting.sol");

contract('Conference', function(accounts) {
  console.log("start testing");
    //console.log(accounts);
    var owner_account = accounts[0];
  var sender_account = accounts[1];


  it("Initial conference settings should match", function(done) {
    
    Conference.new({from: owner_account}).then(
        function(conference) {
            conference.quota.call().then(
                function(quota) { 
                    assert.equal(quota, 100, "Quota doesn't match!"); 
            }).then(
                function() { 
                    return conference.numRegistrants.call(); 
            }).then(
                function(num) { 
                    assert.equal(num, 0, "Registrants doesn't match!");
                    return conference.organizer.call();
            }).then(
                function(organizer) { 
                    assert.equal(organizer, owner_account, "Owner doesn't match!");
                    done();
            }).catch(done);
    }).catch(done);
  });

這是一個測試用例,執行truffle test檢視測試結果。

$ truffle test

Using network 'development'.

start testing

  Contract: Conference
    ✓ Initial conference settings should match (191ms)
    ✓ Should update quota (174ms)
    ✓ Should let you buy a ticket (717ms)
    ✓ Should issue a refund by owner only (714ms)


  4 passing (2s)

編寫web應用

在conference目錄下執行npm init,然後一路回車,會生成一個名為package.json的檔案,編輯這個檔案,在scripts部分增加兩個命令,最終如下:

{ "name": "conference", "version": "1.0.0", "description": "", "main": "truffle-config.js", "directories": { "test": "test" }, "scripts": { "test": "echo "Error: no test specified" && exit 1", "start": "webpack", "server": "webpack-dev-server --open" }, "author": "", "license": "ISC" }

package.json檔案定義了這個專案所需要的各種模組,以及專案的配置資訊(比如名稱、版本、許可證等元資料)。npm命令根據這個配置檔案,自動下載所需的模組,也就是配置專案所需的執行和開發環境。

然後在conference目錄下新建app目錄,並建立index.html檔案,如下:

<!DOCTYPE html>
<html>
<head>
  <title>SimpleChain 投票工具</title>
  <link href='https://fonts.loli.net/css?family=Open+Sans:400,700,300' rel='stylesheet' type='text/css'>
  <script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
  <script src="./app.js"></script>
</head>
<body>
  <h1>SimpleChain 投票工具</h1>
  <div class="section">
    Contract deployed at: <div id="confAddress"></div>
  </div>
  <div class="section">
    Organizer: <input type="text" id="confOrganizer" />
  </div>
  <div class="section">
    Quota: <input type="text" id="confQuota" />
      <button id="changeQuota">Change</button>
      <span id="changeQuotaResult"></span>
  </div>
  <div class="section">
    Registrants: <span id="numRegistrants">0</span>
  </div>

  <hr/>

</body>
</html> 

然後在app目錄下新建javascripts目錄和styleheets目錄,分別存放js指令碼檔案和css樣式檔案。真正和合約互動的就是指令碼檔案。

指令碼檔名為app.js,部分程式碼如下:

import "../stylesheets/app.css";
import {  default as Web3 } from 'web3';
import {  default as contract } from 'truffle-contract';

import conference_artifacts from '../../build/contracts/Conference.json'

var accounts, sim;
var Conference = contract(conference_artifacts);



window.addEventListener('load', function() {
    //alert("aaaaa");
    // Checking if Web3 has been injected by the browser (Mist/MetaMask)
    if (typeof web3 !== 'undefined') {
        console.warn("Using web3 detected from external source. If you find that your accounts don't appear or you have 0 MetaCoin, ensure you've configured that source properly. If using MetaMask, see the following link. Feel free to delete this warning. :) http://truffleframework.com/tutorials/truffle-and-metamask")
        // Use Mist/MetaMask's provider
        window.web3 = new Web3(web3.currentProvider);
    } else {
        console.warn("No web3 detected. Falling back to http://localhost:8545. You should remove this fallback when you deploy live, as it's inherently insecure. Consider switching to Metamask for development. More info here: http://truffleframework.com/tutorials/truffle-and-metamask");
        // fallback - use your fallback strategy (local node / hosted node + in-dapp id mgmt / fail)
        window.web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));
    }

    Conference.setProvider(web3.currentProvider);
    App.start();

    $("#changeQuota").click(function() {
        var newquota = $("#confQuota").val();
        App.changeQuota(newquota);
    });

    // Wire up the UI elements
});

這裡主要就是用JSwweb3 API呼叫合約的函式。到這裡為止,web部分基本已經準備好了,我們只需要用webpack打包部署即可。webpack打包還需要一個配置檔案,名為webpack.config.js,這個檔案是告訴webpack打包的規則,涉及webpack的用法,可以自己查詢。

打包部署web應用

打包部署需要安裝webpack和相關的元件,安裝的方式有全域性安裝和區域性安裝兩種。所謂的區域性安裝,是指元件都是安裝在專案的目錄下(conference/node_modules)。我這裡採用的就是區域性安裝。根據我們專案的實際情況,需要安裝以下元件,

npm install --save-dev [email protected]
npm install babel-loader --save-dev
npm install babel-core --save-dev
npm install html-loader --save-dev
npm install --save-dev [email protected]
npm install html-webpack-plugin --save-dev
npm install truffle-contract --save-dev

npm install --save-dev style-loader css-loader
環境裝好,可以打包了。

$ sudo npm run start

> conference@1.0.0 start /home/pony/ethereum/conference
> webpack

Hash: ec8b764f75c05b477d9d
Version: webpack 3.0.0
Time: 2686ms
       Asset       Size  Chunks                    Chunk Names
   bundle.js    3.36 MB       0  [emitted]  [big]  main
./index.html  740 bytes          [emitted]         
  [10] (webpack)/buildin/global.js 509 bytes {0} [built]
  [16] (webpack)/buildin/module.js 517 bytes {0} [built]
  [47] ./app/javascripts/app.js 3.85 kB {0} [built]
  [48] ./app/stylesheets/app.css 1.08 kB {0} [built]
  [49] ./node_modules/css-loader!./app/stylesheets/app.css 413 bytes {0} [built]
 [175] ./build/contracts/Conference.json 71.1 kB {0} [built]
    + 170 hidden modules
Child html-webpack-plugin for "index.html":
       [0] ./node_modules/html-webpack-plugin/lib/loader.js!./app/index.html 706 bytes {0} [built]

沒報錯的話,進入build目錄可以看到bundle.js和index.html兩個檔案,這兩個就是最終打包好的網頁檔案。然後部署:

$ sudo npm run server

> [email protected] server /home/pony/ethereum/conference
> webpack-dev-server --open

Project is running at http://localhost:8080/
webpack output is served from /
Content not from webpack is served from ./build
404s will fallback to /index.html
Hash: ecae3662137376f80de0
Version: webpack 3.0.0

這樣相當於運行了一個小型的nodejs伺服器,我們可以在瀏覽器輸入http://localhost:8080/在頁面上看到效果。clipboard.png 可以看到合約的釋出地址和會議組織者地址(msg.sender)都已經成功的顯示出來了,點選change按鈕還可以改變quota的值。