From 2936a846cc123ac02828d48a0932b202f770c693 Mon Sep 17 00:00:00 2001 From: triplegreenshell Date: Fri, 18 Feb 2022 23:43:26 -0500 Subject: [PATCH 1/2] Update copy to use DeSo Key terminology --- src/app/auth/google/google.component.html | 2 +- src/app/derive/derive.component.html | 4 +-- .../log-in-seed/log-in-seed.component.html | 4 +-- src/app/log-in/log-in.component.html | 6 ++--- src/app/sign-up/sign-up.component.html | 26 +++++++++---------- 5 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/app/auth/google/google.component.html b/src/app/auth/google/google.component.html index 5956ccea..cdae957d 100644 --- a/src/app/auth/google/google.component.html +++ b/src/app/auth/google/google.component.html @@ -9,7 +9,7 @@
Optional: Save your recovery code
-
You can use this DeSo seed phrase to login if you lose access to your Google account.
+
You can use this DeSo Key to login if you lose access to your Google account.
Do not share this with anyone.
{{ mnemonic }}
diff --git a/src/app/derive/derive.component.html b/src/app/derive/derive.component.html index 1dc9ec73..94c6ce76 100644 --- a/src/app/derive/derive.component.html +++ b/src/app/derive/derive.component.html @@ -33,14 +33,14 @@
You're about to grant {{ globalVars.hostname }} with signing access:
- This means {{ globalVars.hostname }} will be able to make transactions on your behalf as if it knew your DeSo seed. + This means {{ globalVars.hostname }} will be able to make transactions on your behalf as if it knew your DeSo Key. This permission can be revoked anytime and it will automatically expire in about 30 days.
You're about to grant signing access:
- This means the mobile application will be able to sign transactions on your behalf as if it knew your DeSo seed. + This means the mobile application will be able to sign transactions on your behalf as if it knew your DeSo Key. This permission can be revoked anytime and it will automatically expire in about 30 days.

DISCLAIMER:
diff --git a/src/app/log-in-seed/log-in-seed.component.html b/src/app/log-in-seed/log-in-seed.component.html index bb7bb94c..eb30b235 100644 --- a/src/app/log-in-seed/log-in-seed.component.html +++ b/src/app/log-in-seed/log-in-seed.component.html @@ -6,7 +6,7 @@

- Enter your DeSo seed phrase to load your account + Enter your DeSo Key to load your account

@@ -17,7 +17,7 @@ + placeholder="Enter your DeSo Key">
diff --git a/src/app/log-in/log-in.component.html b/src/app/log-in/log-in.component.html index c60e550d..abd79715 100644 --- a/src/app/log-in/log-in.component.html +++ b/src/app/log-in/log-in.component.html @@ -4,7 +4,7 @@
Log in to {{ globalVars.hostname }}
- Sign up with a new Google account
or DeSo seed phrase and earn ! + Sign up with a new Google account
or DeSo Key and earn !
@@ -33,9 +33,9 @@ Sign up / log in with Google - Log in with DeSo seed + Log in with DeSo Key
diff --git a/src/app/sign-up/sign-up.component.html b/src/app/sign-up/sign-up.component.html index e96a1b02..5e24d114 100644 --- a/src/app/sign-up/sign-up.component.html +++ b/src/app/sign-up/sign-up.component.html @@ -4,11 +4,11 @@
-
Store your DeSo seed phrase
+
Store your DeSo Key
Step 1 of {{ stepTotal }}
Write, download, print, or copy it somewhere safe.
-
If you lose your DeSo seed phrase your account will be lost forever.
+
If you lose your DeSo Key your account will be lost forever.
{{ entropyService.temporaryEntropy.mnemonic }}
@@ -38,22 +38,22 @@

- The following displays the entropy (random numbers) used to generate the "DeSo seed phrase" above. + The following displays the entropy (random numbers) used to generate the "DeSo Key" above. The entropy below was generated using a random number generator, but you can edit the - fields below to use your own randomness to generate the DeSo seed phrase (you can't go wrong - with a set of dice). You can also enter your own DeSo seed phrase directly if you prefer. + fields below to use your own randomness to generate the DeSo Key (you can't go wrong + with a set of dice). You can also enter your own DeSo Key directly if you prefer.

Because there is a standard for generating seed phrases for Bitcoin (called BIP39), - and because we use this same standard to generate DeSo seed phrases, - DeSo seed phrases can also be used with any Bitcoin wallet that implements + and because we use this same standard to generate DeSo Key, + DeSo Keys can also be used with any Bitcoin wallet that implements this standard under the m/44'/0'/0'/0/0 derivation path (e.g. Mycelium, Electrum). Similarly, any standard - Bitcoin seed phrase you have can also be used as a DeSo seed phrase. Of course, all + Bitcoin seed phrase you have can also be used as a DeSo Key. Of course, all of this can be verified using a tool like the Ian Coleman mnemonic generator (must click "show entropy details") so you know this generator is doing what it says it is. @@ -61,7 +61,7 @@

-

