본문 바로가기

전체 글

(64)
TIL) IPFS(InterPlanetary FileSystem) 이해 (2) 본 컨텐츠는 Kblock 공식 리서치팀, 케블리님이 Steemit에 작성한 자료를 참고하였습니다. https://steemit.com/kr/@kblock/27-ipfs-interplanetary-file-system-2-ipfs-filecoin #IPFS와 파일코인 1. IPFS가 동작하려면 우선 IPFS에 데이터가 저장되어 있어야 함. 2. 개인의 입장에서 파일을 IPFS에 올리고 보관하는 것은 저장공간의 사용하는 일이기 때문에 보상이 필요. 파일코인(Filecoin)은 1,2를 가능하게 하는 IPFS의 인센티브 레이어 #파일코인의 동작원리 - DSN 파일코인의 동작원리를 알기 위해서는 우선 DSN을 알아야 함. DSN(Decentralized Storage Network)은 파일코인이 활용되는 탈중앙..
Programmers: 숫자 문자열과 영단어 with JS function solution(s) { var answer = 0; const letter = ['zero', 'one', 'two', 'three', 'four','five','six','seven', 'eight', 'nine','zero'] String.prototype.replaceAll = function(org,dest) { return this.split(org).join(dest); } for(let i = 0; i
TIL) 이더리움 엔진 Geth 활용하여 private network 구축 Geth란 무엇인가? - full ethereum node를 구성하기 위한 tool - Go 언어 기반으로 작성 Getting Started with Geth | Go Ethereum Getting Started with Geth This page explains how to set up Geth and execute some basic tasks using the command line tools. In order to use Geth, the software must first be installed. There are several ways Geth can be installed depending on the operating s geth.ethereum.org Solidty는 많이 들어봤는데 Ge..