From 1d759968455a1b5c4263052b80443a87d9261fb6 Mon Sep 17 00:00:00 2001 From: jsy1218 <91580504+jsy1218@users.noreply.github.com> Date: Fri, 7 Jun 2024 09:40:21 -0700 Subject: [PATCH] feat(sdk-core): export computeZksyncCreate2Address from index (#40) ## Description From v3-sdk PR Github CI [run](https://github.com/Uniswap/sdks/runs/25917491725), I see it cannot find the computeZksyncCreate2Address function from the sdk-core module. I think we have to explicitly export it via index file ## How Has This Been Tested? Manual ## Are there any breaking changes? No ## (Optional) Feedback Focus No ## (Optional) Follow Ups No --- sdks/sdk-core/src/utils/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sdks/sdk-core/src/utils/index.ts b/sdks/sdk-core/src/utils/index.ts index 60c1219f4..449c58445 100644 --- a/sdks/sdk-core/src/utils/index.ts +++ b/sdks/sdk-core/src/utils/index.ts @@ -1,4 +1,5 @@ export { computePriceImpact } from './computePriceImpact' +export { computeZksyncCreate2Address } from './computeZksyncCreate2Address' export { sortedInsert } from './sortedInsert' export { sqrt } from './sqrt' export { validateAndParseAddress } from './validateAndParseAddress'