Skip to content

Commit

Permalink
Fix doc link (stellar#298)
Browse files Browse the repository at this point in the history
* Fix doc link

* Fix more doc links
  • Loading branch information
vcarl committed Feb 7, 2020
1 parent 606f4e8 commit 84b3c16
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/reference/base-examples.md
Expand Up @@ -75,7 +75,7 @@ In the example below we're sending 1000 XLM (at max) from `GABJLI6IVBKJ7HIC5NN7H
* `USD` issued by `GBBM6BKZPEHWYO3E3YKREDPQXMS4VK35YLNU7NFBRI26RAN7GI5POFBB`,
* `EUR` issued by `GDTNXRLOJD2YEBPKK7KCMR7J33AAG5VZXHAJTHIG736D6LVEFLLLKPDL`.

The [path payment](https://www.stellar.org/developers/learn/concepts/list-of-operations.html#path-payment) will cause the destination address to get 5.5 GBP. It will cost the sender no more than 1000 XLM. In this example there will be 3 exchanges, XLM -> USD, USD-> EUR, EUR->GBP.
The [path payment](https://www.stellar.org/developers/guides/concepts/list-of-operations.html#path-payment) will cause the destination address to get 5.5 GBP. It will cost the sender no more than 1000 XLM. In this example there will be 3 exchanges, XLM -> USD, USD-> EUR, EUR->GBP.

```js
var keypair = StellarSdk.Keypair.fromSecret(secretString);
Expand Down Expand Up @@ -104,7 +104,7 @@ transaction.sign(keypair);

## Multi-signature account

[Multi-signature accounts](https://www.stellar.org/developers/learn/concepts/multi-sig.html) can be used to require that transactions require multiple public keys to sign before they are considered valid.
[Multi-signature accounts](https://www.stellar.org/developers/guides/concepts/multi-sig.html) can be used to require that transactions require multiple public keys to sign before they are considered valid.
This is done by first configuring your account's "threshold" levels. Each operation has a threshold level of either low, medium,
or high. You give each threshold level a number between 1-255 in your account. Then, for each key in your account, you
assign it a weight (1-255, setting a 0 weight deletes the key). Any transaction must be signed with enough keys to meet the threshold.
Expand Down
2 changes: 1 addition & 1 deletion src/asset.js
Expand Up @@ -114,7 +114,7 @@ export class Asset {
}

/**
* @see [Assets concept](https://www.stellar.org/developers/learn/concepts/assets.html)
* @see [Assets concept](https://www.stellar.org/developers/guides/concepts/assets.html)
* @returns {string} Asset type. Can be one of following types:
*
* * `native`
Expand Down
2 changes: 1 addition & 1 deletion src/memo.js
Expand Up @@ -31,7 +31,7 @@ export const MemoReturn = 'return';
*
* @param {string} type - `MemoNone`, `MemoID`, `MemoText`, `MemoHash` or `MemoReturn`
* @param {*} value - `string` for `MemoID`, `MemoText`, buffer of hex string for `MemoHash` or `MemoReturn`
* @see [Transactions concept](https://www.stellar.org/developers/learn/concepts/transactions.html)
* @see [Transactions concept](https://www.stellar.org/developers/guides/concepts/transactions.html)
* @class Memo
*/
export class Memo {
Expand Down
2 changes: 1 addition & 1 deletion src/operation.js
Expand Up @@ -40,7 +40,7 @@ export const AuthRevocableFlag = 1 << 1;
export const AuthImmutableFlag = 1 << 2;

/**
* `Operation` class represents [operations](https://www.stellar.org/developers/learn/concepts/operations.html) in Stellar network.
* `Operation` class represents [operations](https://www.stellar.org/developers/guides/concepts/operations.html) in Stellar network.
* Use one of static methods to create operations:
* * `{@link Operation.createAccount}`
* * `{@link Operation.payment}`
Expand Down
2 changes: 1 addition & 1 deletion src/operations/create_account.js
Expand Up @@ -9,7 +9,7 @@ import { StrKey } from '../strkey';
* @param {object} opts Options object
* @param {string} opts.destination - Destination account ID to create an account for.
* @param {string} opts.startingBalance - Amount in XLM the account should be funded for. Must be greater
* than the [reserve balance amount](https://www.stellar.org/developers/learn/concepts/fees.html).
* than the [reserve balance amount](https://www.stellar.org/developers/guides/concepts/fees.html).
* @param {string} [opts.source] - The source account for the payment. Defaults to the transaction's source account.
* @returns {xdr.CreateAccountOp} Create account operation
*/
Expand Down

0 comments on commit 84b3c16

Please sign in to comment.