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

ethcalate

v0.2.7

Published

Containerized state channels

Downloads

53

Readme

ethcalate-client

Ethcalate creates containerized state channels for dapps. This repository contains the client-side code for installing and using Ethcalate services within your decentralized application.

This repository is designed to be used in conjunction with the Ethcalate Hub and pre-deployed contracts.

Getting Started

Prerequesites

This package is designed for use within a dapp. The package relies on an injected Web3 object from the browser (i.e. MetaMask, which is how the package was developed and tested).

async/await

Most functions in this package return Promises. The preferred way to consume the package is to use async/await syntax.

// React App.js
async componentDidMount () {
  try {
    const ethcalate = new Ethcalate()
    await ethcalate.initContract()
    const myChannels = await ethcalate.getMyChannels()
  } catch (e) {
    console.log(e)
  }
}

Installing

To get started, you can clone this repository or download the Ethcalate package via npm.

npm install ethcalate --save

Instantiating

The client is instantiated to talk to the deployed contract and Hub. The constructor takes one parameter, a web3 instance.

const Ethcalate = require('ethcalate')
const ethcalate = new Ethcalate(web3)

Using the Ethcalate Package

async openChannel({ to, depositInEth, challenge })

This function creates a new bidirectional payment channel between the msg.sender (taken implicitly), and the to address provided. The depositInEth specifies the stake in ETH the sender is willing to put up for the channel, and challenge is the length of the challenge period in seconds.

Note: This is an on-chain transaction, so there will be a transaction confirmation and gas fee.

const to = '0x627306090abab3a6e1400e9345bc60c78a8bef57'
const depositInEth = 1
const challenge = 3600 // 1 hour

await ethcalate.openChannel({ to, depositInEth, challenge })

// MetaMask will pop up to confirm transaction

async joinChannel ({ channelId, depositInEth })

Joins a channel that has been opened with your address as the counterparty address.

Note: This is an on-chain transaction, so there will be a transaction confirmation and gas fee.

const channelId = '0xeb9222432938ac4150ea9c08ccb4ba76b5638b5f27627ae1867305f15050a64f'
const depositInEth = 1

await ethcalate.joinChannel({ channelId, depositInEth })

// MetaMask will pop up to confirm transaction

async updateState ({ channelId, balanceA, balanceB })

Create a signed state update that the counterparty can use to close the channel. balanceA and balanceB are the updated balances of each party in the channel. Balances must be provided in Wei units using the web3.toWei() function.

Note: This is an off-chain transcation so there are NO transaction fees or gas. Hooray!

const channelId = '0xeb9222432938ac4150ea9c08ccb4ba76b5638b5f27627ae1867305f15050a64f'
const balanceA = web3.toWei(0.5, 'ether')
const balanceB = web3.toWei(1.5, 'ether')

await ethcalate.updateState({ channelId, balanceA, balanceB })

// MetaMask will pop up to sign message with your private key, but not send anything to the blockchain

async startChallengePeriod (channelId)

Takes the last countersigned state update, signs it with your private key, and sends it to the blockchain to move the channel to a challenge period.

Note: This is an on-chain transaction, so there will be a transaction confirmation and gas fee.

const channelId = '0xeb9222432938ac4150ea9c08ccb4ba76b5638b5f27627ae1867305f15050a64f'

await ethcalate.startChallengePeriod(channelId)

// MetaMask will pop up twice, first to confirm signature, and second to confirm transaction

async closeChannel (channelId)

Closes channel if the challenge period is over.

Note: This is an on-chain transaction, so there will be a transaction confirmation and gas fee.

const channelId = '0xeb9222432938ac4150ea9c08ccb4ba76b5638b5f27627ae1867305f15050a64f'

await ethcalate.closeChannel(channelId)

// MetaMask will pop up to confirm transaction

async getMyChannels()

Returns all of the channels associated with the msg.sender.

const myChannels = await ethcalate.getMyChannels()
console.log('myChannels: ', myChannels)

async getChannelByAddresses (agentA, agentB)

Returns the channel details of the channel that exists between the provided agentA and agentB addresses.

const channel = await ethcalate.getChannelByAddresses(
  '0xf17f52151ebef6c7334fad080c5704d77216b732', 
  '0x627306090abab3a6e1400e9345bc60c78a8bef57'
)
console.log('channel: ', channel)

async getChannel(id)

Returns a channel given an ID.

const channel = await ethcalate.getChannel('0xeb9222432938ac4150ea9c08ccb4ba76b5638b5f27627ae1867305f15050a64f')
console.log('channel: ', channel)

Contributing

We welcome any contributions and feedback to our code!

To make a contribution, please first open a github issue with a description of the changes that need to be made. Then, submit a pull request referencing the issue.

All pull requests must be based off the master branch.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • Spankchain's General State Channels Repo: https://github.com/nginnever/general-state-channels
  • Jehan Tremback's Universal State Channels Repo: https://github.com/jtremback/universal-state-channels