@xyo-network/xl1-blockies 1.28.0 → 1.28.2
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 +81 -6
- package/package.json +24 -24
package/README.md
CHANGED
|
@@ -1,24 +1,99 @@
|
|
|
1
|
+
[![logo][]][logo-link]
|
|
2
|
+
|
|
1
3
|
# @xyo-network/xl1-blockies
|
|
2
4
|
|
|
3
|
-
[![npm
|
|
4
|
-
[![license
|
|
5
|
+
[![npm-badge][]][npm-link]
|
|
6
|
+
[![license-badge][]][license-link]
|
|
7
|
+
|
|
8
|
+
> React Blockies components for XL1 — deterministic identicons for addresses and accounts.
|
|
5
9
|
|
|
6
|
-
|
|
10
|
+
## About
|
|
11
|
+
|
|
12
|
+
This package provides the React Blockies components used throughout the XL1 React ecosystem to render visual identicons for addresses. It's bundled into [`@xyo-network/xl1-react-client-sdk`](https://www.npmjs.com/package/@xyo-network/xl1-react-client-sdk) — install this package directly only when you want the blockies components without the rest of the React client SDK.
|
|
7
13
|
|
|
8
14
|
## Install
|
|
9
15
|
|
|
16
|
+
Using npm:
|
|
17
|
+
|
|
18
|
+
```sh
|
|
19
|
+
npm i --save @xyo-network/xl1-blockies
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Using yarn:
|
|
23
|
+
|
|
10
24
|
```sh
|
|
11
|
-
|
|
25
|
+
yarn add @xyo-network/xl1-blockies
|
|
12
26
|
```
|
|
13
27
|
|
|
28
|
+
Using pnpm:
|
|
29
|
+
|
|
30
|
+
```sh
|
|
31
|
+
pnpm add @xyo-network/xl1-blockies
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Using bun:
|
|
35
|
+
|
|
36
|
+
```sh
|
|
37
|
+
bun add @xyo-network/xl1-blockies
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## What's Inside
|
|
41
|
+
|
|
42
|
+
- React components for rendering deterministic identicons from XL1 addresses
|
|
43
|
+
- Designed to drop into MUI 7 + React 19 dApps
|
|
44
|
+
|
|
45
|
+
## Peer Dependencies
|
|
46
|
+
|
|
47
|
+
This package targets the same React/MUI stack as the rest of the XL1 React SDK. See [`package.json`](./package.json) for the exact `peerDependencies` ranges.
|
|
48
|
+
|
|
49
|
+
## Building Locally
|
|
50
|
+
|
|
51
|
+
```sh
|
|
52
|
+
xy build @xyo-network/xl1-blockies
|
|
53
|
+
xy test @xyo-network/xl1-blockies
|
|
54
|
+
xy lint @xyo-network/xl1-blockies
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Maintainers
|
|
58
|
+
|
|
59
|
+
<table>
|
|
60
|
+
<tr>
|
|
61
|
+
<td align="center" valign="top" width="120">
|
|
62
|
+
<a href="https://github.com/arietrouw">
|
|
63
|
+
<img src="https://github.com/arietrouw.png" width="80" height="80" alt="Arie Trouw" /><br />
|
|
64
|
+
<sub><b>Arie Trouw</b></sub>
|
|
65
|
+
</a>
|
|
66
|
+
<br />
|
|
67
|
+
<a href="https://arietrouw.com">arietrouw.com</a>
|
|
68
|
+
</td>
|
|
69
|
+
<td align="center" valign="top" width="120">
|
|
70
|
+
<a href="https://github.com/jonesmac">
|
|
71
|
+
<img src="https://github.com/jonesmac.png" width="80" height="80" alt="Matt Jones" /><br />
|
|
72
|
+
<sub><b>Matt Jones</b></sub>
|
|
73
|
+
</a>
|
|
74
|
+
</td>
|
|
75
|
+
<td align="center" valign="top" width="120">
|
|
76
|
+
<a href="https://github.com/JoelBCarter">
|
|
77
|
+
<img src="https://github.com/JoelBCarter.png" width="80" height="80" alt="Joel Carter" /><br />
|
|
78
|
+
<sub><b>Joel Carter</b></sub>
|
|
79
|
+
</a>
|
|
80
|
+
</td>
|
|
81
|
+
</tr>
|
|
82
|
+
</table>
|
|
14
83
|
|
|
15
84
|
## License
|
|
16
85
|
|
|
17
|
-
See the [LICENSE](LICENSE) file
|
|
86
|
+
See the [LICENSE](./LICENSE) file (LGPL-3.0-only).
|
|
87
|
+
|
|
88
|
+
## Credits
|
|
18
89
|
|
|
90
|
+
[Made with 🔥 and ❄️ by XYO](https://xyo.network)
|
|
19
91
|
|
|
92
|
+
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|
|
93
|
+
[logo-link]: https://xyo.network
|
|
20
94
|
|
|
21
95
|
[npm-badge]: https://img.shields.io/npm/v/@xyo-network/xl1-blockies.svg
|
|
22
96
|
[npm-link]: https://www.npmjs.com/package/@xyo-network/xl1-blockies
|
|
97
|
+
|
|
23
98
|
[license-badge]: https://img.shields.io/npm/l/@xyo-network/xl1-blockies.svg
|
|
24
|
-
[license-link]:
|
|
99
|
+
[license-link]: ./LICENSE
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@xyo-network/xl1-blockies",
|
|
4
|
-
"version": "1.28.
|
|
4
|
+
"version": "1.28.2",
|
|
5
5
|
"description": "XL1 React SDK Blockies",
|
|
6
6
|
"homepage": "https://xylabs.com",
|
|
7
7
|
"bugs": {
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"@types/react": "^19.2.14",
|
|
49
49
|
"@xylabs/react-theme": "~7.2.3",
|
|
50
50
|
"@xylabs/sdk-js": "^5.1.1",
|
|
51
|
-
"@xylabs/toolchain": "~7.13.
|
|
52
|
-
"@xylabs/tsconfig": "~7.13.
|
|
53
|
-
"@xylabs/tsconfig-dom": "~7.13.
|
|
54
|
-
"@xylabs/tsconfig-react": "~7.13.
|
|
51
|
+
"@xylabs/toolchain": "~7.13.13",
|
|
52
|
+
"@xylabs/tsconfig": "~7.13.13",
|
|
53
|
+
"@xylabs/tsconfig-dom": "~7.13.13",
|
|
54
|
+
"@xylabs/tsconfig-react": "~7.13.13",
|
|
55
55
|
"async-mutex": "^0.5.0",
|
|
56
56
|
"bn.js": "^5.2.3",
|
|
57
57
|
"buffer": "^6.0.3",
|
|
@@ -70,25 +70,25 @@
|
|
|
70
70
|
"zod": "~4.4.3"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
|
-
"@mui/icons-material": "
|
|
74
|
-
"@mui/material": "
|
|
75
|
-
"@opentelemetry/api": "
|
|
76
|
-
"@opentelemetry/sdk-trace-base": "
|
|
77
|
-
"@react-spring/web": "
|
|
78
|
-
"@xylabs/react-theme": "
|
|
79
|
-
"@xylabs/sdk-js": "
|
|
80
|
-
"async-mutex": "
|
|
81
|
-
"bn.js": "
|
|
82
|
-
"buffer": "
|
|
83
|
-
"chalk": "
|
|
84
|
-
"ethers": "
|
|
85
|
-
"pako": "
|
|
86
|
-
"react": "
|
|
87
|
-
"react-dom": "
|
|
88
|
-
"react-is": "
|
|
89
|
-
"react-router-dom": "
|
|
90
|
-
"recharts": "
|
|
91
|
-
"zod": "
|
|
73
|
+
"@mui/icons-material": "^7.3",
|
|
74
|
+
"@mui/material": "^7.3",
|
|
75
|
+
"@opentelemetry/api": "^1.9",
|
|
76
|
+
"@opentelemetry/sdk-trace-base": "^2.7",
|
|
77
|
+
"@react-spring/web": "~10.0",
|
|
78
|
+
"@xylabs/react-theme": "~7.2",
|
|
79
|
+
"@xylabs/sdk-js": "^5.1",
|
|
80
|
+
"async-mutex": "^0.5",
|
|
81
|
+
"bn.js": "^5.2",
|
|
82
|
+
"buffer": "^6.0",
|
|
83
|
+
"chalk": "^5.6",
|
|
84
|
+
"ethers": "^6.16",
|
|
85
|
+
"pako": "^2.1",
|
|
86
|
+
"react": "^19.2",
|
|
87
|
+
"react-dom": "^19.2",
|
|
88
|
+
"react-is": "~19.2",
|
|
89
|
+
"react-router-dom": "^7.15",
|
|
90
|
+
"recharts": "~3.8",
|
|
91
|
+
"zod": "~4.4"
|
|
92
92
|
},
|
|
93
93
|
"engines": {
|
|
94
94
|
"node": ">=22.3"
|