Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes and Explanation: Extracted process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY into a constant (TENDERLY_RPC_KEY): Reason: This avoids repetition of process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY, making the code more DRY (Don't Repeat Yourself). If you need to update or debug the environment variable, it's easier to do it from one place. Removed unnecessary semicolon after import statements: Reason: This is mostly stylistic, but consistent formatting can improve readability. These changes enhance the maintainability and readability of the code without affecting functionality. It reduces redundancy and simplifies the handling of the TENDERLY_RPC_KEY environment variable.
- Loading branch information