From 8b4a3cd1dc70ff2027e80bb8cd6926ad5fb02f33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s?= Date: Wed, 11 Sep 2024 11:06:36 -0300 Subject: [PATCH] fix: remark regarding import resolution (#531) ## Description - adding remarks on import and triggering release ## Related Issue Or Context Closes: # ## How Has This Been Tested? Testing details. ## Types of changes - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation ## Checklist: - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have ensured that all acceptance criteria (or expected behavior) from issue are met - [ ] I have updated the documentation locally and in chainbridge-docs. - [ ] I have added tests to cover my changes. - [ ] I have ensured that all the checks are passing and green, I've signed the CLA bot --- packages/utils/src/liquidity.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/utils/src/liquidity.ts b/packages/utils/src/liquidity.ts index c49cd23f6..b3e84b1ae 100644 --- a/packages/utils/src/liquidity.ts +++ b/packages/utils/src/liquidity.ts @@ -9,6 +9,9 @@ import { Network, ResourceType } from '@buildwithsygma/core'; import type { createFungibleAssetTransfer } from '@buildwithsygma/evm'; import { getEvmHandlerBalance } from '@buildwithsygma/evm'; import type { createSubstrateFungibleAssetTransfer } from '@buildwithsygma/substrate/src'; +/** + * @remarks default import even if type definition says there is named and default + */ import * as Web3ProvidersHttp from 'web3-providers-http'; import { getSubstrateHandlerBalance } from './substrate/balances.js';