작성
·
220
0
cmd 창에 아래와같이 입력했을 때
ReferenceError: bytecode is not defined 라고 뜹니다.
'bytecode'를 따로 선언해 주어야 하나요?
강의에서는 따로 선언해주지 않았는데 ... 의문이 듭니다ㅠㅠ
deployedcontract.deploy({
data: bytecode,
argumetns:[['Rama', 'Nick', 'Jose'].map(name=> web3.toAscii(name))]}).send({
from: '0x90d174ccddd87338951e071dc24da273cf9c9eeb',
gas: 150000,
gasPrice: web3.utils.toWei('0.00003','ether')
}).then((newcontractInstance)=>{
deployedcontract.options.address = newcontractInstance.options.address;
})