흔자
반응형
[이오스] cleos 명령어를 통해 이오스 토큰 전송하는 방법
Blockchain/EOS 2022. 3. 30. 10:42

cleos push action transfer '["", "", " ", ""]' -p cleos push action testaccount1 transfer '["sendaccount1", "receiveaccount", "2000000000.0000 TEST", "TEST transfer"]' -p sendaccount1 sendaccount : 전송하는 계정 receiveaccount : 받는 게정 2000000000.0000 TEST : 전송하고 싶은 토큰의 수량 "TEST transfer" : 메모 -p sendaccount1 : eosio.token 컨트랙트 권한을 가지고 있는 계정 Reference 2.2 토큰 배포, 발행, 전송 — EOSIO 2.2 토큰 배포, 발행, 전송 1단계: 컨트..

article thumbnail
[이오스] net_plugin::plugin_startup failed to bind to port 오류 해결 방법
Blockchain/EOS 2022. 3. 22. 11:50

오류 nodeos를 아래 옵션으로 실행한 후에 재시작을 할 경우에 net_plugin::plugin_startup failed to bind to port 'port number' 오류가 발생했다. ./nodeos -e -p eosio --plugin eosio::chain_api_plugin --plugin eosio::history_api_plugin --replay-blockchain --hard-replay-blockchain 해결 방법 ps -ef | grep nodeos 로 실행중인 nodeos 포트 번호 확인 가능 kill -9 [포트 번호] 실행 중인 port number kill을 한 후에 nodeos 재실행하면 정상적으로 동작

[이오스] 13 N5boost10wrapexceptISt12system_errorEE: Database dirty flag set 오류 해결 방법
Blockchain/EOS 2022. 3. 22. 10:24

node 테스트를 위해 command로 EOS를 실행하니 Database dirty flag set 오류 발생 ./nodeos -e -p eosio --plugin eosio::chain_api_plugin --plugin eosio::history_api_plugin 오류 warn 2022-03-21T06:33:22.186 nodeos chain_plugin.cpp:1321 plugin_initialize ] 13 N5boost10wrapexceptISt12system_errorEE: Database dirty flag set rethrow Database dirty flag set: {"what":"Database dirty flag set"} nodeos chain_plugin.cpp:1321 pl..

[이오스] Linux에 EOS 개발환경 구축하기
Blockchain/EOS 2022. 3. 21. 17:46

Linux에 EOS 개발환경 구축하기 github EOSIO/eos 소스 다운로드 git clone https://github.com/EOSIO/eos --recursive git submodule update --init --recursive 원본 소스 .sh으로 compile cd eos/scripts/ ./eosio_build.sh 서버 환경에 따라 소요 시간이 다를 수 있다. nodeos 실행 cd /eos/build/programs/nodeos ./nodeos -e -p eosio --plugin eosio::chain_api_plugin --plugin eosio::history_api_plugin node 실행 옵션 -e : producer 투표 없이도 블록을 생성. -p eosio : 현재..

[이오스] 서버에서 발생 할 수 있는 오류와 해결 방법
Blockchain/EOS 2022. 2. 28. 15:08

지갑 unlock이 이미 되어있을 경우 Error 3120007: Already unlocked Error Details: Wallet is already unlocked: 지갑을 생성 할 때 staking하는 계정의 key가 import 되어있지 않을 시 Error 3090003: Provided keys, permissions, and delays do not satisfy declared authorizations Ensure that you have the related private keys inside your wallet and your wallet is unlocked. 해결 방법 cleos wallet import -n [지갑명] 을 통해서 계정의 key를 import해준다. key는 보..

반응형