Skip to content

Commit

Permalink
fix: rename uAD to UUSD as per token symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
EresDev committed Dec 12, 2024
1 parent e70d817 commit 9ea4642
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion static/scripts/ubiquity-dollar/transaction-history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function transactionRowHtml(transaction: Transaction) {
<tr>
<td><a href="https://etherscan.io/tx/${transaction.txHash}">${transaction.txHash?.slice(0, 16)}...</a></td>
<td>${transaction.date.toISOString().split("T")[0]}</td>
<td>${transaction.amount ? formatUnits(transaction.amount, 18) : 0} uAD</td>
<td>${transaction.amount ? formatUnits(transaction.amount, 18) : 0} UUSD</td>
<td>
<button id="${transaction.txHash}" class="btn" data-loading="false">
<div class="action">Open</div>
Expand Down
2 changes: 1 addition & 1 deletion static/ubiquity-dollar.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<div class="card-section">
<div>
<input id="ubiquity-dollar-amount" class="amount-input" type="number" min="1" placeholder="Enter amount" />
<span>uAD</span>
<span>UUSD</span>
</div>
<button id="check-gift-card" class="btn" data-loading="false">
<div class="action">Check gift card</div>
Expand Down

0 comments on commit 9ea4642

Please sign in to comment.