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'

좋은 웹페이지 즐겨찾기