@exodus/sui-meta
v1.3.0
Published
Sui constants, icons, colors and other metadata
Readme
@exodus/sui-meta · 
The sui-meta package provides a collection of metadata for Sui blockchain assets, including the native SUI asset and a set of built-in tokens. This metadata includes visual elements (such as logos, primary colors, and gradient schemes), display names, tickers, blockchain explorer URLs, and descriptive information.
Installation
Install the package via yarn:
yarn add @exodus/sui-metaUsage
Below is an example of how to import and use the metadata:
import assetList from '@exodus/sui-meta'
// Example: Get metadata for a specific asset (Sui or some SPL built-in token)
const suiAsset = assetList.find((asset) => asset.name === 'sui')
console.log(suiAsset)You can use this metadata to display asset information in your application, such as logos, colors, and explorer URLs.
License
This project is licensed under the MIT License.
You are free to use, modify, and distribute this software under the terms of the MIT License.
For more details, see the LICENSE file.
