1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Merge branch 'master' into feature/docs-edits-nov-12-13

This commit is contained in:
Troy McConaghy 2018-11-13 14:19:40 +01:00 committed by GitHub
commit e554342332
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 12 deletions

View File

@ -37,14 +37,20 @@ An example marketplace front-end for consumers to explore, download, and publish
<repo name="pleuston"></repo> <repo name="pleuston"></repo>
## Secret Store
A [Parity Secret Store](https://wiki.parity.io/Secret-Store): software for distributed key pair generation, distributed key storage, and threshold retrieval. It's used to store asset access-control keys.
## Squid Libraries ## Squid Libraries
Client libraries used by applications (such as Pleuston or Jupyter notebooks) to interact with Ocean components, including Keepers, Aquarius nodes, Brizo nodes, etc. Client libraries used by applications (such as Pleuston or Jupyter notebooks) to interact with Ocean components, including Keepers, Aquarius nodes, Brizo nodes, etc.
- [🦑 squid-js](https://github.com/oceanprotocol/squid-js) <repo name="squid-js"></repo>
- [🦑 squid-py](https://github.com/oceanprotocol/squid-py) <repo name="squid-py"></repo>
- [🦑 squid-java](https://github.com/oceanprotocol/squid-java) <repo name="squid-java"></repo>
## Secret Store
A [Parity Secret Store](https://wiki.parity.io/Secret-Store): software for distributed key pair generation, distributed key storage, and threshold retrieval. It's used to store asset access-control keys.
We have created multiple clients for integrating the Parity Secret Store into Ocean:
<repo name="secret-store-client-js"></repo>
<repo name="secret-store-client-py"></repo>
<repo name="secret-store-client-java"></repo>

View File

@ -79,7 +79,12 @@ module.exports = {
'gatsby-remark-prismjs', 'gatsby-remark-prismjs',
'gatsby-remark-autolink-headers', 'gatsby-remark-autolink-headers',
'gatsby-remark-copy-linked-files', 'gatsby-remark-copy-linked-files',
'gatsby-remark-component' {
resolve: 'gatsby-remark-component',
options: {
components: ['repo']
}
}
] ]
} }
}, },

View File

@ -61,11 +61,11 @@
"dotenv": "^6.1.0", "dotenv": "^6.1.0",
"eslint": "^5.9.0", "eslint": "^5.9.0",
"eslint-config-oceanprotocol": "^1.3.0", "eslint-config-oceanprotocol": "^1.3.0",
"eslint-config-prettier": "^3.1.0", "eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0", "eslint-plugin-prettier": "^3.0.0",
"markdownlint-cli": "^0.13.0", "markdownlint-cli": "^0.13.0",
"npm-run-all": "^4.1.3", "npm-run-all": "^4.1.3",
"prettier": "^1.15.1", "prettier": "^1.15.2",
"prettier-stylelint": "^0.4.2", "prettier-stylelint": "^0.4.2",
"stylelint": "^9.8.0", "stylelint": "^9.8.0",
"stylelint-config-bigchaindb": "^1.2.1", "stylelint-config-bigchaindb": "^1.2.1",

View File

@ -81,11 +81,11 @@ Links.propTypes = {
const Numbers = ({ stargazers, forkCount, url }) => ( const Numbers = ({ stargazers, forkCount, url }) => (
<aside className={styles.repositorynumbers}> <aside className={styles.repositorynumbers}>
<a href={`${url}/stargazers`}> <a href={`${url}/stargazers`} title="Show Stargazers">
<Star /> <span>{stargazers.totalCount}</span> <Star /> <span>{stargazers.totalCount}</span>
</a> </a>
{forkCount > 0 && ( {forkCount > 0 && (
<a href={`${url}/network`}> <a href={`${url}/network`} title="Show Forks">
<Forks /> <span>{forkCount}</span> <Forks /> <span>{forkCount}</span>
</a> </a>
)} )}

View File

@ -14,6 +14,7 @@
.repositoryName { .repositoryName {
font-size: $font-size-h4; font-size: $font-size-h4;
margin-top: 0; margin-top: 0;
margin-bottom: $spacer / 2;
border: 0; border: 0;
padding: 0; padding: 0;
} }