mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-07-11 03:21:46 +00:00
ff58dbd6df
* docs: add SimpleX name registration guide * docs: clarify SimpleX name registration steps Explain why registration needs two on-chain transactions with a wait (commit-reveal prevents someone from grabbing the name mid-registration). Mark attaching both contact and channel links as advanced usage. * docs: switch name guide to official dapp, apply review Use testing-names.simplex.chat and its simpler flow (both SimpleX contact/channel fields on Create your profile; no Add profile fields modal). Apply @epoberezkin review suggestions (intro, testing page URL, 'main names launch', claim purpose). * Apply suggestions from code review Co-authored-by: Evgeny <evgeny@poberezkin.com> * docs: light screenshots, update name flow diagram Use light-theme official-dapp screenshots. Rework the flow diagram: drop the 'both' branch, split contact vs channel before step 4 (each set in its own window), and match the reviewed connect wording (search or type the name). --------- Co-authored-by: Evgeny <evgeny@poberezkin.com>
20 lines
984 B
Plaintext
20 lines
984 B
Plaintext
flowchart TD
|
|
S([Start]) --> A["Step 1: Create a wallet<br/>save your recovery phrase"]
|
|
A --> B["Step 2: Register the name<br/>connect wallet, search, choose years"]
|
|
B --> C["On Create your profile, paste your link into<br/>SimpleX contact (@name) or SimpleX channel (#name)"]
|
|
C --> H["Confirm: two transactions,<br/>60 seconds apart"]
|
|
H --> I["Step 3: search or type your name<br/>shows 'Unconfirmed name'"]
|
|
I --> D{"A contact or a channel?"}
|
|
D -->|"@name (contact)"| J1["Step 4: set Your SimpleX name<br/>in your SimpleX address"]
|
|
D -->|"#name (channel)"| J2["Step 4: set SimpleX name<br/>in the channel"]
|
|
J1 --> K["Step 5: from another device,<br/>search or type the name"]
|
|
J2 --> K
|
|
K --> Z([Connected. Name verified.])
|
|
|
|
classDef start fill:#f4ecf7,stroke:#8e44ad,color:#4a235a;
|
|
classDef step fill:#eaf2fb,stroke:#2e86de,color:#1b3a5b;
|
|
classDef ok fill:#d5f5e3,stroke:#27ae60,color:#145a32;
|
|
class S start;
|
|
class Z ok;
|
|
class A,B,C,H,I,J1,J2,K step;
|