nftychat-universe 1.0.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 CHANGED
@@ -1,26 +1,30 @@
1
1
  # nftychat-universe
2
- A collection of nftychat add ons to your site
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
14
15
  import the component
15
16
  ```
16
- import {UniversalDm} from 'nftychat-universe'
17
+ import {UniversalDm} from 'nftychat-universe';
17
18
  ```
18
19
 
19
- Then replace sample address and sampleDisplayName with the user you're trying to dm.
20
+ Then add the component. Customize your address, displayName and theme.
20
21
  ```
21
22
  <UniversalDm
22
- address={sampleAddress}
23
- displayName={sampleDisplayName}
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
+