iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 9
0
自我挑戰組

從零開始摸索智能合約系列 第 10

Compile 編譯(待補充)

  • 分享至 

  • xImage
  •  
  • 承前章,安裝完solc,接著要著手寫編譯腳本
// 按照solc官方文件的步驟,我們需要先讀取合約的code,再傳給solc進行編譯,最後輸出到console。

const fs = require('fs');
const path = require('path');
const solc = require('solc');

const contractPath = path.resolve(__dirname, '../contracts', 'pittToken.sol');
const contractSource = fs.readFileSync(contractPath, 'utf8');

const result = solc.compile(contractSource, 1);
console.log(result);
  • 到這邊我基本已經不能理解運作的邏輯了,只能先暫時放著,後續再回頭補充。
  • 為了避免卡住,先切換到web3.js。

上一篇
合約項目基礎
下一篇
Dapp 小知識補充
系列文
從零開始摸索智能合約12
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言