mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
repo tweaks
This commit is contained in:
parent
e1ede9a5d9
commit
b2a093d630
@ -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>
|
||||||
|
@ -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>
|
||||||
)}
|
)}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user