@visualizevalue/mint-app-base 0.1.67 → 0.1.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.env.example CHANGED
@@ -25,5 +25,5 @@ NUXT_PUBLIC_RPC3=
25
25
  # =========================
26
26
  # ONCHAIN
27
27
  # =========================
28
- NUXT_PUBLIC_FACTORY_ADDRESS=0xdc27b70874E36f00290Bd588D5B31AD510ca88a5
28
+ NUXT_PUBLIC_FACTORY_ADDRESS=0x750C5a6CFD40C9CaA48C31D87AC2a26101Acd517
29
29
  NUXT_PUBLIC_CHAIN_ID=11155111
@@ -6,7 +6,7 @@
6
6
 
7
7
  <Loading v-if="loading" />
8
8
  <div v-if="! tokens.length && !loading" >
9
- <p>{{ $('collection.no_tokens')}}</p>
9
+ <p>{{ $t('collection.no_tokens')}}</p>
10
10
  </div>
11
11
  </slot>
12
12
  </template>
@@ -38,7 +38,9 @@ const isMe = useIsMeCheck(id)
38
38
  const { loading } = useLoadArtistData(id)
39
39
  const collections = computed(() => isMe.value
40
40
  ? store.forArtist(id.value)
41
- : store.forArtistOnlyMinted(id.value)
41
+ // TODO: Swap again
42
+ // : store.forArtistOnlyMinted(id.value)
43
+ : store.forArtist(id.value)
42
44
  )
43
45
 
44
46
  // Force update collections with no mints
@@ -66,8 +66,6 @@
66
66
  </template>
67
67
 
68
68
  <script setup lang="ts">
69
- import CountDownUntil from '../CountDownUntil.vue';
70
-
71
69
  const { token } = defineProps<{
72
70
  token: Token
73
71
  }>()
package/nuxt.config.ts CHANGED
@@ -20,7 +20,7 @@ export default defineNuxtConfig({
20
20
  creatorAddress: '',
21
21
  defaultAvatar: '/icons/opepen.svg',
22
22
  description: 'To mint is a human right.',
23
- factoryAddress: '0xdc27b70874E36f00290Bd588D5B31AD510ca88a5',
23
+ factoryAddress: '0x750C5a6CFD40C9CaA48C31D87AC2a26101Acd517',
24
24
  platformUrl: 'https://networked.art',
25
25
  rpc1: 'https://ethereum-sepolia.rpc.subquery.network/public',
26
26
  rpc2: 'https://ethereum-sepolia-rpc.publicnode.com',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visualizevalue/mint-app-base",
3
- "version": "0.1.67",
3
+ "version": "0.1.68",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {