Cute Bow Tie Hearts Blinking Pink Pointer

구현 3

[typescript] NFT 토큰 민팅하는 dApp 간단히 구현하기

목차 - 디렉토리 구조 - 모듈 설치 및 기본 설정 - 구현 코드 - 결과 디렉토리 구조 모듈 설치 및 기본 설정 프론트 npx create-next-app@latest --typescript front npm i @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^6 npm install web3 샤크라라는 라이브러리를 사용해서 이미 만들어져있는 리액트 컴포넌트를 사용해서 편하게 작업할 것임 백 mkdir truffle cd truffle truffle init cd contracts npm init npm i openzeppelin-solidity truffle.config.js에서 development 주석 해제 https:..

[Typescript] 암호화폐 지갑 대~충 구현해보기(찍먹)

오늘 할 것은 암호화폐에 필요한 비밀키(개인키) 생성, 공개키 생성, 디지털 서명, 검증, 계정생성이다. 타원곡선이 블록체인에 어떻게 이용되는가? ↓ 타원곡선과 블록체인 (brunch.co.kr) 타원곡선과 블록체인 "이거 진짜 너가 보낸 트랜잭션 맞아?" | 시작하기 전에 이 글은 블록체인에 타원곡선이 어떤 식으로 이용되는지에 초점을 둔 글 입니다. 주제의 특성상 너무 기술적으로 들어가는 부분들이 있는 brunch.co.kr src/core/wallet/wallet.test.ts import { randomBytes } from 'crypto' import { SHA256 } from 'crypto-js' import elliptic from 'elliptic' const ec = new ellipti..

블록체인 2022.06.16

[Typescript] 타입스크립트로 블록체인 P2P 구현해보기(찍먹)

타입스크립트로 블록체인에 이용되는 p2p를 찍먹해보겠다. index.ts import { BlockChain } from '@core/index' //블록정보가 담겨있는 객체임. 전 글에서 확인가능합니다 import express from 'express' import { P2PServer } from './src/serve/p2p' const app = express() const bc = new BlockChain() const ws = new P2PServer() app.use(express.json()) app.get('/', (req, res) => { res.send('Chain') }) app.get('/chains', (req, res) => { res.json(bc.chain.getChi..

블록체인 2022.06.14