From f0660404152e62c34a01b93198291738bfcedc64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maik=20Mu=CC=88ller?= Date: Sun, 12 Apr 2026 19:47:10 +0200 Subject: [PATCH] Add CacheRateLimiter --- src/LaravelBitunixApi.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/LaravelBitunixApi.php b/src/LaravelBitunixApi.php index 266fe56..4776360 100644 --- a/src/LaravelBitunixApi.php +++ b/src/LaravelBitunixApi.php @@ -397,4 +397,9 @@ class LaravelBitunixApi implements ChangeLeverageRequestContract, ChangeMarginMo 'json' => $body, ]); } + + protected function resolveRateLimitIdentity(): string + { + return (string) config('bitunix-api.api_key'); + } }