@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://
|
|
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
|
-
|
|
29
|
-
|
|
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
|
|
@@ -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
|
-
:
|
|
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
|
package/nuxt.config.ts
CHANGED
|
@@ -15,16 +15,16 @@ export default defineNuxtConfig({
|
|
|
15
15
|
|
|
16
16
|
runtimeConfig: {
|
|
17
17
|
public: {
|
|
18
|
-
blockExplorer: 'https://
|
|
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: '
|
|
23
|
+
factoryAddress: '0xd717Fe677072807057B03705227EC3E3b467b670',
|
|
24
24
|
platformUrl: 'https://networked.art',
|
|
25
|
-
rpc1: 'https://
|
|
26
|
-
rpc2: 'https://ethereum-
|
|
27
|
-
rpc3: 'https://
|
|
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
package/plugins/2.wagmi.ts
CHANGED
|
@@ -46,7 +46,7 @@ export default defineNuxtPlugin(nuxtApp => {
|
|
|
46
46
|
}),
|
|
47
47
|
ssr: true,
|
|
48
48
|
transports: {
|
|
49
|
-
[mainnet.id]:
|
|
49
|
+
[mainnet.id]: transports,
|
|
50
50
|
[sepolia.id]: transports,
|
|
51
51
|
[holesky.id]: transports,
|
|
52
52
|
[localhost.id]: transports,
|