New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@windingtree/trust-clue-curated-list

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@windingtree/trust-clue-curated-list

Trustworthiness clue for Winding Tree based on a smart contract list of identities curated by an authority

  • 0.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
4
Weekly downloads
 
Created
Source

Winding Tree Trustworthiness Clue - Curated List

Greenkeeper badge

Trustworthiness clue for Winding Tree based on a smart contract with a list of identities curated by an authority.

Installation

npm install @windingtree/trust-clue-curated-list
# or
git clone https://github.com/windingtree/trust-clue-curated-list
nvm install
npm install

Usage

This library is best used with @windingtree/wt-js-libs where it can be combined with other trust clues which can be used to determine a trust level towards an Ethereum address.

import { WtJsLibs } from '@windingtree/wt-js-libs';
import { TrustClueCuratedList } from '@windingtree/trust-clue-curated-list';

const libs = WtJsLibs.createInstance({
  onChainDataOptions: {
    provider: 'http://localhost:8545',
  },
  trustClueOptions: {
    clues: {
      'curated-list': {
        options: {
          provider: 'http://localhost:8545',
          address: '0x...',
          interpret: (value) => {
            return !!value;
          }
        },
        create: async (options) => {
          const aa = new TrustClueCuratedList(options);
        },
      },
    },
  },
});

To use this as a standalone package, you would do something like this:

import { TrustClueCuratedList } from '@windingtree/trust-clue-curated-list';

const list = new TrustClueCuratedList({
  // Web3 provider
  provider: 'http://localhost:8545',
  // Address of a deployed instance of CuratedList contract
  address: '0x...',
  // interpret function - this allows you to do something with the raw
  // value returned by the clue during the interpretation. You can use
  // it to convert all clues to a boolean to easily work with multiple
  // clues in your software.
  interpret: (value) => {
    return value ? 1 : 0; 
  }
});

Keywords

FAQs

Package last updated on 26 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc