endpoints/seichainasset_listGET/sei-protocol/seichain/dex/asset_list/{denom}Returns the metadata for a specified denom / display typeParametersdenom*stringpathResponses200A successful response.PropertiesmetadataobjectPropertiesibcInfoobjectPropertiessourceChannelstringdstChannelstringsourceDenomstringsourceChainIDstringtype_assetstringmetadataobjectMetadata represents a struct that describes a basic token.Propertiesdescriptionstringdenom_unitsarraybasestringbase represents the base denom (should be the DenomUnit with exponent = 0).displaystringdisplay indicates the suggested denom that should be displayed in clients.namestringSince: cosmos-sdk 0.43symbolstringsymbol is the token symbol usually shown on exchanges (eg: ATOM). This can be the same as the display. Since: cosmos-sdk 0.43defaultAn unexpected error response.PropertiescodeintegermessagestringdetailsarrayExample Usageimport { getQueryClient } from '@sei-js/cosmjs'; const queryClient = await getQueryClient("YOUR_RPC_URL"); const { assetMetadata } = queryClient.sei-protocol.seichain.dex; const params: QueryAssetMetadataRequest = { denom: "" }; const response: QueryAssetMetadataResponseSDKType = await assetMetadata(params);