@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/test-utils.js
CHANGED
@@ -299,24 +299,32 @@ var MessageProofFragmentFragmentDoc = import_graphql_tag.default`
|
|
299
299
|
messageBlockHeader {
|
300
300
|
id
|
301
301
|
daHeight
|
302
|
+
consensusParametersVersion
|
303
|
+
stateTransitionBytecodeVersion
|
302
304
|
transactionsCount
|
305
|
+
messageReceiptCount
|
303
306
|
transactionsRoot
|
307
|
+
messageOutboxRoot
|
308
|
+
eventInboxRoot
|
304
309
|
height
|
305
310
|
prevRoot
|
306
311
|
time
|
307
312
|
applicationHash
|
308
|
-
messageReceiptCount
|
309
313
|
}
|
310
314
|
commitBlockHeader {
|
311
315
|
id
|
312
316
|
daHeight
|
317
|
+
consensusParametersVersion
|
318
|
+
stateTransitionBytecodeVersion
|
313
319
|
transactionsCount
|
320
|
+
messageReceiptCount
|
314
321
|
transactionsRoot
|
322
|
+
messageOutboxRoot
|
323
|
+
eventInboxRoot
|
315
324
|
height
|
316
325
|
prevRoot
|
317
326
|
time
|
318
327
|
applicationHash
|
319
|
-
messageReceiptCount
|
320
328
|
}
|
321
329
|
sender
|
322
330
|
recipient
|
@@ -4561,7 +4569,11 @@ var _Provider = class {
|
|
4561
4569
|
prevRoot: messageBlockHeader.prevRoot,
|
4562
4570
|
time: messageBlockHeader.time,
|
4563
4571
|
applicationHash: messageBlockHeader.applicationHash,
|
4564
|
-
messageReceiptCount: (0, import_math16.bn)(messageBlockHeader.messageReceiptCount)
|
4572
|
+
messageReceiptCount: (0, import_math16.bn)(messageBlockHeader.messageReceiptCount),
|
4573
|
+
messageOutboxRoot: messageBlockHeader.messageOutboxRoot,
|
4574
|
+
consensusParametersVersion: messageBlockHeader.consensusParametersVersion,
|
4575
|
+
eventInboxRoot: messageBlockHeader.eventInboxRoot,
|
4576
|
+
stateTransitionBytecodeVersion: messageBlockHeader.stateTransitionBytecodeVersion
|
4565
4577
|
},
|
4566
4578
|
commitBlockHeader: {
|
4567
4579
|
id: commitBlockHeader.id,
|
@@ -4572,7 +4584,11 @@ var _Provider = class {
|
|
4572
4584
|
prevRoot: commitBlockHeader.prevRoot,
|
4573
4585
|
time: commitBlockHeader.time,
|
4574
4586
|
applicationHash: commitBlockHeader.applicationHash,
|
4575
|
-
messageReceiptCount: (0, import_math16.bn)(commitBlockHeader.messageReceiptCount)
|
4587
|
+
messageReceiptCount: (0, import_math16.bn)(commitBlockHeader.messageReceiptCount),
|
4588
|
+
messageOutboxRoot: commitBlockHeader.messageOutboxRoot,
|
4589
|
+
consensusParametersVersion: commitBlockHeader.consensusParametersVersion,
|
4590
|
+
eventInboxRoot: commitBlockHeader.eventInboxRoot,
|
4591
|
+
stateTransitionBytecodeVersion: commitBlockHeader.stateTransitionBytecodeVersion
|
4576
4592
|
},
|
4577
4593
|
sender: import_address3.Address.fromAddressOrString(sender),
|
4578
4594
|
recipient: import_address3.Address.fromAddressOrString(recipient),
|