dev 36

Rust 개발환경 구성 ( Windows, Vscode )

https://docs.microsoft.com/ko-kr/windows/dev-environment/rust/setup Windows에서 Rust에 대한 개발 환경 설정 Windows에서 Rust로 앱을 개발하는 데 관심이 있는 초급자를 위한 개발 환경을 설정합니다. docs.microsoft.com https://www.rust-lang.org/tools/install Install Rust A language empowering everyone to build reliable and efficient software. www.rust-lang.org 64bit 설치 진행 y -> 1로 설치 진행 설치는 끝난거 같다 vscode 설정으로 들어가 본다. 확장 프로그램이 많이 준비되어 있는 것 같다. 아..

DEV/Rust 2022.03.19

[Solidity]Erc20 코인 생성 연습 ( ganache + Remix IDE )

Ganache로 구성한 네트워크에 erc20 코인을 생성 연습을 해보려고 한다. 먼저 erc20 소스를 OpenZeppelin에서 받는다 https://github.com/OpenZeppelin/openzeppelin-contracts GitHub - OpenZeppelin/openzeppelin-contracts: OpenZeppelin Contracts is a library for secure smart contract development. OpenZeppelin Contracts is a library for secure smart contract development. - GitHub - OpenZeppelin/openzeppelin-contracts: OpenZeppelin Contracts..

DEV/Ethereum 2022.03.19

[Ganache] 설치와 MetaMask 테스트

Ganache를 설치 및 사용해 보려고 한다. https://trufflesuite.com/ganache/ Truffle Suite - Truffle Suite Features VISUAL MNEMONIC & ACCOUNT INFO Quickly see the current status of all accounts, including their addresses, private keys, transactions and balances. trufflesuite.com http://wiki.hash.kr/index.php/%EA%B0%80%EB%82%98%EC%8A%88 가나슈 - 해시넷 가나슈(Ganache)는 이더리움 기반 블록체인 디앱 개발에 사용하는 개인용 블록체인이다. 가나슈(Ganache)란 테스..

DEV/Ethereum 2022.01.16

[Ethereum] geth를 이용한 private network 구성 (PoA)

아래 url에 있는 내용을 진행 할 예정이다. https://geth.ethereum.org/docs/interface/private-network Private Networks | Go Ethereum Private Networks This guide explains how to set up a private network of multiple Geth nodes. An Ethereum network is a private network if the nodes are not connected to the main network. In this context private only means reserved or isolated, rather than p geth.ethereum.org 위 내용을 보면 ..

DEV/Ethereum 2022.01.10

[geth] Windows에서 설치 와 사용법

https://geth.ethereum.org/downloads/ Downloads | Go Ethereum Retrieving packages from release server... geth.ethereum.org 윈도우를 사용하고 있으니 윈도우 버전을 다운 받는다. 압축 해재를 하고 실행파일을 원하는 폴더에 옮기고 cmd 를이용하여 메인넷 블록을 받아와 볼려고 한다. 시작은 account 생성 이다. geth.exe가 있는 위치에서 geth account new 위 명령어를 입력한다. 비밀번호를 2회 입력하여 계정을 만든다. geth --http --mine --metrics --syncmode "fast" 위 명령어를 이용해 메인넷의 블록을 받아와 동기화한다 사용한 옵션은 --http : http..

DEV/Ethereum 2021.12.17

[ethminer] 설치와 사용법

2021.12.17일 기준 https://github.com/ethereum-mining/ethminer/releases/tag/v0.18.0 Release ethminer 0.18.0 · ethereum-mining/ethminer github.com 0.18.0을 다운로드한다. 위험 문구가 나타나지만 계속 진행한다. 위험한 파일 보관한다..(?) 이제 명령어를 사용하면 된다 WIN key + R을 눌러 실행에서 cmd를 열어 사용한다. 이렇게 버전이 출력되면 사용 준비는 끝났다. 마이닝 풀 허브를 이용할 경우에는 https://miningpoolhub.com/?page=account&action=edit Mining Pool Hub I Login miningpoolhub.com 정보 수정에 들어가서 ..

DEV/Ethereum 2021.12.17

[Ethereum] Windows 10 Mist설치

Solana를 공부하기 위해 선행으로 이더를 해야 겠다는 생각이 들었다. 그래서 이더부터 다시 차근차근 시작해보려 한다. https://github.com/ethereum/mist/releases Releases · ethereum/mist [DEPRECATED] Mist. Browse and use Ðapps on the Ethereum network. - ethereum/mist github.com mist 설치 하고나면 checksum 에러가 발생하는데 https://geth.ethereum.org/downloads/ Downloads | Go Ethereum Retrieving packages from release server... geth.ethereum.org 위 주소로 들어가서 show o..

DEV/Ethereum 2021.12.14