Fix broken links on deployed site

This commit is contained in:
Adam Schmideg 2019-01-22 14:50:10 +01:00
parent 0d855702b7
commit 9c6bd6e96c
10 changed files with 32 additions and 32 deletions

View file

@ -10,7 +10,7 @@ Interface Documentation:
- Command Line Options: /docs/Command-Line-Options - Command Line Options: /docs/Command-Line-Options
- JavaScript Console: /docs/JavaScript-Console - JavaScript Console: /docs/JavaScript-Console
- Management API: /docs/Management-APIs - Management API: /docs/Management-APIs
- JSON-RPC server: https://github.com/ethereum/wiki/wiki/JSON-RPC - JSON-RPC server: https://github.com/ethereum/wiki/JSON-RPC
Issues and support: Issues and support:
- FAQ: /docs/FAQ - FAQ: /docs/FAQ
- Reporting issues: /docs/geth#reporting - Reporting issues: /docs/geth#reporting

View file

@ -65,8 +65,8 @@ The Mist UI must support:
The RPC API must support: The RPC API must support:
1. The list of accounts is exposed through the eth_accounts API: https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_accounts 1. The list of accounts is exposed through the eth_accounts API: https://github.com/ethereum/wiki/JSON-RPC#eth_accounts
2. Using any of the available accounts as from/sender with the eth_transact API: https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_transact (NOTE: the current API definition on that wiki page does not include a from/sender field!) 2. Using any of the available accounts as from/sender with the eth_transact API: https://github.com/ethereum/wiki/JSON-RPC#eth_transact (NOTE: the current API definition on that wiki page does not include a from/sender field!)
## Wallet DAPP ## Wallet DAPP

View file

