From 057931f02a99108fa786d72cb1a36aa8f7486f84 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 13 Feb 2026 07:09:03 -0700 Subject: [PATCH] Update backlog: add task-4 rate limiting fix Co-Authored-By: Claude Opus 4.6 --- ...x-429-rate-limiting-on-Safe-API-requests.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 backlog/tasks/task-4 - Fix-429-rate-limiting-on-Safe-API-requests.md diff --git a/backlog/tasks/task-4 - Fix-429-rate-limiting-on-Safe-API-requests.md b/backlog/tasks/task-4 - Fix-429-rate-limiting-on-Safe-API-requests.md new file mode 100644 index 0000000..e0ad512 --- /dev/null +++ b/backlog/tasks/task-4 - Fix-429-rate-limiting-on-Safe-API-requests.md @@ -0,0 +1,18 @@ +--- +id: task-4 +title: Fix 429 rate limiting on Safe API requests +status: Done +assignee: [] +created_date: '2026-02-13 14:08' +labels: + - bugfix + - api +dependencies: [] +priority: high +--- + +## Description + + +Safe Transaction Service API was returning 429 errors when checking all 7 chains in parallel. Added retry with exponential backoff (up to 4 retries, 1s/2s/4s/8s delays) and staggered chain detection (150ms gaps) and data fetching (200ms gaps) to avoid rate limits. +