File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ const TransferTransactionReceipt = ({
85
85
< SelectedWallet
86
86
wallet = { sourceWallet }
87
87
address = { transaction . sourceAddress }
88
+ displayTooltip = { ! transaction . sourceAddress ?. includes ( "shielded" ) }
88
89
/>
89
90
) }
90
91
</ header >
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export const IbcWithdraw = (): JSX.Element => {
79
79
const [ txHash , setTxHash ] = useState < string | undefined > ( ) ;
80
80
const [ destinationChain , setDestinationChain ] = useState < Chain | undefined > ( ) ;
81
81
const { refetch : genDisposableSigner } = useAtomValue ( disposableSignerAtom ) ;
82
-
82
+ const alias = shieldedAccount ?. alias ?? transparentAccount . data ?. alias ;
83
83
const chainTokens = useAtomValue ( chainTokensAtom ) ;
84
84
85
85
const { data : availableAssets , isLoading : isLoadingAssets } = useAtomValue (
@@ -284,7 +284,7 @@ export const IbcWithdraw = (): JSX.Element => {
284
284
memo : tx . encodedTxData . wrapperTxProps . memo || props . memo ,
285
285
displayAmount,
286
286
shielded,
287
- sourceAddress : props . source ,
287
+ sourceAddress : ` ${ alias } - shielded` ,
288
288
sourceChannel : props . channelId ,
289
289
destinationAddress : props . receiver ,
290
290
createdAt : new Date ( ) ,
Original file line number Diff line number Diff line change @@ -192,8 +192,8 @@ export const TransactionHistory = (): JSX.Element => {
192
192
} ,
193
193
{
194
194
id : "bond" ,
195
- value : "Bond " ,
196
- ariaLabel : "Bond " ,
195
+ value : "Stake " ,
196
+ ariaLabel : "Stake " ,
197
197
} ,
198
198
] }
199
199
/>
You can’t perform that action at this time.
0 commit comments