fix broken links and link checker

This commit is contained in:
mDuo13
2015-10-21 01:35:31 -07:00
parent 8b9181ad17
commit 863eba71a2
11 changed files with 134 additions and 55 deletions

View File

@@ -190,7 +190,7 @@ Following that, use these instructions to get Ripple-REST installed and running:
`cp config-example.json config.json`
5. Start the server:
`npm start`
6. Visit [http://localhost:5990](http://localhost:5990) in a browser to view available endpoints and get started
6. Visit `http://localhost:5990` in a browser to view available endpoints and get started
## Configuring `ripple-rest` ##
@@ -990,7 +990,7 @@ The JSON body of the request includes the following parameters:
| Field | Type | Description |
|-------|------|-------------|
| payment | [Payment object](#payment_object) | The payment to send. You can generate a payment object using the [Prepare Payment](#prepare-payment) method. |
| client\_resource\_id | String | A unique identifier for this payment. You can generate one using the [`GET /v1/uuid`](#calculating_a_uuid) method. |
| client\_resource\_id | String | A unique identifier for this payment. You can generate one using the [`GET /v1/uuid`](#create-client-resource-id) method. |
| secret | String | A secret key for your Ripple account. This is either the master secret, or a regular secret, if your account has one configured. |
| last\_ledger\_sequence | String | (Optional) A string representation of a ledger sequence number. If this parameter is not set, it defaults to the current ledger sequence plus an appropriate buffer. |
| max\_fee | String | (Optional) The maximum transaction fee to allow, as a decimal amount of XRP. |
@@ -1741,7 +1741,7 @@ The response includes the original [`order`](#order-objects), if the `action` is
For transactions that cancel orders, the `order` object describes the transaction that canceled the original order.
The response also includes `balance_changes` and [`order changes`](order-change-objects)
The response also includes `balance_changes` and [`order changes`](#order-change-objects)
for the perspective account (e.g., the Ripple account address used in the URI).
The `direction` of the transaction is either `incoming`, `outgoing` or `unaffected`. Outgoing transactions are made by the perspective account. Incoming transactions affect the perspective account.
@@ -2232,7 +2232,7 @@ The `rippled_server_status` object may have any of the following fields:
| load\_factor | Number | The load factor the server is currently enforcing, as a multiplier for the base transaction fee. The load factor is determined by the highest of the individual servers load factor, clusters load factor, and the overall networks load factor. |
| peers | Number | How many other `rippled` servers this server is connected to |
| pubkey_node | String | Public key used to verify this node for internal communications; this key is automatically generated by the server the first time it starts up. (If deleted, the node can just create a new pair of keys.) |
| server_state | String | A string indicating to what extent the server is participating in the network. See [Possible Server States in the rippled documentation](rippled-apis#possible-server-states) for more details. |
| server_state | String | A string indicating to what extent the server is participating in the network. See [Possible Server States in the rippled documentation](rippled-apis.html#possible-server-states) for more details. |
| validated_ledger | Object | Information about the fully-validated ledger with the highest sequence number (the most recent) |
| validated_ledger.age | Unsigned Integer | The time since the ledger was closed, in seconds |
| validated_ledger.base_fee_xrp | Number | Base fee, in XRP. This may be represented in scientific notation such as 1e-05 for 0.00005 |