hiero-explorer 1.0.1
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 +49 -0
- package/package.json +13 -0
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
2
|
+
|
|
3
|
+
# hashgraph/hedera-mirror-node-explorer
|
|
4
|
+
|
|
5
|
+
Visual Explorer for the Hiero DLT.
|
|
6
|
+
|
|
7
|
+
## :warning: Package Distribution :warning:
|
|
8
|
+
|
|
9
|
+
This package is a placeholder for the `hedera-mirror-node-explorer` project.
|
|
10
|
+
The source code for the project can be found at [hashgraph/hedera-mirror-node-explorer](https://github.com/hashgraph/hedera-mirror-node-explorer).
|
|
11
|
+
|
|
12
|
+
The Hiero Explorer is VueJS based web application which is not designed/intended as a reusable NodeJS library or package.
|
|
13
|
+
Therefore, it is not published to the [npmjs.com](https://www.npmjs.com/) registry and is intentionally marked as a private package.
|
|
14
|
+
|
|
15
|
+
## :rotating_light: Placeholder Package :rotating_light:
|
|
16
|
+
|
|
17
|
+
**_Please do not use this package as it does not contain any source code or functionality._**
|
|
18
|
+
|
|
19
|
+
This is a placeholder package to redirect users to the official distribution channels for the Hiero Explorer.
|
|
20
|
+
|
|
21
|
+
We recommend using the official distribution channels, listed below, to deploy the latest version of the Hiero Explorer.
|
|
22
|
+
|
|
23
|
+
## Official Distribution Channels
|
|
24
|
+
|
|
25
|
+
- [Helm Chart Repository](https://hashgraph.github.io/hedera-mirror-node-explorer/charts/)
|
|
26
|
+
```shell
|
|
27
|
+
helm repo add hedera-mirror-node-explorer https://hashgraph.github.io/hedera-mirror-node-explorer/charts/
|
|
28
|
+
```
|
|
29
|
+
- [Github Container Registry](https://github.com/hashgraph/hedera-mirror-node-explorer/pkgs/container/hedera-mirror-node-explorer%2Fhiero-explorer)
|
|
30
|
+
```shell
|
|
31
|
+
docker pull ghcr.io/hashgraph/hedera-mirror-node-explorer/hiero-explorer:0.2.1
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Contributing
|
|
35
|
+
|
|
36
|
+
Contributions are welcome. Please see the
|
|
37
|
+
[contributing guide](https://github.com/hashgraph/.github/blob/main/CONTRIBUTING.md)
|
|
38
|
+
to see how you can get involved.
|
|
39
|
+
|
|
40
|
+
## Code of Conduct
|
|
41
|
+
|
|
42
|
+
This project is governed by the
|
|
43
|
+
[Contributor Covenant Code of Conduct](https://github.com/hashgraph/.github/blob/main/CODE_OF_CONDUCT.md). By
|
|
44
|
+
participating, you are expected to uphold this code of conduct. Please report unacceptable behavior
|
|
45
|
+
to [oss@hedera.com](mailto:oss@hedera.com).
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
[Apache License 2.0](LICENSE)
|
package/package.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hiero-explorer",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "A placeholder package for unpublished projects.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {},
|
|
7
|
+
"author": "Nathan Klick <nathan@swirldslabs.com>",
|
|
8
|
+
"license": "Apache-2.0",
|
|
9
|
+
"private": false,
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
}
|
|
13
|
+
}
|