@fuel-ts/account 0.0.0-rc-2021-20240411141803 → 0.0.0-rc-2021-20240411154255
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.
Potentially problematic release.
This version of @fuel-ts/account might be problematic. Click here for more details.
- package/dist/index.global.js +20 -4
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +20 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -4
- package/dist/index.mjs.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +20 -4
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/message.d.ts +4 -0
- package/dist/providers/message.d.ts.map +1 -1
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/test-utils.global.js +20 -4
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +20 -4
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +20 -4
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +16 -16
package/dist/index.global.js
CHANGED
@@ -38138,24 +38138,32 @@ ${ReceiptFragmentFragmentDoc}`;
|
|
38138
38138
|
messageBlockHeader {
|
38139
38139
|
id
|
38140
38140
|
daHeight
|
38141
|
+
consensusParametersVersion
|
38142
|
+
stateTransitionBytecodeVersion
|
38141
38143
|
transactionsCount
|
38144
|
+
messageReceiptCount
|
38142
38145
|
transactionsRoot
|
38146
|
+
messageOutboxRoot
|
38147
|
+
eventInboxRoot
|
38143
38148
|
height
|
38144
38149
|
prevRoot
|
38145
38150
|
time
|
38146
38151
|
applicationHash
|
38147
|
-
messageReceiptCount
|
38148
38152
|
}
|
38149
38153
|
commitBlockHeader {
|
38150
38154
|
id
|
38151
38155
|
daHeight
|
38156
|
+
consensusParametersVersion
|
38157
|
+
stateTransitionBytecodeVersion
|
38152
38158
|
transactionsCount
|
38159
|
+
messageReceiptCount
|
38153
38160
|
transactionsRoot
|
38161
|
+
messageOutboxRoot
|
38162
|
+
eventInboxRoot
|
38154
38163
|
height
|
38155
38164
|
prevRoot
|
38156
38165
|
time
|
38157
38166
|
applicationHash
|
38158
|
-
messageReceiptCount
|
38159
38167
|
}
|
38160
38168
|
sender
|
38161
38169
|
recipient
|
@@ -42490,7 +42498,11 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
42490
42498
|
prevRoot: messageBlockHeader.prevRoot,
|
42491
42499
|
time: messageBlockHeader.time,
|
42492
42500
|
applicationHash: messageBlockHeader.applicationHash,
|
42493
|
-
messageReceiptCount: bn(messageBlockHeader.messageReceiptCount)
|
42501
|
+
messageReceiptCount: bn(messageBlockHeader.messageReceiptCount),
|
42502
|
+
messageOutboxRoot: messageBlockHeader.messageOutboxRoot,
|
42503
|
+
consensusParametersVersion: messageBlockHeader.consensusParametersVersion,
|
42504
|
+
eventInboxRoot: messageBlockHeader.eventInboxRoot,
|
42505
|
+
stateTransitionBytecodeVersion: messageBlockHeader.stateTransitionBytecodeVersion
|
42494
42506
|
},
|
42495
42507
|
commitBlockHeader: {
|
42496
42508
|
id: commitBlockHeader.id,
|
@@ -42501,7 +42513,11 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
42501
42513
|
prevRoot: commitBlockHeader.prevRoot,
|
42502
42514
|
time: commitBlockHeader.time,
|
42503
42515
|
applicationHash: commitBlockHeader.applicationHash,
|
42504
|
-
messageReceiptCount: bn(commitBlockHeader.messageReceiptCount)
|
42516
|
+
messageReceiptCount: bn(commitBlockHeader.messageReceiptCount),
|
42517
|
+
messageOutboxRoot: commitBlockHeader.messageOutboxRoot,
|
42518
|
+
consensusParametersVersion: commitBlockHeader.consensusParametersVersion,
|
42519
|
+
eventInboxRoot: commitBlockHeader.eventInboxRoot,
|
42520
|
+
stateTransitionBytecodeVersion: commitBlockHeader.stateTransitionBytecodeVersion
|
42505
42521
|
},
|
42506
42522
|
sender: Address.fromAddressOrString(sender),
|
42507
42523
|
recipient: Address.fromAddressOrString(recipient),
|