본문 바로가기

전체 글140

[crypto] Grass 코인 채굴 Grass Ai 관련 코인현재 200만명 이상 설치했다고 한다   솔라나 프로젝트의 첫번째 Layer 2 Data rollup 프로젝트가 되는것이 목표 공식 사이트 : https://www.getgrass.io/   채굴 방법가입링크https://app.getgrass.io/register/?referralCode=Aff-AUNtiLxkYCS 구글 이메일로 가입  chrom extention 설치만 하면 채굴 할 수 있음chrom extention :https://chromewebstore.google.com/detail/grass-extension/ilehaonighjijnmpnagapkhpcdbhclfg  대시보드를 통해 확인 가능대시보드 : https://app.getgrass.io/dashboard 2024. 6. 28.
[ERC20] Create an ERC-20 Token Using Solidity Create an ERC-20 Token Using SolidityAvalanche C-Chain 에서 ERC-20 token 생성 1. Remix 열기https://remix.ethereum.org/#lang=en&optimize=false&runs=200&evmVersion=null&version=soljson-v0.8.25+commit.b61c2a91.js  2. defalut_workspace 클릭, ERC20 template 선택, Mintable Features 선택 3. MyToken.sol 컴파일 4. Deploy & Run TransactionsINITIALOWNER 에 account 붙여넣기 5. Confirm 5-1. 결과5-2. Remix log 에서 transaction detai.. 2024. 5. 23.
[Git] git 특정 커밋 다운 1. clone repository git clone [your repository https or ssh]git clone git@github.com:seowlee/exchange-test.git 2. git log 확인git log원하는 커밋 복사 github에서 확인 할 경우-> 원하는 커밋 복사  3. 원하는 커밋 버전으로 받기git reset --hard [commit id]  참고 :https://ddbobd.tistory.com/entry/git-%ED%8A%B9%EC%A0%95%EB%B2%84%EC%A0%84-clone%ED%95%98%EA%B8%B0 2024. 5. 8.
[HD wallet] BIP32, BIP39, BIP44 What is BIP?BIP stands for Bitcoin Improvement Proposal. BIP32hierarchical deterministic wallets (or "HD Wallets") 을 설명함. HD Wallet에 대한 표준하나의 마스터 키로부터 생성된 자식 키를 위한 계층 구조를 제공. 각 계층은 인덱스(index) 값을 가지며, 하나의 마스터 키에서 무한히 많은 계층을 생성할 수 있다. 즉, 무수히 많은 지갑 주소를 생성할 수 있다. bip32: https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki  BIP39deterministic wallet 생성 시 기억하기 쉽게 니모닉 코드/문장의 구현을 설명함.mnemonic을.. 2024. 5. 8.