일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- bigquery
- quick-start
- 스트리밍
- 다윈
- porterduff
- log
- Hyperledger
- C
- hardwareacceleration
- fabic
- web3js
- LAYER_TYPE_SOFTWARE
- dataginding
- Realm
- ethereum
- Android
- kotlin
- 안드로이드
- convert
- vuepress
- null safety
- 컴파일
- Gradle
- firebase
- error
- test
- coroutines
- Glide
- fabric-sdk-java
- Exception
- Today
- Total
목록프로그래밍/Blockchain (3)
날마다 새롭게 또 날마다 새롭게
hyperledger 에서 제공하는 fabric-samples 에서 marbles 체인코드를 fabric-sdk-java 를 사용해서 호출하는 방법을 정리한다. 전체 코드는 github 에서 확인할 수 있다. dependency java 프로젝트에서 fabric-sdk-java 를 사용하기 위해 다음과 같이 dependency 설정을 추가한다. dependencies { implementation("org.hyperledger.fabric-sdk-java:fabric-sdk-java:1.4.4") } 네트워크 시작 먼저, fabric-sdk-java 로 호출하기 위한 network 를 시작한다. 네트워크는 fabric-samples 를 clone 받아 쉽게 시작할 수 있다. 여기서는 fabric-samp..
ABI (Application Binary Interface)SmartContract 의 함수와 파라미터에 대한 MetaData를 정의해 Contract의 객체를 만들 수 있고 Contract의 함수를 호출할 수 있는 표준방법입니다.Contract의 함수를 호출하기 위해서는 ABI Spec 에 맞게 데이터를 변환해야 합니다. 데이터는 크게 함수에 대한 정보와 함수 호출에 사용할 인수로 구분합니다.함수에 대한 정보 : 함수의 이름과 인수에 대한 type을 정의 (signature)인수 : 함수에서 사용할 인수함수에 대한 정보데이터의 처음 4바이트는 호출할 함수를 지정합니다. 호출할 함수 이름과 인수에 대한 타입 목록을 Keccak (SHA-3)로 해쉬로 변환하고// example transfer(addre..
web3.js 사용해보기The web3.js library is a collection of modules which contain specific functionality for the ethereum ecosystem.The web3-eth is for the ethereum blockchain and smart contractsThe web3-shh is for the whisper protocol to communicate p2p and broadcastThe web3-bzz is for the swarm protocol, the decentralized file storageThe web3-utils contains useful helper functions for Dapp developers...