Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.

Commit

Permalink
Merged changes to EVM compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
Souptacular committed Feb 10, 2016
2 parents 11c7685 + daa6394 commit 4d4af57
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
10 changes: 9 additions & 1 deletion source/ethereum-ecosystem/evm-compilers.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
********************************************************************************
EVM Compilers
********************************************************************************
********************************************************************************

Contracts live on the blockchain in an Ethereum-specific binary format (Ethereum Virtual Machine (=EVM) bytecode). However, contracts are typically written in some high level language such as solidity and then compiled into byte code to be uploaded on the blockchain.

Below are the different compilers supported in Ethereum which allow you to compile your Smart Contract into a EVM specific bytecode:

**Serpent** - Serpent is a language similar to Python which can be used to develop Contracts in a high level language and compile to EVM bytecode. More details can be found here: https://github.com/ethereum/wiki/wiki/Serpent

**Solidity** - Solidity is a language similar to JavaScript which allows you to develop Contracts and compile to EVM bytecode. More details can be found here: http://solidity.readthedocs.org/en/latest/
16 changes: 15 additions & 1 deletion source/using-ethereum-the-basics/ether.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,24 @@ What is Ether?
Denominations
================================================================================

There are different denominations used in Ether and each denomination has its own unique name and value. Below is a list of different denomination names and how they are related to Ether.

1 ether = 10^18 wei
1 ether = 10^15 Kwei
1 ether = 10^12 Mwei
1 ether = 10^9 Gwei
1 ether = 10^6 szabo
1 ether = 10^3 finney
1 ether = 1 ether
1 ether = 1/(10^3) kether
1 ether = 1/(10^6) Mether
1 ether = 1/(10^9) Gether
1 ether = 1/(10^12) Tether

Getting Ether
================================================================================

[Will point to mining and exchanges pages with explanation of both]

Sending Ether
================================================================================
================================================================================

0 comments on commit 4d4af57

Please sign in to comment.