일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스트리밍
- error
- web3js
- null safety
- coroutines
- dataginding
- Exception
- 컴파일
- Android
- firebase
- vuepress
- hardwareacceleration
- bigquery
- C
- Hyperledger
- porterduff
- log
- quick-start
- kotlin
- Realm
- fabic
- test
- convert
- LAYER_TYPE_SOFTWARE
- ethereum
- Gradle
- Glide
- fabric-sdk-java
- 안드로이드
- 다윈
- Today
- Total
목록ethereum (2)
날마다 새롭게 또 날마다 새롭게
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...