Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

@exodus/available-assets

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exodus/available-assets

This Exodus SDK feature tracks available assets, i.e. assets that the user can potentially enable via the UI.

latest
Source
npmnpm
Version
8.11.0
Version published
Weekly downloads
1.7K
18.42%
Maintainers
1
Weekly downloads
 
Created
Source

@exodus/available-assets

This Exodus SDK feature tracks available assets, i.e. assets that the user can potentially enable via the UI.

Install

yarn add @exodus/available-assets

Usage

This feature is designed to be used together with @exodus/headless. See using the sdk.

Play with it

  • Open the playground https://exodus-hydra.pages.dev/features/available-assets
  • Run exodus.availableAssets.get() in the Dev Tools Console.
  • Run selectors.availableAssets.all(store.getState()) in the Dev Tools Console.
  • Run selectors.availableAssets.get(store.getState())('bitcoin') in the Dev Tools Console.
  • Try out some other selectors from selectors.availableAssets. See example usage in tests.

API Side

See using the sdk for more details on how features plug into the SDK and the API interface in the type declaration.

If you're building a feature that requires knowing available assets, add a dependency on the availableAssetNamesAtom.

UI Side

See using the sdk for more details on basic UI-side setup.

import selectors from '~/ui/flux/selectors'

const MyComponent = () => {
  const bitcoin = useSelector((state) => selectors.availableAssets.get(state)('bitcoin'))
  if (!bitcoin) return <div>Bitcoin is not supported</div>
}

FAQs

Package last updated on 13 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts