We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ec71c6 commit 063d99cCopy full SHA for 063d99c
1 file changed
templates/chain-admin/hooks/asset-list/useChainUtils.ts
@@ -160,6 +160,11 @@ export const useChainUtils = (chainName: string) => {
160
};
161
162
const isNativeAsset = ({ denom }: PrettyAsset) => {
163
+ // Special handling for hyperweb native token
164
+ if (denom === 'uhyper' && chainName === 'hyperweb') {
165
+ return true;
166
+ }
167
+
168
return !!nativeAssets.find((asset) => asset.base === denom);
169
170
0 commit comments