5分钟完成在Conflux高性能公链上的智能合约编译部署和执行

Video
B 站视频:5分钟完成在Conflux高性能公链上的智能合约编译部署和执行

Step 1.Install related packages
npm install -g solc truffle

Step 2.Download and unzip file
压缩包

Step 3.Write Contract
eg. Contract1.sol
pragma solidity >=0.4.23;
contract Contract1{
string _field;
function get()public view returns (string memory){
return _field;
}
function set(string memory field)public{
_field=field;
}
}

Step 4. Compile Contract and Deploy Contract
truffle compile ;& node .\helper\deploy.js {ContractName}

Step 5. Call Contract
node .\src\main.js

1 Like

有视频好评。给完整zip好评。确实可以直接用。

(不过5分钟的前提,还是需要有一定基础和准备,比如装好nodejs和vscode)

您好,Conflux英文版论坛已转发您的内容,链接: Compile, deploy and execute the smart contract on the Conflux high-performance public chain in 5 minutes