Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v2.1.13 #1234

Merged
merged 10 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
### Release v2.1.13

### Fix

- fix ens subgraph [#1233](https://github.com/EthVM/EthVM/pull/1233)

### Feature

- add link to contract on address [#1232](https://github.com/EthVM/EthVM/pull/1232)

### Release v2.1.12

### Feature
- vietnamese language [#1224](https://github.com/EthVM/EthVM/pull/1224)

- vietnamese language [#1224](https://github.com/EthVM/EthVM/pull/1224)

### Release v2.1.11

### Feature
- affiliate links
- add polyfills [#1222](https://github.com/EthVM/EthVM/pull/1222)

- affiliate links
- add polyfills [#1222](https://github.com/EthVM/EthVM/pull/1222)

==================================================

Expand All @@ -19,7 +31,7 @@

### Devop

- Hardcode v3 api for development build
- Hardcode v3 api for development build

### Release v2.1.9

Expand Down
1 change: 0 additions & 1 deletion static/components/TheAppHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ const { name, xs } = useDisplay()
const appDrawer = useAppDrawer()

const showDrawerBtn = computed<boolean>(() => {
console.log(name.value === 'xs' || name.value === 'sm' || name.value === 'md')
return name.value === 'xs' || name.value === 'sm' || name.value === 'md'
})

Expand Down
7 changes: 6 additions & 1 deletion v2/README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
# my-beta-app

## Project setup

```
pnpm install
pnpm install --frozen-lockfile
```

### Compiles and hot-reloads for development

```
pnpm run serve
```

### Compiles and minifies for production

```
pnpm run build
```

### Lints and fixes files

```
pnpm run lint
```

### Customize configuration

See [Configuration Reference](https://cli.vuejs.org/config/).
10 changes: 7 additions & 3 deletions v2/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
{
"name": "client",
"version": "2.1.12",
"version": "2.1.13",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"ts-serve": "run-p type-check serve",
"serve": "vue-cli-service serve",
"ts-serve": "run-p type-check dev",
"dev": "vue-cli-service serve",
"serve-sepolia": "vue-cli-service serve --mode sepolia",
"type-check": "vue-tsc --noEmit --watch",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"codegen-generate": "graphql-codegen --config codegen.yml",
"build:hash": "VUE_APP_ROUTER_MODE=hash vue-cli-service build"
},
"engines": {
"node": "18.0.0",
"pnpm": "8.10.5"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@ensdomains/eth-ens-namehash": "^2.0.15",
Expand Down
2 changes: 1 addition & 1 deletion v2/src/apollo/ens/ensClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import * as Sentry from '@sentry/vue'
*/

const httpLink = createHttpLink({
uri: 'https://api.thegraph.com/subgraphs/name/ensdomains/ens'
uri: 'https://gateway-arbitrum.network.thegraph.com/api/eb17d5e0f1e62e505370ef6bfd7c2844/subgraphs/id/5XqPmWe6gjyrJtFn9cLy237i4cWw2j9HcUJEXsP5qGtH'
})

// eslint-disable-next-line
Expand Down
15 changes: 7 additions & 8 deletions v2/src/modules/address/ModuleAddressTokens.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/>
</div>
<template v-if="props.isOverview">
<app-btn :text="$t('common.more')" is-small icon="east" @click="goToTokensBalancePage"></app-btn>
<app-btn :text="$t('common.more')" is-small icon="east" @click="goToTokensContractPage"></app-btn>
</template>
</v-card-title>
<div v-if="!props.isOverview || (props.isOverview && xs)" class="d-flex align-center flex-wrap">
Expand All @@ -33,7 +33,7 @@
</address-balance-totals>
</v-col>
<v-spacer v-if="props.isOverview && xs" />
<app-btn-icon v-if="props.isOverview && xs" icon="east" @click="goToTokensBalancePage"></app-btn-icon>
<app-btn-icon v-if="props.isOverview && xs" icon="east" @click="goToTokensContractPage"></app-btn-icon>
<div class="flex-grow-1 my-5 my-sm-0">
<app-input :place-holder="$t('token.searchTokenName')" v-model="state.searchParams" />
</div>
Expand Down Expand Up @@ -189,7 +189,7 @@ import { TOKEN_FILTER_VALUES, KEY, DIRECTION, Token } from '@module/address/mode
import { useAddressToken } from '@core/composables/AddressTokens/addressTokens.composable'
import { AddressEventType } from '@/apollo/types'
import { useRouter } from 'vue-router'
import { ROUTE_NAME, ADDRESS_ROUTE_QUERY } from '@core/router/routesNames'
import { ROUTE_NAME } from '@core/router/routesNames'
import AddressBalanceTotals from './components/AddressBalanceTotals.vue'
import AppNoResult from '@/core/components/AppNoResult.vue'
import { useDisplay } from 'vuetify/lib/framework.mjs'
Expand Down Expand Up @@ -347,14 +347,13 @@ const router = useRouter()

const routeToToken = (id: string) => {
state.activeToken = id
goToTokensBalancePage()
goToTokensContractPage()
}

const goToTokensBalancePage = async () => {
const goToTokensContractPage = async () => {
await router.push({
name: ROUTE_NAME.ADDRESS_TOKENS.NAME,
query: { t: ADDRESS_ROUTE_QUERY.Q_TOKENS[0] },
params: { scrollId: state.activeToken }
name: ROUTE_NAME.TOKEN.NAME,
params: { addressRef: state.activeToken }
})
}

Expand Down
7 changes: 1 addition & 6 deletions v2/src/modules/address/components/TableRowTokenBalance.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<template>
<app-table-row
row-align="start"
row-align-lg="center"
:color="state.showMore ? 'lightGrey' : 'transparent'"
v-on="{ click: !props.isOverview && marketData ? openMoreInfo : null }"
>
<app-table-row row-align="start" row-align-lg="center" :color="state.showMore ? 'lightGrey' : 'transparent'" v-on="{ click: openMoreInfo }">
<!--
Token on Overview:
XS: NONE
Expand Down
Loading