npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@keyko-io/nevermined-contracts

v0.4.1

Published

Nevermined implementation of Ocean Protocol in Solidity

Downloads

17

Readme

banner

Nevermined Smart Contracts

💧 Smart Contracts implementation of Nevermined in Solidity nevermined.io

Docker Build Status Build NPM Package Pypi Package Maven Package

Table of Contents


Get Started

For local development of nevermined-contracts you can either use Docker, or setup the development environment on your machine.

Docker

The simplest way to get started with is using the Nevermined Tools, a docker compose application to run all the Nevermined stack.

Local development

As a pre-requisite, you need:

  • Node.js
  • yarn

Note: For MacOS, make sure to have node@10 installed.

Clone the project and install all dependencies:

git clone [email protected]:keyko-io/nevermined-contracts.git
cd nevermined-contracts/

Install dependencies:
```bash
yarn

Compile the solidity contracts:

yarn compile

In a new terminal, launch an Ethereum RPC client, e.g. ganache-cli:

npx ganache-cli@~6.9.1 > ganache-cli.log &

Switch back to your other terminal and deploy the contracts:

yarn test:fast

For redeployment run this instead

yarn clean
yarn compile
yarn test:fast

Upgrade contracts [optional]:

yarn upgrade

Testing

Run tests with yarn test, e.g.:

yarn test test/unit/agreements/AgreementStoreManager.Test.js

Code Linting

Linting is setup for JavaScript with ESLint & Solidity with Ethlint.

Code style is enforced through the CI test process, builds will fail if there're any linting errors.

yarn lint

Networks

Testnets

Rinkeby Testnet

The contract addresses deployed on Nevermined Rinkeby Test Network:

| Contract | Version | Address | |-----------------------------------|---------|----------------------------------------------| | AccessSecretStoreCondition | v0.4.1 | 0x3f558204fA288286C3Ce8cb3C4900Fd675fCeaF7 | | AgreementStoreManager | v0.4.1 | 0x1A3bafbC27F6290C4Fd99F80c0C48D6fFbbE7407 | | ComputeExecutionCondition | v0.4.1 | 0x9Ee494Ee11Fded1B7cF915cfF92Db4E3E2F9fDd6 | | ConditionStoreManager | v0.4.1 | 0x31Ea71619B2E8683E13093E93212AACA84238c38 | | DIDRegistry | v0.4.1 | 0x3262b3292eda1b5c68a3687EF7D9daF7899075E8 | | DIDRegistryLibrary | v0.4.1 | 0x49bE8829eeC5f29262b31e25B6372E4b004a2e30 | | EpochLibrary | v0.4.1 | 0x750c547485AeE3774AA1B9919c06ad9833D9d01B | | EscrowAccessSecretStoreTemplate | v0.4.1 | 0x25340D7Db40e31a5ccA3fEB61329A332f3b043dD | | EscrowComputeExecutionTemplate | v0.4.1 | 0x25649De77C125b9cF1EcD0f07A652676d590Ec5a | | EscrowReward | v0.4.1 | 0x4bc44f922B45008cb4977da9eDEc83D30a40F259 | | HashLockCondition | v0.4.1 | 0xAD762e16445aeA6E71b2fc112c5Ef14F40B67d8E | | LockRewardCondition | v0.4.1 | 0xF4193bb555F79b8B3C0e78E1E8caC7b5a1763C4a | | SignCondition | v0.4.1 | 0xe4486F92Bd2BD7e9757E184A5385006324352024 | | TemplateStoreManager | v0.4.1 | 0x3749aF0feCC396310AE03457c51C7bE04850ECdb | | ThresholdCondition | v0.4.1 | 0xfAFa8e939937e7531B896Db9F9B66F935408626C | | WhitelistingCondition | v0.4.1 | 0xa7570Fa3A53337ABfeeE785017C5Eaa5dC84dE36 |

Integration Testnet

The contract addresses deployed on Nevermined Integration Test Network:

| Contract | Version | Address | |-----------------------------------|---------|----------------------------------------------| | - | - | - |

Staging Testnet

The contract addresses deployed on Nevermined Staging Test Network:

| Contract | Version | Address | |-----------------------------------|---------|----------------------------------------------| | - | - | - |

Mainnets

Production Mainnet

The contract addresses deployed on Production Mainnet:

| Contract | Version | Address | |-----------------------------------|---------|----------------------------------------------| | - | - | - |

Packages

To facilitate the integration of nevermined-contracts there are Python, JavaScript and Java packages ready to be integrated. Those libraries include the Smart Contract ABI's. Using these packages helps to avoid compiling the Smart Contracts and copying the ABI's manually to your project. In that way the integration is cleaner and easier. The packages provided currently are:

The packages contains all the content from the doc/ and artifacts/ folders.

In JavaScript they can be used like this:

Install the nevermined-contracts npm package.

npm install @keyko-io/nevermined-contracts

Load the ABI of the NeverminedToken contract on the staging network:

const NeverminedToken = require('@keyko-io/nevermined-contracts/artifacts/NeverminedToken.staging.json')

The structure of the artifacts is:

{
  "abi": "...",
  "bytecode": "0x60806040523...",
  "address": "0x45DE141F8Efc355F1451a102FB6225F1EDd2921d",
  "version": "v0.9.1"
}

Documentation

Prior Art

This project builds on top of the work done in open source projects:

Attribution

This project is based in the Ocean Protocol Keeper Contracts. It keeps the same Apache v2 License and adds some improvements. See NOTICE file.

License

Copyright 2020 Keyko GmbH
This product includes software developed at
BigchainDB GmbH and Ocean Protocol (https://www.oceanprotocol.com/)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.