From 0d7e145c63cdcb378507e9c39342bbf9ae09ed8d Mon Sep 17 00:00:00 2001 From: Evan Gray Date: Wed, 10 Nov 2021 11:46:46 -0500 Subject: [PATCH] bridge_ui: add tokenName to TokenOriginVerifier Change-Id: Id7cdd87b35ab649f664c50b319dd63e5a0847a37 --- bridge_ui/src/components/TokenOriginVerifier.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bridge_ui/src/components/TokenOriginVerifier.tsx b/bridge_ui/src/components/TokenOriginVerifier.tsx index 1fd2a2e4..4ec4459f 100644 --- a/bridge_ui/src/components/TokenOriginVerifier.tsx +++ b/bridge_ui/src/components/TokenOriginVerifier.tsx @@ -91,6 +91,7 @@ function PrimaryAssetInfomation({ address={originAsset} chainId={originChain} symbol={metadata.data?.get(originAsset)?.symbol} + tokenName={metadata.data?.get(originAsset)?.tokenName} /> @@ -132,6 +133,10 @@ function SecondaryAssetInformation({ metadata.data?.get(originAssetInfo.originAddress || "")?.symbol || undefined } + tokenName={ + metadata.data?.get(originAssetInfo.originAddress || "") + ?.tokenName || undefined + } /> @@ -160,6 +165,10 @@ function SecondaryAssetInformation({ metadata.data?.get(foreignAssetInfo.address || "")?.symbol || undefined } + tokenName={ + metadata.data?.get(foreignAssetInfo.address || "")?.tokenName || + undefined + } />