Skip to content

Latest commit

 

History

History
22 lines (10 loc) · 1.26 KB

smart-contracts.md

File metadata and controls

22 lines (10 loc) · 1.26 KB

Smart Contracts

What is a Smart Contract?

Simply, a Smart Contract is a program that runs on Ethereum. Most of these Smart Contracts are financially focused: they can be cryptocurrencies, trading systems, lending protocols, and more.

What is an ERC-20 Token?

ERC-20 is a standard that the community has adopted for tokens on the Ethereum Network. These tokens themselves are just Smart Contracts running on the network. You may hear someone say that you have Token XYZ "in your wallet," but Token XYZ is just a computer program. What's really happening is that the Smart Contract for Token XYZ has a record saying what each wallet balance is.

What is a dApp?

A decentralized app (dApp) is just another name for a smart contract. Usually these would refer to decentralized exchanges, lending pools, or other programs.

How are Smart Contracts written?

Smart Contracts are written in a language called Solidity. Solidity runs on the Ethereum Virtual Machine (EVM), which is distributed all over the world on miners' computers.

If you want to learn to write Solidity code, I recommend checking out the Solidity Docs, and CryptoZombies.