itns-sidechain/docs/README.md

52 lines
1.7 KiB
Markdown
Raw Normal View History

2017-07-20 22:05:23 +04:00
Welcome to the bcoin docs!
## Getting Started
- [Getting Started][getting-started]
- [Configuration][configuration]
- [Wallet System][wallet-system]
2017-10-09 21:16:04 +04:00
- [Design][design]
- [Guides][guides]
2017-07-20 22:05:23 +04:00
## Running
- [Bcoin CLI][cli]
- [Running in the Browser][browser]
- [REST and RPC API][rest-rpc]
## Code Examples
2017-08-09 16:38:20 +04:00
- [Simple Fullnode][example-simple-fullnode]
- [Connect to Peer][example-connect-peer]
2017-07-20 22:05:23 +04:00
- [Connecting to the P2P Network][example-p2p]
- [Creating a Blockchain and Mempool][example-blockchain]
2017-08-09 16:38:20 +04:00
- [Wallet with Dummy TX][example-wallet-dummy]
- [Fullnode Object][example-fullnode-wallet]
2017-07-20 22:05:23 +04:00
- [SPV Sync][example-spv]
2017-08-09 16:38:20 +04:00
- [Plugin Example][example-peers-plugin]
- [Client API Usage][example-client-api]
- [Miner with WorkerPool][example-miner-configs]
- [Create and Sign TX][example-tx-create-sign]
2017-08-09 16:40:08 +04:00
- [Get Transaction from Chain][example-tx-from-chain]
2017-07-20 22:05:23 +04:00
[getting-started]: Beginner's-Guide.md
[configuration]: Configuration.md
[design]: Design.md
[wallet-system]: Wallet-System.md
2017-10-09 21:16:04 +04:00
[guides]: http://bcoin.io/guides.html
2017-07-20 22:05:23 +04:00
[cli]: CLI.md
[browser]: Running-in-the-browser.md
2017-10-09 21:16:04 +04:00
[rest-rpc]: http://bcoin.io/api-docs/index.html#introduction
2017-07-20 22:05:23 +04:00
2017-08-09 14:17:36 +04:00
[example-p2p]: Examples/connect-to-the-p2p-network.js
[example-blockchain]: Examples/create-a-blockchain-and-mempool.js
2017-08-09 16:38:20 +04:00
[example-fullnode-wallet]: Examples/fullnode-and-wallet.js
2017-08-09 14:17:36 +04:00
[example-spv]: Examples/spv-sync-wallet.js
2017-08-09 16:38:20 +04:00
[example-wallet-dummy]: Examples/wallet.js
[example-peers-plugin]: Examples/peers-plugin.js
[example-client-api]: Examples/client-api.js
[example-miner-configs]: Examples/miner-configs.js
[example-connect-peer]: Examples/connect-to-peer.js
[example-simple-fullnode]: Examples/fullnode.js
[example-tx-create-sign]: Examples/create-sign-tx.js
[example-tx-from-chain]: Examples/get-tx-from-chain.js