whitepaper -> specificaiton

This commit is contained in:
Jeremy Kauffman 2019-01-29 11:23:46 -05:00
parent 1f3d4e3fbf
commit 5c493c5ede
8 changed files with 13 additions and 12 deletions

View file

@ -12,9 +12,9 @@ import linkGrid from "./link-grid";
export default () => linkGrid([{ export default () => linkGrid([{
description: "Read the formal specification for LBRY.", description: "Read the formal specification for LBRY.",
destination: "/whitepaper", destination: "/spec",
label: "Study the Paper", label: "Study the Spec",
title: "Whitepaper" title: "LBRY Specification"
}, { }, {
description: "Can you code, design, write or test? Join us!", description: "Can you code, design, write or test? Join us!",
destination: "/contribute", destination: "/contribute",

View file

@ -10,5 +10,6 @@
"/resources/signing-claim": "/resources/claim-signing", "/resources/signing-claim": "/resources/claim-signing",
"/resources/uri": "/spec#urls", "/resources/uri": "/spec#urls",
"/tour": "/playground", "/tour": "/playground",
"/whitepaper": "/spec" "/whitepaper": "/spec",
"/specification" : "/spec"
} }

View file

@ -35,8 +35,8 @@ export default () => html`
}, },
{ {
description: "Dig into the formal specification of the LBRY protocol.", description: "Dig into the formal specification of the LBRY protocol.",
destination: "/whitepaper", destination: "/spec",
label: "Wisdom of the Whitepaper", label: "Study the Spec",
title: "Learn By Reading" title: "Learn By Reading"
} }
])} ])}

View file

@ -40,7 +40,7 @@ Informal name for a portion of a *transaction output* that is returned to a send
### Channel ### Channel
A channel is a cryptographically signed pseudoymn used to provide identity on the LBRY network. For specific details, see the [Channels section](/whitepaper#channels) of the specification. A channel is a cryptographically signed pseudoymn used to provide identity on the LBRY network. For specific details, see the [Channels section](/spec#channels) of the specification.
### Channel Claim Signature ### Channel Claim Signature
@ -152,7 +152,7 @@ The currency code for 1 LBRY Credit (defined as 100 000 000 *deweys*).
### lbrycrd ### lbrycrd
lbrycrd is the authoritative implementation of the LBRY [blockchain](#blockchain) protocol. See [the source code](https://github.com/lbryio/lbrycrd), [the API](/api/blockchain), or [the whitepaper](/whitepaper). lbrycrd is the authoritative implementation of the LBRY [blockchain](#blockchain) protocol. See [the source code](https://github.com/lbryio/lbrycrd), [the API](/api/blockchain), or [the formal specification](/spec).
### lbry-sdk ### lbry-sdk

View file

@ -31,6 +31,6 @@ Learn more about the specific components that make LBRY possible.
## Keep Diving ## Keep Diving
- Explore live metadata and add your own blockchain entry in the [Playground](/playground). - Explore live metadata and add your own blockchain entry in the [Playground](/playground).
- Read the [whitepaper](/whitepaper) to know more about LBRY than the person who made this website. - Read the [specification](/spec) to know more about LBRY than the person who made this website.
- Find API specifications and other learning materials in [Resources](/resources). - Find API specifications and other learning materials in [Resources](/resources).
- Learn how to [contribute to LBRY](/contribute) or [build your own application](/build). - Learn how to [contribute to LBRY](/contribute) or [build your own application](/build).

View file

@ -10,5 +10,5 @@ The metadata contains information about the content, such as the title, creator,
### Additional Resources ### Additional Resources
- The [Whitepaper](/whitepaper "Whitepaper") contains a comprehensive documentation of the LBRY blockchain. - The [Specification](/spec "Specification") contains a comprehensive documentation of the LBRY blockchain and protocol.
- [Resources](/resources) has documentation about using the LBRY blockchain, including its APIs. - [Resources](/resources) has documentation about using the LBRY blockchain, including its APIs.

View file

@ -10,7 +10,7 @@ Data network operations are provided by the [lbrysdk](https://github.com/lbryio/
### Additional Resources ### Additional Resources
- The [Whitepaper](/whitepaper "Whitepaper") contains a comprehensive specification of data network operations. - The [Specification](/spec "Specification") contains a comprehensive specification of data network operations.
- [Resources](/resources) has further documentation on the LBRY SDK, including its APIs. - [Resources](/resources) has further documentation on the LBRY SDK, including its APIs.
- [Build](/build) teaches you how to create your own app. - [Build](/build) teaches you how to create your own app.
- [Contribute](/contribute) guides you on how to improve the protocol itself. - [Contribute](/contribute) guides you on how to improve the protocol itself.

View file

@ -6,9 +6,9 @@ title: Resources
## Additional Resources ## Additional Resources
- [LBRY Glossary](/glossary)
- [LBRY Merkle Claim Trie](/resources/claimtrie) - [LBRY Merkle Claim Trie](/resources/claimtrie)
- [LBRY Consensus Algorithm](/resources/consensus) - [LBRY Consensus Algorithm](/resources/consensus)
- [LBRY Glossary](/glossary)
- [Download Overview](/resources/download-overview) - [Download Overview](/resources/download-overview)
- [API Wrappers](/resources/api-wrappers) - [API Wrappers](/resources/api-wrappers)
- [LBRY SDK Configuration Settings](/resources/daemon-settings) - [LBRY SDK Configuration Settings](/resources/daemon-settings)