Truffle (1) 스마트 컨트랙트에 접근하기
truffle console
const instance - await Faucet.deployed() instance
intance를 입력하면 아래와 같이 출력된다.
storage에 변수를 저장한다는 것은 자동으로 메소드를 생성한다.
const funds = await instance.funds(); return > undefined funds BN { negative: 0, words: [ 1000, <1 empty item> ], length: 1, red: null } funds.toString() '1000' const test2 = await instance.test() undefined test2.toString() '4294967295'
Author And Source
이 문제에 관하여(Truffle (1) 스마트 컨트랙트에 접근하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@moonshot/Truffle-1-스마트-컨트랙트에-접근하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)