-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfaq.html
71 lines (69 loc) · 4.6 KB
/
faq.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>nostrogen - a simple nostr vanity address generator</title>
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar fixed-top bg-body-tertiary navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="https://plebnet.dev">
<img src="images/white-wide-icon.png" alt="Logo" height="60" class="d-inline-block align-text-top">
</a>
</div>
</nav>
<div class="nospace">
<h1> </h1>
</div>
<h1><a class="no-decoration" href="/">nostrogen</a> <span class="display-4">faq</span></h1>
<div class="container mt-4">
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
<h5 class="fs-4">usage / performance / security</h5>
<hr>
<p class="fw-bold mb-0">what is this thing?</p>
<p class="fs-6">this is a simple vanity key generator for the nostr protocol. choose prefix or suffix, enter allowed characters in the input, and press generate. your keys/addresses will then be generated in the container below for you to copy and save.</p>
<p class="fw-bold mb-0">show me some examples.</p>
<p>here are some example generated address pairs. don't use these ones if you don't want others to also have access. generate your own instead and store them securely.</p>
<span class="tiny-text"><code>prefix: <span class="bold-purple">pre</span></code><br />
<code>npub1<span class="bold-purple">pre</span>p4kxakm43s0hn3fdkdtygmg9fmuf7wy2vj0x0l3zt7xtw03qq8alt6h</code><br />
<code>nsec1h29hj7xsdwlup8rx78y66txs95ry2tuhwmu633zl4d2l5qwna50splfm3z</code><br />
<code>08f21ad8ddb6eb183ef38a5b66ac88da0a9df13e7114c93ccffc44bf196e7c40</code><br />
<code>ba8b7978d06bbfc09c66f1c9ad2cd02d06452f9776f9a8c45fab55fa01d3ed1f</code><br /><br />
<code>suffix: <span class="bold-purple">suf</span></code><br />
<code>npub15l6yft4s6fvwr68p97gvgm0aqwyxhyxwtydfujm3rlhsk5frseks33d<span class="bold-purple">suf</span></code><br />
<code>nsec10m5qfqwdv0d8286zpnt2uehu5cq4trz4700yfglyth4qj3v76nsq0lsnzu</code><br />
<code>a7f444aeb0d258e1e8e12f90c46dfd03886b90ce591a9e4b711fef0b5123866d</code><br />
<code>7ee80481cd63da751f420cd6ae66fca601558c55f3de44a3e45dea09459ed4e0</code><br /><br /></span>
<p class="fw-bold mb-0">why can't we use characters b, i, o, or 1?</p>
<p class="fs-6">the characters have to be in the bech32 character set.</p>
<p><img src="/bech32.png" class="img-fluid" /></p>
<p class="fw-bold mb-0">how fast will nostrogen find my addresses?</p>
<p class="fs-6">this depends entirely upon how fast your machine is, but here are some rough estimates for a modern laptop or mobile phone:</p>
<p>1 character = usually less than a 0.1 seconds<br />
2 characters = usually less than a 1 second<br />
3 characters = usually less than a 30 seconds<br />
4 characters = usually less than a 10 minutes<br />
5 characters = usually less than a 1 hour<br />
6+ characters = keep fire extinguisher handy</p>
<p class="fw-bold mb-0">are you going to steal my nostr keys?</p>
<p>nah, but- don't trust, verify. check out the code on <a href="https://github.com/tonyinit/nostrogen" target="_blank">github</a>, ask a programmer friend, or- if you're really paranoid, download the source and run this program on a clean computer without internet access. these are just nostr keys though, not bitcoin keys..</p>
</div>
</div>
</div>
</div>
</div>
<div class="d-flex justify-content-center mt-4">
<p class="text-light"> This is a fork of the repo by </p>
<a href="https://getalby.com/p/hitony" class="donate-link" target="_blank">⚡️[email protected]</a>
</div>
</body>
</html>