@xyo-network/react-chain-blockchain 1.3.8 → 1.3.9
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/dist/browser/index.mjs +219 -270
- package/dist/browser/index.mjs.map +1 -1
- package/dist/types/components/block/ProducerChip.d.ts +1 -1
- package/dist/types/components/block/ProducerChip.d.ts.map +1 -1
- package/dist/types/components/block/helpers/blockProducer.d.ts +1 -1
- package/dist/types/components/block/helpers/blockProducer.d.ts.map +1 -1
- package/dist/types/components/block/helpers/payloadCountsFromBlock.d.ts +1 -1
- package/dist/types/components/block/helpers/payloadCountsFromBlock.d.ts.map +1 -1
- package/dist/types/components/block/hooks/useBlockProducer.d.ts +1 -1
- package/dist/types/components/block/hooks/useBlockProducer.d.ts.map +1 -1
- package/dist/types/components/block/hooks/useDynamicBlockComponents.d.ts +1 -1
- package/dist/types/components/block/hooks/useDynamicBlockComponents.d.ts.map +1 -1
- package/dist/types/components/block/hooks/usePayloadCountsFromBlock.d.ts +1 -1
- package/dist/types/components/block/hooks/usePayloadCountsFromBlock.d.ts.map +1 -1
- package/dist/types/components/block/hooks/useStaticBlockComponents.d.ts +1 -1
- package/dist/types/components/block/hooks/useStaticBlockComponents.d.ts.map +1 -1
- package/dist/types/components/block/menu/Expanded.d.ts +1 -1
- package/dist/types/components/block/menu/Expanded.d.ts.map +1 -1
- package/dist/types/components/block/table/cell/BlockNumber.d.ts.map +1 -1
- package/dist/types/components/block/table/cell/PayloadCounts.d.ts.map +1 -1
- package/dist/types/components/block/table/cell/TransactionCount.d.ts.map +1 -1
- package/dist/types/components/block/table/cell/Verification.d.ts +1 -0
- package/dist/types/components/block/table/cell/Verification.d.ts.map +1 -1
- package/dist/types/components/block/table/cell/hooks/useLinkedBlockItem.d.ts.map +1 -1
- package/dist/types/components/block/table/cell/lib/BlockTableCellProps.d.ts +1 -1
- package/dist/types/components/block/table/cell/lib/BlockTableCellProps.d.ts.map +1 -1
- package/dist/types/components/block/table/row/TableRow.d.ts +1 -0
- package/dist/types/components/block/table/row/TableRow.d.ts.map +1 -1
- package/dist/types/components/chain/hooks/useOnBlock.d.ts +1 -1
- package/dist/types/components/chain/hooks/useOnBlock.d.ts.map +1 -1
- package/dist/types/components/chain/render/dynamic/hooks/useDynamicBlockRenderComponents.d.ts +1 -1
- package/dist/types/components/transactions/TransactionsQuickTipButton.d.ts +1 -1
- package/dist/types/components/transactions/TransactionsQuickTipButton.d.ts.map +1 -1
- package/dist/types/components/transactions/submit/Builder.d.ts +1 -1
- package/dist/types/components/transactions/submit/Builder.d.ts.map +1 -1
- package/dist/types/context/analyzer/state.d.ts +1 -1
- package/dist/types/context/analyzer/state.d.ts.map +1 -1
- package/dist/types/context/chain/State.d.ts +1 -1
- package/dist/types/context/chain/State.d.ts.map +1 -1
- package/dist/types/helpers/txsFromBlock.d.ts +2 -2
- package/dist/types/helpers/txsFromBlock.d.ts.map +1 -1
- package/dist/types/hooks/chain-iterator/ChainIteratorStore.d.ts +1 -1
- package/dist/types/hooks/chain-iterator/ChainIteratorStore.d.ts.map +1 -1
- package/dist/types/hooks/chain-iterator/useChainIteratorParams.d.ts +3 -3
- package/dist/types/hooks/chain-iterator/useChainIteratorParams.d.ts.map +1 -1
- package/dist/types/hooks/chain-iterator/useChainIteratorStore.d.ts +1 -1
- package/dist/types/hooks/chain-iterator/useChainIteratorStore.d.ts.map +1 -1
- package/dist/types/hooks/chain-iterator/useChainIteratorUpdatingHead.d.ts +1 -1
- package/dist/types/hooks/chain-iterator/useChainIteratorUpdatingHead.d.ts.map +1 -1
- package/dist/types/hooks/useIterateChain.d.ts +1 -1
- package/dist/types/hooks/useIterateChain.d.ts.map +1 -1
- package/dist/types/hooks/useTxsFromBlock.d.ts +2 -2
- package/dist/types/hooks/useTxsFromBlock.d.ts.map +1 -1
- package/dist/types/lib/getChainInformation.d.ts +1 -1
- package/dist/types/lib/getChainInformation.d.ts.map +1 -1
- package/dist/types/stories/buildRandomBlockchain.d.ts +1 -1
- package/dist/types/stories/buildRandomBlockchain.d.ts.map +1 -1
- package/dist/types/types/BlockComponentProps.d.ts +1 -1
- package/dist/types/types/BlockComponentProps.d.ts.map +1 -1
- package/dist/types/types/BlockComponents.d.ts +1 -1
- package/dist/types/types/BlockComponents.d.ts.map +1 -1
- package/dist/types/types/render/BlockChainRenderProps.d.ts +1 -1
- package/dist/types/types/render/BlockChainRenderProps.d.ts.map +1 -1
- package/package.json +37 -37
- package/src/components/block/ProducerChip.tsx +1 -1
- package/src/components/block/helpers/blockProducer.ts +1 -1
- package/src/components/block/helpers/payloadCountsFromBlock.ts +1 -1
- package/src/components/block/hooks/useBlockProducer.ts +1 -1
- package/src/components/block/hooks/useDynamicBlockComponents.ts +1 -1
- package/src/components/block/hooks/usePayloadCountsFromBlock.ts +1 -1
- package/src/components/block/hooks/useStaticBlockComponents.ts +1 -1
- package/src/components/block/menu/Expanded.tsx +1 -1
- package/src/components/block/table/cell/BlockNumber.tsx +6 -15
- package/src/components/block/table/cell/JsonView.tsx +13 -13
- package/src/components/block/table/cell/PayloadCounts.tsx +7 -14
- package/src/components/block/table/cell/TransactionCount.tsx +2 -7
- package/src/components/block/table/cell/Verification.tsx +10 -8
- package/src/components/block/table/cell/hooks/useLinkedBlockItem.tsx +1 -0
- package/src/components/block/table/cell/lib/BlockTableCellProps.ts +1 -1
- package/src/components/block/table/head/TableHead.tsx +1 -1
- package/src/components/block/table/row/TableRow.tsx +17 -5
- package/src/components/chain/hooks/useOnBlock.ts +1 -1
- package/src/components/payload/builder/producer-intent/Form.tsx +1 -1
- package/src/components/payload/builder/transfer/Form.tsx +2 -2
- package/src/components/transactions/TransactionsQuickTipButton.tsx +1 -1
- package/src/components/transactions/submit/Builder.tsx +2 -2
- package/src/components/transactions/submit/SubmitChain.tsx +2 -2
- package/src/context/analyzer/Provider.tsx +1 -1
- package/src/context/analyzer/state.ts +1 -1
- package/src/context/chain/State.ts +1 -1
- package/src/helpers/txsFromBlock.ts +2 -2
- package/src/hooks/chain-iterator/ChainIteratorStore.ts +1 -1
- package/src/hooks/chain-iterator/useChainIteratorParams.ts +2 -2
- package/src/hooks/chain-iterator/useChainIteratorStore.ts +1 -1
- package/src/hooks/chain-iterator/useChainIteratorUpdatingHead.ts +1 -1
- package/src/hooks/useIterateChain.ts +2 -2
- package/src/hooks/useTxsFromBlock.ts +1 -1
- package/src/lib/getChainInformation.ts +1 -1
- package/src/stories/ChainArchivistDelayedInsertDecorator.tsx +1 -1
- package/src/stories/ChainInfoContextDecorator.tsx +1 -1
- package/src/stories/buildRandomBlockchain.ts +1 -1
- package/src/types/BlockComponentProps.ts +1 -1
- package/src/types/BlockComponents.ts +1 -1
- package/src/types/render/BlockChainRenderProps.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ChipProps } from '@mui/material';
|
|
2
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
2
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
export interface BlockProducerChipProps extends ChipProps {
|
|
5
5
|
block?: HydratedBlock;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProducerChip.d.ts","sourceRoot":"","sources":["../../../../src/components/block/ProducerChip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAI9C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ProducerChip.d.ts","sourceRoot":"","sources":["../../../../src/components/block/ProducerChip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAI9C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAC9D,OAAO,KAAkB,MAAM,OAAO,CAAA;AAEtC,MAAM,WAAW,sBAAuB,SAAQ,SAAS;IACvD,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB;AACD,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAQ9D,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blockProducer.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/helpers/blockProducer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"blockProducer.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/helpers/blockProducer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAA;AAElE,eAAO,MAAM,aAAa,GAAI,OAAO,iBAAiB,sBAErD,CAAA"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { type HydratedBlock } from '@xyo-network/xl1-
|
|
1
|
+
import { type HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
2
2
|
export declare const payloadCountsFromBlock: ([block, payloads]: HydratedBlock) => [number, number];
|
|
3
3
|
//# sourceMappingURL=payloadCountsFromBlock.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payloadCountsFromBlock.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/helpers/payloadCountsFromBlock.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,aAAa,EAA6B,MAAM,
|
|
1
|
+
{"version":3,"file":"payloadCountsFromBlock.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/helpers/payloadCountsFromBlock.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,aAAa,EAA6B,MAAM,2BAA2B,CAAA;AAEzF,eAAO,MAAM,sBAAsB,GAAI,mBAAmB,aAAa,KAAG,CAAC,MAAM,EAAE,MAAM,CAKxF,CAAA"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
1
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
2
2
|
export declare const useBlockProducer: (block?: HydratedBlock) => Lowercase<string> | undefined;
|
|
3
3
|
//# sourceMappingURL=useBlockProducer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useBlockProducer.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/hooks/useBlockProducer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"useBlockProducer.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/hooks/useBlockProducer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAG9D,eAAO,MAAM,gBAAgB,GAAI,QAAQ,aAAa,kCAOrD,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HydratedBlock, XyoChainIteratorParams } from '@xyo-network/xl1-
|
|
1
|
+
import type { HydratedBlock, XyoChainIteratorParams } from '@xyo-network/xl1-protocol';
|
|
2
2
|
import type { ComponentType } from 'react';
|
|
3
3
|
import type { BlockChainRenderComponent, BlockComponentWithTxsProps } from '../../../types/index.ts';
|
|
4
4
|
export declare const useDynamicBlockComponents: (BlockComponent: ComponentType<BlockComponentWithTxsProps>, params?: XyoChainIteratorParams, maxBlocks?: number) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useDynamicBlockComponents.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/hooks/useDynamicBlockComponents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,sBAAsB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"useDynamicBlockComponents.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/hooks/useDynamicBlockComponents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAA;AACtF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAI1C,OAAO,KAAK,EACV,yBAAyB,EACJ,0BAA0B,EAChD,MAAM,yBAAyB,CAAA;AAGhC,eAAO,MAAM,yBAAyB,GAAI,gBAAgB,aAAa,CAAC,0BAA0B,CAAC,EAAE,SAAS,sBAAsB,EAAE,YAAY,MAAM;;wBAMrH,aAAa;CAuB/C,CAAA"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
1
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
2
2
|
export declare const usePayloadCountsFromBlock: (block?: HydratedBlock) => [number | undefined, number | undefined, Error | undefined];
|
|
3
3
|
//# sourceMappingURL=usePayloadCountsFromBlock.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"usePayloadCountsFromBlock.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/hooks/usePayloadCountsFromBlock.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"usePayloadCountsFromBlock.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/hooks/usePayloadCountsFromBlock.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAK9D,eAAO,MAAM,yBAAyB,GAAI,QAAQ,aAAa,KAAG,CAAC,MAAM,GAAG,SAAS,EAAE,MAAM,GAAG,SAAS,EAAE,KAAK,GAAG,SAAS,CAO3H,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HydratedBlock, XyoChainIteratorParams } from '@xyo-network/xl1-
|
|
1
|
+
import type { HydratedBlock, XyoChainIteratorParams } from '@xyo-network/xl1-protocol';
|
|
2
2
|
import type { ComponentType } from 'react';
|
|
3
3
|
import type { BlockComponentWithTxsProps } from '../../../types/index.ts';
|
|
4
4
|
export declare const useStaticBlockComponents: (BlockComponent: ComponentType<BlockComponentWithTxsProps>, params?: XyoChainIteratorParams, blocks?: HydratedBlock[]) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useStaticBlockComponents.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/hooks/useStaticBlockComponents.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,sBAAsB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"useStaticBlockComponents.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/hooks/useStaticBlockComponents.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAA;AACtF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAG1C,OAAO,KAAK,EAAuB,0BAA0B,EAAE,MAAM,yBAAyB,CAAA;AAG9F,eAAO,MAAM,wBAAwB,GACnC,gBAAgB,aAAa,CAAC,0BAA0B,CAAC,EACzD,SAAS,sBAAsB,EAC/B,SAAS,aAAa,EAAE;;;CAqBzB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Expanded.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/menu/Expanded.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"Expanded.d.ts","sourceRoot":"","sources":["../../../../../src/components/block/menu/Expanded.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAC9D,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,MAAM,WAAW,sBAAsB;IACrC,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB;AAED,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAqB9D,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockNumber.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/cell/BlockNumber.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BlockNumber.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/cell/BlockNumber.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAA;AAEzD,MAAM,WAAW,yBAA0B,SAAQ,mBAAmB;CAAG;AAEzE,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAcpE,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PayloadCounts.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/cell/PayloadCounts.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PayloadCounts.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/cell/PayloadCounts.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAA;AAEzD,MAAM,WAAW,gCAAiC,SAAQ,mBAAmB;CAAG;AAEhF,MAAM,WAAW,2BAA2B;IAC1C,KAAK,EAAE,IAAI,CAAA;IACX,eAAe,EAAE,MAAM,CAAA;IACvB,cAAc,EAAE,MAAM,CAAA;CACvB;AAED,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAAE,CAAC,gCAAgC,CA6ClF,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TransactionCount.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/cell/TransactionCount.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,KAAkB,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"TransactionCount.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/cell/TransactionCount.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,KAAkB,MAAM,OAAO,CAAA;AAItC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAA;AAEzD,MAAM,WAAW,mCAAoC,SAAQ,mBAAmB;CAAG;AAEnF,MAAM,WAAW,8BAA8B;IAC7C,KAAK,EAAE,IAAI,CAAA;IACX,YAAY,EAAE,MAAM,CAAA;CACrB;AAED,eAAO,MAAM,8BAA8B,EAAE,KAAK,CAAC,EAAE,CAAC,mCAAmC,CAqCxF,CAAA"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { BlockTableCellProps } from './lib/index.ts';
|
|
3
3
|
export interface BlockVerificationTableCellProps extends BlockTableCellProps {
|
|
4
|
+
deepValidation?: boolean;
|
|
4
5
|
}
|
|
5
6
|
export declare const BlockVerificationTableCell: React.FC<BlockVerificationTableCellProps>;
|
|
6
7
|
//# sourceMappingURL=Verification.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Verification.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/cell/Verification.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Verification.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/cell/Verification.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAA;AAEzD,MAAM,WAAW,+BAAgC,SAAQ,mBAAmB;IAC1E,cAAc,CAAC,EAAE,OAAO,CAAA;CACzB;AAED,eAAO,MAAM,0BAA0B,EAAE,KAAK,CAAC,EAAE,CAAC,+BAA+B,CAYhF,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useLinkedBlockItem.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/block/table/cell/hooks/useLinkedBlockItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAEhC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAEpE,eAAO,MAAM,kBAAkB,GAAI,OAAO,qBAAqB,EAAE,OAAO,MAAM,GAAG,MAAM,KAAG,CAAC,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,KAAK,IAAI,
|
|
1
|
+
{"version":3,"file":"useLinkedBlockItem.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/block/table/cell/hooks/useLinkedBlockItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAEhC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAEpE,eAAO,MAAM,kBAAkB,GAAI,OAAO,qBAAqB,EAAE,OAAO,MAAM,GAAG,MAAM,KAAG,CAAC,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,KAAK,IAAI,CAcpJ,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { TableCellProps } from '@mui/material';
|
|
2
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
2
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
3
3
|
export interface BlockTableCellProps extends TableCellProps {
|
|
4
4
|
block?: HydratedBlock;
|
|
5
5
|
linked?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockTableCellProps.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/block/table/cell/lib/BlockTableCellProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"BlockTableCellProps.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/block/table/cell/lib/BlockTableCellProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE9D,MAAM,WAAW,mBAAoB,SAAQ,cAAc;IACzD,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB"}
|
|
@@ -2,6 +2,7 @@ import type { TableRowProps } from '@mui/material';
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import type { BlockComponentProps } from '../../../../types/index.ts';
|
|
4
4
|
export interface BlockChainTableRowProps extends BlockComponentProps, TableRowProps {
|
|
5
|
+
deepValidation?: boolean;
|
|
5
6
|
linked?: boolean;
|
|
6
7
|
}
|
|
7
8
|
export declare const BlockChainTableRow: React.FC<BlockChainTableRowProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableRow.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/row/TableRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"TableRow.d.ts","sourceRoot":"","sources":["../../../../../../src/components/block/table/row/TableRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAA;AAKlD,OAAO,KAAkB,MAAM,OAAO,CAAA;AAEtC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAA;AAQrE,MAAM,WAAW,uBAAwB,SAAQ,mBAAmB,EAAE,aAAa;IACjF,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CA+BhE,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
1
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
2
2
|
export type PollingState = 'paused' | 'running';
|
|
3
3
|
export declare const useOnBlock: (initialHeadNumber?: number, onAddBlock?: (block: HydratedBlock) => Promise<void>, liveHead?: HydratedBlock, pollingState?: PollingState) => HydratedBlock[];
|
|
4
4
|
//# sourceMappingURL=useOnBlock.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useOnBlock.d.ts","sourceRoot":"","sources":["../../../../../src/components/chain/hooks/useOnBlock.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"useOnBlock.d.ts","sourceRoot":"","sources":["../../../../../src/components/chain/hooks/useOnBlock.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAG9D,MAAM,MAAM,YAAY,GAAG,QAAQ,GAAG,SAAS,CAAA;AAE/C,eAAO,MAAM,UAAU,GACrB,oBAAoB,MAAM,EAC1B,aAAa,CAAC,KAAK,EAAE,aAAa,KAAK,OAAO,CAAC,IAAI,CAAC,EACpD,WAAW,aAAa,EACxB,eAAe,YAAY,oBA6C5B,CAAA"}
|
package/dist/types/components/chain/render/dynamic/hooks/useDynamicBlockRenderComponents.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { BlockChainRenderProps, BlockComponentWithTxsProps } from '../../..
|
|
|
3
3
|
export declare const useDynamicBlockRenderComponents: (BlockComponent: ComponentType<BlockComponentWithTxsProps>, blockChainRenderProps?: BlockChainRenderProps) => {
|
|
4
4
|
errors: (Error | undefined)[];
|
|
5
5
|
blockChainRenderComponents: import("../../../../../types/BlockComponents.ts").BlockChainRenderComponent[];
|
|
6
|
-
blocksWhilePaused: import("@xyo-network/xl1-
|
|
6
|
+
blocksWhilePaused: import("@xyo-network/xl1-protocol").HydratedBlock[];
|
|
7
7
|
updatePollingState: ((newState: import("../../../../../context/index.ts").PollingState) => void) | undefined;
|
|
8
8
|
pollingState: import("../../../../../context/index.ts").PollingState | undefined;
|
|
9
9
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { QuickTipButtonProps } from '@xylabs/react-quick-tip-button';
|
|
2
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
2
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
export interface TransactionsQuickTipButtonQuickTipButtonProps extends QuickTipButtonProps {
|
|
5
5
|
block?: HydratedBlock;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TransactionsQuickTipButton.d.ts","sourceRoot":"","sources":["../../../../src/components/transactions/TransactionsQuickTipButton.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"TransactionsQuickTipButton.d.ts","sourceRoot":"","sources":["../../../../src/components/transactions/TransactionsQuickTipButton.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAC9D,OAAO,KAEN,MAAM,OAAO,CAAA;AAId,MAAM,WAAW,6CAA8C,SAAQ,mBAAmB;IACxF,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB;AAED,eAAO,MAAM,0BAA0B,EAAE,KAAK,CAAC,EAAE,CAAC,6CAA6C,CAyD9F,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { TransactionBoundWitnessFields } from '@xyo-network/xl1-
|
|
1
|
+
import type { TransactionBoundWitnessFields } from '@xyo-network/xl1-protocol';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
export interface ChainTransactionBuilder {
|
|
4
4
|
onSubmitTx?: (chainTx: TransactionBoundWitnessFields) => Promise<void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Builder.d.ts","sourceRoot":"","sources":["../../../../../src/components/transactions/submit/Builder.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"Builder.d.ts","sourceRoot":"","sources":["../../../../../src/components/transactions/submit/Builder.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,2BAA2B,CAAA;AAE9E,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,MAAM,WAAW,uBAAuB;IACtC,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,6BAA6B,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;CACvE;AAED,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAyCrE,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ContextExState } from '@xyo-network/react-shared';
|
|
2
|
-
import type { ChainAnalyzer, HydratedBlock } from '@xyo-network/xl1-
|
|
2
|
+
import type { ChainAnalyzer, HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
3
3
|
export type ChainAnalyzerIds = 'producers';
|
|
4
4
|
export type ChainAnalyzers = Record<ChainAnalyzerIds, ChainAnalyzer>;
|
|
5
5
|
export interface ChainAnalyzersState extends ContextExState {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../../../../src/context/analyzer/state.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../../../../src/context/analyzer/state.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE7E,MAAM,MAAM,gBAAgB,GAAG,WAAW,CAAA;AAE1C,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,CAAA;AAEpE,MAAM,WAAW,mBAAoB,SAAQ,cAAc;IACzD,YAAY,EAAE,CAAC,SAAS,EAAE,cAAc,KAAK,IAAI,CAAA;IACjD,SAAS,EAAE,cAAc,CAAA;IACzB,OAAO,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;IAChD,YAAY,EAAE,MAAM,CAAA;CACrB"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
2
2
|
import type { ContextExState } from '@xyo-network/react-shared';
|
|
3
|
-
import type { ChainBlockNumberIterator, ChainInformation } from '@xyo-network/xl1-
|
|
3
|
+
import type { ChainBlockNumberIterator, ChainInformation } from '@xyo-network/xl1-protocol';
|
|
4
4
|
export interface ChainInfoState extends ContextExState {
|
|
5
5
|
chainArchivist?: ArchivistInstance;
|
|
6
6
|
chainInformation?: ChainInformation;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../../../src/context/chain/State.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AACrE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC/D,OAAO,KAAK,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../../../src/context/chain/State.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AACrE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC/D,OAAO,KAAK,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAE3F,MAAM,WAAW,cAAe,SAAQ,cAAc;IACpD,cAAc,CAAC,EAAE,iBAAiB,CAAA;IAClC,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;IACnC,aAAa,CAAC,EAAE,wBAAwB,CAAA;CACzC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
1
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
2
2
|
export declare const txsFromBlock: (block: HydratedBlock) => Promise<[import("@xylabs/object").DeepRestrictToStringKeys<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
3
3
|
schema: string;
|
|
4
|
-
}> & Partial<import("@xyo-network/payload-model").PayloadMetaFields> & import("@xyo-network/payload-model").StorageMeta & import("@xylabs/object").DeepRestrictToStringKeys<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/boundwitness-model").BoundWitnessFields & import("@xyo-network/xl1-
|
|
4
|
+
}> & Partial<import("@xyo-network/payload-model").PayloadMetaFields> & import("@xyo-network/payload-model").StorageMeta & import("@xylabs/object").DeepRestrictToStringKeys<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/boundwitness-model").BoundWitnessFields & import("@xyo-network/xl1-protocol").TransactionBoundWitnessFields & object & Partial<import("@xyo-network/xl1-protocol").ExecutableFields> & import("@xyo-network/xl1-protocol").FromFields & {
|
|
5
5
|
schema: "network.xyo.boundwitness";
|
|
6
6
|
}> & import("@xyo-network/boundwitness-model").BoundWitnessMeta & {
|
|
7
7
|
$signatures: import("@xylabs/hex").Hex[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"txsFromBlock.d.ts","sourceRoot":"","sources":["../../../src/helpers/txsFromBlock.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"txsFromBlock.d.ts","sourceRoot":"","sources":["../../../src/helpers/txsFromBlock.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAG9D,eAAO,MAAM,YAAY,GAAU,OAAO,aAAa;;;;;;wBAGtD,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { XyoChainBlockNumberIterator } from '@xyo-network/chain-services';
|
|
2
|
-
import type { EventingChainBlockNumberIterator, HydratedBlock, XyoChainIteratorParams } from '@xyo-network/xl1-
|
|
2
|
+
import type { EventingChainBlockNumberIterator, HydratedBlock, XyoChainIteratorParams } from '@xyo-network/xl1-protocol';
|
|
3
3
|
export type Listener = (...args: Array<unknown>) => void;
|
|
4
4
|
export type ChainIteratorStoreValues = {
|
|
5
5
|
chainIterator: XyoChainBlockNumberIterator;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChainIteratorStore.d.ts","sourceRoot":"","sources":["../../../../src/hooks/chain-iterator/ChainIteratorStore.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,2BAA2B,EAAE,MAAM,6BAA6B,CAAA;AAEzE,OAAO,KAAK,EACV,gCAAgC,EAChC,aAAa,EACb,sBAAsB,EACvB,MAAM,
|
|
1
|
+
{"version":3,"file":"ChainIteratorStore.d.ts","sourceRoot":"","sources":["../../../../src/hooks/chain-iterator/ChainIteratorStore.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,2BAA2B,EAAE,MAAM,6BAA6B,CAAA;AAEzE,OAAO,KAAK,EACV,gCAAgC,EAChC,aAAa,EACb,sBAAsB,EACvB,MAAM,2BAA2B,CAAA;AAElC,MAAM,MAAM,QAAQ,GAAG,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,IAAI,CAAA;AAExD,MAAM,MAAM,wBAAwB,GAAG;IAAE,aAAa,EAAE,2BAA2B,CAAC;IAAC,KAAK,CAAC,EAAE,KAAK,CAAC;IAAC,IAAI,EAAE,aAAa,CAAA;CAAE,CAAA;AAEzH,qBAAa,kBAAkB;IAC7B,OAAO,CAAC,cAAc,CAA8C;IACpE,OAAO,CAAC,kBAAkB,CAAiB;IAC3C,OAAO,CAAC,qBAAqB,CAA4B;IACzD,OAAO,CAAC,OAAO,CAAsC;IAErD,IAAI,aAAa,IAAI,gCAAgC,CAEpD;IAED,IAAI,MAAM,IAAI,wBAAwB,CAErC;WAEY,MAAM,CAAC,MAAM,EAAE,sBAAsB,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAqChF,OAAO;IAOP,WAAW,IAAI,OAAO,CAAC,wBAAwB,CAAC;IAIhD,SAAS,CAAC,aAAa,EAAE,QAAQ;IAOjC,OAAO,CAAC,UAAU;CAKnB"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Hash } from '@xylabs/hex';
|
|
2
2
|
import type { ReadArchivist } from '@xyo-network/archivist-model';
|
|
3
|
-
import type { BlockBoundWitness } from '@xyo-network/xl1-
|
|
3
|
+
import type { BlockBoundWitness } from '@xyo-network/xl1-protocol';
|
|
4
4
|
import type { BlockChainIterator } from '../../types/index.ts';
|
|
5
5
|
export declare const resolveDefinedHead: (head: Hash, chainArchivist: ReadArchivist) => Promise<import("@xyo-network/boundwitness-model").Signed<BlockBoundWitness>>;
|
|
6
6
|
export declare const useChainIteratorParams: ({ chainArchivist, chainInformation, head, }: BlockChainIterator) => [{
|
|
@@ -15,10 +15,10 @@ export declare const useChainIteratorParams: ({ chainArchivist, chainInformation
|
|
|
15
15
|
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
16
16
|
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
17
17
|
} & import("@xyo-network/archivist-model").ArchivistParamFields & object, import("@xyo-network/archivist-model").ArchivistModuleEventData, import("@xyo-network/payload-model").Payload>;
|
|
18
|
-
chainInformation: import("@xyo-network/xl1-
|
|
18
|
+
chainInformation: import("@xyo-network/xl1-protocol").ChainInformation;
|
|
19
19
|
head: import("@xylabs/object").DeepRestrictToStringKeys<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
20
20
|
schema: string;
|
|
21
|
-
}> & Partial<import("@xyo-network/payload-model").PayloadMetaFields> & import("@xyo-network/payload-model").StorageMeta & import("@xylabs/object").DeepRestrictToStringKeys<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/boundwitness-model").BoundWitnessFields & import("@xyo-network/xl1-
|
|
21
|
+
}> & Partial<import("@xyo-network/payload-model").PayloadMetaFields> & import("@xyo-network/payload-model").StorageMeta & import("@xylabs/object").DeepRestrictToStringKeys<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/boundwitness-model").BoundWitnessFields & import("@xyo-network/xl1-protocol").BlockBoundWitnessFields & import("@xyo-network/xl1-protocol").BlockBoundWitnessMeta & {
|
|
22
22
|
schema: "network.xyo.boundwitness";
|
|
23
23
|
}> & import("@xyo-network/boundwitness-model").BoundWitnessMeta & {
|
|
24
24
|
$signatures: import("@xylabs/hex").Hex[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useChainIteratorParams.d.ts","sourceRoot":"","sources":["../../../../src/hooks/chain-iterator/useChainIteratorParams.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAEvC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAA;AAEjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"useChainIteratorParams.d.ts","sourceRoot":"","sources":["../../../../src/hooks/chain-iterator/useChainIteratorParams.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAEvC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAA;AAEjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAA;AAGlE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAE9D,eAAO,MAAM,kBAAkB,GAAU,MAAM,IAAI,EAAE,gBAAgB,aAAa,iFAajF,CAAA;AAED,eAAO,MAAM,sBAAsB,GAAI,6CAEpC,kBAAkB;;;;;;;;;;;;;;;;;;;;8FAcpB,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { XyoChainIteratorParams } from '@xyo-network/xl1-
|
|
1
|
+
import type { XyoChainIteratorParams } from '@xyo-network/xl1-protocol';
|
|
2
2
|
import type { ChainIteratorStoreValues } from './ChainIteratorStore.ts';
|
|
3
3
|
export declare const useChainIteratorStore: (chainIteratorParams?: XyoChainIteratorParams) => Partial<ChainIteratorStoreValues>;
|
|
4
4
|
//# sourceMappingURL=useChainIteratorStore.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useChainIteratorStore.d.ts","sourceRoot":"","sources":["../../../../src/hooks/chain-iterator/useChainIteratorStore.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"useChainIteratorStore.d.ts","sourceRoot":"","sources":["../../../../src/hooks/chain-iterator/useChainIteratorStore.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAA;AAMvE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,yBAAyB,CAAA;AAOvE,eAAO,MAAM,qBAAqB,GAAI,sBAAsB,sBAAsB,sCAmDjF,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
2
|
-
import type { ChainBlockNumberIterator } from '@xyo-network/xl1-
|
|
2
|
+
import type { ChainBlockNumberIterator } from '@xyo-network/xl1-protocol';
|
|
3
3
|
export interface ChainIteratorUpdatingHeadParams {
|
|
4
4
|
chainArchivist?: ArchivistInstance;
|
|
5
5
|
chainIterator?: ChainBlockNumberIterator;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useChainIteratorUpdatingHead.d.ts","sourceRoot":"","sources":["../../../../src/hooks/chain-iterator/useChainIteratorUpdatingHead.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAErE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"useChainIteratorUpdatingHead.d.ts","sourceRoot":"","sources":["../../../../src/hooks/chain-iterator/useChainIteratorUpdatingHead.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAErE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAA;AAGzE,MAAM,WAAW,+BAA+B;IAC9C,cAAc,CAAC,EAAE,iBAAiB,CAAA;IAClC,aAAa,CAAC,EAAE,wBAAwB,CAAA;IACxC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAGD,eAAO,MAAM,4BAA4B,GAAI,yDAE1C,+BAA+B,KAAG,KAAK,GAAG,SAuC5C,CAAA"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type { HydratedBlock, XyoChainIteratorParams } from '@xyo-network/xl1-
|
|
1
|
+
import type { HydratedBlock, XyoChainIteratorParams } from '@xyo-network/xl1-protocol';
|
|
2
2
|
export declare const useIterateChain: (chainIteratorParams?: XyoChainIteratorParams, maxDepth?: number) => [HydratedBlock[] | undefined, Error | undefined, import("@xylabs/react-promise").UsePromiseState | undefined];
|
|
3
3
|
//# sourceMappingURL=useIterateChain.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useIterateChain.d.ts","sourceRoot":"","sources":["../../../src/hooks/useIterateChain.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EACS,aAAa,EAAE,sBAAsB,EACzD,MAAM,
|
|
1
|
+
{"version":3,"file":"useIterateChain.d.ts","sourceRoot":"","sources":["../../../src/hooks/useIterateChain.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EACS,aAAa,EAAE,sBAAsB,EACzD,MAAM,2BAA2B,CAAA;AA8ClC,eAAO,MAAM,eAAe,GAC1B,sBAAsB,sBAAsB,EAC5C,WAAW,MAAM,kHAKlB,CAAA"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { type HydratedBlock } from '@xyo-network/xl1-
|
|
1
|
+
import { type HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
2
2
|
export declare const useTxsFromBlock: (block?: HydratedBlock) => [[import("@xylabs/object").DeepRestrictToStringKeys<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
3
3
|
schema: string;
|
|
4
|
-
}> & Partial<import("@xyo-network/payload-model").PayloadMetaFields> & import("@xyo-network/payload-model").StorageMeta & import("@xylabs/object").DeepRestrictToStringKeys<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/boundwitness-model").BoundWitnessFields & import("@xyo-network/xl1-
|
|
4
|
+
}> & Partial<import("@xyo-network/payload-model").PayloadMetaFields> & import("@xyo-network/payload-model").StorageMeta & import("@xylabs/object").DeepRestrictToStringKeys<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/boundwitness-model").BoundWitnessFields & import("@xyo-network/xl1-protocol").TransactionBoundWitnessFields & object & Partial<import("@xyo-network/xl1-protocol").ExecutableFields> & import("@xyo-network/xl1-protocol").FromFields & {
|
|
5
5
|
schema: "network.xyo.boundwitness";
|
|
6
6
|
}> & import("@xyo-network/boundwitness-model").BoundWitnessMeta & {
|
|
7
7
|
$signatures: import("@xylabs/hex").Hex[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTxsFromBlock.d.ts","sourceRoot":"","sources":["../../../src/hooks/useTxsFromBlock.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"useTxsFromBlock.d.ts","sourceRoot":"","sources":["../../../src/hooks/useTxsFromBlock.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAI9D,eAAO,MAAM,eAAe,GAAI,QAAQ,aAAa;;;;;;oHAMpD,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { Promisable } from '@xylabs/promise';
|
|
2
|
-
import type { ChainInformation } from '@xyo-network/xl1-
|
|
2
|
+
import type { ChainInformation } from '@xyo-network/xl1-protocol';
|
|
3
3
|
export declare const getChainInformation: () => Promisable<ChainInformation>;
|
|
4
4
|
//# sourceMappingURL=getChainInformation.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getChainInformation.d.ts","sourceRoot":"","sources":["../../../src/lib/getChainInformation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AACjD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"getChainInformation.d.ts","sourceRoot":"","sources":["../../../src/lib/getChainInformation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AACjD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAIjE,eAAO,MAAM,mBAAmB,QAAO,UAAU,CAAC,gBAAgB,CAGjE,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
1
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
2
2
|
export declare const buildRandomBlockChain: (blockCount?: number) => Promise<HydratedBlock[]>;
|
|
3
3
|
export declare const buildRandomBlockChainBlocksOnly: (blockCount?: number) => Promise<HydratedBlock[]>;
|
|
4
4
|
//# sourceMappingURL=buildRandomBlockchain.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buildRandomBlockchain.d.ts","sourceRoot":"","sources":["../../../src/stories/buildRandomBlockchain.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"buildRandomBlockchain.d.ts","sourceRoot":"","sources":["../../../src/stories/buildRandomBlockchain.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE9D,eAAO,MAAM,qBAAqB,GAAU,mBAAe,6BAO1D,CAAA;AAED,eAAO,MAAM,+BAA+B,GAAU,mBAAe,6BAGpE,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Hash } from '@xylabs/hex';
|
|
2
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
2
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
3
3
|
/** Interface for all components that render a single block */
|
|
4
4
|
export interface BlockComponentProps {
|
|
5
5
|
block: HydratedBlock;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockComponentProps.d.ts","sourceRoot":"","sources":["../../../src/types/BlockComponentProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"BlockComponentProps.d.ts","sourceRoot":"","sources":["../../../src/types/BlockComponentProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE9D,8DAA8D;AAC9D,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,aAAa,CAAA;IACpB,eAAe,CAAC,EAAE,OAAO,CAAA;CAC1B;AAED,gFAAgF;AAChF,MAAM,WAAW,0BAA2B,SAAQ,mBAAmB;IACrE,YAAY,EAAE,IAAI,EAAE,CAAA;CACrB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { NodesWithKeys } from '@xylabs/react-animation';
|
|
2
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
2
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol';
|
|
3
3
|
/** Interface for all block components meant to be rendered in a chain */
|
|
4
4
|
export interface BlockChainRenderComponent extends NodesWithKeys {
|
|
5
5
|
block: HydratedBlock;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockComponents.d.ts","sourceRoot":"","sources":["../../../src/types/BlockComponents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AAC5D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"BlockComponents.d.ts","sourceRoot":"","sources":["../../../src/types/BlockComponents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AAC5D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE9D,yEAAyE;AACzE,MAAM,WAAW,yBAA0B,SAAQ,aAAa;IAC9D,KAAK,EAAE,aAAa,CAAA;CACrB"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Hash } from '@xylabs/hex';
|
|
2
2
|
import type { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
3
|
-
import type { ChainInformation } from '@xyo-network/xl1-
|
|
3
|
+
import type { ChainInformation } from '@xyo-network/xl1-protocol';
|
|
4
4
|
/** Props that control the rendering (not blockchain specific) */
|
|
5
5
|
export interface RenderProps {
|
|
6
6
|
maxBlocks?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockChainRenderProps.d.ts","sourceRoot":"","sources":["../../../../src/types/render/BlockChainRenderProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AACrE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"BlockChainRenderProps.d.ts","sourceRoot":"","sources":["../../../../src/types/render/BlockChainRenderProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AACrE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAEjE,iEAAiE;AACjE,MAAM,WAAW,WAAW;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAED,sDAAsD;AACtD,MAAM,WAAW,kBAAkB;IACjC,cAAc,CAAC,EAAE,iBAAiB,CAAA;IAClC,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;IACnC,IAAI,CAAC,EAAE,IAAI,CAAA;CACZ;AAED,uCAAuC;AACvC,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,EAAE,WAAW;CAAG;AAEjF,gFAAgF;AAChF,MAAM,WAAW,yBAAyB;IACxC,qBAAqB,CAAC,EAAE,qBAAqB,CAAA;IAC7C,KAAK,CAAC,EAAE,KAAK,CAAA;CACd"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@xyo-network/react-chain-blockchain",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.9",
|
|
5
5
|
"description": "XYO Layer One React SDK Blockchain",
|
|
6
6
|
"homepage": "https://xylabs.com",
|
|
7
7
|
"bugs": {
|
|
@@ -37,40 +37,40 @@
|
|
|
37
37
|
"package-cycle": "echo Nothing to do"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@xylabs/assert": "^4.8.
|
|
41
|
-
"@xylabs/axios": "^4.8.
|
|
42
|
-
"@xylabs/eth-address": "^4.8.
|
|
43
|
-
"@xylabs/exists": "^4.8.
|
|
44
|
-
"@xylabs/hex": "^4.8.
|
|
45
|
-
"@xylabs/promise": "^4.8.
|
|
46
|
-
"@xylabs/react-animation": "^6.2.
|
|
47
|
-
"@xylabs/react-error": "^6.2.
|
|
48
|
-
"@xylabs/react-flexbox": "^6.2.
|
|
49
|
-
"@xylabs/react-identicon": "^6.2.
|
|
50
|
-
"@xylabs/react-promise": "^6.2.
|
|
51
|
-
"@xylabs/react-quick-tip-button": "^6.2.
|
|
52
|
-
"@xylabs/react-theme": "^6.2.
|
|
53
|
-
"@xyo-network/account": "^3.14.
|
|
54
|
-
"@xyo-network/api-models": "^3.14.
|
|
55
|
-
"@xyo-network/archivist-model": "^3.14.
|
|
56
|
-
"@xyo-network/boundwitness-builder": "^3.14.
|
|
57
|
-
"@xyo-network/boundwitness-model": "^3.14.
|
|
58
|
-
"@xyo-network/bridge-http": "^3.14.
|
|
59
|
-
"@xyo-network/chain-ethereum": "^1.3.
|
|
60
|
-
"@xyo-network/chain-protocol": "^1.3.
|
|
61
|
-
"@xyo-network/chain-services": "^1.3.
|
|
62
|
-
"@xyo-network/module-model": "^3.14.
|
|
63
|
-
"@xyo-network/payload-builder": "^3.14.
|
|
64
|
-
"@xyo-network/payload-model": "^3.14.
|
|
40
|
+
"@xylabs/assert": "^4.8.9",
|
|
41
|
+
"@xylabs/axios": "^4.8.9",
|
|
42
|
+
"@xylabs/eth-address": "^4.8.9",
|
|
43
|
+
"@xylabs/exists": "^4.8.9",
|
|
44
|
+
"@xylabs/hex": "^4.8.9",
|
|
45
|
+
"@xylabs/promise": "^4.8.9",
|
|
46
|
+
"@xylabs/react-animation": "^6.2.13",
|
|
47
|
+
"@xylabs/react-error": "^6.2.13",
|
|
48
|
+
"@xylabs/react-flexbox": "^6.2.13",
|
|
49
|
+
"@xylabs/react-identicon": "^6.2.13",
|
|
50
|
+
"@xylabs/react-promise": "^6.2.13",
|
|
51
|
+
"@xylabs/react-quick-tip-button": "^6.2.13",
|
|
52
|
+
"@xylabs/react-theme": "^6.2.13",
|
|
53
|
+
"@xyo-network/account": "^3.14.15",
|
|
54
|
+
"@xyo-network/api-models": "^3.14.15",
|
|
55
|
+
"@xyo-network/archivist-model": "^3.14.15",
|
|
56
|
+
"@xyo-network/boundwitness-builder": "^3.14.15",
|
|
57
|
+
"@xyo-network/boundwitness-model": "^3.14.15",
|
|
58
|
+
"@xyo-network/bridge-http": "^3.14.15",
|
|
59
|
+
"@xyo-network/chain-ethereum": "^1.3.9",
|
|
60
|
+
"@xyo-network/chain-protocol": "^1.3.9",
|
|
61
|
+
"@xyo-network/chain-services": "^1.3.9",
|
|
62
|
+
"@xyo-network/module-model": "^3.14.15",
|
|
63
|
+
"@xyo-network/payload-builder": "^3.14.15",
|
|
64
|
+
"@xyo-network/payload-model": "^3.14.15",
|
|
65
65
|
"@xyo-network/react-boundwitness-plugin": "^5.2.5",
|
|
66
|
-
"@xyo-network/react-chain-blockies": "^1.3.
|
|
66
|
+
"@xyo-network/react-chain-blockies": "^1.3.9",
|
|
67
67
|
"@xyo-network/react-event": "^5.2.5",
|
|
68
68
|
"@xyo-network/react-payload-raw-info": "^5.2.5",
|
|
69
69
|
"@xyo-network/react-payload-table": "^5.2.5",
|
|
70
70
|
"@xyo-network/react-shared": "^5.2.5",
|
|
71
71
|
"@xyo-network/react-table": "^5.2.5",
|
|
72
|
-
"@xyo-network/xl1-
|
|
73
|
-
"@xyo-network/xl1-protocol": "^1.3.
|
|
72
|
+
"@xyo-network/xl1-protocol": "^1.3.9",
|
|
73
|
+
"@xyo-network/xl1-protocol-sdk": "^1.3.9"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@emotion/react": "^11.14.0",
|
|
@@ -79,16 +79,16 @@
|
|
|
79
79
|
"@mui/material": "^7.0.2",
|
|
80
80
|
"@storybook/react": "^8.6.12",
|
|
81
81
|
"@types/react": "^19.1.2",
|
|
82
|
-
"@xylabs/delay": "^4.8.
|
|
83
|
-
"@xylabs/hex": "^4.8.
|
|
84
|
-
"@xylabs/ts-scripts-yarn3": "^6.
|
|
85
|
-
"@xylabs/tsconfig-react": "^6.
|
|
86
|
-
"@xyo-network/archivist-memory": "^3.14.
|
|
87
|
-
"@xyo-network/chain-utils": "^1.3.
|
|
88
|
-
"knip": "^5.
|
|
82
|
+
"@xylabs/delay": "^4.8.9",
|
|
83
|
+
"@xylabs/hex": "^4.8.9",
|
|
84
|
+
"@xylabs/ts-scripts-yarn3": "^6.4.6",
|
|
85
|
+
"@xylabs/tsconfig-react": "^6.4.6",
|
|
86
|
+
"@xyo-network/archivist-memory": "^3.14.15",
|
|
87
|
+
"@xyo-network/chain-utils": "^1.3.9",
|
|
88
|
+
"knip": "^5.51.0",
|
|
89
89
|
"react": "^19.1.0",
|
|
90
90
|
"react-dom": "^19.1.0",
|
|
91
|
-
"react-router-dom": "^7.5.
|
|
91
|
+
"react-router-dom": "^7.5.3",
|
|
92
92
|
"storybook": "^8.6.12",
|
|
93
93
|
"typescript": "^5.8.3"
|
|
94
94
|
},
|
|
@@ -2,7 +2,7 @@ import type { ChipProps } from '@mui/material'
|
|
|
2
2
|
import { Chip } from '@mui/material'
|
|
3
3
|
import { EthAddress } from '@xylabs/eth-address'
|
|
4
4
|
import { BlockiesAvatar } from '@xyo-network/react-chain-blockies'
|
|
5
|
-
import type { HydratedBlock } from '@xyo-network/xl1-
|
|
5
|
+
import type { HydratedBlock } from '@xyo-network/xl1-protocol'
|
|
6
6
|
import React, { useMemo } from 'react'
|
|
7
7
|
|
|
8
8
|
export interface BlockProducerChipProps extends ChipProps {
|