diff --git a/cypress/e2e/app/oracles.cy.js b/cypress/e2e/app/oracles.cy.js index b69198225..96d01252b 100644 --- a/cypress/e2e/app/oracles.cy.js +++ b/cypress/e2e/app/oracles.cy.js @@ -17,7 +17,6 @@ describe('oracles', () => { cy.get('.oracles-table__data').first() .invoke('text') .should(hash2 => { - console.log('hash2', hash2) expect(hash1).not.to.eq(hash2) }) }) @@ -37,7 +36,6 @@ describe('oracles', () => { cy.get('.oracles-table__data').first() .invoke('text') .should(hash2 => { - console.log('hash2', hash2) expect(hash1).to.eq(hash2) }) }) diff --git a/src/stores/accountDetails.js b/src/stores/accountDetails.js index 1655d1295..d687a1d90 100644 --- a/src/stores/accountDetails.js +++ b/src/stores/accountDetails.js @@ -1,11 +1,11 @@ import { defineStore, storeToRefs } from 'pinia' +import { isAddressValid } from '@aeternity/aepp-sdk' import { useRuntimeConfig } from 'nuxt/app' import useAxios from '@/composables/useAxios' import { useMarketStatsStore } from '@/stores/marketStats' import { adaptAccountActivities, adaptAccountNames, adaptAccountTokens, adaptTransactions } from '@/utils/adapters' import { formatAettosToAe } from '@/utils/format' import { useDexStore } from '@/stores/dex' -import { isAddressValid } from "@aeternity/aepp-sdk"; export const useAccountStore = defineStore('account', () => { const { @@ -109,7 +109,6 @@ export const useAccountStore = defineStore('account', () => { const defaultParameters = `/v3/names?owned_by=${accountId}&by=name&direction=forward&state=active&limit=${limit ?? 10}` const { data } = await axios.get(`${MIDDLEWARE_URL}${queryParameters || defaultParameters}`) rawAccountNames.value = data - console.log('rawAccountNames.value', rawAccountNames.value) } async function fetchAccountTokens({ accountId, queryParameters, limit } = {}) { diff --git a/src/stores/nameDetails.js b/src/stores/nameDetails.js index 7bc60ed70..efdb102e7 100644 --- a/src/stores/nameDetails.js +++ b/src/stores/nameDetails.js @@ -31,8 +31,6 @@ export const useNameDetailsStore = defineStore('nameDetails', () => { rawName.value = data } - // todo history issue - // todo close time count function async function fetchNameActions({ nameHash = null, queryParameters = null }) { rawNameActions.value = null const defaultParameters = `/v3/names/${nameHash}/history` diff --git a/src/stores/nftDetails.js b/src/stores/nftDetails.js index dbf91be89..eca752113 100644 --- a/src/stores/nftDetails.js +++ b/src/stores/nftDetails.js @@ -18,11 +18,11 @@ export const useNftDetailsStore = defineStore('nftDetails', () => { await Promise.all([ fetchNft(), - // Promise.allSettled([ - // fetchNftTransfers(), - // fetchNftInventory(), - // fetchNftOwners(), - // ]), + Promise.allSettled([ + fetchNftTransfers(), + fetchNftInventory(), + fetchNftOwners(), + ]), ]) return true