mark up outdated material
This commit is contained in:
parent
02eaac405d
commit
dbc67fae76
|
@ -1,6 +1,9 @@
|
||||||
---
|
---
|
||||||
title: Creating your own Ethereum apps using Eth go
|
title: Creating your own Ethereum apps using Eth go
|
||||||
---
|
---
|
||||||
|
|
||||||
|
**This page is heavily outdated**
|
||||||
|
|
||||||
The modular nature of Go and the Ethereum Go implementation, [eth-go](https://github.com/ethereum/eth-go), make it very easy to build your own Ethereum native applications.
|
The modular nature of Go and the Ethereum Go implementation, [eth-go](https://github.com/ethereum/eth-go), make it very easy to build your own Ethereum native applications.
|
||||||
|
|
||||||
This post will cover the minimal steps required to build an native Ethereum application.
|
This post will cover the minimal steps required to build an native Ethereum application.
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
---
|
---
|
||||||
title: Contract tutorial
|
title: Contract tutorial
|
||||||
---
|
---
|
||||||
|
|
||||||
|
**This page is heavily outdated**
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
Now that you mastered the basics on how to get started and how to send ether, it's time to get your hands dirty in what really makes ethereum stand out of the crowd: smart contracts. Smart contracts are pieces of code that live on the blockchain and execute commands exactly how they were told to. They can read other contracts, make decisions, send ether and execute other contracts. Contracts will exist and run as long as the whole network exists, and will only stop if they run out of gas or if they were programmed to self destruct.
|
Now that you mastered the basics on how to get started and how to send ether, it's time to get your hands dirty in what really makes ethereum stand out of the crowd: smart contracts. Smart contracts are pieces of code that live on the blockchain and execute commands exactly how they were told to. They can read other contracts, make decisions, send ether and execute other contracts. Contracts will exist and run as long as the whole network exists, and will only stop if they run out of gas or if they were programmed to self destruct.
|
||||||
|
|
|
@ -3,6 +3,8 @@ title: Mining
|
||||||
---
|
---
|
||||||
* [Introduction to Ethereum mining](https://github.com/ethereum/wiki/wiki/Mining#introduction) _(main wiki)_
|
* [Introduction to Ethereum mining](https://github.com/ethereum/wiki/wiki/Mining#introduction) _(main wiki)_
|
||||||
|
|
||||||
|
**This page is heavily outdated**
|
||||||
|
|
||||||
# CPU Mining with Geth
|
# CPU Mining with Geth
|
||||||
|
|
||||||
At Frontier, the first release of Ethereum, you'll just need a) a GPU and b) an Ethereum client, Geth. CPU mining will be possible but too inefficient to hold any value.
|
At Frontier, the first release of Ethereum, you'll just need a) a GPU and b) an Ethereum client, Geth. CPU mining will be possible but too inefficient to hold any value.
|
||||||
|
|
Loading…
Reference in New Issue