Skip to content

Commit

Permalink
wip add check for signature && transaction hash for redirection (#745)
Browse files Browse the repository at this point in the history
  • Loading branch information
hichri-louay authored Apr 23, 2024
1 parent c7774b9 commit bf035a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h6 class="trx-hash-title" *ngIf="type !== 'apply'">
{{ 'Your transaction hash: ' | translate }}
</h6>
<div class="d-flex align-items-baseline justify-content-center">
<a [href]="redirect(networkWallet)" target="_blank">
<a [href]="type !== 'apply' ? redirect(networkWallet) : 'farm-posts'" target="_blank">
<!-- <p class="trx-hash-text text-bold">{{ transactionHash }}</p> -->
<div class="d-flex justify-content-center">
<span class="span-wallet flex-start">{{ transactionHash }}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class CopyTransactionHashComponent {
} else if(network === 'ARTHERA') {
this.urlSmartContrat = artheraScan + this.transactionHash;
}
this.windowRefService.nativeWindow.open(this.urlSmartContrat, '_blank');


}
}

0 comments on commit bf035a0

Please sign in to comment.