일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- vue기초
- 체인의정석
- rust 기초
- ambiguous function description
- 티스토리챌린지
- SBT표준
- multicall
- 컨트렉트 동일한 함수이름 호출
- 스마트컨트렉트 예약어 함수이름 중복
- 러스트기초
- 스마트 컨트렉트 함수이름 중복
- 컨트렉트 배포 자동화
- 스마트컨트렉트 함수이름 중복 호출
- ethers
- Vue.js
- 계정추상화
- 러스트 기초 학습
- ethers typescript
- ethers v6
- erc4337
- chainlink 설명
- 러스트 기초
- erc4337 contract
- 오블완
- ethers type
- git rebase
- 머신러닝기초
- ethers websocket
- 스마트컨트렉트테스트
- Today
- Total
목록분류 전체보기 (496)
체인의정석
1. 테스트 시 가져오는 Class의 static 함수와 일반 함수 - 일단 class를 정의할 때 static인 함수는 new를 써서 객체를 생성하지 않아도 사용이 가능하다. - static이 아니라면 new를 써서 객체를 만든 후에 접근이 가능하다. 나는 static 함수와 일반 함수 2개를 비교해야 하는데 깜빡하고 new를 안써서 해멨다... 2. Mocha로 테스트 하기 기본 템플릿 describe('test ', async() => { describe('test detail', async() => { it('should aaaa', async () => { assert.equal(); }) }); }); 3. 배열을 비교하는 경우는 deep 사용해주기 assert.deepEqual 4. 실행시에..
https://stackoverflow.com/questions/2442798/javascript-filter-vs-map-problem Javascript filter vs map problem As a continuation of my min/max across an array of objects I was wondering about the performance comparisons of filter vs map. So I put together a test on the values in my code as was going to loo... stackoverflow.com 자바스크립트에서 각 요소를 순회하며 검색하는 기능을 구현하고 있었다. map의 경우 각 요소에 접근하여 정보를 수정하는 경우 ..
이번에 이직을 하게 되면서 여러 팀원들과 함께 개발 내용을 공유할 상황이 되었다. 내가 담당한 부분은 많은 팀원들이 공통적으로 사용할 부분이기 때문에 주석을 한번 제대로 달아봐야지 하는 생각이 들었다. https://developer.wordpress.org/coding-standards/inline-documentation-standards/javascript/ WordPress Developer Resources | Official WordPress Developer Resources Official WordPress developer resources including a code reference, handbooks (for APIs, plugin and theme development, bloc..
고정 값으로 된 데이터를 사용하여 관리하는 상황이다. https://stackoverflow.com/questions/32647215/declaring-static-constants-in-es6-classes Declaring static constants in ES6 classes? I want to implement constants in a class, because that's where it makes sense to locate them in the code. So far, I have been implementing the following workaround with static methods: class MyCl... stackoverflow.com 먼저 기존에 const로 정의된 기본 ..
여러 DB 또는 서버를 같이 개발해야 할 때는 docker compose를 활용해야 한다. 1. brew install docker https://formulae.brew.sh/formula/docker docker Homebrew’s package index formulae.brew.sh brew install docker 2. 이때 cask 옵션을 주면 docker compose도 같이 설치된다고 한다. brew install --cask docker 근데 난 이미 도커를 설치해서 컴포즈를 따로 설치하였다. brew install docker-compose 3. 그다음에 버전을 체크하면 된다. docker --version docker-compose --version 4. 컨테이너 생성 및 시작의 경..
이번 새로운 프로젝트에 온보딩 하면서 오랜만에 보거나 잘 안쓰던 문법인데 다른 분들이 사용해두었던 문법 위주로 업데이트 중이다. (자바스크립트 -> 타입스크립트 -> 자바스크립트를 보다보니 새삼 타입스크립트의 필요성을 느끼게 된다 ㅋㅋㅋㅋ) 1. 현재 절대 경로 지정하는법 __dirname : 현재 절대 경로를 의미 https://chinsun9.github.io/2020/11/16/nodejs-dirname/ nodejs __dirname index.js12log(`__dirname`, __dirname);log(`process.cwd()`, process.cwd()); C:\git>node tmp\app-root\index.js__dirname C:\git\tmp\app-rootprocess.cwd(..
1. 기존 데이터 베이스 연결 database - connect to Database 여기서 정보 입력 2. 테스트 단계 파악 각 정보 받은 후 도커 등을 쓰거나 아니면 터널링 정보 등을 통해서 테스트 환경 및 실제 환경 접속 방법 받기 ssh key gen 후에 공개키 값 넘겨주면 등록 가능 3. 소스 코드 파악 pm2 log 등을 띄워놓고 직접 어떤 api 가 있는지 파악 만약 설계 문서가 있을 시 설계 문서 보고 파악 진행 4. mysql Workbench 사용하여 DB보기 - 오랜만에 보니 메뉴가 많이 바뀌었는데 info 클릭 후 table을 누르면 테이블을 볼 수 있다. https://www.goodsource.co.kr/9 MySql WorkBench에서 테이블의 컬럼정보 보기 MySql을 사..
환경 : mac OS , intel 스택 : Node.js, MySql, Solidity 1. hombrew 설치 https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh 2. mySqlBrench 설치 (타 블로그 참고) https://velog.io/@kms9887/mysql-%EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C-workbench Mac에서 mysql, workbench 설치하기 MySQL, Workbench 설치하기 velog.io 여기서 일단 mysql 설치하는 부분부터 진행 https://haddoddo.tistory.com/entry/Homebrew-Mac%E..