Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 노드
- 우분투
- 설치
- immer
- MariaDB
- 이더리움
- centos
- node.js 교과서 따라하기
- 솔리디티
- 깃허브
- npm
- 전역설치
- 벨로포터
- 리눅스
- 시퀄라이즈
- 머클트리
- 쉘스크립트
- 자바스크립트
- 환경변수
- wget
- 머클루트
- wsl
- Docker
- 리액트를 다루는 기술
- 변수
- Sequelize
- 라우터
- 블록체인
- 리액트
- 일반유저
Archives
- Today
- Total
코드코코
[솔리디티][디앱] lottery - 이더리움 GAS 계산 본문
bet 함수에서 사용하는 수수료가 얼마나 나올지
이더리움에서의 수수료
gas = gasLimit : 일단 트랜잭션 안에서의 가스리밋만 생각해보자
gasPrice
ETH
- 수수료 = gas(21000) * gasPrice(1 gWei == 10**9 wei)
Gas 계산
- 32bytes 새로 저장 == 20000 gas
가나슈로 서버열고
trufflre migrate --reset
truffle console
Lottery.deployed().then(function(instance){lt=instance})
web3.eth.getAccounts()
let bettor = '0xF76c9B7012c0A3870801eaAddB93B6352c8893DB'
lt.bet("0xab",{from:bettor,value:5000000000000000, gas:300000})