스마트 계약 작성

1755 단어
1. node를 설치합니다.js
홈페이지 다운로드 및 설치
2. truffle 설치
    npm install -g truffle
3. 가동testrpc 이더리움 환경
  testrpc 4.   mkdir Demo   cd Demo
5.   truffle init 6.

    truffle create contract HelloWorld 7.   truffle compile 8.  
  vi migrations/2_deploy_contracts.js     var HelloWorld = artifacts.require("HelloWorld ");   module.exports = function(deployer){     deployer.deploy(HelloWorld );   }  
  truffle migrate 9. 계약 상호 작용  truffle console   HelloWorld.deployed().then(instance => contract = instance) 10. ,   truffle migrate --reset : , truffle.js module.exports = {
  networks: {
    development: {
      host: "localhost",
      port: 8545,
      network_id: "*"
    },
    staging: {
      host: "localhost",
      port: 8546,
      network_id: 1337
    },
    ropsten: {
      host: "*.*.*.*( IP )",
      port: 8545,
      network_id: 3
    }
  }
};


좋은 웹페이지 즐겨찾기