Describe the Issue
The job details are taking significantly long to load.
Evidence / Media
Possible Cause
The delay appears to be caused by the blockchain call being executed on the backend. Since the backend is doing nothing but a simple get call, this introduces unnecessary overhead.
The blockchain call could instead be moved to the frontend, which would likely reduce latency and improve responsiveness.
Suggested Fix
Refactor the logic so that blockchain calls are made directly from the frontend instead of the backend, wherever applicable.
Environment
- OS: Arch Linux
- Node.js version: v24.7.0
- npm version: 11.6.0
- Browser: Chrome
Additional Context
Describe the Issue
The job details are taking significantly long to load.
Evidence / Media
Possible Cause
The delay appears to be caused by the blockchain call being executed on the backend. Since the backend is doing nothing but a simple get call, this introduces unnecessary overhead.
The blockchain call could instead be moved to the frontend, which would likely reduce latency and improve responsiveness.
Suggested Fix
Refactor the logic so that blockchain calls are made directly from the frontend instead of the backend, wherever applicable.
Environment
Additional Context