일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 typescript
- vue기초
- 러스트 기초
- 러스트 기초 학습
- SBT표준
- 머신러닝기초
- rust 기초
- ethers websocket
- 스마트 컨트렉트 함수이름 중복
- ethers v6
- 스마트컨트렉트프록시
- ambiguous function description
- chainlink 설명
- ethers type
- 스마트컨트렉트 예약어 함수이름 중복
- 프록시배포구조
- git rebase
- Vue
- 깃허브명령어
- nest.js설명
- ethers
- 스마트컨트렉트 함수이름 중복 호출
- Vue.js
- 러스트기초
- 체인의정석
- 컨트렉트 동일한 함수이름 호출
- nestjs 튜토리얼
- multicall
- 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..