본문 바로가기
  • 인공지능
  • 블록체인
  • 정보보안
코딩 알로하 :: one/solidity

solidity guide

by nathan03 2021. 6. 25.
반응형

# Remix
Remix 는 웹브라우저에서 사용 가능한 IDE 이고, 쉽게 솔리디티 프로그램을 테스트해보고 실행해볼수 있다.  

https://remix.ethereum.org/

 

Remix - Ethereum IDE

 

remix.ethereum.org

 

# 솔리디티

https://www.tutorialspoint.com/solidity/solidity_quick_guide.htm

 

Solidity - Quick Guide - Tutorialspoint

Solidity - Quick Guide Solidity - Overview Solidity is a contract-oriented, high-level programming language for implementing smart contracts. Solidity is highly influenced by C++, Python and JavaScript and has been designed to target the Ethereum Virtual M

www.tutorialspoint.com

 

# 주요 특징 
가. 튜링 완전
  : 반복문과 제어문 사용 가능 

나. msg.sender 와 msg.value 
  : msg.sender 는 메시지를 보낸 주소를 의미하고, msg.value 메시지를 보낸 값을 의미한다. 

 

반응형

댓글