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

@completium/event-well-crank

v0.0.7

Published

Detects events emitted by smart contracts on the Tezos blockchain, and executes registered event handler functions.

Downloads

47

Readme

Event Well Crank

@completium/event-well-crank detects events emitted by smart contracts on the Tezos blockchain, and executes registered event handler functions.

API

register

Registers an event handler for a specific contract. It takes 3 arguments:

  • the address of the emitter contract
  • the function to create an event from its packed version
  • the event handler function that takes 2 arguments:
    • the emitted event
    • the event data (optional)

The function to create the event may be automatically generated (see Bindings below).

The event data provides information about the emitted event:

  • date
  • block hash
  • operation hash
  • source of the event (account address at the source of the event emission)

startCrank

Starts the crank process. It takes an optional CrankOptions object with optional fields:

| Field | Type | Default | Desc | | -- | -- | -- | -- | | bottom | string | head~4 | block hash to start crawling from | | delay | number | 2000 | number of milliseconds between two lookups of the event well contract | | horizon | number | 3 | number of blocks to look back (the higher, the higher the probability to read the main branch) | | endpoint | string | https://mainnet.api.tez.ie | endpoint used by the event crank | | well | string | (see below) | address of the event well contract | | verbose | boolean | false | flag to turn crank's verbose mode on/off |

The well contract is deployed on mainnet and testnets:

| Network | Well address | | -- | -- | | mainnet | KT1AHVF5m8XaWPQCGgfAsZ9eSJJZ7WVGV2hE | | ithacanet | KT1ReVgfaUqHzWWiNRfPXQxf7TaBLVbxrztw | | hangzhounet | KT1Aho6K97CKApDSCxXEzvP14qd1qTHhF4uH |

stopCrank

Stops the crank.

Bindings

@completium/completium-cli generates the TS bindings from an Archetype contract. It generates for each event emitted by a contract:

  • the event type
  • the make event function
  • the dedicated register function (calls register function with generated make function), which takes 2 arguments:
    • the address of the emitter contract
    • the event handler function

The completium CLI command to generate the bindings:

$ completium-cli generate bindings-ts mycontract.arl > mycontract-bindings.ts

Example

This example illustrates how to emit event from a smart contract and how to receive them in a Dapp.

Emit event

Declare the event type with the event declaration and emit an event with the emit instruction:

archetype event_demo

event TestEvent {
  val: string
}

entry emit_event(v : string) {
  if length(v) > 20 then
    emit<TestEvent>({ val })
}

Deploy the contract on the testnet with the following command:

$ completium-cli set endpoint https://ithacanet.ecadinfra.com
$ completium-cli deploy event_demo.arl

Receive event

Generate bindings with the following command:

$ completium-cli generate bindings-ts event_demo > bindings-event_demo.ts

It generates the following two elements:

  • EventDemo
  • register_TestEvent

These elements may be used to implement the event receiver application which registers an event handler and starts the cranks. Say the event demo contract deployed above is at address KT19EAMugKU416cbA9jL1XcukWArfpv4dLYA

import { runCrank } from '@completium/event-well-crank';
import { register_TestEvent, TestEvent } from './bindings-event_demo';

const handleTestEvent = (e : TestEvent) => {
  console.log(`Test Event received with value "${e.val}"!`);
}

const run = async () => {
  register_TestEvent('KT19EAMugKU416cbA9jL1XcukWArfpv4dLYA', handleTestEvent);
  runCrank({
    endpoint: 'https://ithacanet.ecadinfra.com',
    well: 'KT1ReVgfaUqHzWWiNRfPXQxf7TaBLVbxrztw'
  })
}

await run()

Execute

Compile and run the application above. Then call the contract with the following command:

$ completium-cli call event_demo --arg `{ "v" : "This is a long enough string." }`

After a few blocks generation, the application prints the following message:

Test Event received with value "This is a long enough string."!