일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- erc4337 contract
- cloud hsm 사용하기
- redux 기초
- 컨트렉트 동일한 함수이름 호출
- cloud hsm
- 오블완
- Vue.js
- 체인의정석
- cloud hsm 서명
- 머신러닝기초
- git rebase
- 계정추상화
- 스마트컨트렉트 함수이름 중복 호출
- 러스트 기초
- Vue
- 러스트기초
- ethers typescript
- 티스토리챌린지
- ethers type
- redux toolkit 설명
- 스마트컨트렉트 예약어 함수이름 중복
- vue기초
- 러스트 기초 학습
- 스마트 컨트렉트 함수이름 중복
- rust 기초
- ethers v6
- SBT표준
- ethers websocket
- erc4337
- ambiguous function description
- Today
- Total
목록2023/12 (3)
체인의정석
https://hackernoon.com/how-to-solve-struct-containing-a-nested-mapping-cannot-be-constructed-in-solidity How to Solve "Struct Containing a (Nested) Mapping Cannot be Constructed" in Solidity | HackerNoon How to Solve "Struct Containing a (Nested) Mapping Cannot be Constructed" in Solidity hackernoon.com struct content{ address payable owner; bytes32 hash; mapping(address => uint) licenses; } 다음과..
현재 2023년 12월 기준 ethers의 최신 버전 공식문서는 아래와 같다. 아래 v5 -> v6으로 마이그레이션 하는 문서를 보면 ethers.utils 문법이 사라졌으며 그 외에도 다양한 문법이 크게 바뀌었다. https://docs.ethers.org/v6/migrating/ Documentation Documentation for ethers, a complete, tiny and simple Ethereum library. docs.ethers.org 내가 사용하려던 ethers.utils 에서 해시를 취하는 값 또한 utils가 빠지게 되면서 ethers.keccack256으로 바뀌었다. https://docs.ethers.org/v6/api/crypto/#keccak256 Documenta..

https://white-joy.tistory.com/9 머신러닝 = 추론 + 자료구조 + 알고리즘 이다. Confusion Matrix (혼동행렬, 오차행렬) 먼저 분류 모델을 평사하는 척도로 Confusion Matrix가 있다고 한다. 출처: 분류 모델 성능 평가 지표(Accuracy, Precision, Recall, F1 score 등) 분류 모델(classifier)을 평가할 때 주로 Confusion Matrix를 기반으로 Accuracy, Precision, Recall, F1 score를 측정한다. Confusion Matrix(혼동 행렬, 오차 행렬) 분류 모델(classifier)의 성능을 측정하는 데 자주 사용 white-joy.tistory.com N: Total number of..