-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
81 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
module.exports = { | ||
title: "qbase", | ||
description: "Documentation for the qbase.", | ||
dest: "./dist/docs", | ||
base: "/docs/", | ||
markdown: { | ||
lineNumbers: true | ||
}, | ||
themeConfig: { | ||
lastUpdated: "Last Updated", | ||
nav: [{text: "Back to qbase", link: "https://www.github.com/qbaseGroup/qbase"}], | ||
sidebar: [ | ||
{ | ||
title: "Introduction", | ||
collapsable: false, | ||
children: [ | ||
["/introduction/qbase", "qbase"] | ||
] | ||
}, | ||
{ | ||
title: "Getting Started", | ||
collapsable: false, | ||
children: [ | ||
["/getting-started/quick_start", "Quick Start"] | ||
] | ||
}, | ||
{ | ||
title: "Client", | ||
collapsable: false, | ||
children: [ | ||
["/client/command", "command"] | ||
] | ||
} | ||
, | ||
{ | ||
title: "Spec", | ||
collapsable: false, | ||
children: [ | ||
["/spec/qcp", "QCP"], | ||
["/spec/transaction", "Transaction"] | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Welcome to qbase. | ||
|
||
Docs for qbase. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# qbase | ||
|
||
qbase是QOS通用区块链应用框架,基于此框架开发QOS公链和联盟区块链应用,提供了通用的存储、交易和QCP跨链协议。 | ||
|
||
感谢tendermint团队,此框架基于[tendermint](https://github.com/tendermint/tendermint)研发,实现了ABCI应用的通用封装。 | ||
|
||
感谢cosmos团队,本框架实现参考了[cosmos-sdk](https://github.com/cosmos/cosmos-sdk)代码。 | ||
|
||
当前非正式版本,我们会持续完善。 | ||
|
||
## Examples | ||
* [kvstore](https://github.com/QOSGroup/qbase/blob/master/example/kvstore) | ||
* [basecoin](https://github.com/QOSGroup/qbase/tree/master/example/basecoin) | ||
|
||
## Quick Start | ||
|
||
[Quick Start](../getting-started/quick_start.md) | ||
|
||
## 已实现区块链应用 | ||
* [qos](https://github.com/QOSGroup/qos),QOS公链,支持双层代币和跨链交易 | ||
* [qstars](https://github.com/QOSGroup/qstars),星云联盟链 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"scripts": { | ||
"docs:dev": "vuepress dev docs", | ||
"docs:build": "vuepress build docs" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.