@xyo-network/react-module 2.48.7 → 2.49.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/package.json CHANGED
@@ -11,15 +11,15 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@xylabs/eth-address": "^2.7.6",
14
- "@xylabs/react-async-effect": "^2.17.1",
15
- "@xylabs/react-button": "^2.17.1",
16
- "@xylabs/react-crypto": "^2.17.1",
17
- "@xylabs/react-flexbox": "^2.17.1",
18
- "@xylabs/react-identicon": "^2.17.1",
19
- "@xyo-network/archivist": "^2.55.4",
20
- "@xyo-network/diviner": "^2.55.4",
21
- "@xyo-network/module": "^2.55.4",
22
- "@xyo-network/react-shared": "^2.48.7"
14
+ "@xylabs/react-async-effect": "^2.17.2",
15
+ "@xylabs/react-button": "^2.17.2",
16
+ "@xylabs/react-crypto": "^2.17.2",
17
+ "@xylabs/react-flexbox": "^2.17.2",
18
+ "@xylabs/react-identicon": "^2.17.2",
19
+ "@xyo-network/archivist": "^2.56.0",
20
+ "@xyo-network/diviner": "^2.56.0",
21
+ "@xyo-network/module": "^2.56.0",
22
+ "@xyo-network/react-shared": "^2.49.1"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@ethersproject/address": "^5.7.0",
@@ -27,16 +27,16 @@
27
27
  "@ethersproject/networks": "^5.7.1",
28
28
  "@ethersproject/providers": "^5.7.2",
29
29
  "@ethersproject/solidity": "^5.7.0",
30
- "@storybook/react": "^7.0.6",
30
+ "@storybook/react": "^7.0.7",
31
31
  "@uniswap/sdk": "^3.0.3",
32
32
  "@uniswap/sdk-core": "^3.2.2",
33
33
  "@uniswap/v3-sdk": "^3.9.0",
34
- "@xylabs/ts-scripts-yarn3": "^2.16.5",
35
- "@xylabs/tsconfig-react": "^2.16.5",
36
- "@xyo-network/crypto-asset-plugin": "^2.55.4",
37
- "@xyo-network/node": "^2.55.4",
38
- "require-from-string": "^2.0.2",
39
- "typescript": "^4.9.5"
34
+ "@xylabs/ts-scripts-yarn3": "^2.17.6",
35
+ "@xylabs/tsconfig-react": "^2.17.5",
36
+ "@xyo-network/crypto-asset-plugin": "^2.56.0",
37
+ "@xyo-network/diviner-address-history": "^2.56.0",
38
+ "@xyo-network/node": "^2.56.0",
39
+ "typescript": "^5.0.4"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@mui/icons-material": "^5",
@@ -90,5 +90,5 @@
90
90
  },
91
91
  "sideEffects": false,
92
92
  "types": "dist/types/index.d.ts",
93
- "version": "2.48.7"
93
+ "version": "2.49.1"
94
94
  }
@@ -1,6 +1,7 @@
1
1
  import { Meta, StoryFn } from '@storybook/react'
2
2
  import { useAsyncEffect } from '@xylabs/react-async-effect'
3
- import { AddressHistoryDivinerConfigSchema, DivinerModule, MemoryAddressHistoryDiviner } from '@xyo-network/diviner'
3
+ import { DivinerModule } from '@xyo-network/diviner'
4
+ import { AddressHistoryDiviner, AddressHistoryDivinerConfigSchema } from '@xyo-network/diviner-address-history'
4
5
  import { useState } from 'react'
5
6
 
6
7
  import { DivinerCard } from './Card'
@@ -28,7 +29,7 @@ const Template: StoryFn<typeof DivinerCard> = () => {
28
29
  // eslint-disable-next-line react-hooks/exhaustive-deps
29
30
  async (mounted) => {
30
31
  if (!module) {
31
- const newModule = await MemoryAddressHistoryDiviner.create({
32
+ const newModule = await AddressHistoryDiviner.create({
32
33
  config: {
33
34
  address: '',
34
35
  schema: AddressHistoryDivinerConfigSchema,