Skip to content

Commit

Permalink
fix: missing export for useChainIds (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
tien authored Aug 12, 2024
1 parent ce77cee commit ff1c4f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/bright-paws-end.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@reactive-dot/react": patch
---

Add missing export for `useChainIds`.
4 changes: 2 additions & 2 deletions packages/react/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ export {
} from "./contexts/index.js";
export type { ChainHookOptions } from "./hooks/types.js";
export { useAccounts } from "./hooks/use-accounts.js";
export { useSpendableBalance } from "./hooks/use-balance.js";
export { useBlock } from "./hooks/use-block.js";
export { useChainId } from "./hooks/use-chain-id.js";
export { useChainId, useChainIds } from "./hooks/use-chain-id.js";
export { useChainSpecData } from "./hooks/use-chain-spec-data.js";
export { useClient } from "./hooks/use-client.js";
export { useMutationEffect } from "./hooks/use-mutation-effect.js";
export { useMutation } from "./hooks/use-mutation.js";
export { useSpendableBalance } from "./hooks/use-balance.js";
export {
useNativeTokenAmountFromNumber,
useNativeTokenAmountFromPlanck,
Expand Down

0 comments on commit ff1c4f6

Please sign in to comment.