@visualizevalue/mint-app-base 0.0.4 → 0.0.6

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.
@@ -332,7 +332,7 @@ export const useOnchainStore = () => {
332
332
  const maxRangeBlock = toBlock - 5000n
333
333
  const mintedAtBlock = token.untilBlock - 7200n
334
334
  const fromBlock = token.mintsFetchedUntilBlock > maxRangeBlock
335
- ? token.mintsFetchedUntilBlock
335
+ ? token.mintsFetchedUntilBlock + 1n
336
336
  : maxRangeBlock > mintedAtBlock
337
337
  ? maxRangeBlock
338
338
  : mintedAtBlock
@@ -1,6 +1,5 @@
1
- // import { custom, fallback } from 'viem'
2
1
  import { VueQueryPlugin } from '@tanstack/vue-query'
3
- import { http, cookieStorage, createConfig, createStorage, WagmiPlugin, fallback, custom } from '@wagmi/vue'
2
+ import { http, cookieStorage, createConfig, createStorage, WagmiPlugin, fallback } from '@wagmi/vue'
4
3
  import { mainnet, sepolia, holesky, localhost } from '@wagmi/vue/chains'
5
4
  import { coinbaseWallet, injected, metaMask, walletConnect } from '@wagmi/vue/connectors'
6
5
  import type { CustomTransport, Transport } from 'viem'
@@ -44,7 +43,7 @@ export default defineNuxtPlugin(nuxtApp => {
44
43
  }),
45
44
  ssr: true,
46
45
  transports: {
47
- [mainnet.id]: transports,
46
+ [mainnet.id]: http(), // TODO: replace this with custom transports on mainnet deployment
48
47
  [sepolia.id]: transports,
49
48
  [holesky.id]: transports,
50
49
  [localhost.id]: transports,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visualizevalue/mint-app-base",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {