Blockchain
-
Hyperledger Burrow (하이퍼레저 버로우)Blockchain 2023. 2. 9. 13:40
Hyperledger(하이퍼레저) 2017년 4월 오픈소스로 시작한 하이퍼레저 버로우(Hyperledger Burrow)는 허가된 이더리움 스마트 계약 블록체인 노드이다. 허용된 이더리움 가상머신에서 스마트 계약 코드를 실행한다. 버로우는 지분증명 텐더민트 컨센서스 엔진을 통해 높은 트랜잭션 처리량을 제공한다. 고(Go) 언어를 사용하여 개발되고 있다. 퍼블릭 블록체인 플랫폼에 프라이빗 블록체인을 더해 구조적으로 상호 보완하도록 할 수 있는 환경을 위해 검토되고 있다.
-
Ganache background instance 실행Blockchain 2023. 2. 1. 02:31
npm으로 설치된 ganache를 background instance로 관리 일반 실행 background instance방식 아님 .\node_modules\.bin\ganache background instance 실행 .\node_modules\.bin\ganache instances --detach background instance 목록 보기 .\node_modules\.bin\ganache instances list background instance 종료 .\node_modules\.bin\ganache instances stop
-
-
Ganache-cli provider javascriptBlockchain 2023. 1. 28. 14:13
As a Web3 provider: var ganache = require("ganache-cli"); web3.setProvider(ganache.provider()); As a general http server: var ganache = require("ganache-cli"); var server = ganache.server(); server.listen(port, function(err, blockchain) {...});