【BOP】- Introductions of Blockchain Oriented Programming

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wuzh1230/article/details/80097640

What is BOP

As the appearance of bitcoin and ethereum, blockchain become a new platform for programing. Programmers now can use Solidity( a javascript-like language) or LLL to coding many intresting smart contracts (a.k.a electronic contracts) on blockchain. Trust and Value now are transferred by cryptographic mathematics on blockchain, not other traditional 3rd party.

Tools

Language

  • Solidity
  • LLL

IDE

  • Web3 command line
  • Remix web ide

Debug

  • How the vm runs

Programing

syntax

  • basic data types: uintNNN
  • structured data types: structure
  • variables: memory or storage
  • contract: construct/members/inheritance

Compile and optimize

Deploy and initialize setup

Log and debug

Deeply master contract

Function defintion

modifier

returns

parameters

猜你喜欢

转载自blog.csdn.net/wuzh1230/article/details/80097640