일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Vue
- 스마트컨트렉트 예약어 함수이름 중복
- ethers websocket
- 러스트기초
- SBT표준
- 러스트 기초
- rust 기초
- Vue.js
- 머신러닝기초
- 티스토리챌린지
- ethers v6
- 오블완
- 컨트렉트 동일한 함수이름 호출
- ambiguous function description
- ethers
- chainlink 설명
- vue기초
- 스마트 컨트렉트 함수이름 중복
- ethers typescript
- 스마트컨트렉트테스트
- git rebase
- 컨트렉트 배포 자동화
- ethers type
- 스마트컨트렉트 함수이름 중복 호출
- 체인의정석
- 프록시배포구조
- 스마트컨트렉트프록시
- multicall
- nest.js설명
- 러스트 기초 학습
- Today
- Total
목록개발/backend (92)
체인의정석
타입스크립트에서 implements를 사용하면 정의한 인터페이스를 구현해야 에러가 안나게 된다. 만약 인터페이스를 가져와서 constrcutor에 만든 경우 implements를 추가해주도록 한다. export interface IntermediaryVASPType { sequence: string; } export class IntermediaryVASP extends Common implements IntermediaryVASPType { sequence: string; }
optional chainning을 적용할 경우 아래와 같이 undeifinded가 계속해서 나오게 된다. optional chainning에서는 리턴 값이 undefined를 주기 때문에 이를 유의해야한다. Address { addressType: 'BIZZ', department: undefined, subDepartment: undefined, streetName: undefined, buildingNumber: undefined, buildingName: undefined, floor: undefined, postBox: undefined, room: undefined, postcode: '06232', townName: 'Seoul', townLocationName: undefined, dist..
optional chainning을 이용하면 아래와 같이 null이나 undeifined 같은 케이스를 짧은 구문으로 검사할 수 있다. 아래와 같이 foo 밑에 있는 foo bar, foo bar, baz 가 null 이거나 undeifined인지 체크하는 구문을 단축 시킬 수 있다. optional chainning 은 중간에 없는 요소가 나오면 undefined를 리턴하고, 중간에 요소가 모두 있으면 계속해서 실행되게 된다. // Before if (foo && foo.bar && foo.bar.baz) { // ... } // After-ish if (foo?.bar?.baz) { // ... } https://www.typescriptlang.org/docs/handbook/release-note..
추상 클래스는 함수이름과 입력값만 받는다. 추상 클래스는 추후에 다른 클래스에서 상속을 받은 후에 그 내용을 채우면 된다. 현재는 모듈 등을 만들 때 Common Class와 같이 추상 클래스를 하나 만들고 추후에 다같이 적용되는 기능을 넣는 식으로 활용을 하였다. 추상클래스 export abstract class Common { toString(): string { return "undefined string"; } validate() {} } 상속받는 클래스 import { Common } from "../common/CommonClass"; export class Person extends Common { toString(): string { return JSON.stringify(this); } }