tenderly actions init
in a directory where you want to initialize actions project, which will lead you through setting up a project for your Web3 Actions.tenderly actions init --language javascript.
tenderly.yaml
with the specification of all actions (e.g. name, description, etc.) and their triggers. For more details, see the configuration page.actions
directory (or whatever is chosen during setup) where functions implementation should go including files package.json
or tsconfig.json
in the case of TypeScript.tenderly actions
commands must be run from a directory that contains tenderly.yaml.
node_modules
directory located in the same directory with your actions source files will be packaged and deployed with your actions. npm install
must be run from a directory where actions sources are. Note that this might be a different directory than one where you run tenderly actions
commands. tenderly actions deploy
in an initialized project to deploy generated example and go to provided link to view the action in the dashboard. If you initialized actions for multiple projects in the same directory, you will be asked to select a project which you want to deploy. All actions for a single project are deployed together.tenderly actions build
.