Node.js SDK for Bytom protocol
Revision | a860068ec36364ba3b84b7391ae4154fd04ce649 (tree) |
---|---|
Zeit | 2018-11-23 18:07:53 |
Autor | Zhiting Lin <zlin035@uott...> |
Commiter | Zhiting Lin |
update doc-link
@@ -2,48 +2,48 @@ | ||
2 | 2 | |
3 | 3 | ## Terminology |
4 | 4 | |
5 | -### [Keys](https://bytom.github.io/node-sdk/global.html#Key__anchor) | |
5 | +### [Keys](https://bytom.github.io/bytom-node-sdk/global.html#Key__anchor) | |
6 | 6 | |
7 | 7 | Cryptographic keys are the primary authorization mechanism on a blockchain. |
8 | 8 | |
9 | 9 | To create accounts or assets, xpub of keys are required. With this sdk, we can |
10 | 10 | `create/delete/list/resetPassword` the key. Please check the |
11 | -[API doc](https://bytom.github.io/node-sdk/module-KeysApi.html) if you want | |
11 | +[API doc](https://bytom.github.io/bytom-node-sdk/module-KeysApi.html) if you want | |
12 | 12 | to operate with keys. |
13 | 13 | |
14 | -### [Account](https://bytom.github.io/node-sdk/global.html#Account__anchor) | |
14 | +### [Account](https://bytom.github.io/bytom-node-sdk/global.html#Account__anchor) | |
15 | 15 | |
16 | 16 | An account is an object in Bytom that tracks ownership of assets on a blockchain. |
17 | 17 | It's defined under one Bytom node created with one or serveral keys. |
18 | 18 | |
19 | -[Related API](https://bytom.github.io/node-sdk/module-AccountsApi.html) | |
19 | +[Related API](https://bytom.github.io/bytom-node-sdk/module-AccountsApi.html) | |
20 | 20 | |
21 | -### [Asset](https://bytom.github.io/node-sdk/global.html#Asset__anchor) | |
21 | +### [Asset](https://bytom.github.io/bytom-node-sdk/global.html#Asset__anchor) | |
22 | 22 | |
23 | 23 | An asset is a type of value that can be issued on a blockchain. All units of |
24 | 24 | a given asset are fungible. Units of an asset can be transacted directly |
25 | 25 | between parties without the involvement of the issuer. |
26 | 26 | |
27 | -[Related API](https://bytom.github.io/node-sdk/module-AssetsApi.html) | |
27 | +[Related API](https://bytom.github.io/bytom-node-sdk/module-AssetsApi.html) | |
28 | 28 | |
29 | -### [Transaction](https://bytom.github.io/node-sdk/global.html#Transaction__anchor) | |
29 | +### [Transaction](https://bytom.github.io/bytom-node-sdk/global.html#Transaction__anchor) | |
30 | 30 | |
31 | 31 | Blockchain is chain of blocks, while block consists of numbers of transactions. |
32 | 32 | |
33 | -[Related API](https://bytom.github.io/node-sdk/module-TransactionsApi.html) | |
33 | +[Related API](https://bytom.github.io/bytom-node-sdk/module-TransactionsApi.html) | |
34 | 34 | |
35 | -### [Unspent Output(UTXO)](https://bytom.github.io/node-sdk/global.html#UnspentOutput__anchor) | |
35 | +### [Unspent Output(UTXO)](https://bytom.github.io/bytom-node-sdk/global.html#UnspentOutput__anchor) | |
36 | 36 | |
37 | 37 | Bytom is UTXO based blockchain. One transaction spend some UTXOs, and produces new UTXOs. |
38 | 38 | |
39 | -[Related API](https://bytom.github.io/node-sdk/module-UnspentOutputsApi.html) | |
39 | +[Related API](https://bytom.github.io/bytom-node-sdk/module-UnspentOutputsApi.html) | |
40 | 40 | |
41 | -### [Balance](https://bytom.github.io/node-sdk/global.html#Balance__anchor) | |
41 | +### [Balance](https://bytom.github.io/bytom-node-sdk/global.html#Balance__anchor) | |
42 | 42 | |
43 | 43 | Any balance on the blockchain is simply a summation of UTXOs. In one bytomd, balance means |
44 | 44 | summation of UTXOs of one account. |
45 | 45 | |
46 | -[Related API](https://bytom.github.io/node-sdk/module-BalancesApi.html) | |
46 | +[Related API](https://bytom.github.io/bytom-node-sdk/module-BalancesApi.html) | |
47 | 47 | |
48 | 48 | ## Usage |
49 | 49 |