일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 컨트렉트 배포 자동화
- 스마트컨트렉트 예약어 함수이름 중복
- ethers websocket
- erc4337 contract
- ambiguous function description
- multicall
- 스마트컨트렉트테스트
- 러스트 기초 학습
- ethers typescript
- 머신러닝기초
- chainlink 설명
- rust 기초
- ethers v6
- vue기초
- git rebase
- Vue.js
- 러스트 기초
- 계정추상화
- 컨트렉트 동일한 함수이름 호출
- 오블완
- 스마트컨트렉트 함수이름 중복 호출
- 러스트기초
- Vue
- ethers type
- ethers
- 스마트 컨트렉트 함수이름 중복
- 티스토리챌린지
- SBT표준
- erc4337
- 체인의정석
- Today
- Total
목록2025/04/08 (2)
체인의정석
MongoDB와 Go를 사용하여서 데이터를 조회할 때는Mongo driver를 사용하면된다.https://github.com/mongodb/mongo-go-driver GitHub - mongodb/mongo-go-driver: The Official Golang driver for MongoDBThe Official Golang driver for MongoDB. Contribute to mongodb/mongo-go-driver development by creating an account on GitHub.github.com이 중 cursor에 대해서 사용해보았다.먼저 위의 공식 문서 상 cursor는 다음과 같이 사용할 수 있게 되어있다. 커서의 경우 스트림 형태로 DB의 접근 1번만 통해서 계속..
Go-Swagger 사용법설치 go get -u github.com/go-swagger/go-swagger/cmd/swagger주석달기 (쳇지피티 시키면 잘달아줌)// CreateUserInfo// @Summary Create new user info// @Description 새 사용자 정보를 DB에 저장합니다.// @Tags account// @Accept json// @Produce json// @Param body body protocol.CreateUserRequest true "사용자 정보"// @Success 200 {object} protocol.RespHeader// @Failure 500 {object} protocol.RespHeader// @Router /v1/users/info..