From 9f18b65a9dd5e3d354bca3816f2609b951620abf Mon Sep 17 00:00:00 2001 From: "Alisa | Side.one" Date: Wed, 17 May 2023 20:11:32 +0800 Subject: [PATCH] feat: remove debug params --- src/modules/[chain]/index.vue | 14 +++----------- src/stores/useGovStore.ts | 7 +------ 2 files changed, 4 insertions(+), 17 deletions(-) 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', -});