강의

멘토링

커뮤니티

Inflearn Community Q&A

reach19940452's profile image
reach19940452

asked

Creating Klaytn Blockchain Applications - Theory and Practice

스마트 배포 2 truffle deploy --network klaytn

Written on

·

281

0

이하와 같이 에러가 나는데 도와주세요!

 

root@23a894f1ee94:/home# truffle deploy --network klaytn

Using network 'klaytn'.

 

Running migration: 1_initial_migration.js

  Deploying Migrations...

  ... undefined

Error encountered, bailing. Network state unknown. Review successful transactions manually.

Error: Invalid JSON RPC response: {"id":5,"jsonrpc":"2.0"}

    at Object.InvalidResponse (/usr/lib/node_modules/truffle/build/webpack:/~/web3/lib/web3/errors.js:38:1)

    at /usr/lib/node_modules/truffle/build/webpack:/~/web3/lib/web3/requestmanager.js:86:1

    at /usr/lib/node_modules/truffle/build/webpack:/packages/truffle-migrate/index.js:225:1

    at /usr/lib/node_modules/truffle/build/webpack:/packages/truffle-provider/wrapper.js:134:1

    at /home/node_modules/web3-provider-engine/index.js:149:9

    at /home/node_modules/async/internal/once.js:12:16

    at replenish (/home/node_modules/async/internal/eachOfLimit.js:61:25)

    at /home/node_modules/async/internal/eachOfLimit.js:71:9

    at eachLimit (/home/node_modules/async/eachLimit.js:43:36)

    at /home/node_modules/async/internal/doLimit.js:9:16

    at end (/home/node_modules/web3-provider-engine/index.js:124:5)

    at /home/node_modules/async/internal/once.js:12:16

    at next (/home/node_modules/async/waterfall.js:21:29)

    at /home/node_modules/async/internal/onlyOnce.js:12:16

    at /home/node_modules/async/internal/once.js:12:16

    at next (/home/node_modules/async/waterfall.js:21:29)

    at /home/node_modules/async/internal/onlyOnce.js:12:16

    at /home/node_modules/web3-provider-engine/subproviders/hooked-wallet.js:374:7

    at /home/node_modules/async/internal/once.js:12:16

    at next (/home/node_modules/async/waterfall.js:21:29)

    at /home/node_modules/async/internal/onlyOnce.js:12:16

    at /home/node_modules/web3-provider-engine/subproviders/hooked-wallet.js:402:5

blockchain

Answer 2

0

deploy할 때 가스량때문에 문제가 생길 수도있어요

GASLIMIT 수치도 조정해보세요

0

SEJONG IT EDU님의 프로필 이미지
SEJONG IT EDU
Instructor

계정에 클레이 faucet통해서 받으셨죠? truffle.js 에서 private key 잘 입력하시고 

truffle deploy --compile-all --reset --network klaytn 실행해보세요

reach19940452's profile image
reach19940452

asked

Ask a question