@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.js
CHANGED
@@ -422,24 +422,32 @@ var MessageProofFragmentFragmentDoc = import_graphql_tag.default`
|
|
422
422
|
messageBlockHeader {
|
423
423
|
id
|
424
424
|
daHeight
|
425
|
+
consensusParametersVersion
|
426
|
+
stateTransitionBytecodeVersion
|
425
427
|
transactionsCount
|
428
|
+
messageReceiptCount
|
426
429
|
transactionsRoot
|
430
|
+
messageOutboxRoot
|
431
|
+
eventInboxRoot
|
427
432
|
height
|
428
433
|
prevRoot
|
429
434
|
time
|
430
435
|
applicationHash
|
431
|
-
messageReceiptCount
|
432
436
|
}
|
433
437
|
commitBlockHeader {
|
434
438
|
id
|
435
439
|
daHeight
|
440
|
+
consensusParametersVersion
|
441
|
+
stateTransitionBytecodeVersion
|
436
442
|
transactionsCount
|
443
|
+
messageReceiptCount
|
437
444
|
transactionsRoot
|
445
|
+
messageOutboxRoot
|
446
|
+
eventInboxRoot
|
438
447
|
height
|
439
448
|
prevRoot
|
440
449
|
time
|
441
450
|
applicationHash
|
442
|
-
messageReceiptCount
|
443
451
|
}
|
444
452
|
sender
|
445
453
|
recipient
|
@@ -4805,7 +4813,11 @@ var _Provider = class {
|
|
4805
4813
|
prevRoot: messageBlockHeader.prevRoot,
|
4806
4814
|
time: messageBlockHeader.time,
|
4807
4815
|
applicationHash: messageBlockHeader.applicationHash,
|
4808
|
-
messageReceiptCount: (0, import_math16.bn)(messageBlockHeader.messageReceiptCount)
|
4816
|
+
messageReceiptCount: (0, import_math16.bn)(messageBlockHeader.messageReceiptCount),
|
4817
|
+
messageOutboxRoot: messageBlockHeader.messageOutboxRoot,
|
4818
|
+
consensusParametersVersion: messageBlockHeader.consensusParametersVersion,
|
4819
|
+
eventInboxRoot: messageBlockHeader.eventInboxRoot,
|
4820
|
+
stateTransitionBytecodeVersion: messageBlockHeader.stateTransitionBytecodeVersion
|
4809
4821
|
},
|
4810
4822
|
commitBlockHeader: {
|
4811
4823
|
id: commitBlockHeader.id,
|
@@ -4816,7 +4828,11 @@ var _Provider = class {
|
|
4816
4828
|
prevRoot: commitBlockHeader.prevRoot,
|
4817
4829
|
time: commitBlockHeader.time,
|
4818
4830
|
applicationHash: commitBlockHeader.applicationHash,
|
4819
|
-
messageReceiptCount: (0, import_math16.bn)(commitBlockHeader.messageReceiptCount)
|
4831
|
+
messageReceiptCount: (0, import_math16.bn)(commitBlockHeader.messageReceiptCount),
|
4832
|
+
messageOutboxRoot: commitBlockHeader.messageOutboxRoot,
|
4833
|
+
consensusParametersVersion: commitBlockHeader.consensusParametersVersion,
|
4834
|
+
eventInboxRoot: commitBlockHeader.eventInboxRoot,
|
4835
|
+
stateTransitionBytecodeVersion: commitBlockHeader.stateTransitionBytecodeVersion
|
4820
4836
|
},
|
4821
4837
|
sender: import_address3.Address.fromAddressOrString(sender),
|
4822
4838
|
recipient: import_address3.Address.fromAddressOrString(recipient),
|