Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tenderly/tenderly-actions
Deploy a custom JavaScript/Typescript function that hooks into an on-chain event and builds active monitoring or a serverless backend for a dapp, improves dapp UX, and connects different services.
https://github.com/tenderly/tenderly-actions
ethereum serverless-functions tenderly web3-actions
Last synced: about 21 hours ago
JSON representation
Deploy a custom JavaScript/Typescript function that hooks into an on-chain event and builds active monitoring or a serverless backend for a dapp, improves dapp UX, and connects different services.
- Host: GitHub
- URL: https://github.com/tenderly/tenderly-actions
- Owner: Tenderly
- Created: 2021-09-21T09:09:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T13:57:57.000Z (18 days ago)
- Last Synced: 2024-10-30T14:02:19.060Z (18 days ago)
- Topics: ethereum, serverless-functions, tenderly, web3-actions
- Language: TypeScript
- Homepage: https://docs.tenderly.co/web3-actions/intro-to-web3-actions
- Size: 197 KB
- Stars: 28
- Watchers: 6
- Forks: 25
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tenderly Web3 Actions
[![npm](https://img.shields.io/npm/v/@tenderly%2Factions.svg)](https://www.npmjs.org/package/@tenderly/actions)
[![Twitter](https://img.shields.io/twitter/follow/TenderlyApp?style=social)](https://twitter.com/intent/follow?screen_name=TenderlyApp)
[![Github](https://img.shields.io/github/stars/Tenderly/tenderly-actions?style=social)](https://github.com/Tenderly/tenderly-actions)## Packages
This repository contains the following packages:
- **actions** - Contains the code for your Web3 Actions. You can find the package at the NPM registry under [@tenderly/actions](https://www.npmjs.com/package/@tenderly/actions).
- **actions-test** - Contains the testing library for your Web3 Actions. You can find the package at the NPM registry under [@tenderly/actions-test](https://www.npmjs.com/package/@tenderly/actions-test).## Introduction
[Tenderly](https://tenderly.co) Web3 Actions are programmable hooks for smart contract and chain events. They can also
be serverless backends for your dapps. A Web3 Action is a regular TypeScript/JavaScript function that runs on Tenderly
infrastructure.A Web3 Action comes with key-value storage for data you need to persist and secrets management for sensitive information
such as API keys. You can think of Web3 Actions as infrastructure building a Web3 version of IFTTT/Zapier automation,
allowing you to glue together your smart contracts, on-chain events, dapp frontends, APIs, and other services.![Web3 Actions](https://storage.googleapis.com/tenderly-public-assets/web3-actions/tenderly-web3-actions-breakdown.webp)
Based on the trigger rules you define, external on-chain or off-chain events will trigger your Web3 Action and your
TypeScript/JavaScript code will handle the event instantly.With Web3 Actions, you can build systems that let you be timely informed about non-trivial events. This way, you can
improve your dapp in terms of UX and interactivity and enhance your project through the depth of information you can
collect or share through notifications.> The code Web3 Actions run is called a **function**. Function must be written in TypeScript/JavaScript and runs in
**Node** runtime. Specification of events that your action listens to is called a **trigger**.## Getting Started
Follow these guides to quickly get started with building Web3 Actions via the browser or command line tools.
Read our [documentation](https://docs.tenderly.co/web3-actions/intro-to-web3-actions) to get started with Tenderly Web3 Actions.
Setting up Web3 Actions requires you to write TypeScript/JavaScript code for your functions. Building your Web3 Actions
using Tenderly CLI includes defining triggers in a [yaml configuration file](https://docs.tenderly.co/web3-actions/references/project-structure#the-tenderly.yaml-file-structure).
The defined trigger and yaml configuration become an integral part of your project’s codebase.- [Deploy Web3 Actions via Tenderly Dashboard](https://docs.tenderly.co/web3-actions/tutorials-and-quickstarts/deploy-web3-actions-via-dashboard) - Learn how to set up and deploy Web3 Actions directly in your browser.
- [Deploy Web3 Actions via Tenderly CLI](https://docs.tenderly.co/web3-actions/tutorials-and-quickstarts/deploy-web3-action-via-cli) - Learn how to install the Tenderly CLI, define triggers using the YAML configuration, and set up and deploy Web3 Actions through the command line.
- [Local Development and Testing](https://docs.tenderly.co/web3-actions/references/local-development-and-testing) - Learn how to test your Web3 Actions locally before deploying them to Tenderly.### Supported Networks
Tenderly Web3 Actions are currently supported on the [following networks](https://docs.tenderly.co/web3-actions/references/networks).
## Contributors