From b500d37b1eb0b0cddc565c16c1141a20387331e4 Mon Sep 17 00:00:00 2001 From: IF <139582705+infiniteflower@users.noreply.github.com> Date: Wed, 27 Nov 2024 10:53:38 -0500 Subject: [PATCH] feat: add destinationChainId to support cross chain txs --- packages/transaction-controller/src/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/transaction-controller/src/types.ts b/packages/transaction-controller/src/types.ts index bb3b377337..7c33bb5332 100644 --- a/packages/transaction-controller/src/types.ts +++ b/packages/transaction-controller/src/types.ts @@ -121,6 +121,11 @@ type TransactionMetaBase = { */ deviceConfirmedOn?: WalletDevice; + /** + * The Network ID as per EIP-155 of the destination chain of a bridge transaction. + */ + destinationChainId?: Hex; + /** * The address of the token being received of swap transaction. */