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

warp-contracts-plugin-subscription

v1.0.9

Published

A subscription plugin for warp contracts

Downloads

15

Readme

Warp Contracts Subscription plugins

These plugins allow to subscribe for notifications to new interactions that are now being sent by the Warp Sequencer.
The Warp Sequencer publishes a notification for each newly registered interaction to a interaction/{contractTxId} channel - so each contract has its own channel.

Subscribers may use the incoming messages to locally update their state - without having to constantly poll the Warp Gateway to check whether new interactions have been registered for a given contract.

In order to safely update the local state - a plugin must verify whether the local state is cached at the sort key exactly "before" the sort key from the new interaction.
That's why each message sent by the Warp Sequencer contains the lastSortKey field.

Installation

yarn add warp-contracts-plugin-subscription

Requires warp-contract SDK ver. min. 1.2.19.

Incoming messages format

export interface InteractionMessage {
  contractTxId: string; // contract for which the interaction was registerd
  sortKey: string; // the sortKey of the new interaction
  lastSortKey: string; // the sortKey of the interaction exactly before this new interaction
  interaction: GQLNodeInterface; // the new interaction itself
}

The new interaction can be used to update the local state via the contract.readStateFor([message.interaction]) method.

WarpSubscriptionPlugin

This is an abstract implementation of the subscription plugin - a "base" that allows to create custom plugins. The R generic type defines the return type of the plugin (already wrapped in a Promise).

Example custom plugin:

class CustomSubscriptionPlugin extends WarpSubscriptionPlugin<void> {
  async process(input: InteractionMessage): Promise<void> {
    logger.info('From custom plugin', input);
    // process the new message;
  }
}

const warp = WarpFactory.forMainnet();
warp.use(new CustomSubscriptionPlugin(contractTxId, warp));

Usage:

const warp = WarpFactory.forMainnet();
warp.use(new CustomSubscriptionPlugin(contractTxId, warp));

StateUpdatePlugin

A WarpSubscriptionPlugin plugin implementation that contains logic for updating the local state based on the incoming messages (e.g. it verifies whether the locally cached sort key and new interaction sort key allow to safely update the state based on the new interaction).

Usage:

const warp = WarpFactory.forMainnet();
warp.use(new StateUpdatePlugin(contractTxId, warp));

Examples

Examples are available here.