@xyo-network/react-chain 1.3.3 → 1.3.4

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.
@@ -0,0 +1,1389 @@
1
+ import * as React$1 from 'react';
2
+ import React__default, { ComponentType, MouseEvent } from 'react';
3
+ import * as _xylabs_hex from '@xylabs/hex';
4
+ import { Hash, Hex, Address } from '@xylabs/hex';
5
+ import * as _xylabs_sdk_xyo_chain_js from '@xylabs/sdk-xyo-chain-js';
6
+ import { BlockBoundWitness, ChainInformation, XyoChainInformation, XyoChainIteratorParams, TransactionBoundWitnessFields, XyoChainBlockNumberIterator, EventingChainBlockNumberIterator, ChainBlockNumberIterator } from '@xylabs/sdk-xyo-chain-js';
7
+ import * as _xyo_network_archivist_model from '@xyo-network/archivist-model';
8
+ import { ArchivistInstance, ReadArchivist } from '@xyo-network/archivist-model';
9
+ import { NodesWithKeys } from '@xylabs/react-animation';
10
+ import * as _xyo_network_boundwitness_model from '@xyo-network/boundwitness-model';
11
+ import * as _xylabs_object from '@xylabs/object';
12
+ import * as _xyo_network_payload_model from '@xyo-network/payload-model';
13
+ import * as _xyo_network_react_event from '@xyo-network/react-event';
14
+ import * as _xylabs_react_promise from '@xylabs/react-promise';
15
+ import * as _mui_material from '@mui/material';
16
+ import { ChipProps, TableCellProps, DialogProps, StandardTextFieldProps } from '@mui/material';
17
+ import { IdenticonProps } from '@xylabs/react-identicon';
18
+ import { TableExProps } from '@xyo-network/react-table';
19
+ import * as _xylabs_react_flexbox from '@xylabs/react-flexbox';
20
+ import { FlexBoxProps } from '@xylabs/react-flexbox';
21
+ import * as _emotion_styled from '@emotion/styled';
22
+ import * as _mui_system from '@mui/system';
23
+ import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
24
+ import { TablePaginationActionsProps } from '@xyo-network/react-payload-table';
25
+ import { QuickTipButtonProps } from '@xylabs/react-quick-tip-button';
26
+ import * as _xyo_network_module_model from '@xyo-network/module-model';
27
+ import * as _xyo_network_account_model from '@xyo-network/account-model';
28
+ import { Decorator } from '@storybook/react';
29
+
30
+ interface BlockComponentProps {
31
+ block: BlockBoundWitness;
32
+ chainInformation: ChainInformation;
33
+ defaultExpanded?: boolean;
34
+ }
35
+ interface BlockComponentWithTxsProps extends BlockComponentProps {
36
+ transactions: Hash[];
37
+ }
38
+
39
+ interface BlockChainRenderComponent extends NodesWithKeys {
40
+ block: BlockBoundWitness;
41
+ }
42
+
43
+ interface RenderProps {
44
+ maxBlocks?: number;
45
+ pageSize?: number;
46
+ }
47
+ interface BlockChainIterator {
48
+ chainArchivist?: ArchivistInstance;
49
+ chainInformation?: ChainInformation;
50
+ head?: Hash;
51
+ }
52
+ interface BlockChainRenderProps extends BlockChainIterator, RenderProps {
53
+ }
54
+ interface BlockChainRenderBaseProps {
55
+ blockChainRenderProps?: BlockChainRenderProps;
56
+ error?: Error;
57
+ }
58
+
59
+ interface RemoteArchivistProps {
60
+ chainArchivistModuleId?: string;
61
+ url?: string;
62
+ }
63
+
64
+ interface BlockChainRenderFlexboxProps extends BlockChainRenderBaseProps, FlexBoxProps {
65
+ }
66
+ interface RemoteBlockChainRenderFlexboxProps extends BlockChainRenderBaseProps, RemoteArchivistProps, FlexBoxProps {
67
+ }
68
+
69
+ declare const BlockHeadingFlexbox: React__default.FC<BlockComponentWithTxsProps>;
70
+
71
+ declare const blockProducer: (block: BlockBoundWitness, chainInformation: XyoChainInformation) => Lowercase<string> | undefined;
72
+
73
+ declare const buildBlockChainRenderComponent: (BlockComponent: ComponentType<BlockComponentWithTxsProps>, blockComponentProps: BlockComponentProps, chainArchivist: ArchivistInstance) => Promise<BlockChainRenderComponent>;
74
+ declare const buildBlockHeadingComponent: (blockComponentProps: BlockComponentProps, chainArchivist: ArchivistInstance) => Promise<BlockChainRenderComponent>;
75
+
76
+ declare const txsFromBlock: (chainArchivist: ReadArchivist, block: BlockBoundWitness) => Promise<[_xylabs_object.DeepRestrictToStringKeys<_xyo_network_payload_model.SchemaFields & _xyo_network_payload_model.PayloadFields & {
77
+ schema: string;
78
+ }> & Partial<_xyo_network_payload_model.PayloadMetaFields> & _xyo_network_payload_model.StorageMeta & _xylabs_object.DeepRestrictToStringKeys<_xyo_network_payload_model.SchemaFields & _xyo_network_payload_model.PayloadFields & _xyo_network_boundwitness_model.BoundWitnessFields & _xylabs_sdk_xyo_chain_js.TransactionBoundWitnessFields & {
79
+ schema: "network.xyo.boundwitness";
80
+ }> & _xyo_network_boundwitness_model.BoundWitnessMeta & {
81
+ $signatures: _xylabs_hex.Hex[];
82
+ }, Lowercase<string>][]>;
83
+
84
+ declare const useAnchorElement: () => {
85
+ anchorEl: HTMLElement | null;
86
+ anchorRef: React$1.RefObject<HTMLButtonElement>;
87
+ open: boolean;
88
+ handleClick: (event: React.MouseEvent<HTMLElement>) => void;
89
+ handleClose: () => void;
90
+ };
91
+
92
+ type BlockHeaderEventNouns = 'transaction-count' | 'block-hash' | 'block-number' | 'block-producer' | 'block-verification';
93
+ declare const useBlockHeadingEvents: <TElement extends HTMLElement>(listener?: _xyo_network_react_event.EventDispatch<BlockHeaderEventNouns, _xyo_network_react_event.EventVerb, string> | undefined, sharableRef?: React$1.RefObject<TElement> | undefined) => [React$1.RefObject<TElement>, _xyo_network_react_event.EventDispatch<BlockHeaderEventNouns, _xyo_network_react_event.EventVerb, string>];
94
+
95
+ declare const useBlockProducer: (block?: BlockBoundWitness, chainInformation?: ChainInformation) => Lowercase<string> | undefined;
96
+
97
+ declare const useDynamicBlockComponents: (BlockComponent: ComponentType<BlockComponentWithTxsProps>, params?: XyoChainIteratorParams, maxBlocks?: number) => {
98
+ blockChainRenderComponents: BlockChainRenderComponent[];
99
+ onAddBlock: (block: BlockBoundWitness) => Promise<void>;
100
+ };
101
+
102
+ declare const useStaticBlockComponents: (BlockComponent: ComponentType<BlockComponentWithTxsProps>, params?: XyoChainIteratorParams, blocks?: BlockBoundWitness[]) => {
103
+ blockComponents: BlockChainRenderComponent[] | undefined;
104
+ errors: Error | undefined;
105
+ };
106
+
107
+ declare const useTxsFromBlock: (chainArchivist?: ReadArchivist, block?: BlockBoundWitness) => [[_xylabs_object.DeepRestrictToStringKeys<_xyo_network_payload_model.SchemaFields & _xyo_network_payload_model.PayloadFields & {
108
+ schema: string;
109
+ }> & Partial<_xyo_network_payload_model.PayloadMetaFields> & _xyo_network_payload_model.StorageMeta & _xylabs_object.DeepRestrictToStringKeys<_xyo_network_payload_model.SchemaFields & _xyo_network_payload_model.PayloadFields & _xyo_network_boundwitness_model.BoundWitnessFields & _xylabs_sdk_xyo_chain_js.TransactionBoundWitnessFields & {
110
+ schema: "network.xyo.boundwitness";
111
+ }> & _xyo_network_boundwitness_model.BoundWitnessMeta & {
112
+ $signatures: _xylabs_hex.Hex[];
113
+ }, Lowercase<string>][] | undefined, Error | undefined, _xylabs_react_promise.UsePromiseState | undefined];
114
+
115
+ interface BlockProducerChipProps extends ChipProps {
116
+ block?: BlockBoundWitness;
117
+ chainInformation?: ChainInformation;
118
+ }
119
+ declare const BlockProducerChip: React.FC<BlockProducerChipProps>;
120
+
121
+ interface BlockTableCellProps extends TableCellProps {
122
+ block?: BlockBoundWitness;
123
+ linked?: boolean;
124
+ }
125
+
126
+ interface BlockNumberTableCellProps extends BlockTableCellProps {
127
+ }
128
+ declare const BlockNumberTableCell: React__default.FC<BlockNumberTableCellProps>;
129
+
130
+ interface BlockHashTableCellProps extends BlockTableCellProps {
131
+ identiconProps?: IdenticonProps;
132
+ }
133
+ declare const BlockHashTableCell: React__default.FC<BlockHashTableCellProps>;
134
+
135
+ interface BlockJsonViewTableCellProps extends BlockTableCellProps {
136
+ }
137
+ declare const BlockJsonViewTableCell: React__default.FC<BlockJsonViewTableCellProps>;
138
+
139
+ interface BlockProducerTableCell extends BlockTableCellProps {
140
+ chainInformation?: ChainInformation;
141
+ producerChipProps?: BlockProducerChipProps;
142
+ }
143
+ declare const BlockProducerTableCell: React__default.FC<BlockProducerTableCell>;
144
+
145
+ interface BlockTransactionCountTableCellProps extends BlockTableCellProps {
146
+ chainArchivist?: ReadArchivist;
147
+ }
148
+ declare const BlockTransactionCountTableCell: React__default.FC<BlockTransactionCountTableCellProps>;
149
+
150
+ interface BlockVerificationTableCellProps extends BlockTableCellProps {
151
+ }
152
+ declare const BlockVerificationTableCell: React__default.FC<BlockVerificationTableCellProps>;
153
+
154
+ declare const BlockchainTableEx: React$1.ForwardRefExoticComponent<Omit<TableExProps, "ref"> & React$1.RefAttributes<HTMLTableElement>>;
155
+
156
+ interface BlockChainTableRowProps extends BlockComponentProps {
157
+ linked?: boolean;
158
+ }
159
+ declare const BlockChainTableRow: React.FC<BlockChainTableRowProps>;
160
+
161
+ type PollingState = 'paused' | 'running';
162
+ declare const useOnBlock: (initialHead?: Hex, onAddBlock?: (block: BlockBoundWitness) => Promise<void>, liveHead?: BlockBoundWitness, pollingState?: PollingState) => BlockBoundWitness[];
163
+
164
+ interface PollingControlsFlexboxProps extends FlexBoxProps {
165
+ blocksBehind?: number;
166
+ pollingState?: PollingState;
167
+ setPollingState?: (newState: PollingState) => void;
168
+ sharedAddress?: Address;
169
+ }
170
+ declare const PollingControlsFlexbox: React__default.FC<PollingControlsFlexboxProps>;
171
+ declare const MemoizedPollingControlsFlexbox: React__default.NamedExoticComponent<PollingControlsFlexboxProps>;
172
+
173
+ declare const PulseSvgIcon: _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
174
+ muiName: string;
175
+ };
176
+ declare const StyledPulseSvgIcon: _emotion_styled.StyledComponent<_mui_material.SvgIconOwnProps & _mui_material_OverridableComponent.CommonProps & Omit<Omit<React$1.SVGProps<SVGSVGElement>, "ref"> & {
177
+ ref?: ((instance: SVGSVGElement | null) => void | React$1.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$1.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$1.RefObject<SVGSVGElement> | null | undefined;
178
+ }, "children" | "className" | "style" | "classes" | "color" | "fontSize" | "shapeRendering" | "sx" | "viewBox" | "htmlColor" | "inheritViewBox" | "titleAccess"> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
179
+
180
+ interface TransactionsDialogProps extends DialogProps {
181
+ }
182
+ declare const TransactionsDialog: React__default.FC<TransactionsDialogProps>;
183
+
184
+ interface BlockChainPaginationProps extends TablePaginationActionsProps {
185
+ }
186
+ declare const BlockChainPagination: React__default.FC<BlockChainPaginationProps>;
187
+
188
+ declare const useChainPagination: (pageSize: number, blockComponents?: BlockChainRenderComponent[]) => {
189
+ onPageChange: (_event: MouseEvent<HTMLButtonElement>, newPage: number) => void;
190
+ page: number;
191
+ paginatedBlockComponents: BlockChainRenderComponent[] | undefined;
192
+ };
193
+
194
+ declare const DynamicBlockchainRenderFlexbox: {
195
+ Base: React__default.FC<BlockChainRenderFlexboxProps>;
196
+ WithAnalysis: React__default.FC<BlockChainRenderFlexboxProps>;
197
+ WithRemote: React__default.FC<RemoteBlockChainRenderFlexboxProps>;
198
+ };
199
+
200
+ declare const StaticBlockchainRenderFlexBox: {
201
+ Base: React__default.FC<BlockChainRenderFlexboxProps>;
202
+ WithAnalysis: React__default.FC<BlockChainRenderFlexboxProps>;
203
+ };
204
+
205
+ interface ChainAnalyzerStatsDialogProps extends DialogProps {
206
+ }
207
+ declare const ChainAnalyzerStatsDialog: React.FC<ChainAnalyzerStatsDialogProps>;
208
+ declare const ChainAnalyzerStatsDialogFromContext: React.FC;
209
+
210
+ declare const BlockListWrapperFlexBox: _emotion_styled.StyledComponent<Pick<_xylabs_react_flexbox.BusyBoxProps & React$1.RefAttributes<unknown>, "children" | "ref" | "security" | "prefix" | "className" | "style" | "classes" | "border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "color" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "width" | "maxWidth" | "minWidth" | "height" | "maxHeight" | "minHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "p" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform" | "content" | "translate" | "background" | "sx" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "component" | "paper" | "busy" | "busyCircularProps" | "busyColor" | "busyLinearProps" | "busyMinimum" | "busyOpacity" | "busySize" | "busyVariant"> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
211
+
212
+ interface ChainTransactionBuilder {
213
+ onSubmitTx?: (chainTx: TransactionBoundWitnessFields) => Promise<void>;
214
+ }
215
+ declare const ChainTransactionBuilder: React__default.FC<ChainTransactionBuilder>;
216
+
217
+ interface ChainTransactionNetworkProps extends StandardTextFieldProps {
218
+ network?: URL;
219
+ onNetworkChange?: (url: URL) => void;
220
+ }
221
+ declare const ChainTransactionNetwork: React__default.FC<ChainTransactionNetworkProps>;
222
+
223
+ declare const SubmitChainTransaction: React__default.FC;
224
+
225
+ interface TransactionCountChipProps extends ChipProps {
226
+ transactions?: Hash[];
227
+ }
228
+ declare const TransactionCountChip: React.FC<TransactionCountChipProps>;
229
+
230
+ interface TransactionsQuickTipButtonQuickTipButtonProps extends QuickTipButtonProps {
231
+ block?: BlockBoundWitness;
232
+ chainArchivist?: ArchivistInstance;
233
+ }
234
+ declare const TransactionsQuickTipButton: React__default.FC<TransactionsQuickTipButtonQuickTipButtonProps>;
235
+
236
+ type Listener = (...args: Array<unknown>) => void;
237
+ type ChainIteratorStoreValues = {
238
+ chainIterator: XyoChainBlockNumberIterator;
239
+ error?: Error;
240
+ head: BlockBoundWitness;
241
+ };
242
+ declare class ChainIteratorStore {
243
+ private _chainIterator;
244
+ private _externalListeners;
245
+ private _internalUnsubscribes;
246
+ private _values;
247
+ get chainIterator(): EventingChainBlockNumberIterator;
248
+ get values(): ChainIteratorStoreValues;
249
+ static create(params: XyoChainIteratorParams): Promise<ChainIteratorStore>;
250
+ cleanup(): void;
251
+ getSnapshot(): Partial<ChainIteratorStoreValues>;
252
+ subscribe(onStoreChange: Listener): () => void;
253
+ private emitChange;
254
+ }
255
+
256
+ declare const resolveDefinedHead: (head: Hash, chainArchivist: ReadArchivist) => Promise<_xyo_network_boundwitness_model.Signed<BlockBoundWitness>>;
257
+ declare const useChainIteratorParams: ({ chainArchivist, chainInformation, head, }: BlockChainIterator) => [{
258
+ chainArchivist: _xyo_network_archivist_model.ArchivistInstance<_xylabs_object.BaseParamsFields & {
259
+ account?: _xyo_network_account_model.AccountInstance | "random";
260
+ addToResolvers?: boolean;
261
+ additionalSigners?: _xyo_network_account_model.AccountInstance[];
262
+ allowNameResolution?: boolean;
263
+ config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_archivist_model.ArchivistConfig<void, void>>;
264
+ ephemeralQueryAccountEnabled?: boolean;
265
+ moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
266
+ privateChildren?: _xyo_network_module_model.ModuleInstance[];
267
+ publicChildren?: _xyo_network_module_model.ModuleInstance[];
268
+ } & _xyo_network_archivist_model.ArchivistParamFields & object, _xyo_network_archivist_model.ArchivistModuleEventData, _xyo_network_payload_model.Payload>;
269
+ chainInformation: _xylabs_sdk_xyo_chain_js.ChainInformation;
270
+ head: BlockBoundWitness;
271
+ } | undefined, Error | undefined, _xylabs_react_promise.UsePromiseState | undefined];
272
+
273
+ declare const useChainIteratorStore: (chainIteratorParams?: XyoChainIteratorParams) => Partial<ChainIteratorStoreValues>;
274
+
275
+ interface ChainIteratorUpdatingHeadParams {
276
+ chainArchivist?: ArchivistInstance;
277
+ chainIterator?: ChainBlockNumberIterator;
278
+ interval?: number;
279
+ maxBlocks?: number;
280
+ }
281
+ declare const useChainIteratorUpdatingHead: ({ chainIterator, interval, maxBlocks, chainArchivist, }: ChainIteratorUpdatingHeadParams) => Error | undefined;
282
+
283
+ declare const useIterateChain: (chainIteratorParams?: XyoChainIteratorParams, maxDepth?: number) => [BlockBoundWitness[] | undefined, Error | undefined, _xylabs_react_promise.UsePromiseState | undefined];
284
+
285
+ declare const ChainArchivistDecorator: Decorator;
286
+
287
+ declare const ChainArchivistDelayedInsertDecorator: Decorator;
288
+
289
+ declare const ChainInfoContextDecorator: Decorator;
290
+
291
+ var ExampleBlockchainWithPayloads = [
292
+ {
293
+ gas: "00",
294
+ block: "00",
295
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
296
+ previous: null,
297
+ reward: "00",
298
+ addresses: [
299
+ "d01885faa18c18ee20982bdf499b6152981a84c0"
300
+ ],
301
+ payload_hashes: [
302
+ "e0b8fbd763448f280bbb6fafecb9f86dbb3234e17ca149a7c480f0239e40a369"
303
+ ],
304
+ payload_schemas: [
305
+ "network.xyo.boundwitness"
306
+ ],
307
+ previous_hashes: [
308
+ null
309
+ ],
310
+ step_hashes: [
311
+ ],
312
+ schema: "network.xyo.boundwitness",
313
+ $signatures: [
314
+ "90706ca5484423a71b9f183c7d627b0cc024f36fafacd45865924625a3b44c15464be2501a6391d60c316722da5a55161cce57cce4659dbe815be2e949ddb9ee"
315
+ ],
316
+ $epoch: 0,
317
+ _dataHash: "06a0ff45eef22b7695c3064e74f056252edc4a3759c364f52cdbc3277ff05304",
318
+ _hash: "8941fb72cf598b420b874628e1df385aa1f1e1c31b2198bbba67c2bb2b01c3c3",
319
+ _sequence: "00000194ce6c23b3000000002b01c3c3"
320
+ },
321
+ {
322
+ tx: "6e2e5eada47ce2ca2561a064894cdf1e0191715fe9d7d9130720f385bdd80e6a",
323
+ addresses: [
324
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
325
+ ],
326
+ payload_hashes: [
327
+ "6e2e5eada47ce2ca2561a064894cdf1e0191715fe9d7d9130720f385bdd80e6a",
328
+ "436e6c81f7f7f0947dae488ef131082f0422bf5524c86ef1ca301cd8a61cbdbd"
329
+ ],
330
+ payload_schemas: [
331
+ "network.xyo.chain.transaction",
332
+ "network.xyo.chain.stake.intent"
333
+ ],
334
+ previous_hashes: [
335
+ null
336
+ ],
337
+ schema: "network.xyo.boundwitness",
338
+ $signatures: [
339
+ "06ce0db2b252efb31a1e2420e0e3f79bb11f52552efa98c5f605a8f46c8d72fb156b5c6e586a2fe8e21c45ec1a9edbb7f72d0ed5aee808222ef9d6a6ddce72f5"
340
+ ],
341
+ _dataHash: "e0b8fbd763448f280bbb6fafecb9f86dbb3234e17ca149a7c480f0239e40a369",
342
+ _hash: "7d426200f048374c5e97d46ecd407ac2a800b5a477c64d8b90e8d3002ff1a37c",
343
+ _sequence: "00000194ce6c23b3000000022ff1a37c"
344
+ },
345
+ {
346
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
347
+ exp: "03e8",
348
+ gas: "00",
349
+ nbf: "00",
350
+ schema: "network.xyo.chain.transaction",
351
+ _dataHash: "6e2e5eada47ce2ca2561a064894cdf1e0191715fe9d7d9130720f385bdd80e6a",
352
+ _hash: "6e2e5eada47ce2ca2561a064894cdf1e0191715fe9d7d9130720f385bdd80e6a",
353
+ _sequence: "00000194ce6c23b300000003bdd80e6a"
354
+ },
355
+ {
356
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
357
+ delegate: "4019a3fd9e96337e00d598a6a13fb5a37d5f9018",
358
+ exp: "03e8",
359
+ gas: "00",
360
+ intent: "producer",
361
+ nbf: "00",
362
+ schema: "network.xyo.chain.stake.intent",
363
+ _dataHash: "436e6c81f7f7f0947dae488ef131082f0422bf5524c86ef1ca301cd8a61cbdbd",
364
+ _hash: "436e6c81f7f7f0947dae488ef131082f0422bf5524c86ef1ca301cd8a61cbdbd",
365
+ _sequence: "00000194ce6c23b300000004a61cbdbd"
366
+ },
367
+ {
368
+ gas: "00",
369
+ block: "01",
370
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
371
+ previous: "8941fb72cf598b420b874628e1df385aa1f1e1c31b2198bbba67c2bb2b01c3c3",
372
+ reward: "7530",
373
+ addresses: [
374
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
375
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
376
+ ],
377
+ step_hashes: [
378
+ ],
379
+ payload_hashes: [
380
+ ],
381
+ payload_schemas: [
382
+ ],
383
+ previous_hashes: [
384
+ "8941fb72cf598b420b874628e1df385aa1f1e1c31b2198bbba67c2bb2b01c3c3",
385
+ "e0b8fbd763448f280bbb6fafecb9f86dbb3234e17ca149a7c480f0239e40a369"
386
+ ],
387
+ schema: "network.xyo.boundwitness",
388
+ $signatures: [
389
+ "68c8cc64d04a056009e77933280931c6963f8261dc0ea7f356ce19774f701cad3c319dd095cd3e68155cf487ad7b78e880cbcd3f5c085da43c5ce58ae82ea55e",
390
+ "a62ff1c6563422ff9f69cb3388e5e6469ad023ceba01a841d5f412d694b1d1a7598d5f21c095631bc6a7359e84a15d8e41f1fac881c21bb72f80f22de5796bb3"
391
+ ],
392
+ $epoch: 0,
393
+ _dataHash: "6aa70ab35f9bea104ac9a908089183865af5db396da4824934965765418138cb",
394
+ _hash: "bb982348d34ca539b0cfc0265908ae9a8f78e0f0e509412d0387e70d2b78fdd5",
395
+ _sequence: "00000194ce6c5573000000002b78fdd5"
396
+ },
397
+ {
398
+ gas: "00",
399
+ block: "02",
400
+ step_hashes: [
401
+ ],
402
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
403
+ previous: "bb982348d34ca539b0cfc0265908ae9a8f78e0f0e509412d0387e70d2b78fdd5",
404
+ reward: "7530",
405
+ addresses: [
406
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
407
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
408
+ ],
409
+ payload_hashes: [
410
+ ],
411
+ payload_schemas: [
412
+ ],
413
+ previous_hashes: [
414
+ "bb982348d34ca539b0cfc0265908ae9a8f78e0f0e509412d0387e70d2b78fdd5",
415
+ "6aa70ab35f9bea104ac9a908089183865af5db396da4824934965765418138cb"
416
+ ],
417
+ schema: "network.xyo.boundwitness",
418
+ $signatures: [
419
+ "b4f1dab15a5fb796307f09389c0c1d290bcbb302b1cf862c912564d253a70d465d4679d9d4ca49b26f9f1b98a10eb9cad63af456031f27a4184dee90dbd33f33",
420
+ "3217d94f10ee8b80b9e58d25c02aeceac0e1a7849a573431b29c0a382298c23939df03ea17af1d50dda054d3c082b643a99135b6e6a63b047e41ffdd4a1bdc92"
421
+ ],
422
+ $epoch: 0,
423
+ _dataHash: "bd573bad63de66ba565b9c13f1860b3ca9279e7ca131d1b6f0ff4ac5a9734c89",
424
+ _hash: "49a609d18b08c7690f88fc7cf61c61c8ce67a3fe12f2034b64d8b8d0d07b76fd",
425
+ _sequence: "00000194ce6c558700000000d07b76fd"
426
+ },
427
+ {
428
+ gas: "00",
429
+ block: "03",
430
+ step_hashes: [
431
+ ],
432
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
433
+ previous: "49a609d18b08c7690f88fc7cf61c61c8ce67a3fe12f2034b64d8b8d0d07b76fd",
434
+ reward: "7530",
435
+ addresses: [
436
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
437
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
438
+ ],
439
+ payload_hashes: [
440
+ ],
441
+ payload_schemas: [
442
+ ],
443
+ previous_hashes: [
444
+ "49a609d18b08c7690f88fc7cf61c61c8ce67a3fe12f2034b64d8b8d0d07b76fd",
445
+ "bd573bad63de66ba565b9c13f1860b3ca9279e7ca131d1b6f0ff4ac5a9734c89"
446
+ ],
447
+ schema: "network.xyo.boundwitness",
448
+ $signatures: [
449
+ "a2433c8196a651edb0234a39c3a72bb7ec1bc9d15e57863c2f19b86ecf6b443c02073cfbaf01abb8add371353924d2192b479baea07d3a1d9ffcaff05747f44c",
450
+ "3ab4e3428ab9525e98bd2ffc5db13ff34a924afd8d70d37ec952eacd815b34643701b37d4babdacb04c6e01148e7e98a7240ff35d50e287062be676ffa583600"
451
+ ],
452
+ $epoch: 0,
453
+ _dataHash: "e39d6ae5561b9247ff265f7aeaa8a5266ba4283c93234a9f95b57eca936f059e",
454
+ _hash: "7621185cb5ba58f43b4c18524a64235896b43daa59fc8ac5850fb0b226a3c5fa",
455
+ _sequence: "00000194ce6c559d0000000026a3c5fa"
456
+ },
457
+ {
458
+ gas: "00",
459
+ block: "04",
460
+ step_hashes: [
461
+ ],
462
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
463
+ previous: "7621185cb5ba58f43b4c18524a64235896b43daa59fc8ac5850fb0b226a3c5fa",
464
+ reward: "7530",
465
+ addresses: [
466
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
467
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
468
+ ],
469
+ payload_hashes: [
470
+ ],
471
+ payload_schemas: [
472
+ ],
473
+ previous_hashes: [
474
+ "7621185cb5ba58f43b4c18524a64235896b43daa59fc8ac5850fb0b226a3c5fa",
475
+ "e39d6ae5561b9247ff265f7aeaa8a5266ba4283c93234a9f95b57eca936f059e"
476
+ ],
477
+ schema: "network.xyo.boundwitness",
478
+ $signatures: [
479
+ "3bf15344e9d989096bee983e127979ed79630ea00421803159b20919decbd8a41c9e20b1beae9799df82e8df4d7fffa9d5146423519e9fcb40f614e07229a96e",
480
+ "8727474bc81fa6084b0f12b646340e5fdd2b6fb1b20272e296507d6c188d4d3744175a49032203dee6634c414c5d22f536ff8b4b27cc7a757f80d0adf14506eb"
481
+ ],
482
+ $epoch: 0,
483
+ _dataHash: "c3d879697660bdbd7ac74d6de94e09c1be421ff8e3113d143f6ae9d42439948d",
484
+ _hash: "43ab28e90ab9eafb64ac78aadb678f3bea0a42ac59effb0b9316b4508ae144ae",
485
+ _sequence: "00000194ce6c55cc000000008ae144ae"
486
+ },
487
+ {
488
+ gas: "00",
489
+ block: "05",
490
+ step_hashes: [
491
+ ],
492
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
493
+ previous: "43ab28e90ab9eafb64ac78aadb678f3bea0a42ac59effb0b9316b4508ae144ae",
494
+ reward: "7530",
495
+ addresses: [
496
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
497
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
498
+ ],
499
+ payload_hashes: [
500
+ ],
501
+ payload_schemas: [
502
+ ],
503
+ previous_hashes: [
504
+ "43ab28e90ab9eafb64ac78aadb678f3bea0a42ac59effb0b9316b4508ae144ae",
505
+ "c3d879697660bdbd7ac74d6de94e09c1be421ff8e3113d143f6ae9d42439948d"
506
+ ],
507
+ schema: "network.xyo.boundwitness",
508
+ $signatures: [
509
+ "6137b69ff485a6b32974158f413e518d9aafe807fd24b39f86a392be5a6d48947d99b6d4593ddbf4bf99c89b63c1e27d456c45c0073f3956301aeed0c1b0f573",
510
+ "fcb1f572106838d4c08f0fa284088e3feb4e4097a41238563c07a9a761eeb44f49cf29f2be0bddb0308f764b3be2f4476752ef8d71bb0abe26b52ae53826ed80"
511
+ ],
512
+ $epoch: 0,
513
+ _dataHash: "e676447559314b93414d63de81587bb4fb9961146d062b45acc5f4cdfb053c0d",
514
+ _hash: "bbe26f0ef713f66ff93e6af71bc8ea76dde256b9d52576e9235ea64393eacfa4",
515
+ _sequence: "00000194ce6c55de0000000093eacfa4"
516
+ },
517
+ {
518
+ gas: "00",
519
+ block: "06",
520
+ step_hashes: [
521
+ ],
522
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
523
+ previous: "bbe26f0ef713f66ff93e6af71bc8ea76dde256b9d52576e9235ea64393eacfa4",
524
+ reward: "7530",
525
+ addresses: [
526
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
527
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
528
+ ],
529
+ payload_hashes: [
530
+ ],
531
+ payload_schemas: [
532
+ ],
533
+ previous_hashes: [
534
+ "bbe26f0ef713f66ff93e6af71bc8ea76dde256b9d52576e9235ea64393eacfa4",
535
+ "e676447559314b93414d63de81587bb4fb9961146d062b45acc5f4cdfb053c0d"
536
+ ],
537
+ schema: "network.xyo.boundwitness",
538
+ $signatures: [
539
+ "d2a2dc7c8175493b601078dd404786b0bc7cf89984db055b694f55680ba191c353da34cd510c1b112d25e130c3a5907e0815d9c8b768028a3373bdbbc12c4bcb",
540
+ "2a17a3e76c02d809c6a63577bf74df59350c9aa4ebe113e82e947717a35c4f2d5d43a9be55c5e435d8c935a4488f8cd46005ad9c64be95137381bca83101ff46"
541
+ ],
542
+ $epoch: 0,
543
+ _dataHash: "f5d163f7d5f83acca2852854b7e16b3eac3e902a5911d06b8efe49f4b89c96f6",
544
+ _hash: "571744030dd7f3eee79410a06d9476052e2462fc05d6789e2436beee9d5e6cd7",
545
+ _sequence: "00000194ce6c55ef000000009d5e6cd7"
546
+ },
547
+ {
548
+ gas: "00",
549
+ block: "07",
550
+ step_hashes: [
551
+ ],
552
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
553
+ previous: "571744030dd7f3eee79410a06d9476052e2462fc05d6789e2436beee9d5e6cd7",
554
+ reward: "7530",
555
+ addresses: [
556
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
557
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
558
+ ],
559
+ payload_hashes: [
560
+ ],
561
+ payload_schemas: [
562
+ ],
563
+ previous_hashes: [
564
+ "571744030dd7f3eee79410a06d9476052e2462fc05d6789e2436beee9d5e6cd7",
565
+ "f5d163f7d5f83acca2852854b7e16b3eac3e902a5911d06b8efe49f4b89c96f6"
566
+ ],
567
+ schema: "network.xyo.boundwitness",
568
+ $signatures: [
569
+ "d6da88e37fbfc91c8d3abdcae01e87831ded21363840502f4062e0eca1f638dd22a544a981823b2772b6e8992f2c4595255693e97c7d4487ea3d4639389471d8",
570
+ "292f780624cf8ec2c297e696ac781b1c8b744801bff14d36f9ccc14172e91b711875aeceadc3325373e32166e60addfd9bfa2f3e9cb4ee021938acfa7c0e9853"
571
+ ],
572
+ $epoch: 0,
573
+ _dataHash: "56b814364f08d5a4833781bf732be22c521669d304aa1e3dc9f230481b077076",
574
+ _hash: "ca2390800a8105fe9ec2a1be4da3a54048cde60685072ebc3d06a5974f112ddc",
575
+ _sequence: "00000194ce6c5603000000004f112ddc"
576
+ },
577
+ {
578
+ gas: "00",
579
+ block: "08",
580
+ step_hashes: [
581
+ ],
582
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
583
+ previous: "ca2390800a8105fe9ec2a1be4da3a54048cde60685072ebc3d06a5974f112ddc",
584
+ reward: "7530",
585
+ addresses: [
586
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
587
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
588
+ ],
589
+ payload_hashes: [
590
+ ],
591
+ payload_schemas: [
592
+ ],
593
+ previous_hashes: [
594
+ "ca2390800a8105fe9ec2a1be4da3a54048cde60685072ebc3d06a5974f112ddc",
595
+ "56b814364f08d5a4833781bf732be22c521669d304aa1e3dc9f230481b077076"
596
+ ],
597
+ schema: "network.xyo.boundwitness",
598
+ $signatures: [
599
+ "ce20d68fcbab920b571fa50b130197a9e4ade4e61a588a1991fdca22074a0d8611f73eea4766e994c0c8f41d6627eff1b31fec396b9d19a070041f712ef6c905",
600
+ "a1fe002589b83919bfddf169317424ec0e92d320626e58cd85171fc5feb5eaf310da79518b6465987d0b667f14799649d98a4534d5fd45ea1a14f5522729e3cb"
601
+ ],
602
+ $epoch: 0,
603
+ _dataHash: "3b9f4070e941952b3c8e6c8d3e88595bfccbf79532f5e972caee2f1f2cf49d60",
604
+ _hash: "3e1b4c1bf426b79d5960034ca0486af693d7c07131a015618c4189d45092938d",
605
+ _sequence: "00000194ce6c5616000000005092938d"
606
+ },
607
+ {
608
+ gas: "00",
609
+ block: "09",
610
+ step_hashes: [
611
+ ],
612
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
613
+ previous: "3e1b4c1bf426b79d5960034ca0486af693d7c07131a015618c4189d45092938d",
614
+ reward: "7530",
615
+ addresses: [
616
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
617
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
618
+ ],
619
+ payload_hashes: [
620
+ ],
621
+ payload_schemas: [
622
+ ],
623
+ previous_hashes: [
624
+ "3e1b4c1bf426b79d5960034ca0486af693d7c07131a015618c4189d45092938d",
625
+ "3b9f4070e941952b3c8e6c8d3e88595bfccbf79532f5e972caee2f1f2cf49d60"
626
+ ],
627
+ schema: "network.xyo.boundwitness",
628
+ $signatures: [
629
+ "e5ef937ba2c8e87404a749236f93b3419bd385c55cb3756cafa1a27a87bd3d856128c6556ad7295014fb9d44df613c79aec86786621a4842c43df3770b3fad0f",
630
+ "c7b2845e3044ac525fa350b62d00ad08f5f1b085778c1a412ad06e2ac388fc2e62f3245ba7711bf8fdd35a590cdd08a759e670e660d81a8181a48799e71cd667"
631
+ ],
632
+ $epoch: 0,
633
+ _dataHash: "ab02d31a1924c759ba590279215f46f839261c83a4ee21428c98e1ed0662ad1e",
634
+ _hash: "0e559002f163827f17e2dc1ea731e3b49a510f69e21e84ae9a9b38097c2c6d8b",
635
+ _sequence: "00000194ce6c562b000000007c2c6d8b"
636
+ },
637
+ {
638
+ gas: "00",
639
+ block: "0a",
640
+ step_hashes: [
641
+ ],
642
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
643
+ previous: "0e559002f163827f17e2dc1ea731e3b49a510f69e21e84ae9a9b38097c2c6d8b",
644
+ reward: "7530",
645
+ addresses: [
646
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
647
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
648
+ ],
649
+ payload_hashes: [
650
+ ],
651
+ payload_schemas: [
652
+ ],
653
+ previous_hashes: [
654
+ "0e559002f163827f17e2dc1ea731e3b49a510f69e21e84ae9a9b38097c2c6d8b",
655
+ "ab02d31a1924c759ba590279215f46f839261c83a4ee21428c98e1ed0662ad1e"
656
+ ],
657
+ schema: "network.xyo.boundwitness",
658
+ $signatures: [
659
+ "411447d4f1a63f9128f6e79d8ba5f762000080b93f22036c0d59d015046edc343e6d07db08f3163517affea04b9c436d1310cbc2d66834d1669f14a3e92f9e99",
660
+ "20c383dda3257b37789d69fd60831ebc8dd4f4831b6ecf64d4020fc1d1352bea41524f26cdb5acf6c8fd9fddac96e063f27ad2aa6b6bb428e42fdc058a0c590e"
661
+ ],
662
+ $epoch: 0,
663
+ _dataHash: "20877cacb9a372e87ad2dd6fdde231a460204c4ca20b70656d9b17c4c064a2b4",
664
+ _hash: "18d2ac1e45a5dba95452ece2a5500a66f7d8a81f447dcfd4e8c3e0f0244956a5",
665
+ _sequence: "00000194ce6c563f00000000244956a5"
666
+ },
667
+ {
668
+ gas: "00",
669
+ block: "0b",
670
+ step_hashes: [
671
+ ],
672
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
673
+ previous: "18d2ac1e45a5dba95452ece2a5500a66f7d8a81f447dcfd4e8c3e0f0244956a5",
674
+ reward: "7530",
675
+ addresses: [
676
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
677
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
678
+ ],
679
+ payload_hashes: [
680
+ ],
681
+ payload_schemas: [
682
+ ],
683
+ previous_hashes: [
684
+ "18d2ac1e45a5dba95452ece2a5500a66f7d8a81f447dcfd4e8c3e0f0244956a5",
685
+ "20877cacb9a372e87ad2dd6fdde231a460204c4ca20b70656d9b17c4c064a2b4"
686
+ ],
687
+ schema: "network.xyo.boundwitness",
688
+ $signatures: [
689
+ "8f8bae654d13c6e44503d9feff0822ceccc26097588b38ea830b0eb873b0a7055de96c16ed8402e0d0e11c99c85c9101c3de40f9d59a4cba526edb93088af0e8",
690
+ "939255f0774487857187582f5540fb54a8615df7bc12c7394664f62ca1292bb12404a32be0274d5486c3bff85f11a954a87870dff13c5dca4cf017092b749c61"
691
+ ],
692
+ $epoch: 0,
693
+ _dataHash: "e7ef06e06d8c389122a86352622d6cb6ad857ad236bf7baf5003505cb3044191",
694
+ _hash: "1ef6c1973ea8d32c46120cb8b7f5887971e2388f6f9f33d8c414dd4762dc2064",
695
+ _sequence: "00000194ce6c56520000000062dc2064"
696
+ },
697
+ {
698
+ gas: "00",
699
+ block: "0c",
700
+ step_hashes: [
701
+ ],
702
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
703
+ previous: "1ef6c1973ea8d32c46120cb8b7f5887971e2388f6f9f33d8c414dd4762dc2064",
704
+ reward: "7530",
705
+ addresses: [
706
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
707
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
708
+ ],
709
+ payload_hashes: [
710
+ ],
711
+ payload_schemas: [
712
+ ],
713
+ previous_hashes: [
714
+ "1ef6c1973ea8d32c46120cb8b7f5887971e2388f6f9f33d8c414dd4762dc2064",
715
+ "e7ef06e06d8c389122a86352622d6cb6ad857ad236bf7baf5003505cb3044191"
716
+ ],
717
+ schema: "network.xyo.boundwitness",
718
+ $signatures: [
719
+ "bcc61e1b3e1596cb1376e280c9079da38a627a1f842c8259566d5e5c5375bfbd79de1df0d9fab34dc8f6ae4b19bd37cc871c013b96c7fa9b2a7931a0b1d935b5",
720
+ "b4cee23a4c7ee5ef639c54bb5ac4eba46b5220209a4811bc0cfa3a2e6948b8fc62ee126f17e2d2fe593d7702a0a068fb693e8830cdf0b3d9c49af8e13f9192e1"
721
+ ],
722
+ $epoch: 0,
723
+ _dataHash: "a2a21c5c6202d9c48ca9fc2171e6ef14326cb0d962cb70658ebaf7d624051114",
724
+ _hash: "9205e229014c3af604f85908c7125021bebe23afca191f06e3f4235d4efc629a",
725
+ _sequence: "00000194ce6c5666000000004efc629a"
726
+ },
727
+ {
728
+ gas: "00",
729
+ block: "0d",
730
+ step_hashes: [
731
+ ],
732
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
733
+ previous: "9205e229014c3af604f85908c7125021bebe23afca191f06e3f4235d4efc629a",
734
+ reward: "7530",
735
+ addresses: [
736
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
737
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
738
+ ],
739
+ payload_hashes: [
740
+ ],
741
+ payload_schemas: [
742
+ ],
743
+ previous_hashes: [
744
+ "9205e229014c3af604f85908c7125021bebe23afca191f06e3f4235d4efc629a",
745
+ "a2a21c5c6202d9c48ca9fc2171e6ef14326cb0d962cb70658ebaf7d624051114"
746
+ ],
747
+ schema: "network.xyo.boundwitness",
748
+ $signatures: [
749
+ "a4eeec82fcf9cd4ce3afc3f9f22e8ff1234e24d80672231be6320896a1b43de662a6d3d50cfe7636c5e677b64439dd0a7db3a342ecb517593a32d7ece3f0be43",
750
+ "83142d0d1638ad21604c7cfac2c6889c0226785b0e0b499be67a7585086507982a2505e078be251f2b0c4c7a585ac804ebc8a5219019eeb4dfebb3a891d592ec"
751
+ ],
752
+ $epoch: 0,
753
+ _dataHash: "f7167dffc7b9b38a194c0bd63910a895ceb563a8c6be03f415d518607c390db0",
754
+ _hash: "a10ba8a25407dd27f14eb217f67df1105d5515b3bdb696ce6ef891813f6986c4",
755
+ _sequence: "00000194ce6c5679000000003f6986c4"
756
+ },
757
+ {
758
+ gas: "00",
759
+ block: "0e",
760
+ step_hashes: [
761
+ ],
762
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
763
+ previous: "a10ba8a25407dd27f14eb217f67df1105d5515b3bdb696ce6ef891813f6986c4",
764
+ reward: "7530",
765
+ addresses: [
766
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
767
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
768
+ ],
769
+ payload_hashes: [
770
+ ],
771
+ payload_schemas: [
772
+ ],
773
+ previous_hashes: [
774
+ "a10ba8a25407dd27f14eb217f67df1105d5515b3bdb696ce6ef891813f6986c4",
775
+ "f7167dffc7b9b38a194c0bd63910a895ceb563a8c6be03f415d518607c390db0"
776
+ ],
777
+ schema: "network.xyo.boundwitness",
778
+ $signatures: [
779
+ "14512f03ddb432cce9d532f9dae6322bea007eae19a63f0621672a64f33c3160148f75810b12e135564c31e69429a468d4ce61f43f87c4edec9e5a0f18da0489",
780
+ "f85cd4f1f046f67ef9e7793335c71841ae4a110b0b2d9c43fa6919cf1750f11566255b55d963ac7d5015c60456330f4c3f5be93fb601412118db63f15047df8e"
781
+ ],
782
+ $epoch: 0,
783
+ _dataHash: "dad7ed407788a57470e8699b065efb64d060d61c84803318c877148dd3710930",
784
+ _hash: "37b47da175bec1fa38724f154502f7581f35b11a4550fcbd153cbc231c9beb15",
785
+ _sequence: "00000194ce6c568b000000001c9beb15"
786
+ },
787
+ {
788
+ gas: "00",
789
+ block: "0f",
790
+ step_hashes: [
791
+ ],
792
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
793
+ previous: "37b47da175bec1fa38724f154502f7581f35b11a4550fcbd153cbc231c9beb15",
794
+ reward: "7530",
795
+ addresses: [
796
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
797
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
798
+ ],
799
+ payload_hashes: [
800
+ ],
801
+ payload_schemas: [
802
+ ],
803
+ previous_hashes: [
804
+ "37b47da175bec1fa38724f154502f7581f35b11a4550fcbd153cbc231c9beb15",
805
+ "dad7ed407788a57470e8699b065efb64d060d61c84803318c877148dd3710930"
806
+ ],
807
+ schema: "network.xyo.boundwitness",
808
+ $signatures: [
809
+ "204a38fbba3325bd295c9d600de7f565394e199d4d3daf5ec52a911e0d55d40704d30c38ec470ba77b19f62fd5f8b1888dd00591a23575d8b92ac8fb14f11d5a",
810
+ "7ab019d614974930a17bebfa9236e34742e932ab1b20007a86fa033674d2590303c7835b38694e2fb46f97d66e3e1b6b369cadc415f8a969c2cbc65e034b3f68"
811
+ ],
812
+ $epoch: 0,
813
+ _dataHash: "3b8244d7dfa8b111bda9ed05e072640cc2c917687116a9c6ba298ca9a46f9b9b",
814
+ _hash: "895b5bcbc9b5bcede1b0a0cb1eb6e9c0904be16d1a83ed99f2b03d74159f9761",
815
+ _sequence: "00000194ce6c569e00000000159f9761"
816
+ },
817
+ {
818
+ gas: "00",
819
+ block: "10",
820
+ step_hashes: [
821
+ ],
822
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
823
+ previous: "895b5bcbc9b5bcede1b0a0cb1eb6e9c0904be16d1a83ed99f2b03d74159f9761",
824
+ reward: "7530",
825
+ addresses: [
826
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
827
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
828
+ ],
829
+ payload_hashes: [
830
+ ],
831
+ payload_schemas: [
832
+ ],
833
+ previous_hashes: [
834
+ "895b5bcbc9b5bcede1b0a0cb1eb6e9c0904be16d1a83ed99f2b03d74159f9761",
835
+ "3b8244d7dfa8b111bda9ed05e072640cc2c917687116a9c6ba298ca9a46f9b9b"
836
+ ],
837
+ schema: "network.xyo.boundwitness",
838
+ $signatures: [
839
+ "0698eb7fa459e13d5bfa42dec92d6251d52d281f7051e083ef73260373e126722a310bd15e2f2bc3e6f6e5aee3cc28b1bc1eb509733bd74fe5394d7bb7d75769",
840
+ "60ccc8f298ebf66328654552a6243bd5a07f2c76207648c5378d6285c70be36a64de53bf90ae8657c6433f85c3cdc316ea0863cb1b9183cd1412cee878eeaec3"
841
+ ],
842
+ $epoch: 0,
843
+ _dataHash: "95285ec0d7b837371d5c8ad8ac75f609a5b83662531ffdd41770f6724f986d3a",
844
+ _hash: "3233cfb02d07056bf5dee59f6a6d1eeafe14543c2d23fd803bbf8ec8b45e6b07",
845
+ _sequence: "00000194ce6c56b000000000b45e6b07"
846
+ },
847
+ {
848
+ gas: "00",
849
+ block: "11",
850
+ step_hashes: [
851
+ ],
852
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
853
+ previous: "3233cfb02d07056bf5dee59f6a6d1eeafe14543c2d23fd803bbf8ec8b45e6b07",
854
+ reward: "7530",
855
+ addresses: [
856
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
857
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
858
+ ],
859
+ payload_hashes: [
860
+ ],
861
+ payload_schemas: [
862
+ ],
863
+ previous_hashes: [
864
+ "3233cfb02d07056bf5dee59f6a6d1eeafe14543c2d23fd803bbf8ec8b45e6b07",
865
+ "95285ec0d7b837371d5c8ad8ac75f609a5b83662531ffdd41770f6724f986d3a"
866
+ ],
867
+ schema: "network.xyo.boundwitness",
868
+ $signatures: [
869
+ "c1283d36a6e2d185b693a43bbc1fdaff9e2bfa84e181fbc88af09a4a1be3da932fd2f36425ff7018b274770819e4ef595488d98e2dd749adeb7d96040df0ff7e",
870
+ "d32940d3c605451e905e3b15ac8af91e21949c5225d57cce9460a399166abd3a5b8b9fd8aecdb6a66287159ec5c398ea6fbdc6d050ff873e389735b22689fc6a"
871
+ ],
872
+ $epoch: 0,
873
+ _dataHash: "1f6e0444db7aed7987da40568b9b4b8745a09cb1ef4990f48130ecf348180559",
874
+ _hash: "43f699190a88330c6ba56898c1bf127b22fc8c258649a2d324fe356b3a35c97a",
875
+ _sequence: "00000194ce6c56c3000000003a35c97a"
876
+ },
877
+ {
878
+ gas: "00",
879
+ block: "12",
880
+ step_hashes: [
881
+ ],
882
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
883
+ previous: "43f699190a88330c6ba56898c1bf127b22fc8c258649a2d324fe356b3a35c97a",
884
+ reward: "7530",
885
+ addresses: [
886
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
887
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
888
+ ],
889
+ payload_hashes: [
890
+ ],
891
+ payload_schemas: [
892
+ ],
893
+ previous_hashes: [
894
+ "43f699190a88330c6ba56898c1bf127b22fc8c258649a2d324fe356b3a35c97a",
895
+ "1f6e0444db7aed7987da40568b9b4b8745a09cb1ef4990f48130ecf348180559"
896
+ ],
897
+ schema: "network.xyo.boundwitness",
898
+ $signatures: [
899
+ "57ca539d055446d42c10a9a7cc16eb9ad798f0ffc02797b5e5b86dba1c1922615334ebc50f8dfcc8fd8f65687eba174f6c0f59b964cc968ac25a3ec24753e256",
900
+ "7e8c60ab8f4c81b35a8130fb24d2994cb1ee770044fbad78408017f8a3eb99d87975683da39312e3c09332e8ca87698d37b23120b912d6d134dcbcff207ce56e"
901
+ ],
902
+ $epoch: 0,
903
+ _dataHash: "65f08790dae44321153a654a1144cdf95c38b022cef43554c9fa2dd69cf08e6e",
904
+ _hash: "9234b1ce806eaeed40cdb73be7a9ea52da9cf0a14f9aeb8840e76001f7961901",
905
+ _sequence: "00000194ce6c56d500000000f7961901"
906
+ },
907
+ {
908
+ gas: "00",
909
+ block: "13",
910
+ step_hashes: [
911
+ ],
912
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
913
+ previous: "9234b1ce806eaeed40cdb73be7a9ea52da9cf0a14f9aeb8840e76001f7961901",
914
+ reward: "7530",
915
+ addresses: [
916
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
917
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
918
+ ],
919
+ payload_hashes: [
920
+ ],
921
+ payload_schemas: [
922
+ ],
923
+ previous_hashes: [
924
+ "9234b1ce806eaeed40cdb73be7a9ea52da9cf0a14f9aeb8840e76001f7961901",
925
+ "65f08790dae44321153a654a1144cdf95c38b022cef43554c9fa2dd69cf08e6e"
926
+ ],
927
+ schema: "network.xyo.boundwitness",
928
+ $signatures: [
929
+ "5fd6239bb7a02125b4520968e9663490cf1715d6228da01f38dcb7b24dcf728033615584097645fc25deb8f43ce6d119a0640b510d94e46090d552a828f7a502",
930
+ "bc206b48140d888e41a88bd876fbb372a38787c689cbd1fd38c1dcb118a41ae42b6dabfcd1b18575b75b9269191c6a5db57ea1c25bae1c19901197c377ce1b4c"
931
+ ],
932
+ $epoch: 0,
933
+ _dataHash: "01f2f68e9b9acd29d4753153b38a2653c18ab4cea1987128450b7e765e732a96",
934
+ _hash: "76c0969f037ac00c3bab93e22d93e8e3435fbedf4aec3d774a44525db3992ff3",
935
+ _sequence: "00000194ce6c56e800000000b3992ff3"
936
+ },
937
+ {
938
+ gas: "00",
939
+ block: "14",
940
+ step_hashes: [
941
+ ],
942
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
943
+ previous: "76c0969f037ac00c3bab93e22d93e8e3435fbedf4aec3d774a44525db3992ff3",
944
+ reward: "7530",
945
+ addresses: [
946
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
947
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
948
+ ],
949
+ payload_hashes: [
950
+ ],
951
+ payload_schemas: [
952
+ ],
953
+ previous_hashes: [
954
+ "76c0969f037ac00c3bab93e22d93e8e3435fbedf4aec3d774a44525db3992ff3",
955
+ "01f2f68e9b9acd29d4753153b38a2653c18ab4cea1987128450b7e765e732a96"
956
+ ],
957
+ schema: "network.xyo.boundwitness",
958
+ $signatures: [
959
+ "810c841e88c02136091c1a11bf0576dab10ad7bcc9f5a9b5afb3fb576892ffc943867a648039e75189196f9223970be22a1ece3b3a12cea181b00698298b1f60",
960
+ "a7c643e107c14078e118d3a774eb4bda0026e6f71f1718aef75c0e465fae08d7019b6581ac78af13ce77afc0a3d55f19125244032bca6c8b752d68f013914179"
961
+ ],
962
+ $epoch: 0,
963
+ _dataHash: "cd3c26f44f5ff54629435cbefad5675d35a0a6ac30f90ddcc0a019636badd229",
964
+ _hash: "6ac8eeec3cc617c0f0122f204532738ce3e37a484276077d77e5b33697fd3ed0",
965
+ _sequence: "00000194ce6c56fb0000000097fd3ed0"
966
+ },
967
+ {
968
+ gas: "00",
969
+ block: "15",
970
+ step_hashes: [
971
+ ],
972
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
973
+ previous: "6ac8eeec3cc617c0f0122f204532738ce3e37a484276077d77e5b33697fd3ed0",
974
+ reward: "7530",
975
+ addresses: [
976
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
977
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
978
+ ],
979
+ payload_hashes: [
980
+ ],
981
+ payload_schemas: [
982
+ ],
983
+ previous_hashes: [
984
+ "6ac8eeec3cc617c0f0122f204532738ce3e37a484276077d77e5b33697fd3ed0",
985
+ "cd3c26f44f5ff54629435cbefad5675d35a0a6ac30f90ddcc0a019636badd229"
986
+ ],
987
+ schema: "network.xyo.boundwitness",
988
+ $signatures: [
989
+ "756c13167fe50b8d157e91e4b6a2076c08b97b65a2dda532245aac621ca0deb105efa55c04f74b0a3fa3e313395202f89c8c2a877c2ce10d2c6b5594536754e7",
990
+ "7905e47b9eb2246f1ead1bcf39d79d7c8404c0ba7449e9bdd22635bb56464e1e09d1dad5af42aaf7de37b3c243ac4efce7eb179573f6970a56fd2c4d36f9d3a5"
991
+ ],
992
+ $epoch: 0,
993
+ _dataHash: "95005616a375da9043e72a254f21a875ef86880097ae143d27153d3355902933",
994
+ _hash: "3f069f39b6cf2abfc8dbd4bfd87102cb6d1e37fd1b9db725f2e7ad830f536878",
995
+ _sequence: "00000194ce6c570f000000000f536878"
996
+ },
997
+ {
998
+ gas: "00",
999
+ block: "16",
1000
+ step_hashes: [
1001
+ ],
1002
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1003
+ previous: "3f069f39b6cf2abfc8dbd4bfd87102cb6d1e37fd1b9db725f2e7ad830f536878",
1004
+ reward: "7530",
1005
+ addresses: [
1006
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1007
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1008
+ ],
1009
+ payload_hashes: [
1010
+ ],
1011
+ payload_schemas: [
1012
+ ],
1013
+ previous_hashes: [
1014
+ "3f069f39b6cf2abfc8dbd4bfd87102cb6d1e37fd1b9db725f2e7ad830f536878",
1015
+ "95005616a375da9043e72a254f21a875ef86880097ae143d27153d3355902933"
1016
+ ],
1017
+ schema: "network.xyo.boundwitness",
1018
+ $signatures: [
1019
+ "b5ea56c6e18508acd65397a62e74ded64b25c312e7e5b6952aa1be5f06eae26912d9667b3720b32bd560434ae155bfb9207896ff87a42818895add9fa058ae7d",
1020
+ "cf49aac7a482f840360d16d563b97d0a99939657688c034aaa63e6fea889b144539a5780e06a144f7990ad40d26a50a4159895bbb1a301c7703d01474978aa89"
1021
+ ],
1022
+ $epoch: 0,
1023
+ _dataHash: "3226916718274d0125b19592652af1a6ddf3515fb44172f996858659e51a5821",
1024
+ _hash: "c179c3f577d8083f21bc7ab85c20a142ac5670ee5fd68fb44185bfa7bdf639c0",
1025
+ _sequence: "00000194ce6c572300000000bdf639c0"
1026
+ },
1027
+ {
1028
+ gas: "00",
1029
+ block: "17",
1030
+ step_hashes: [
1031
+ ],
1032
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1033
+ previous: "c179c3f577d8083f21bc7ab85c20a142ac5670ee5fd68fb44185bfa7bdf639c0",
1034
+ reward: "7530",
1035
+ addresses: [
1036
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1037
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1038
+ ],
1039
+ payload_hashes: [
1040
+ ],
1041
+ payload_schemas: [
1042
+ ],
1043
+ previous_hashes: [
1044
+ "c179c3f577d8083f21bc7ab85c20a142ac5670ee5fd68fb44185bfa7bdf639c0",
1045
+ "3226916718274d0125b19592652af1a6ddf3515fb44172f996858659e51a5821"
1046
+ ],
1047
+ schema: "network.xyo.boundwitness",
1048
+ $signatures: [
1049
+ "b98cdbe19c35088571ede1874d2bc3bf607ddb9da47d02b655102c54e8db87e21322c64cffd4c188f2779b2f4716003b1bafabc19e38a3efe0a0557926fef71e",
1050
+ "066af736a17fd844887c82a76e36a9e0b0da65ba5c3dd5b88428231525e1b68b1c716406b5b0490e399988adb5e110d539aab0fc77bd7f378e82f4964b98401a"
1051
+ ],
1052
+ $epoch: 0,
1053
+ _dataHash: "162d6b50b65f3d8287d3b4b8fd037eec347950c9a80586c1daab1cab74d2186a",
1054
+ _hash: "99caea80ee8899f71e987dbd7e5ad38bfbb928a0e70402744c42a1c1b812a07e",
1055
+ _sequence: "00000194ce6c573600000000b812a07e"
1056
+ },
1057
+ {
1058
+ gas: "00",
1059
+ block: "18",
1060
+ step_hashes: [
1061
+ ],
1062
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1063
+ previous: "99caea80ee8899f71e987dbd7e5ad38bfbb928a0e70402744c42a1c1b812a07e",
1064
+ reward: "7530",
1065
+ addresses: [
1066
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1067
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1068
+ ],
1069
+ payload_hashes: [
1070
+ ],
1071
+ payload_schemas: [
1072
+ ],
1073
+ previous_hashes: [
1074
+ "99caea80ee8899f71e987dbd7e5ad38bfbb928a0e70402744c42a1c1b812a07e",
1075
+ "162d6b50b65f3d8287d3b4b8fd037eec347950c9a80586c1daab1cab74d2186a"
1076
+ ],
1077
+ schema: "network.xyo.boundwitness",
1078
+ $signatures: [
1079
+ "8d471a97f3b296ba9ba4e0f0ec1699ee753c6dd9af5e21f44669d53b5a022afa5a78e980856f57c59fed7cb911ece898570320a143c6a3b2560a519e6992acc6",
1080
+ "ddd872e4080ffbbcdd08b0c42c92c5c79f07b2c7b6eafeb9d88d679fdda992826494cec84699ab6fca8d59b59ca8b9cf5811239290fa077507278402019206de"
1081
+ ],
1082
+ $epoch: 0,
1083
+ _dataHash: "e1163f1594b798250bfe5b2a7fb4fa63c0de0fdfd1707f61102cbf2820c1315d",
1084
+ _hash: "6d7feb729bc8f4eef8e33a5c6c20a8fe0d318eb159577e8cb6e197520063c29b",
1085
+ _sequence: "00000194ce6c5749000000000063c29b"
1086
+ },
1087
+ {
1088
+ gas: "00",
1089
+ block: "19",
1090
+ step_hashes: [
1091
+ ],
1092
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1093
+ previous: "6d7feb729bc8f4eef8e33a5c6c20a8fe0d318eb159577e8cb6e197520063c29b",
1094
+ reward: "7530",
1095
+ addresses: [
1096
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1097
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1098
+ ],
1099
+ payload_hashes: [
1100
+ ],
1101
+ payload_schemas: [
1102
+ ],
1103
+ previous_hashes: [
1104
+ "6d7feb729bc8f4eef8e33a5c6c20a8fe0d318eb159577e8cb6e197520063c29b",
1105
+ "e1163f1594b798250bfe5b2a7fb4fa63c0de0fdfd1707f61102cbf2820c1315d"
1106
+ ],
1107
+ schema: "network.xyo.boundwitness",
1108
+ $signatures: [
1109
+ "80f5da1904d45fc67ab08191f9fb6d2eac05f861a3f471ff4b0022a8aa8b8c3d5495f02ef3069e859d12a4cb9f1c62ce854fea48460aae223a83f998b34d0209",
1110
+ "aed4dd76381760258732c9d73aeec46f57f390fbc707b20a7db91e2738bf8f212ae2e94b786023460fff9e9e69aa83ca6a064fb0317151a1b87880a01859db75"
1111
+ ],
1112
+ $epoch: 0,
1113
+ _dataHash: "38ac65443d058d5ee3d11c18bf0e3f207180e2684d53ebcbe39ffa38c6c9f80b",
1114
+ _hash: "59b0935a6860769178480c8f04e60b4e2936be978b8ed553da5def0c2e115203",
1115
+ _sequence: "00000194ce6c575c000000002e115203"
1116
+ },
1117
+ {
1118
+ gas: "00",
1119
+ block: "1a",
1120
+ step_hashes: [
1121
+ ],
1122
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1123
+ previous: "59b0935a6860769178480c8f04e60b4e2936be978b8ed553da5def0c2e115203",
1124
+ reward: "7530",
1125
+ addresses: [
1126
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1127
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1128
+ ],
1129
+ payload_hashes: [
1130
+ ],
1131
+ payload_schemas: [
1132
+ ],
1133
+ previous_hashes: [
1134
+ "59b0935a6860769178480c8f04e60b4e2936be978b8ed553da5def0c2e115203",
1135
+ "38ac65443d058d5ee3d11c18bf0e3f207180e2684d53ebcbe39ffa38c6c9f80b"
1136
+ ],
1137
+ schema: "network.xyo.boundwitness",
1138
+ $signatures: [
1139
+ "73eb2fba37e98bf55ebc734b4b0abde762a537ded767d3b2d8b5287c530cde0700e0ce091f73d04880fbbb41fc2e3d1a04218363a6a5179ad8344ad70f3afad8",
1140
+ "a7d1d94503453c5ce20a5980d260939e842c235380d52cdfdb8c80466b7b21873d4ef54393c9721e0ee2e2d68da12516ecc00fd3e486a6857704e4e74f6fb843"
1141
+ ],
1142
+ $epoch: 0,
1143
+ _dataHash: "e4c6920199d1dc441a140c17da5be12b52c537d7d358cabc8928aea109007ab8",
1144
+ _hash: "06d8f99316f9aa7bbebe4174ae7b8d2d2dc45c2c1dbdb1baaa512f262de68058",
1145
+ _sequence: "00000194ce6c576e000000002de68058"
1146
+ },
1147
+ {
1148
+ gas: "00",
1149
+ block: "1b",
1150
+ step_hashes: [
1151
+ ],
1152
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1153
+ previous: "06d8f99316f9aa7bbebe4174ae7b8d2d2dc45c2c1dbdb1baaa512f262de68058",
1154
+ reward: "7530",
1155
+ addresses: [
1156
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1157
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1158
+ ],
1159
+ payload_hashes: [
1160
+ ],
1161
+ payload_schemas: [
1162
+ ],
1163
+ previous_hashes: [
1164
+ "06d8f99316f9aa7bbebe4174ae7b8d2d2dc45c2c1dbdb1baaa512f262de68058",
1165
+ "e4c6920199d1dc441a140c17da5be12b52c537d7d358cabc8928aea109007ab8"
1166
+ ],
1167
+ schema: "network.xyo.boundwitness",
1168
+ $signatures: [
1169
+ "01098c656b063efdab0867cd2aadc06a8c773cbb62319f50d29d3f2b9319a4457f729e6b3a2a064078e223e98384ccde74eb87b721a65b12ae0666364d1922d1",
1170
+ "72e237cfb04add3023feb36c726e40437d16575e646a6ec71534b06d12dd5adf7cdb9a8d9514aebceead5b9bee08b94bcfa1429bc8de26428658502165afb095"
1171
+ ],
1172
+ $epoch: 0,
1173
+ _dataHash: "78dc39caaa697488517d8c663085ff0dd450140bcd93701fe49a267ea980d08d",
1174
+ _hash: "eb49cac37db77d58293e71dd23d5500a817c36ac4c4f3e8607d3e71c495c41e3",
1175
+ _sequence: "00000194ce6c578100000000495c41e3"
1176
+ },
1177
+ {
1178
+ gas: "00",
1179
+ block: "1c",
1180
+ step_hashes: [
1181
+ ],
1182
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1183
+ previous: "eb49cac37db77d58293e71dd23d5500a817c36ac4c4f3e8607d3e71c495c41e3",
1184
+ reward: "7530",
1185
+ addresses: [
1186
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1187
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1188
+ ],
1189
+ payload_hashes: [
1190
+ ],
1191
+ payload_schemas: [
1192
+ ],
1193
+ previous_hashes: [
1194
+ "eb49cac37db77d58293e71dd23d5500a817c36ac4c4f3e8607d3e71c495c41e3",
1195
+ "78dc39caaa697488517d8c663085ff0dd450140bcd93701fe49a267ea980d08d"
1196
+ ],
1197
+ schema: "network.xyo.boundwitness",
1198
+ $signatures: [
1199
+ "81dc16747f5c00fb64ac251e470c3822c4a351cd0d657d965348e105d160ef4a2b9d812d37df94acc7c542a8d5c2e4a79022bc83489b495acad9e2993c5f3004",
1200
+ "bf8908cfbd64a62b8a5a87772e3e44ac0317304266be1fdf85421a194ee4a2535bff02bd7bd9fcbdcac995517db905156643179598752c18a9ffbf36c3b45be0"
1201
+ ],
1202
+ $epoch: 0,
1203
+ _dataHash: "e9bf3f0c6f7842961e99f32226cb04c54d90c9cdd8ddd6003f32dce341b59c84",
1204
+ _hash: "463ff71001b80845d58c7baafae221a9213091321c22c3e4778e185aa0236a3a",
1205
+ _sequence: "00000194ce6c579500000000a0236a3a"
1206
+ },
1207
+ {
1208
+ gas: "00",
1209
+ block: "1d",
1210
+ step_hashes: [
1211
+ ],
1212
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1213
+ previous: "463ff71001b80845d58c7baafae221a9213091321c22c3e4778e185aa0236a3a",
1214
+ reward: "7530",
1215
+ addresses: [
1216
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1217
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1218
+ ],
1219
+ payload_hashes: [
1220
+ ],
1221
+ payload_schemas: [
1222
+ ],
1223
+ previous_hashes: [
1224
+ "463ff71001b80845d58c7baafae221a9213091321c22c3e4778e185aa0236a3a",
1225
+ "e9bf3f0c6f7842961e99f32226cb04c54d90c9cdd8ddd6003f32dce341b59c84"
1226
+ ],
1227
+ schema: "network.xyo.boundwitness",
1228
+ $signatures: [
1229
+ "b7d3aca05357a73f7434d37a067e0a060f1bb4d069375c707d7f5474f1b040f205fea48cd681169d4f8c202e24053895c072f1f8a360fb6785f32f2a1da4cff1",
1230
+ "a06e996ccc16e37b707390194e2736e49e842172063f2d89a7cd5b604e266ea261be2b30a94516c97c0f39317b6b7ba240a03b412dc4e6ccde54a88353c8a23f"
1231
+ ],
1232
+ $epoch: 0,
1233
+ _dataHash: "00e9f351a2c668e452e46272a857a6dfdd2c6a7bd025aea86fbb2c3c7eb5dfcd",
1234
+ _hash: "1091e127bb0eb4a1df41fb53957cd12f2557fb9b512852a9c21365297893bdf2",
1235
+ _sequence: "00000194ce6c57a8000000007893bdf2"
1236
+ },
1237
+ {
1238
+ gas: "00",
1239
+ block: "1e",
1240
+ step_hashes: [
1241
+ ],
1242
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1243
+ previous: "1091e127bb0eb4a1df41fb53957cd12f2557fb9b512852a9c21365297893bdf2",
1244
+ reward: "7530",
1245
+ addresses: [
1246
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1247
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1248
+ ],
1249
+ payload_hashes: [
1250
+ ],
1251
+ payload_schemas: [
1252
+ ],
1253
+ previous_hashes: [
1254
+ "1091e127bb0eb4a1df41fb53957cd12f2557fb9b512852a9c21365297893bdf2",
1255
+ "00e9f351a2c668e452e46272a857a6dfdd2c6a7bd025aea86fbb2c3c7eb5dfcd"
1256
+ ],
1257
+ schema: "network.xyo.boundwitness",
1258
+ $signatures: [
1259
+ "7bcc7f4a6605fb7c99817b59f10b3d77e33230f294c4877b010225d7c12e2da3052ab15a03427baaa55e4565972a309ea422e9dc624739616f7515a7b4c8d7b9",
1260
+ "b2085f1423a4f847a70c8dccaf2a1574d00d1102b5ec493b64b81d3bc94a98c863ec71a8f5c5cb358ebdc8295623185c11b6688982ba6cd96db5b02ab4b6c7e0"
1261
+ ],
1262
+ $epoch: 0,
1263
+ _dataHash: "c95575f19e9ea08ef90d6ccaf010f7ed64cf194fd9fc713f9d4c7267160b50b2",
1264
+ _hash: "c3b27870f2c5e5c0ea86e16d7681994033d9c6db81d3c1d2e5817bd53b7eff62",
1265
+ _sequence: "00000194ce6c57bc000000003b7eff62"
1266
+ },
1267
+ {
1268
+ gas: "00",
1269
+ block: "1f",
1270
+ step_hashes: [
1271
+ ],
1272
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1273
+ previous: "c3b27870f2c5e5c0ea86e16d7681994033d9c6db81d3c1d2e5817bd53b7eff62",
1274
+ reward: "7530",
1275
+ addresses: [
1276
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1277
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1278
+ ],
1279
+ payload_hashes: [
1280
+ ],
1281
+ payload_schemas: [
1282
+ ],
1283
+ previous_hashes: [
1284
+ "c3b27870f2c5e5c0ea86e16d7681994033d9c6db81d3c1d2e5817bd53b7eff62",
1285
+ "c95575f19e9ea08ef90d6ccaf010f7ed64cf194fd9fc713f9d4c7267160b50b2"
1286
+ ],
1287
+ schema: "network.xyo.boundwitness",
1288
+ $signatures: [
1289
+ "8023f6d0e6c34389a07323492f700af79c642f0f807f3bd917c5cb3c486b33002c39fc5b29dd161516ce67ce0b00cea02aff9cabe76d608bc9a6a2b9beb231ff",
1290
+ "d008f23ac16998053d44a9bce6d10a6dd46935e33fb999ed8e3779c61742ae0d0967228ed8745b2fff81470ff4a4badd99d12c8b7725698d963b1d55048cb4cf"
1291
+ ],
1292
+ $epoch: 0,
1293
+ _dataHash: "9a00482ab8d76f796d4aa465b1a10669b5ef0f0d72d9dce7043003ed0dd737fb",
1294
+ _hash: "0b124a776804a1a165b1ba90182fe91c07c30436452dd8271b799dd8fb29a0f7",
1295
+ _sequence: "00000194ce6c57ce00000000fb29a0f7"
1296
+ },
1297
+ {
1298
+ gas: "00",
1299
+ block: "20",
1300
+ step_hashes: [
1301
+ ],
1302
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1303
+ previous: "0b124a776804a1a165b1ba90182fe91c07c30436452dd8271b799dd8fb29a0f7",
1304
+ reward: "7530",
1305
+ addresses: [
1306
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1307
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1308
+ ],
1309
+ payload_hashes: [
1310
+ ],
1311
+ payload_schemas: [
1312
+ ],
1313
+ previous_hashes: [
1314
+ "0b124a776804a1a165b1ba90182fe91c07c30436452dd8271b799dd8fb29a0f7",
1315
+ "9a00482ab8d76f796d4aa465b1a10669b5ef0f0d72d9dce7043003ed0dd737fb"
1316
+ ],
1317
+ schema: "network.xyo.boundwitness",
1318
+ $signatures: [
1319
+ "b3c642ead1de7a0a5ecb755cefd3c188faf5c29afccfd5f5331f469fed94f86477b4fc82318fab45d083628630f3913487ad1bdba47cc355a70365fb4ca4cfe0",
1320
+ "72d0373fbef34d837186495476fe0cc75d58ace97232588dfe2535cd81e683dc2439e02d38720fb3f7695d295c8eed04824d9fb9cb97a3324111d1631daaf9d6"
1321
+ ],
1322
+ $epoch: 0,
1323
+ _dataHash: "ab24cc87c3adadfdd1d8a366d3c9b573eeed9df24d0c953c0432a50e46ea3d57",
1324
+ _hash: "e9db7723032a299503705e0af4866e0143182b4a66b38e7a29fa2bb2b23082d3",
1325
+ _sequence: "00000194ce6c57e100000000b23082d3"
1326
+ },
1327
+ {
1328
+ gas: "00",
1329
+ block: "21",
1330
+ step_hashes: [
1331
+ ],
1332
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1333
+ previous: "e9db7723032a299503705e0af4866e0143182b4a66b38e7a29fa2bb2b23082d3",
1334
+ reward: "7530",
1335
+ addresses: [
1336
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1337
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1338
+ ],
1339
+ payload_hashes: [
1340
+ ],
1341
+ payload_schemas: [
1342
+ ],
1343
+ previous_hashes: [
1344
+ "e9db7723032a299503705e0af4866e0143182b4a66b38e7a29fa2bb2b23082d3",
1345
+ "ab24cc87c3adadfdd1d8a366d3c9b573eeed9df24d0c953c0432a50e46ea3d57"
1346
+ ],
1347
+ schema: "network.xyo.boundwitness",
1348
+ $signatures: [
1349
+ "01dfc5df1ee478d8bf79a3f7513d03eb030a3330d60fc99db9faf80143e1efaa1ef07a11985702eb15709d9d30d28faa4dce7aa2079da5beb097bd7392b2d941",
1350
+ "e5895279d7081f2857619e2d1ba3efd0416888745e9d7b08033e610708b4d97378cb6788d523cfd1e9dc463f53de64b98cad326d9332e22b4bc561ecfd5b8ab3"
1351
+ ],
1352
+ $epoch: 0,
1353
+ _dataHash: "0b29b106ac95dbc161735998a4a97ea806d5a5ca424cde0a8fa198d02dab91f7",
1354
+ _hash: "ed39e4d4440402c1e974cdb95da8b34052440ccc48d80627161dbf6955cd6da5",
1355
+ _sequence: "00000194ce6c57f40000000055cd6da5"
1356
+ },
1357
+ {
1358
+ gas: "00",
1359
+ block: "22",
1360
+ step_hashes: [
1361
+ ],
1362
+ chain: "2aae728afd1777b79c34d79c4523797f9d9965b0",
1363
+ previous: "ed39e4d4440402c1e974cdb95da8b34052440ccc48d80627161dbf6955cd6da5",
1364
+ reward: "7530",
1365
+ addresses: [
1366
+ "d01885faa18c18ee20982bdf499b6152981a84c0",
1367
+ "4019a3fd9e96337e00d598a6a13fb5a37d5f9018"
1368
+ ],
1369
+ payload_hashes: [
1370
+ ],
1371
+ payload_schemas: [
1372
+ ],
1373
+ previous_hashes: [
1374
+ "ed39e4d4440402c1e974cdb95da8b34052440ccc48d80627161dbf6955cd6da5",
1375
+ "0b29b106ac95dbc161735998a4a97ea806d5a5ca424cde0a8fa198d02dab91f7"
1376
+ ],
1377
+ schema: "network.xyo.boundwitness",
1378
+ $signatures: [
1379
+ "0b38f2eaade2eb2cb54050708d34543a308b5db9758bc7fc397c9f8b660e89d41e4ebb24318a58b2286b395571a901d747c5257eff9c8b73ea66a464e6c8583c",
1380
+ "b69429bd5845bf2e9ae74fd5d2ee0909977fcdd1f82efaaae182feb7db7b1e4703a8da7e16712d6a492a898fab28024a5d5f715ef596c90a377f9faee40ae752"
1381
+ ],
1382
+ $epoch: 0,
1383
+ _dataHash: "e1e28cc241f509ab3e40e8db3720169aafca9c6977113f1991e84df9cdaaf43a",
1384
+ _hash: "664ac8088c1036206af47f9317ce7d1eaaed800a4179f4f2b075cc6c3925587f",
1385
+ _sequence: "00000194ce6c5805000000003925587f"
1386
+ }
1387
+ ];
1388
+
1389
+ export { BlockChainPagination, type BlockChainPaginationProps, BlockChainTableRow, type BlockChainTableRowProps, BlockHashTableCell, type BlockHashTableCellProps, type BlockHeaderEventNouns, BlockHeadingFlexbox, BlockJsonViewTableCell, type BlockJsonViewTableCellProps, BlockListWrapperFlexBox, BlockNumberTableCell, type BlockNumberTableCellProps, BlockProducerChip, type BlockProducerChipProps, BlockProducerTableCell, BlockTransactionCountTableCell, type BlockTransactionCountTableCellProps, BlockVerificationTableCell, type BlockVerificationTableCellProps, BlockchainTableEx, ChainAnalyzerStatsDialog, ChainAnalyzerStatsDialogFromContext, type ChainAnalyzerStatsDialogProps, ChainArchivistDecorator, ChainArchivistDelayedInsertDecorator, ChainInfoContextDecorator, ChainIteratorStore, type ChainIteratorStoreValues, type ChainIteratorUpdatingHeadParams, ChainTransactionBuilder, ChainTransactionNetwork, type ChainTransactionNetworkProps, DynamicBlockchainRenderFlexbox, ExampleBlockchainWithPayloads, type Listener, MemoizedPollingControlsFlexbox, PollingControlsFlexbox, type PollingControlsFlexboxProps, type PollingState, PulseSvgIcon, StaticBlockchainRenderFlexBox, StyledPulseSvgIcon, SubmitChainTransaction, TransactionCountChip, type TransactionCountChipProps, TransactionsDialog, type TransactionsDialogProps, TransactionsQuickTipButton, type TransactionsQuickTipButtonQuickTipButtonProps, blockProducer, buildBlockChainRenderComponent, buildBlockHeadingComponent, resolveDefinedHead, txsFromBlock, useAnchorElement, useBlockHeadingEvents, useBlockProducer, useChainIteratorParams, useChainIteratorStore, useChainIteratorUpdatingHead, useChainPagination, useDynamicBlockComponents, useIterateChain, useOnBlock, useStaticBlockComponents, useTxsFromBlock };