We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b9f58a commit 779fafaCopy full SHA for 779fafa
.changeset/selfish-baboons-rush.md
@@ -0,0 +1,5 @@
1
+---
2
+"@blobscan/api": patch
3
4
+
5
+Resolved an issue where the blob response incorrectly included the transaction index instead of the actual blob index
packages/api/src/routers/blob/helpers.ts
@@ -277,12 +277,13 @@ export function toResponseBlob(
277
toId,
278
computeBlobGasBaseFee,
279
computeUsdFields,
280
+ index: _,
281
...restPrismaTx
282
} = prismaTx;
283
284
responseBlobOnTx = {
- ...responseBlobOnTx,
285
...restPrismaTx,
286
+ ...responseBlobOnTx,
287
...normalizePrismaTransactionFields({
288
decodedFields,
289
from,
0 commit comments