Add links to more info in basecoin-examples

This commit is contained in:
Ethan Frey 2017-01-30 18:47:30 +01:00
parent 9e9a098d93
commit 23dad6d0e3
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,7 @@ sending currency (one-to-one or n-to-m multisig), and providing merkle-proofs of
These are common factors that many people wish to have in a crypto-currency system,
so instead of trying to start from scratch, developers can extend the functionality of Basecoin using the plugin system, just writing the custom business logic they need, and leaving the rest to the basecoin system.
Interested in building a plugin? Then [read more details here](./Plugins.md)
Interested in building a plugin? Then [read more details here](./Plugins.md) and then you can follow a [simple tutorial](https://github.com/tendermint/basecoin-examples/blob/master/pluginDev/tutorial.md) to get your first plugin working.
## Using the CLI
@ -45,6 +45,8 @@ or to start basecoin with tendermint in the same process (`basecoin start --in-p
It can also be used to send transactions, eg. `basecoin sendtx --to 0x4793A333846E5104C46DD9AB9A00E31821B2F301 --amount 100`
See `basecoin --help` and `basecoin [cmd] --help` for more details`.
Or follow through a [step-by-step introduction](https://github.com/tendermint/basecoin-examples/blob/master/tutorial.md) to testing basecoin locally.
## Tutorials and Other Reading
See our [introductory blog post](https://cosmos.network/blog/cosmos-creating-interoperable-blockchains-part-1), which explains the motivation behind Basecoin.