diff --git a/landing/src/components/WalletCard.vue b/landing/src/components/WalletCard.vue index c39dba3..b5bff91 100644 --- a/landing/src/components/WalletCard.vue +++ b/landing/src/components/WalletCard.vue @@ -28,7 +28,7 @@ async function fetchWalletData(addr: string) { totalEthSpent totalTokensAcquired } - protocolStatss(where: { id: "0x01" }) { + statss(where: { id: "0x01" }) { items { currentPriceWei } } }`, @@ -37,7 +37,7 @@ async function fetchWalletData(addr: string) { }); const json = await res.json(); holder.value = json?.data?.holders ?? null; - stats.value = json?.data?.protocolStatss?.items?.[0] ?? null; + stats.value = json?.data?.statss?.items?.[0] ?? null; } catch { holder.value = null; } finally {