일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스마트컨트렉트테스트
- 스마트컨트렉트 함수이름 중복 호출
- ethers typescript
- 스마트 컨트렉트 함수이름 중복
- multicall
- 오블완
- rust 기초
- 컨트렉트 배포 자동화
- vue기초
- Vue.js
- 러스트 기초
- git rebase
- 러스트기초
- ethers websocket
- Vue
- ethers type
- 계정추상화
- ambiguous function description
- 스마트컨트렉트 예약어 함수이름 중복
- 컨트렉트 동일한 함수이름 호출
- 티스토리챌린지
- 체인의정석
- erc4337 contract
- SBT표준
- ethers v6
- chainlink 설명
- 머신러닝기초
- ethers
- Today
- Total
목록nest.js설명 (2)
체인의정석
A. 기본구조 1. 시작 지점인 Main.ts main.ts가 시작하는 지점이며 여기서는 AppMoudule을 받아서 app.listen 안에 있는 포트로 웹서버를 구동시킨다. import { NestFactory } from "@nestjs/core"; import { AppModule } from "./app.module"; // import * as dotenv from 'dotenv'; async function bootstrap() { // dotenv.config(); const app = await NestFactory.create(AppModule); await app.listen(3002); } bootstrap(); 2. module module의 경우 @module 데코레이터가 사용되..
오랜 방황 끝에 결국 다음과 같이 구조를 짤 수 있었다. ├── addresses │ ├── addresses.module.ts │ ├── controller │ │ ├── addresses.controller.spec.ts │ │ └── addresses.controller.ts │ ├── dto │ │ ├── get-contract-command.dto.ts │ │ └── get-contract-response.dto.ts │ ├── entities │ │ └── addresses.entity.ts │ └── service │ ├── addresses.service.spec.ts │ └── addresses.service.ts ├── app.module.ts ├── config │ └── config..