nftychat-universe 1.1.0 → 1.2.0
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 +10 -6
- package/dist/index.cjs.js +85 -105
- package/dist/index.esm.js +85 -105
- package/package.json +3 -2
- package/dist/842dfae215424b79.svg +0 -10
- package/nftychat-universe-v1.0.0.tgz +0 -0
package/README.md
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
# nftychat-universe
|
2
|
-
|
2
|
+
nftychat universe is a suite of react components that add messaging
|
3
|
+
capabilities to your site with just a few lines of code.
|
3
4
|
|
4
5
|
## Install
|
5
6
|
```
|
6
|
-
yarn add nftychat-universe
|
7
|
+
yarn add nftychat-universe ethers wagmi
|
7
8
|
```
|
8
9
|
or
|
9
10
|
```
|
10
|
-
npm install nftychat-universe
|
11
|
+
npm install nftychat-universe ethers wagmi
|
11
12
|
```
|
12
13
|
|
13
14
|
## UniversalDm
|
@@ -16,11 +17,14 @@ import the component
|
|
16
17
|
import {UniversalDm} from 'nftychat-universe';
|
17
18
|
```
|
18
19
|
|
19
|
-
Then
|
20
|
+
Then add the component. Customize your address, displayName and theme.
|
20
21
|
```
|
21
22
|
<UniversalDm
|
22
|
-
|
23
|
-
|
23
|
+
address="0x534631Bcf33BDb069fB20A93d2fdb9e4D4dD42CF"
|
24
|
+
displayName="slobo.eth"
|
25
|
+
theme="dark"
|
24
26
|
/>
|
25
27
|
```
|
26
28
|
|
29
|
+
Check out a demo and more information at [nftychat.xyz/universe](https://nftychat.xyz/universe)
|
30
|
+
|