diff --git a/components/offer/MakeOffer.vue b/components/offer/MakeOffer.vue index d4db16a6c4..23fd867e34 100644 --- a/components/offer/MakeOffer.vue +++ b/components/offer/MakeOffer.vue @@ -28,6 +28,15 @@ +
+
+ {{ $t('offer.offerFees') }} + {{ teleportTransitionTxFees }} +
+
+
([]) @@ -104,6 +113,14 @@ const getAction = (items: MakingOfferItem[]): Actions => { } } +const teleportTransitionTxFees = computed(() => + format( + (autoTeleportButton.value?.optimalTransition.txFees || 0) + OFFER_MINT_PRICE, + decimals.value, + chainSymbol.value, + ), +) + const { action, autoTeleport, autoTeleportButton, autoTeleportLoaded } = useAutoTeleportActionButton({ getActionFn: () => getAction(itemsInChain.value), }) diff --git a/locales/en.json b/locales/en.json index 27dd3bbfaf..a4267ba202 100644 --- a/locales/en.json +++ b/locales/en.json @@ -1486,6 +1486,7 @@ "newOffer": "New Offer", "offerAccept": "Accepting Offer", "offerCreation": "Offer Creation", + "offerFees": "Offer Fee", "offerWithdrawl": "Offer Cancelation", "typeOffer": "Type An Offer", "yourOffer": "Your Offer",