Solidity 2022.09.03

스터디 2022. 9. 3. 02:39

http://remix.ethereum.org/#optimize=false&runs=200&evmVersion=null&version=soljson-v0.6.0+commit.26b70077.js 

 

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

https://metamask.io/

 

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

incrementCount를 한번 클릭후 다시 getCount해봅니다. 아래와 같이 1로 증가한걸 확인할 수 있습니다.

 

'스터디' 카테고리의 다른 글

solidity 2022/10/02  (0) 2022.10.02
Smartcontract Openzeppelin 22.09.18  (0) 2022.09.18
solidity 2022.09.04  (0) 2022.09.04
이더 GAS 개념  (0) 2022.05.13
블록체인 공부블록체인 공부하기 : ERC Standards (펌)  (0) 2022.05.13
블로그 이미지

wtdsoul

,