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

@cogitojs/cogito-ethereum-react

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

@cogitojs/cogito-ethereum-react

Cogito Ethereum React library

  • 0.3.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
10
increased by42.86%
Maintainers
4
Weekly downloads
 
Created
Source

@cogitojs/cogito-ethereum-react

Provides a React component that allows interaction with smart contracts on an Ethereum blockchain using the Cogito app. It provides the same functionality as the Cogito Ethereum package in a React friendly way.

Usage

Add @cogitojs/cogito-ethereum-react as a dependency:

yarn add @cogitojs/cogito-ethereum-react

and import it:

import { CogitoEthereumReact } from '@cogitojs/cogito-ethereum-react'

Props

The CogitoEthereumReact component accepts the following props:

prop namedescription
contractsBlobsArray of contracts JSON blobs - see Working with Contracts for more details.
channelIdidentifier of the Telepath channel. If omitted a new random channel id will be created.
channelKeya symmetric key of the Telepath channel. If omitted a new random key will be created.
appNamethe name of the app. Cogito app shows the appName when requesting user signature.
onTelepathChangedfunction to be called when the telepath channel has been updated. Provides an object { channelId, channelKey, appName } as an argument.
renderrender prop - a function that will be called every time the component is updated. It provides { cogitoWeb3, telepathChannel, contractsProxies, newChannel } as an argument, where cogitoWeb3 is an instance of Web3 that uses CogitoProvider, telepathChannel is an instance of Telepath, and contractsProxies is an object holding the references to contracts proxies corresponding to the provided contracts JSON blobs (see Working with Contracts for details). newChannel is a function to change the current channel to a new one. This function will trigger calling the render prop (or child) function, which means the whole tree below it will be (re)rendered. If this prop is present, it will take precedence over the children.

Example

The example below illustrates how to use the CogitoEthereumReact component:

import { CogitoEthereumReact } from '@cogitojs/cogito-ethereum-react'
import { SimpleStorage } from '@cogitojs/demo-app-contracts'

class Main extends React.Component {
  web3IsReady = ({cogitoWeb3, telepathChannel, contractsProxies}) => {
    return (cogitoWeb3 && telepathChannel && contractsProxies.SimpleStorage)
  }

  onTelepathChanged = ({ channelId, channelKey, appName }) => {
    console.log('Telepath channel changed:')
    console.log(`channelId: ${channelId}`)
    console.log(`channelKey: ${channelKey}`)
    console.log(`appName: ${appName}`)
  }

  render () {
    return (
      <CogitoEthereumReact contractsBlobs={[SimpleStorage()]}
        channelId={channelId}
        channelKey={channelKey}
        appName='Cogito Demo App'
        onTelepathChanged={this.onTelepathChanged}
      >
        {web3Props => {
          if (this.web3IsReady(web3Props)) {
            return (
              <div>
                <p>Ready!</p>
                <button onClick={web3Props.newChannel()}>
                  Change channel
                </button>
              </div>
            )
          } else {
            return (
              <p>Please wait...</p>
            )
          }
        }}
      </CogitoEthereumReact>
    )
  }
}

export { Main }

If you prefer using render prop, the render method would look like this:

render () {
  return (
    <CogitoEthereumReact contractsBlobs={[SimpleStorage()]}
      channelId={channelId}
      channelKey={channelKey}
      appName='Cogito Demo App'
      onTelepathChanged={this.onTelepathChanged}
      render={web3Props => {
        if (this.web3IsReady(web3Props)) {
          return (
            <div>
              <p>Ready!</p>
              <button onClick={web3Props.newChannel()}>
                Change channel
              </button>
            </div>
          )
        } else {
          return (
            <p>Please wait...</p>
          )
        }
      }} />
  )
}

FAQs

Package last updated on 24 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