@ -14,7 +14,7 @@ Specifications of all ethereum technologies, languages, protocols, etc.
### Specs ### Specs
- [JavaScript API](https://github.com/ethereum/wiki/wiki/JavaScript-API#a) - [JavaScript API](https://github.com/ethereum/wiki/wiki/JavaScript-API#a)
- [Generic JSON RPC](https://github.com/ethereum/wiki/wiki/JSON-RPC) - [Generic JSON RPC](https://github.com/ethereum/wiki/JSON-RPC)
- [JSRE admin API](JavaScript-Console#console-api) - [JSRE admin API](JavaScript-Console#console-api)
- [RLP](https://github.com/ethereum/wiki/wiki/RLP) - [RLP](https://github.com/ethereum/wiki/wiki/RLP)
- [ÐΞVp2p Wire Protocol](https://github.com/ethereum/wiki/wiki/%C3%90%CE%9EVp2p-Wire-Protocol) - [ÐΞVp2p Wire Protocol](https://github.com/ethereum/wiki/wiki/%C3%90%CE%9EVp2p-Wire-Protocol)

View file

@ -118,7 +118,7 @@ You are ready to compile solidity code in the `geth` JS console using [`eth.comp
} }
``` ```
The compiler is also available via [RPC](https://github.com/ethereum/wiki/wiki/JSON-RPC) and therefore via [web3.js](https://github.com/ethereum/wiki/wiki/JavaScript-API#web3ethcompilesolidity) to any in-browser Ðapp connecting to `geth` via RPC. The compiler is also available via [RPC](https://github.com/ethereum/wiki/JSON-RPC) and therefore via [web3.js](https://github.com/ethereum/wiki/wiki/JavaScript-API#web3ethcompilesolidity) to any in-browser Ðapp connecting to `geth` via RPC.
The following example shows how you interface `geth` via JSON-RPC to use the compiler. The following example shows how you interface `geth` via JSON-RPC to use the compiler.

View file

@ -72,6 +72,6 @@ In addition to the full functionality of JS (as per ECMA5), the ethereum JSRE is
# Management APIs # Management APIs
Beside the official [DApp API](https://github.com/ethereum/wiki/wiki/JSON-RPC) interface the go ethereum node has support for additional management API's. These API's are offered using [JSON-RPC](http://www.jsonrpc.org/specification) and follow the same conventions as used in the DApp API. The go ethereum package comes with a console client which has support for all additional API's. Beside the official [DApp API](https://github.com/ethereum/wiki/JSON-RPC) interface the go ethereum node has support for additional management API's. These API's are offered using [JSON-RPC](http://www.jsonrpc.org/specification) and follow the same conventions as used in the DApp API. The go ethereum package comes with a console client which has support for all additional API's.
[The management API has its own wiki page](Management-APIs). [The management API has its own wiki page](Management-APIs).

View file

@ -1,7 +1,7 @@
--- ---
title: Management APIs title: Management APIs
--- ---
Beside the official [DApp APIs](https://github.com/ethereum/wiki/wiki/JSON-RPC) interface go-ethereum Beside the official [DApp APIs](https://github.com/ethereum/wiki/JSON-RPC) interface go-ethereum
has support for additional management APIs. Similar to the DApp APIs, these are also provided using has support for additional management APIs. Similar to the DApp APIs, these are also provided using
[JSON-RPC](http://www.jsonrpc.org/specification) and follow exactly the same conventions. Geth comes [JSON-RPC](http://www.jsonrpc.org/specification) and follow exactly the same conventions. Geth comes
with a console client which has support for all additional APIs described here. with a console client which has support for all additional APIs described here.

View file

@ -187,7 +187,7 @@ You check your cooling status:
## Mining Software ## Mining Software
The official Frontier release of `geth` only supports a CPU miner natively. We are working on a [GPU miner](https://github.com/ethereum/go-ethereum/tree/gpuminer), but it may not be available for the Frontier release. Geth however can be used in conjunction with `ethminer`, using the standalone miner as workers and `geth` as scheduler communicating via [JSON-RPC](https://github.com/ethereum/wiki/wiki/JSON-RPC). The official Frontier release of `geth` only supports a CPU miner natively. We are working on a [GPU miner](https://github.com/ethereum/go-ethereum/tree/gpuminer), but it may not be available for the Frontier release. Geth however can be used in conjunction with `ethminer`, using the standalone miner as workers and `geth` as scheduler communicating via [JSON-RPC](https://github.com/ethereum/wiki/JSON-RPC).
The [C++ implementation of Ethereum](https://github.com/ethereum/cpp-ethereum/) (not officially released) however has a GPU miner. It can be used from `eth`, `AlethZero` (GUI) and `ethMiner` (the standalone miner). The [C++ implementation of Ethereum](https://github.com/ethereum/cpp-ethereum/) (not officially released) however has a GPU miner. It can be used from `eth`, `AlethZero` (GUI) and `ethMiner` (the standalone miner).

View file

@ -25,7 +25,7 @@ Developers and community enthusiast are advised to read the [Developers' Guide](
## Interfaces ## Interfaces
* Javascript Console: `geth` can be launched with an interactive console, that provides a javascript runtime environment exposing a javascript API to interact with your node. [Javascript Console API](JavaScript-Console) includes the `web3` javascript Ðapp API as well as an additional admin API. * Javascript Console: `geth` can be launched with an interactive console, that provides a javascript runtime environment exposing a javascript API to interact with your node. [Javascript Console API](JavaScript-Console) includes the `web3` javascript Ðapp API as well as an additional admin API.
* JSON-RPC server: `geth` can be launched with a json-rpc server that exposes the [JSON-RPC API](https://github.com/ethereum/wiki/wiki/JSON-RPC) * JSON-RPC server: `geth` can be launched with a json-rpc server that exposes the [JSON-RPC API](https://github.com/ethereum/wiki/JSON-RPC)
* [Command line options](Command-Line-Options) documents command line parameters as well as subcommands. * [Command line options](Command-Line-Options) documents command line parameters as well as subcommands.
## Basic Use Case Documentation ## Basic Use Case Documentation

View file

@ -1,25 +1,25 @@
--- ---
title: Other documents title: Other documents
--- ---
- [Accounts key-storage specification](/docs/Accounts---key-storage-specification) - [Accounts key-storage specification](Accounts---key-storage-specification)
- [Connecting to the network](/docs/Connecting-to-the-network) - [Connecting to the network](Connecting-to-the-network)
- [Creating your own Ethereum apps using Eth go](/docs/Creating-your-own-Ethereum-apps-using-Eth-go) - [Creating your own Ethereum apps using Eth go](Creating-your-own-Ethereum-apps-using-Eth-go)
- [Disclaimer](/docs/Disclaimer) - [Disclaimer](Disclaimer)
- [Ethereum Specification](/docs/Ethereum-Specification) - [Ethereum Specification](Ethereum-Specification)
- [Ethereum on Android](/docs/Ethereum-on-Android) - [Ethereum on Android](Ethereum-on-Android)
- [GAs Price Oracle](/docs/Gas-Price-Oracle) - [GAs Price Oracle](Gas-Price-Oracle)
- [Go ethereum management API's](/docs/Go-ethereum-management-APIs) - [Go ethereum management API's](Go-ethereum-management-APIs)
- [Installing Geth](/docs/Installing-Geth) - [Installing Geth](Installing-Geth)
- [(Japanese) Contracts and Transactions](/docs/Japanese-Contracts-and-Transactions) - [(Japanese) Contracts and Transactions](Japanese-Contracts-and-Transactions)
- [Mobile/Account management](/docs/Mobile/Account-management) - [Mobile/Account management](Mobile/Account-management)
- [Mobile/Introduction](/docs/Mobile/Introduction) - [Mobile/Introduction](Mobile/Introduction)
- [Mobile Clients/Libraries and Inproc Ethereum Nodes](/docs/Mobile-Clients/Libraries-and-Inproc-Ethereum-Nodes) - [Mobile Clients/Libraries and Inproc Ethereum Nodes](Mobile-Clients/Libraries-and-Inproc-Ethereum-Nodes)
- [Native/Account management](/docs/Native/Account-management) - [Native/Account management](Native/Account-management)
- [Native/Introduction](/docs/Native/Introduction) - [Native/Introduction](Native/Introduction)
- [Native DApps/Go bindings to Ethereum contracts](/docs/Native-DApps/Go-bindings-to-Ethereum-contracts) - [Native DApps/Go bindings to Ethereum contracts](Native-DApps/Go-bindings-to-Ethereum-contracts)
- [Provisional JS API](/docs/Provisional-JS-API) - [Provisional JS API](Provisional-JS-API)
- [RPC PUB-SUB](/docs/RPC-PUB-SUB) - [RPC PUB-SUB](RPC-PUB-SUB)
- [Sending ethere](/docs/Sending-ether) - [Sending ethere](Sending-ether)
- [Setting up Ethereum (Native)](/docs/Setting-up-Ethereum-Native) - [Setting up Ethereum (Native)](Setting-up-Ethereum-Native)
- [Tracing/Introduction](/docs/Tracing/Introduction) - [Tracing/Introduction](Tracing/Introduction)
- [URL Scheme](/docs/URL-Scheme) - [URL Scheme](URL-Scheme)

View file

@ -1 +1 @@
See [Installing Geth](/docs/Installing-Geth). See [Installing Geth](docs/Installing-Geth).