@visualizevalue/mint-app-base 0.1.67 → 0.1.69

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
@@ -16,7 +16,7 @@ NUXT_PUBLIC_CREATOR_ADDRESS=0xc8f8e2F59Dd95fF67c3d39109ecA2e2A017D4c8a
16
16
  # =========================
17
17
  # SERVICES
18
18
  # =========================
19
- NUXT_PUBLIC_BLOCK_EXPLORER=https://sepolia.etherscan.io
19
+ NUXT_PUBLIC_BLOCK_EXPLORER=https://etherscan.io
20
20
  NUXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=
21
21
  NUXT_PUBLIC_RPC1=
22
22
  NUXT_PUBLIC_RPC2=
@@ -25,5 +25,11 @@ NUXT_PUBLIC_RPC3=
25
25
  # =========================
26
26
  # ONCHAIN
27
27
  # =========================
28
- NUXT_PUBLIC_FACTORY_ADDRESS=0xdc27b70874E36f00290Bd588D5B31AD510ca88a5
29
- NUXT_PUBLIC_CHAIN_ID=11155111
28
+
29
+ # # SEPOLIA
30
+ # NUXT_PUBLIC_FACTORY_ADDRESS=0x750C5a6CFD40C9CaA48C31D87AC2a26101Acd517
31
+ # NUXT_PUBLIC_CHAIN_ID=11155111
32
+
33
+ # # MAINNET
34
+ # NUXT_PUBLIC_FACTORY_ADDRESS=0xd717Fe677072807057B03705227EC3E3b467b670
35
+ # NUXT_PUBLIC_CHAIN_ID=1
@@ -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
@@ -15,16 +15,16 @@ export default defineNuxtConfig({
15
15
 
16
16
  runtimeConfig: {
17
17
  public: {
18
- blockExplorer: 'https://sepolia.etherscan.io',
18
+ blockExplorer: 'https://etherscan.io',
19
19
  chainId: 1337,
20
20
  creatorAddress: '',
21
21
  defaultAvatar: '/icons/opepen.svg',
22
22
  description: 'To mint is a human right.',
23
- factoryAddress: '0xdc27b70874E36f00290Bd588D5B31AD510ca88a5',
23
+ factoryAddress: '0xd717Fe677072807057B03705227EC3E3b467b670',
24
24
  platformUrl: 'https://networked.art',
25
- rpc1: 'https://ethereum-sepolia.rpc.subquery.network/public',
26
- rpc2: 'https://ethereum-sepolia-rpc.publicnode.com',
27
- rpc3: 'https://1rpc.io/sepolia',
25
+ rpc1: 'https://eth.llamarpc.com',
26
+ rpc2: 'https://ethereum-rpc.publicnode.com',
27
+ rpc3: 'https://eth.drpc.org',
28
28
  title: 'Mint',
29
29
  walletConnectProjectId: '',
30
30
  }
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.69",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {
@@ -46,7 +46,7 @@ export default defineNuxtPlugin(nuxtApp => {
46
46
  }),
47
47
  ssr: true,
48
48
  transports: {
49
- [mainnet.id]: http(), // TODO: replace this with custom transports on mainnet deployment
49
+ [mainnet.id]: transports,
50
50
  [sepolia.id]: transports,
51
51
  [holesky.id]: transports,
52
52
  [localhost.id]: transports,