-
Notifications
You must be signed in to change notification settings - Fork 0
feat: set up tenderly #104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…mple implementation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR sets up Tenderly for blockchain monitoring and automation by adding a complete Tenderly Actions configuration. The setup includes example block monitoring functionality for the Arbitrum mainnet network.
Key changes:
- Created Tenderly project configuration with block monitoring action
- Added TypeScript build system for Tenderly actions
- Included example action that logs block events every 10 blocks
Reviewed Changes
Copilot reviewed 5 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| tenderly.yaml | Main configuration defining the Tenderly project, actions, and block triggers for Arbitrum mainnet |
| tenderly-actions/tsconfig.json | TypeScript configuration for building Tenderly actions |
| tenderly-actions/package.json | Package definition with build/deploy scripts and Tenderly dependencies |
| tenderly-actions/example.ts | Example TypeScript action function that logs block events |
| tenderly-actions/README.md | Documentation for setup, deployment, and usage of Tenderly actions |
Files not reviewed (1)
- tenderly-actions/package-lock.json: Language not supported
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #104 +/- ##
=======================================
Coverage ? 83.78%
=======================================
Files ? 4
Lines ? 111
Branches ? 7
=======================================
Hits ? 93
Misses ? 17
Partials ? 1 ☔ View full report in Codecov by Sentry. |
Co-authored-by: Copilot <[email protected]>
zguesmi
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a note in the root README.
Summary
Set up Tenderly Actions infrastructure (monitoring/automation) for the RLC multichain project with an initial sample action.
Motivation
Implement monitoring to maximize bridge security and be alerted in case of unusual behavior.
Main Changes
• Added the tenderly-actions folder.
• Added tenderly.yaml (project config + runtime + triggers).
• Added package.json (dependencies required for the actions).
• Example action: block-number-printer (a hello-world style Action just to validate the setup).
• Dedicated README.
Local Test Commands
After deployment, you can connect to Tenderly and view the HelloWorld Action here
Useful links