Custom DeSo seed phrase (must be +

Custom DeSo Key (must be BIP39 mnemonic):

You've entered an invalid mnemonic.

@@ -129,16 +129,16 @@
-
Verify your DeSo seed phrase
+
Verify your DeSo Key
Step 2 of {{ stepTotal }}
-
Never share your DeSo seed phrase with anyone.
-
If you lose your DeSo seed phrase your account will be lost forever.
+
Never share your DeSo Key with anyone.
+
If you lose your DeSo Key your account will be lost forever.
+ placeholder="Enter your DeSo Key">
Enter your passphrase: From 9661141515720adc75f9b6c6066c902bccf0a8f0 Mon Sep 17 00:00:00 2001 From: triplegreenshell Date: Mon, 28 Feb 2022 17:45:46 -0500 Subject: [PATCH 2/2] DeSo Key -> Private Key --- src/app/auth/google/google.component.html | 2 +- src/app/derive/derive.component.html | 4 +-- .../log-in-seed/log-in-seed.component.html | 4 +-- src/app/log-in/log-in.component.html | 6 ++--- src/app/sign-up/sign-up.component.html | 26 +++++++++---------- 5 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/app/auth/google/google.component.html b/src/app/auth/google/google.component.html index cdae957d..45450203 100644 --- a/src/app/auth/google/google.component.html +++ b/src/app/auth/google/google.component.html @@ -9,7 +9,7 @@
Optional: Save your recovery code
-
You can use this DeSo Key to login if you lose access to your Google account.
+
You can use this Private Key to login if you lose access to your Google account.
Do not share this with anyone.
{{ mnemonic }}
diff --git a/src/app/derive/derive.component.html b/src/app/derive/derive.component.html index 94c6ce76..237143f3 100644 --- a/src/app/derive/derive.component.html +++ b/src/app/derive/derive.component.html @@ -33,14 +33,14 @@
You're about to grant {{ globalVars.hostname }} with signing access:
- This means {{ globalVars.hostname }} will be able to make transactions on your behalf as if it knew your DeSo Key. + This means {{ globalVars.hostname }} will be able to make transactions on your behalf as if it knew your Private Key. This permission can be revoked anytime and it will automatically expire in about 30 days.
You're about to grant signing access:
- This means the mobile application will be able to sign transactions on your behalf as if it knew your DeSo Key. + This means the mobile application will be able to sign transactions on your behalf as if it knew your Private Key. This permission can be revoked anytime and it will automatically expire in about 30 days.

DISCLAIMER:
diff --git a/src/app/log-in-seed/log-in-seed.component.html b/src/app/log-in-seed/log-in-seed.component.html index eb30b235..51b2a8d4 100644 --- a/src/app/log-in-seed/log-in-seed.component.html +++ b/src/app/log-in-seed/log-in-seed.component.html @@ -6,7 +6,7 @@

- Enter your DeSo Key to load your account + Enter your Private Key to load your account

@@ -17,7 +17,7 @@ + placeholder="Enter your Private Key">
diff --git a/src/app/log-in/log-in.component.html b/src/app/log-in/log-in.component.html index abd79715..743bd313 100644 --- a/src/app/log-in/log-in.component.html +++ b/src/app/log-in/log-in.component.html @@ -4,7 +4,7 @@
Log in to {{ globalVars.hostname }}
- Sign up with a new Google account
or DeSo Key and earn ! + Sign up with a new Google account
or Private Key and earn !
@@ -33,9 +33,9 @@ Sign up / log in with Google - Log in with DeSo Key + Log in with Private Key
diff --git a/src/app/sign-up/sign-up.component.html b/src/app/sign-up/sign-up.component.html index 5e24d114..2d844f1a 100644 --- a/src/app/sign-up/sign-up.component.html +++ b/src/app/sign-up/sign-up.component.html @@ -4,11 +4,11 @@
-
Store your DeSo Key
+
Store your Private Key
Step 1 of {{ stepTotal }}
Write, download, print, or copy it somewhere safe.
-
If you lose your DeSo Key your account will be lost forever.
+
If you lose your Private Key your account will be lost forever.
{{ entropyService.temporaryEntropy.mnemonic }}
@@ -38,22 +38,22 @@

- The following displays the entropy (random numbers) used to generate the "DeSo Key" above. + The following displays the entropy (random numbers) used to generate the "Private Key" above. The entropy below was generated using a random number generator, but you can edit the - fields below to use your own randomness to generate the DeSo Key (you can't go wrong - with a set of dice). You can also enter your own DeSo Key directly if you prefer. + fields below to use your own randomness to generate the Private Key (you can't go wrong + with a set of dice). You can also enter your own Private Key directly if you prefer.

Because there is a standard for generating seed phrases for Bitcoin (called BIP39), - and because we use this same standard to generate DeSo Key, - DeSo Keys can also be used with any Bitcoin wallet that implements + and because we use this same standard to generate Private Key, + Private Keys can also be used with any Bitcoin wallet that implements this standard under the m/44'/0'/0'/0/0 derivation path (e.g. Mycelium, Electrum). Similarly, any standard - Bitcoin seed phrase you have can also be used as a DeSo Key. Of course, all + Bitcoin seed phrase you have can also be used as a Private Key. Of course, all of this can be verified using a tool like the Ian Coleman mnemonic generator (must click "show entropy details") so you know this generator is doing what it says it is. @@ -61,7 +61,7 @@

-

Custom DeSo Key (must be +

Custom Private Key (must be BIP39 mnemonic):

You've entered an invalid mnemonic.

@@ -129,16 +129,16 @@
-
Verify your DeSo Key
+
Verify your Private Key
Step 2 of {{ stepTotal }}
-
Never share your DeSo Key with anyone.
-
If you lose your DeSo Key your account will be lost forever.
+
Never share your Private Key with anyone.
+
If you lose your Private Key your account will be lost forever.
+ placeholder="Enter your Private Key">
Enter your passphrase: