From 37c9117871bd9bb1d27f4c8cd5c19f5735bc1b23 Mon Sep 17 00:00:00 2001 From: maradini77 <140460067+maradini77@users.noreply.github.com> Date: Mon, 22 Dec 2025 16:21:53 +0100 Subject: [PATCH 1/3] Rename TokenClient.BalanceAlowance.ts to TokenClient.BalanceAllowance.ts --- ...nClient.BalanceAlowance.ts => TokenClient.BalanceAllowance.ts} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test/{TokenClient.BalanceAlowance.ts => TokenClient.BalanceAllowance.ts} (100%) diff --git a/test/TokenClient.BalanceAlowance.ts b/test/TokenClient.BalanceAllowance.ts similarity index 100% rename from test/TokenClient.BalanceAlowance.ts rename to test/TokenClient.BalanceAllowance.ts From 469b566987c22237c498168d4160568675b5d1ae Mon Sep 17 00:00:00 2001 From: maradini77 <140460067+maradini77@users.noreply.github.com> Date: Mon, 22 Dec 2025 16:22:42 +0100 Subject: [PATCH 2/3] Update RedisCache.ts --- src/caching/RedisCache.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/caching/RedisCache.ts b/src/caching/RedisCache.ts index f10c6832e8..5711b9f1cc 100644 --- a/src/caching/RedisCache.ts +++ b/src/caching/RedisCache.ts @@ -17,7 +17,7 @@ export interface RedisCacheInterface extends interfaces.CachingMechanismInterfac * RedisCache is a caching mechanism that uses Redis as the backing store. It is used by the * Across SDK to cache data that is expensive to compute or retrieve from the blockchain. It * is designed to use the `CachingMechanismInterface` interface so that it can be used as a - * drop-in in the SDK without the SDK needing to reason about the implementation details. + * drop-in replacement in the SDK without the SDK needing to reason about the implementation details. */ export class RedisCache implements RedisCacheInterface { constructor( From e08621cbfbb87a5e00bcc075f6120838e0654e6c Mon Sep 17 00:00:00 2001 From: maradini77 <140460067+maradini77@users.noreply.github.com> Date: Mon, 22 Dec 2025 16:23:06 +0100 Subject: [PATCH 3/3] Update MultiCallerClient.ts --- src/clients/MultiCallerClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clients/MultiCallerClient.ts b/src/clients/MultiCallerClient.ts index 9bb1cbce17..df8525ef8c 100644 --- a/src/clients/MultiCallerClient.ts +++ b/src/clients/MultiCallerClient.ts @@ -487,7 +487,7 @@ export class MultiCallerClient { } // Filter out transactions that revert for non-critical, expected reasons. For example, the "relay filled" error may - // will occur frequently if there are multiple relayers running at the same time. Similarly, the "already claimed" + // occur frequently if there are multiple relayers running at the same time. Similarly, the "already claimed" // error will occur if there are overlapping dataworker executor runs. // @todo: Figure out a less hacky way to reduce these errors rather than ignoring them. // @todo: Consider logging key txn information with the failures?