Difference between revisions of "Smart Contracts"

From Miscellany
Line 3: Line 3:
 
<blockquote>“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|dapps]]. -- [https://blog.coinbase.com/a-beginners-guide-to-decentralized-finance-defi-574c68ff43c4 Beginner's Guide to [[DeFi|Decentralized Finance]] ]</blockquote>
 
<blockquote>“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|dapps]]. -- [https://blog.coinbase.com/a-beginners-guide-to-decentralized-finance-defi-574c68ff43c4 Beginner's Guide to [[DeFi|Decentralized Finance]] ]</blockquote>
  
==Programming an ECT721 Smart Contract==
+
==Programming an ERC-721 Smart Contract==
  
 
* [https://www.youtube.com/watch?v=YPbgjPPC1d0 tutorial on YouTube]
 
* [https://www.youtube.com/watch?v=YPbgjPPC1d0 tutorial on YouTube]

Revision as of 20:41, 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 an ERC-721 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