Skip to content

Commit

Permalink
Merge pull request #854 from telosnetwork/853-home-is-not-requesting-…
Browse files Browse the repository at this point in the history
…metadata-information-in-the-last-6-transaction

#853 | home page includes the contract metadata on the last 6 trx query
  • Loading branch information
pmjanus authored Sep 17, 2024
2 parents 90f49c3 + 436613c commit 6d30f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/HomeLatestTransactions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const loading = ref(true);
const truncateHash = computed(() => $q.screen.width > 1024 && $q.screen.width <= 1240 ? 8 : 20);
onBeforeMount(async () => {
const response = await indexerApi.get('transactions?limit=6');
const response = await indexerApi.get('transactions?limit=6&includeAbi=true');
transactions.value = response.data.results;
loading.value = false;
});
Expand Down

0 comments on commit 6d30f09

Please sign in to comment.