@visualizevalue/mint-app-base 0.1.68 → 0.1.70

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=0x750C5a6CFD40C9CaA48C31D87AC2a26101Acd517
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
@@ -3,7 +3,7 @@ import { type GetBalanceReturnType } from '@wagmi/core'
3
3
  import { parseAbiItem, type PublicClient } from 'viem'
4
4
  import type { MintEvent } from '~/utils/types'
5
5
 
6
- export const CURRENT_STATE_VERSION = 7
6
+ export const CURRENT_STATE_VERSION = 8
7
7
  export const MAX_BLOCK_RANGE = 1800n
8
8
  export const MINT_BLOCKS = BLOCKS_PER_DAY
9
9
 
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: '0x750C5a6CFD40C9CaA48C31D87AC2a26101Acd517',
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.68",
3
+ "version": "0.1.70",
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,