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

repo tweaks

This commit is contained in:
Matthias Kretschmann 2018-11-12 14:07:04 +01:00
parent e1ede9a5d9
commit b2a093d630
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 16 additions and 9 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

@ -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;
} }