diff --git a/src/types/transaction.ts b/src/types/transaction.ts index 1bed31cf..c01d09e4 100644 --- a/src/types/transaction.ts +++ b/src/types/transaction.ts @@ -78,6 +78,7 @@ export type TransactionContextType = { // MongoDB document export type Transaction = BaseTransaction & { assetTransfers?: AssetTransfer[]; + pseudotransactions?: PseudoTransaction[]; sigHash: string; internalSigHashes: SigHash[]; parties: string[]; @@ -92,7 +93,7 @@ export type Transaction = BaseTransaction & { isoTimestamp: string; }; -export type PartialTransaction = Omit & { +export type PartialTransaction = Omit & { receipt: RawReceipt; traces: RawTrace[]; @@ -115,7 +116,7 @@ export type PartialTransaction = Omit & { export type PseudoTransaction = PartialTransaction & { meta: { - type: "ERC4337"; + type: 'ERC4337'; key: string; } & Record; };