Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/modules/ibc/ChainsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const handleNextPage = () => {
<td>
<NuxtLink :to="`/ibc/chain/${chain.chain}`">
<Flex align="center" gap="6">
<Icon name="arrow-narrow-up-right-circle" size="14" color="green" />
<Icon name="arrow-narrow-up-right-circle" size="14" color="purple" />
<Text size="13" weight="600" color="primary" mono>
{{ abbreviate(chain.sent / 1_000_000) }} <Text color="secondary">TIA</Text>
</Text>
Expand All @@ -89,7 +89,7 @@ const handleNextPage = () => {
<td>
<NuxtLink :to="`/ibc/chain/${chain.chain}`">
<Flex align="center" gap="6">
<Icon name="arrow-narrow-up-right-circle" size="14" color="purple" style="transform: scale(1, -1)" />
<Icon name="arrow-narrow-up-right-circle" size="14" color="brand" style="transform: scale(1, -1)" />
<Text size="13" weight="600" color="primary" mono>
{{ abbreviate(chain.received / 1_000_000) }} <Text color="tertiary">TIA</Text>
</Text>
Expand Down
9 changes: 2 additions & 7 deletions components/modules/ibc/LargestChainsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const largestChains = computed(() => props.chainsStats.slice(0, 5))
<td>
<NuxtLink>
<Flex align="center" gap="6">
<Icon name="arrow-narrow-up-right-circle" size="14" color="green" />
<Icon name="arrow-narrow-up-right-circle" size="14" color="purple" />
<Text size="13" weight="600" color="primary" mono>
{{ abbreviate(chain.sent / 1_000_000) }} <Text color="secondary">TIA</Text>
</Text>
Expand All @@ -66,12 +66,7 @@ const largestChains = computed(() => props.chainsStats.slice(0, 5))
<td>
<NuxtLink>
<Flex align="center" gap="6">
<Icon
name="arrow-narrow-up-right-circle"
size="14"
color="purple"
style="transform: scale(1, -1)"
/>
<Icon name="arrow-narrow-up-right-circle" size="14" color="brand" style="transform: scale(1, -1)" />
<Text size="13" weight="600" color="primary" mono>
{{ abbreviate(chain.received / 1_000_000) }} <Text color="tertiary">TIA</Text>
</Text>
Expand Down
5 changes: 4 additions & 1 deletion components/modules/ibc/NotableStats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ const getChainName = (target) => {
<Text size="12" weight="600" color="tertiary">{{ DateTime.now().toFormat("MMMM") }}</Text>
</Flex>

<Text size="15" weight="600" color="primary">{{ busiestChannel.channel_id }}</Text>
<Text size="15" weight="600" color="primary">
{{ busiestChannel.channel_id }}
<Text size="12" color="tertiary">{{ IbcChainName[busiestChannel.chain_id] ?? "Unknown" }}</Text>
</Text>

<Text size="13" weight="500" color="support">
<Text color="tertiary" mono>{{ comma(busiestChannel.transfers_count) }} transfers</Text>
Expand Down
Loading