@cowprotocol/cow-sdk 6.3.0-RC.0 → 6.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -126,4 +126,8 @@ export interface ChainInfo {
126
126
  [key: string]: ChainRpcUrls;
127
127
  default: ChainRpcUrls;
128
128
  };
129
+ /**
130
+ * Whether the chain is zkSync based.
131
+ */
132
+ readonly isZkSync?: boolean;
129
133
  }
@@ -16,3 +16,4 @@ export declare function isAdditionalTargetChain(chainId: ChainId): chainId is Ad
16
16
  * Check if the chain is supported by CoW Swap or the bridge providers.
17
17
  */
18
18
  export declare function isTargetChainId(chainId: ChainId): chainId is TargetChainId;
19
+ export declare function isZkSyncChain(chainId: ChainId): boolean;