diff --git a/template/page-xrp-overview.html.jinja b/template/page-xrp-overview.html.jinja
index d6d2b1d046..9096db71e9 100644
--- a/template/page-xrp-overview.html.jinja
+++ b/template/page-xrp-overview.html.jinja
@@ -136,13 +136,12 @@
{% trans %}What Wallets Support XRP?{% endtrans %}
-
+
-
{% trans %}Custodial Wallets{% endtrans %}
-
{% trans %}Custodial wallets manage a user's private key, which allows the wallet to withdraw crypto currency on a user's behalf.{% endtrans %}
+
{% trans %}Hardware Wallets{% endtrans %}
- {% set wallets = [
+ {% set hardwallets = [
{ "href": _("https://www.ledger.com/"),
"img": _("./img/wallets/ledger.svg"),
"alt": _("Ledger") },
@@ -152,11 +151,8 @@
{ "href": _("https://trezor.io/"),
"img": _("./img/wallets/trezor.svg"),
"alt": _("Trezor") },
- { "href": _("https://gatehub.net/"),
- "img": _("./img/wallets/gatehub.svg"),
- "alt": _("Gatehub") },
] %}
- {% for wallet in wallets %}
+ {% for wallet in hardwallets %}
-
@@ -164,20 +160,22 @@
-
{% trans %}Non-Custodial Wallets{% endtrans %}
-
{% trans %}Non-custodial wallets do not manage a user's private key, which is up to the user to manage, and therefore cannot send crypto currency on the user's behalf.{% endtrans %}
+
{% trans %}Software Wallets{% endtrans %}
- {% set custodials = [
+ {% set softwallets = [
{ "href": _("https://xumm.app/"),
"img": _("./img/wallets/xumm.svg"),
"alt": _("Xumm") },
{ "href": _("https://trustwallet.com/"),
"img": _("./img/wallets/trust.svg"),
"alt": _("Trust Wallet") },
+ { "href": _("https://gatehub.net/"),
+ "img": _("./img/wallets/gatehub.svg"),
+ "alt": _("Gatehub") },
] %}
- {% for cust in custodials %}
+ {% for wallet in softwallets %}
-
-
+
{% endfor %}