Skip to content

Commit

Permalink
Update tokens.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
riverrun46 committed Apr 10, 2024
1 parent 9872901 commit f591d63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/queries/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const useMVCAssetsQuery = (address: Ref<string>, options: { enabled: Comp
contract: 'MetaContract',
codeHash: token.codeHash,
genesis: token.genesis,
logo: `https://y8u3ysgqmvgb0tsg.public.blob.vercel-storage.com/wrapt-coins/${token.symbol}.png`,
logo: `https://y8u3ysgqmvgb0tsg.public.blob.vercel-storage.com/wrapt-coins/${token.symbol.toLowerCase()}.png`,
balance: {
total: token.confirmed + token.unconfirmed,
confirmed: token.confirmed,
Expand Down Expand Up @@ -73,7 +73,7 @@ export const useMVCTokenQuery = (
contract: 'MetaContract',
codeHash: token.codeHash,
genesis: token.genesis,
logo: `https://y8u3ysgqmvgb0tsg.public.blob.vercel-storage.com/wrapt-coins/${token.symbol}.png`,
logo: `https://y8u3ysgqmvgb0tsg.public.blob.vercel-storage.com/wrapt-coins/${token.symbol.toLowerCase()}.png`,
balance: {
confirmed: token.confirmed,
unconfirmed: token.unconfirmed,
Expand Down

0 comments on commit f591d63

Please sign in to comment.