@w3ux/react-connect-kit 5.0.1 → 5.0.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.
Files changed (2) hide show
  1. package/README.md +1 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -46,14 +46,13 @@ First-party adaptors:
46
46
  ```tsx
47
47
  import { ConnectProvider } from '@w3ux/react-connect-kit'
48
48
  import { LedgerAdaptor } from '@w3ux/ledger-connect'
49
- import { VaultAdaptor } from '@w3ux/vault-connect'
50
49
 
51
50
  function App() {
52
51
  return (
53
52
  <ConnectProvider
54
53
  ss58={0}
55
54
  dappName="My Dapp"
56
- adaptors={[LedgerAdaptor, VaultAdaptor]}
55
+ adaptors={[LedgerAdaptor]}
57
56
  >
58
57
  {/* Your app content */}
59
58
  </ConnectProvider>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w3ux/react-connect-kit",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "license": "GPL-3.0-only",
5
5
  "type": "module",
6
6
  "description": "Providers and hooks for connecting to web3 wallets and interacting with accounts",