스터디
Solidity 2022.09.03
wtdsoul
2022. 9. 3. 02:39
Remix - Ethereum IDE
remix.ethereum.org
pragma solidity ^0.6.0;
contract Counter {
// 1,2,3 ..
uint count;
constructor() public{
count = 0;
}
function getCount() public view returns(uint) {
return count;
}
function incrementCount() public {
count = count + 1;
}
}
https://trufflesuite.com/ganache/
Ganache - 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
https://libero2m.tistory.com/22
이더리움 로컬 개발 플랫폼 Ganache 설치하기
가나슈는 크림을 섞어 만든 초콜릿이란 뜻이며 설치하면 아이콘 모양도 크림 바른 초콜릿입니다. ■ Ganache . 가나슈 로컬 PC내에서 이더리움 블록체인 가상 네트워크를 생성해서 스마트 계약 트
libero2m.tistory.com
The crypto wallet for Defi, Web3 Dapps and NFTs | MetaMask
A safe crypto wallet for digital tokens & NFTs. Join the blockchain and DeFi world.
metamask.io