Difference between revisions of "Smart Contracts"

From Miscellany
 
Line 6: Line 6:
  
 
* [https://www.youtube.com/watch?v=YPbgjPPC1d0 ERC-721 tutorial on YouTube]
 
* [https://www.youtube.com/watch?v=YPbgjPPC1d0 ERC-721 tutorial on YouTube]
 +
** How to Code a Crypto Collectible: ERC-721 NFT Tutorial (Ethereum)
  
 
==Remix IDE==
 
==Remix IDE==

Latest revision as of 20:43, 6 September 2020

Smart contracts are programs which govern the behavior of accounts within the Ethereum state. They are written in the Solidity language, and are saved on the Ethereum blockchain. One of their uses is to act as the back-end to DApps.

“Smart contracts” are programs running on the blockchain that can execute automatically when certain conditions are met. These smart contracts enable developers to build far more sophisticated functionality than simply sending and receiving cryptocurrency. These programs are what we now call decentralized apps, or dapps. -- Beginner's Guide to Decentralized Finance

Programming a Smart Contract

Remix IDE

Remix is an online IDE for compiling Solidity smart contracts. An offline, CLI version is also available.

References


Back to Crypto Currency