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

@rhinestone/automations-sdk

v0.0.2

Published

A TypeScript library for using Rhinestone Automations

Downloads

110

Readme

Automations SDK

Coverage badge lines Coverage badge functions

A TypeScript library for using Rhinestone Automations

The Rhinestone Automations Service allows you to create automations that will be executed on a smart account based on a trigger. Exisiting triggers include:

  • Time-based trigger: Execute an automation at a specified time interval
  • Event-based trigger: Execute an automation based on an event emitted onchain

This SDK makes it easy to interact with the Rhinestone Automations Service and create, sign and manage automations.

Using the Automations SDK

Installation

Install the Automations SDK:

npm install @rhinestone/automations-sdk
pnpm install @rhinestone/automations-sdk
yarn add @rhinestone/automations-sdk
bun install @rhinestone/automations-sdk

Quick Start

// Import the required functions
import {
  createAutomationClient,
} from '@rhinestone/automations-sdk'

// Create a client for the automations service
const automationsClient = createAutomationClient({
      account: "0xc2b17e73603dccc195118a36f3203134fd7985f5",
      apiKey: process.env.AUTOMATIONS_API_KEY!,
      accountInitCode: '0x',
      network: 11155111,
      validator: '0x503b54Ed1E62365F0c9e4caF1479623b08acbe77',
})

// Create a new automation
const automation = await automationsClient.createAutomation({
      type: 'time-based',
      data: {
        trigger: {
          triggerData: {
            cronExpression: '*/30 * * * * *',
            startDate: new Date().getTime(),
          },
        },
        actions: [
          {
            type: 'static',
            target: '0x503b54Ed1E62365F0c9e4caF1479623b08acbe77',
            value: 100,
            callData: '0x',
          },
        ],
        maxNumberOfExecutions: 10,
      },
})

// Sign the automation to active it
const signature = sign(automation.hash) // Sign the hash of the automation with the account

await automationsClient.signAutomation({
      automationId: automation.id,
      signature: signature,
})

// Get the automation and verify that it is active
automation = await automationsClient.getAutomation(
      automationId: automation.id,
)

console.log(automation.status) // active

Using this repo

To install dependencies, run:

pnpm install

To build the sdk, run:

pnpm build

To run tests, run:

pnpm test

Contributing

For feature or change requests, feel free to open a PR, start a discussion or get in touch with us.