diff --git a/src/modules/[chain]/index.vue b/src/modules/[chain]/index.vue index bb53c566..d1e3238c 100644 --- a/src/modules/[chain]/index.vue +++ b/src/modules/[chain]/index.vue @@ -23,7 +23,6 @@ const walletStore = useWalletStore(); const format = useFormatter(); const dialog = useTxDialog(); const stakingStore = useStakingStore(); - const coinInfo = computed(() => { return store.coinInfo; }); @@ -32,7 +31,6 @@ onMounted(() => { store.loadDashboard(); walletStore.loadMyAsset(); }); - const ticker = computed(() => store.coinInfo.tickers[store.tickerIndex]); blockchain.$subscribe((m, s) => { @@ -89,12 +87,6 @@ const color = computed(() => { return 'text-red-600'; } }); -const endpoint = 'https://juno-api.polkachu.com'; -const params = JSON.stringify({ - proposal_id: '1', - validator_address: 'junovaloper1jxv0u20scum4trha72c7ltfgfqef6nscm9pmg2', - chain_name: 'juno', -});