@visualizevalue/mint-app-base 0.1.31 → 0.1.33
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/README.md +12 -4
- package/{router.options.ts → app/router.options.ts} +1 -0
- package/package.json +1 -1
- package/pages/index.vue +4 -0
package/README.md
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
# Mint App
|
|
2
2
|
|
|
3
|
-
This application
|
|
3
|
+
This application interacts with the "Mint" Factory + Collection contracts.
|
|
4
|
+
It enables artists to mint and sell their art on Ethereum mainnet
|
|
5
|
+
while maintaining full control over the contracts and with all freedom
|
|
6
|
+
to customize the application to their liking.
|
|
7
|
+
|
|
8
|
+
This application is built with VueJS and Nuxt;
|
|
9
|
+
two beautiful frameworks for building web based interfaces.
|
|
10
|
+
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction)
|
|
11
|
+
to learn more.
|
|
4
12
|
|
|
5
13
|
## Setup
|
|
6
14
|
|
|
7
15
|
Make sure to install the dependencies:
|
|
8
16
|
|
|
9
17
|
```bash
|
|
10
|
-
|
|
18
|
+
pnpm install
|
|
11
19
|
```
|
|
12
20
|
|
|
13
21
|
## Development Server
|
|
@@ -15,10 +23,10 @@ yarn install
|
|
|
15
23
|
Start the development server on `http://mint.test:1618`:
|
|
16
24
|
|
|
17
25
|
```bash
|
|
18
|
-
|
|
26
|
+
pnpm dev
|
|
19
27
|
```
|
|
20
28
|
|
|
21
29
|
## To-Do's
|
|
22
30
|
|
|
23
|
-
- [ ] Refactor AppHeader titles (breadcrumb).
|
|
31
|
+
- [ ] Refactor AppHeader titles (breadcrumb).
|
|
24
32
|
|
package/package.json
CHANGED