Luke-Jr [ARCHIVE] on Nostr: 📅 Original date posted:2011-12-06 🗒️ Summary of this message: A revised ...
📅 Original date posted:2011-12-06
🗒️ Summary of this message: A revised proposal for addressing bugs in the spec includes defining network class, network, and data class using bits.
📝 Original message:Some bugs I found in my spec so far:
- Bitcoin public keys begin with '2' (same as testnet data)
- For the first first-class "aux" network, signatures and private keys will
start with the same character.
- More "collisions" are possible if the "reserved" values were ever assigned.
To address these slightly better, here's a revised proposal:
* Bits 128/64 define network class
** 0 = main network
** 64,128 = reserved
** 192 = test network
* Bits 32/16 define network
** 0 = Bitcoin
** 16,32 = reserved
** 48 = OTHER (next octet)
* Bits 8/4/2 define data class
** 0 = Public key hash
** 2 = reserved
** 4 = Script hash
** 6 = Public key (raw)
** 8 = Signature
** 10 = reserved
** 12 = Private key (raw)
** 14 = OTHER (next octet)
* Bit 1 is freely chosen (for aesthetic assignment)
Note that under this scheme, both script hashes and raw public keys begin with
'3'; I consider this a non-issue since neither are supported by current-
generation clients, and both pubkey-hash and script-hash are quite capable of
the same functionality as a raw public key. Also, the raw public key will
presumably be noticably longer.
For reference, a table of version number to first-base58-char mappings:
+........ 0 => 1
-.......1 1 => QRSTUVWXYZabcdefghijkmno
-......1. 2 => 2opqrstuvwxyz
+......11 3 => 2
-.....1.. 4 => 23
+.....1.1 5 => 3
+.....11. 6 => 3
-.....111 7 => 34
+....1... 8 => 4
-....1..1 9 => 45
+....1.1. 10 => 5
+....1.11 11 => 5
-....11.. 12 => 56
+....11.1 13 => 6
-....111. 14 => 67
+....1111 15 => 7
+...1.... 16 => 7
-...1...1 17 => 78
+...1..1. 18 => 8
-...1..11 19 => 89
+...1.1.. 20 => 9
+...1.1.1 21 => 9
-...1.11. 22 => 9A
+...1.111 23 => A
-...11... 24 => AB
+...11..1 25 => B
+...11.1. 26 => B
-...11.11 27 => BC
+...111.. 28 => C
-...111.1 29 => CD
+...1111. 30 => D
+...11111 31 => D
-..1..... 32 => DE
+..1....1 33 => E
-..1...1. 34 => EF
+..1...11 35 => F
+..1..1.. 36 => F
-..1..1.1 37 => FG
+..1..11. 38 => G
-..1..111 39 => GH
+..1.1... 40 => H
+..1.1..1 41 => H
-..1.1.1. 42 => HJ
+..1.1.11 43 => J
-..1.11.. 44 => JK
+..1.11.1 45 => K
+..1.111. 46 => K
-..1.1111 47 => KL
+..11.... 48 => L
-..11...1 49 => LM
+..11..1. 50 => M
+..11..11 51 => M
-..11.1.. 52 => MN
+..11.1.1 53 => N
-..11.11. 54 => NP
+..11.111 55 => P
+..111... 56 => P
-..111..1 57 => PQ
+..111.1. 58 => Q
-..111.11 59 => QR
+..1111.. 60 => R
+..1111.1 61 => R
-..11111. 62 => RS
+..111111 63 => S
-.1...... 64 => ST
+.1.....1 65 => T
+.1....1. 66 => T
-.1....11 67 => TU
+.1...1.. 68 => U
-.1...1.1 69 => UV
+.1...11. 70 => V
+.1...111 71 => V
-.1..1... 72 => VW
+.1..1..1 73 => W
-.1..1.1. 74 => WX
+.1..1.11 75 => X
+.1..11.. 76 => X
-.1..11.1 77 => XY
+.1..111. 78 => Y
-.1..1111 79 => YZ
+.1.1.... 80 => Z
+.1.1...1 81 => Z
-.1.1..1. 82 => Za
+.1.1..11 83 => a
-.1.1.1.. 84 => ab
+.1.1.1.1 85 => b
-.1.1.11. 86 => bc
+.1.1.111 87 => c
+.1.11... 88 => c
-.1.11..1 89 => cd
+.1.11.1. 90 => d
-.1.11.11 91 => de
+.1.111.. 92 => e
+.1.111.1 93 => e
-.1.1111. 94 => ef
+.1.11111 95 => f
-.11..... 96 => fg
+.11....1 97 => g
+.11...1. 98 => g
-.11...11 99 => gh
+.11..1.. 100 => h
-.11..1.1 101 => hi
+.11..11. 102 => i
+.11..111 103 => i
-.11.1... 104 => ij
+.11.1..1 105 => j
-.11.1.1. 106 => jk
+.11.1.11 107 => k
+.11.11.. 108 => k
-.11.11.1 109 => km
+.11.111. 110 => m
-.11.1111 111 => mn
+.111.... 112 => n
+.111...1 113 => n
-.111..1. 114 => no
+.111..11 115 => o
-.111.1.. 116 => op
+.111.1.1 117 => p
+.111.11. 118 => p
-.111.111 119 => pq
+.1111... 120 => q
-.1111..1 121 => qr
+.1111.1. 122 => r
+.1111.11 123 => r
-.11111.. 124 => rs
+.11111.1 125 => s
-.111111. 126 => st
+.1111111 127 => t
+1....... 128 => t
-1......1 129 => tu
+1.....1. 130 => u
-1.....11 131 => uv
+1....1.. 132 => v
+1....1.1 133 => v
-1....11. 134 => vw
+1....111 135 => w
-1...1... 136 => wx
+1...1..1 137 => x
+1...1.1. 138 => x
-1...1.11 139 => xy
+1...11.. 140 => y
-1...11.1 141 => yz
+1...111. 142 => z
+1...1111 143 => z
-1..1.... 144 => 2z
+1..1...1 145 => 2
+1..1..1. 146 => 2
+1..1..11 147 => 2
+1..1.1.. 148 => 2
+1..1.1.1 149 => 2
+1..1.11. 150 => 2
+1..1.111 151 => 2
+1..11... 152 => 2
+1..11..1 153 => 2
+1..11.1. 154 => 2
+1..11.11 155 => 2
+1..111.. 156 => 2
+1..111.1 157 => 2
+1..1111. 158 => 2
+1..11111 159 => 2
+1.1..... 160 => 2
+1.1....1 161 => 2
+1.1...1. 162 => 2
+1.1...11 163 => 2
+1.1..1.. 164 => 2
+1.1..1.1 165 => 2
+1.1..11. 166 => 2
+1.1..111 167 => 2
+1.1.1... 168 => 2
+1.1.1..1 169 => 2
+1.1.1.1. 170 => 2
+1.1.1.11 171 => 2
+1.1.11.. 172 => 2
+1.1.11.1 173 => 2
+1.1.111. 174 => 2
+1.1.1111 175 => 2
+1.11.... 176 => 2
+1.11...1 177 => 2
+1.11..1. 178 => 2
+1.11..11 179 => 2
+1.11.1.. 180 => 2
+1.11.1.1 181 => 2
+1.11.11. 182 => 2
+1.11.111 183 => 2
+1.111... 184 => 2
+1.111..1 185 => 2
+1.111.1. 186 => 2
+1.111.11 187 => 2
+1.1111.. 188 => 2
+1.1111.1 189 => 2
+1.11111. 190 => 2
+1.111111 191 => 2
+11...... 192 => 2
+11.....1 193 => 2
+11....1. 194 => 2
+11....11 195 => 2
+11...1.. 196 => 2
+11...1.1 197 => 2
+11...11. 198 => 2
+11...111 199 => 2
+11..1... 200 => 2
+11..1..1 201 => 2
+11..1.1. 202 => 2
+11..1.11 203 => 2
+11..11.. 204 => 2
+11..11.1 205 => 2
+11..111. 206 => 2
+11..1111 207 => 2
+11.1.... 208 => 2
+11.1...1 209 => 2
+11.1..1. 210 => 2
+11.1..11 211 => 2
+11.1.1.. 212 => 2
+11.1.1.1 213 => 2
+11.1.11. 214 => 2
+11.1.111 215 => 2
+11.11... 216 => 2
+11.11..1 217 => 2
+11.11.1. 218 => 2
+11.11.11 219 => 2
+11.111.. 220 => 2
+11.111.1 221 => 2
+11.1111. 222 => 2
+11.11111 223 => 2
+111..... 224 => 2
+111....1 225 => 2
+111...1. 226 => 2
+111...11 227 => 2
+111..1.. 228 => 2
+111..1.1 229 => 2
+111..11. 230 => 2
+111..111 231 => 2
+111.1... 232 => 2
+111.1..1 233 => 2
+111.1.1. 234 => 2
+111.1.11 235 => 2
+111.11.. 236 => 2
+111.11.1 237 => 2
+111.111. 238 => 2
+111.1111 239 => 2
+1111.... 240 => 2
+1111...1 241 => 2
+1111..1. 242 => 2
+1111..11 243 => 2
+1111.1.. 244 => 2
+1111.1.1 245 => 2
+1111.11. 246 => 2
+1111.111 247 => 2
+11111... 248 => 2
+11111..1 249 => 2
+11111.1. 250 => 2
+11111.11 251 => 2
+111111.. 252 => 2
+111111.1 253 => 2
+1111111. 254 => 2
+11111111 255 => 2
Published at
2023-06-07 02:42:17Event JSON
{
"id": "405f960445bb87ee07f6fc0d670a349bbd89a57cf13445ecccc5856b63e2560f",
"pubkey": "6ac6a519b554d8ff726a301e3daec0b489f443793778feccc6ea7a536f7354f1",
"created_at": 1686105737,
"kind": 1,
"tags": [
[
"e",
"dafc4bff7fddee669abc41128874a420e7bc18987891f3733e199622fbdd2ca8",
"",
"root"
],
[
"e",
"ab4f551dde219431a9cc9372b42340e6bebb2d0516bbf28f46402b458a300255",
"",
"reply"
],
[
"p",
"6ac6a519b554d8ff726a301e3daec0b489f443793778feccc6ea7a536f7354f1"
]
],
"content": "📅 Original date posted:2011-12-06\n🗒️ Summary of this message: A revised proposal for addressing bugs in the spec includes defining network class, network, and data class using bits.\n📝 Original message:Some bugs I found in my spec so far:\n- Bitcoin public keys begin with '2' (same as testnet data)\n- For the first first-class \"aux\" network, signatures and private keys will\n start with the same character.\n- More \"collisions\" are possible if the \"reserved\" values were ever assigned.\n\nTo address these slightly better, here's a revised proposal:\n* Bits 128/64 define network class\n** 0 = main network\n** 64,128 = reserved\n** 192 = test network\n* Bits 32/16 define network\n** 0 = Bitcoin\n** 16,32 = reserved\n** 48 = OTHER (next octet)\n* Bits 8/4/2 define data class\n** 0 = Public key hash\n** 2 = reserved\n** 4 = Script hash\n** 6 = Public key (raw)\n** 8 = Signature\n** 10 = reserved\n** 12 = Private key (raw)\n** 14 = OTHER (next octet)\n* Bit 1 is freely chosen (for aesthetic assignment)\n\nNote that under this scheme, both script hashes and raw public keys begin with \n'3'; I consider this a non-issue since neither are supported by current-\ngeneration clients, and both pubkey-hash and script-hash are quite capable of \nthe same functionality as a raw public key. Also, the raw public key will \npresumably be noticably longer.\n\nFor reference, a table of version number to first-base58-char mappings:\n+........ 0 =\u003e 1\n-.......1 1 =\u003e QRSTUVWXYZabcdefghijkmno\n-......1. 2 =\u003e 2opqrstuvwxyz\n+......11 3 =\u003e 2\n-.....1.. 4 =\u003e 23\n+.....1.1 5 =\u003e 3\n+.....11. 6 =\u003e 3\n-.....111 7 =\u003e 34\n+....1... 8 =\u003e 4\n-....1..1 9 =\u003e 45\n+....1.1. 10 =\u003e 5\n+....1.11 11 =\u003e 5\n-....11.. 12 =\u003e 56\n+....11.1 13 =\u003e 6\n-....111. 14 =\u003e 67\n+....1111 15 =\u003e 7\n+...1.... 16 =\u003e 7\n-...1...1 17 =\u003e 78\n+...1..1. 18 =\u003e 8\n-...1..11 19 =\u003e 89\n+...1.1.. 20 =\u003e 9\n+...1.1.1 21 =\u003e 9\n-...1.11. 22 =\u003e 9A\n+...1.111 23 =\u003e A\n-...11... 24 =\u003e AB\n+...11..1 25 =\u003e B\n+...11.1. 26 =\u003e B\n-...11.11 27 =\u003e BC\n+...111.. 28 =\u003e C\n-...111.1 29 =\u003e CD\n+...1111. 30 =\u003e D\n+...11111 31 =\u003e D\n-..1..... 32 =\u003e DE\n+..1....1 33 =\u003e E\n-..1...1. 34 =\u003e EF\n+..1...11 35 =\u003e F\n+..1..1.. 36 =\u003e F\n-..1..1.1 37 =\u003e FG\n+..1..11. 38 =\u003e G\n-..1..111 39 =\u003e GH\n+..1.1... 40 =\u003e H\n+..1.1..1 41 =\u003e H\n-..1.1.1. 42 =\u003e HJ\n+..1.1.11 43 =\u003e J\n-..1.11.. 44 =\u003e JK\n+..1.11.1 45 =\u003e K\n+..1.111. 46 =\u003e K\n-..1.1111 47 =\u003e KL\n+..11.... 48 =\u003e L\n-..11...1 49 =\u003e LM\n+..11..1. 50 =\u003e M\n+..11..11 51 =\u003e M\n-..11.1.. 52 =\u003e MN\n+..11.1.1 53 =\u003e N\n-..11.11. 54 =\u003e NP\n+..11.111 55 =\u003e P\n+..111... 56 =\u003e P\n-..111..1 57 =\u003e PQ\n+..111.1. 58 =\u003e Q\n-..111.11 59 =\u003e QR\n+..1111.. 60 =\u003e R\n+..1111.1 61 =\u003e R\n-..11111. 62 =\u003e RS\n+..111111 63 =\u003e S\n-.1...... 64 =\u003e ST\n+.1.....1 65 =\u003e T\n+.1....1. 66 =\u003e T\n-.1....11 67 =\u003e TU\n+.1...1.. 68 =\u003e U\n-.1...1.1 69 =\u003e UV\n+.1...11. 70 =\u003e V\n+.1...111 71 =\u003e V\n-.1..1... 72 =\u003e VW\n+.1..1..1 73 =\u003e W\n-.1..1.1. 74 =\u003e WX\n+.1..1.11 75 =\u003e X\n+.1..11.. 76 =\u003e X\n-.1..11.1 77 =\u003e XY\n+.1..111. 78 =\u003e Y\n-.1..1111 79 =\u003e YZ\n+.1.1.... 80 =\u003e Z\n+.1.1...1 81 =\u003e Z\n-.1.1..1. 82 =\u003e Za\n+.1.1..11 83 =\u003e a\n-.1.1.1.. 84 =\u003e ab\n+.1.1.1.1 85 =\u003e b\n-.1.1.11. 86 =\u003e bc\n+.1.1.111 87 =\u003e c\n+.1.11... 88 =\u003e c\n-.1.11..1 89 =\u003e cd\n+.1.11.1. 90 =\u003e d\n-.1.11.11 91 =\u003e de\n+.1.111.. 92 =\u003e e\n+.1.111.1 93 =\u003e e\n-.1.1111. 94 =\u003e ef\n+.1.11111 95 =\u003e f\n-.11..... 96 =\u003e fg\n+.11....1 97 =\u003e g\n+.11...1. 98 =\u003e g\n-.11...11 99 =\u003e gh\n+.11..1.. 100 =\u003e h\n-.11..1.1 101 =\u003e hi\n+.11..11. 102 =\u003e i\n+.11..111 103 =\u003e i\n-.11.1... 104 =\u003e ij\n+.11.1..1 105 =\u003e j\n-.11.1.1. 106 =\u003e jk\n+.11.1.11 107 =\u003e k\n+.11.11.. 108 =\u003e k\n-.11.11.1 109 =\u003e km\n+.11.111. 110 =\u003e m\n-.11.1111 111 =\u003e mn\n+.111.... 112 =\u003e n\n+.111...1 113 =\u003e n\n-.111..1. 114 =\u003e no\n+.111..11 115 =\u003e o\n-.111.1.. 116 =\u003e op\n+.111.1.1 117 =\u003e p\n+.111.11. 118 =\u003e p\n-.111.111 119 =\u003e pq\n+.1111... 120 =\u003e q\n-.1111..1 121 =\u003e qr\n+.1111.1. 122 =\u003e r\n+.1111.11 123 =\u003e r\n-.11111.. 124 =\u003e rs\n+.11111.1 125 =\u003e s\n-.111111. 126 =\u003e st\n+.1111111 127 =\u003e t\n+1....... 128 =\u003e t\n-1......1 129 =\u003e tu\n+1.....1. 130 =\u003e u\n-1.....11 131 =\u003e uv\n+1....1.. 132 =\u003e v\n+1....1.1 133 =\u003e v\n-1....11. 134 =\u003e vw\n+1....111 135 =\u003e w\n-1...1... 136 =\u003e wx\n+1...1..1 137 =\u003e x\n+1...1.1. 138 =\u003e x\n-1...1.11 139 =\u003e xy\n+1...11.. 140 =\u003e y\n-1...11.1 141 =\u003e yz\n+1...111. 142 =\u003e z\n+1...1111 143 =\u003e z\n-1..1.... 144 =\u003e 2z\n+1..1...1 145 =\u003e 2\n+1..1..1. 146 =\u003e 2\n+1..1..11 147 =\u003e 2\n+1..1.1.. 148 =\u003e 2\n+1..1.1.1 149 =\u003e 2\n+1..1.11. 150 =\u003e 2\n+1..1.111 151 =\u003e 2\n+1..11... 152 =\u003e 2\n+1..11..1 153 =\u003e 2\n+1..11.1. 154 =\u003e 2\n+1..11.11 155 =\u003e 2\n+1..111.. 156 =\u003e 2\n+1..111.1 157 =\u003e 2\n+1..1111. 158 =\u003e 2\n+1..11111 159 =\u003e 2\n+1.1..... 160 =\u003e 2\n+1.1....1 161 =\u003e 2\n+1.1...1. 162 =\u003e 2\n+1.1...11 163 =\u003e 2\n+1.1..1.. 164 =\u003e 2\n+1.1..1.1 165 =\u003e 2\n+1.1..11. 166 =\u003e 2\n+1.1..111 167 =\u003e 2\n+1.1.1... 168 =\u003e 2\n+1.1.1..1 169 =\u003e 2\n+1.1.1.1. 170 =\u003e 2\n+1.1.1.11 171 =\u003e 2\n+1.1.11.. 172 =\u003e 2\n+1.1.11.1 173 =\u003e 2\n+1.1.111. 174 =\u003e 2\n+1.1.1111 175 =\u003e 2\n+1.11.... 176 =\u003e 2\n+1.11...1 177 =\u003e 2\n+1.11..1. 178 =\u003e 2\n+1.11..11 179 =\u003e 2\n+1.11.1.. 180 =\u003e 2\n+1.11.1.1 181 =\u003e 2\n+1.11.11. 182 =\u003e 2\n+1.11.111 183 =\u003e 2\n+1.111... 184 =\u003e 2\n+1.111..1 185 =\u003e 2\n+1.111.1. 186 =\u003e 2\n+1.111.11 187 =\u003e 2\n+1.1111.. 188 =\u003e 2\n+1.1111.1 189 =\u003e 2\n+1.11111. 190 =\u003e 2\n+1.111111 191 =\u003e 2\n+11...... 192 =\u003e 2\n+11.....1 193 =\u003e 2\n+11....1. 194 =\u003e 2\n+11....11 195 =\u003e 2\n+11...1.. 196 =\u003e 2\n+11...1.1 197 =\u003e 2\n+11...11. 198 =\u003e 2\n+11...111 199 =\u003e 2\n+11..1... 200 =\u003e 2\n+11..1..1 201 =\u003e 2\n+11..1.1. 202 =\u003e 2\n+11..1.11 203 =\u003e 2\n+11..11.. 204 =\u003e 2\n+11..11.1 205 =\u003e 2\n+11..111. 206 =\u003e 2\n+11..1111 207 =\u003e 2\n+11.1.... 208 =\u003e 2\n+11.1...1 209 =\u003e 2\n+11.1..1. 210 =\u003e 2\n+11.1..11 211 =\u003e 2\n+11.1.1.. 212 =\u003e 2\n+11.1.1.1 213 =\u003e 2\n+11.1.11. 214 =\u003e 2\n+11.1.111 215 =\u003e 2\n+11.11... 216 =\u003e 2\n+11.11..1 217 =\u003e 2\n+11.11.1. 218 =\u003e 2\n+11.11.11 219 =\u003e 2\n+11.111.. 220 =\u003e 2\n+11.111.1 221 =\u003e 2\n+11.1111. 222 =\u003e 2\n+11.11111 223 =\u003e 2\n+111..... 224 =\u003e 2\n+111....1 225 =\u003e 2\n+111...1. 226 =\u003e 2\n+111...11 227 =\u003e 2\n+111..1.. 228 =\u003e 2\n+111..1.1 229 =\u003e 2\n+111..11. 230 =\u003e 2\n+111..111 231 =\u003e 2\n+111.1... 232 =\u003e 2\n+111.1..1 233 =\u003e 2\n+111.1.1. 234 =\u003e 2\n+111.1.11 235 =\u003e 2\n+111.11.. 236 =\u003e 2\n+111.11.1 237 =\u003e 2\n+111.111. 238 =\u003e 2\n+111.1111 239 =\u003e 2\n+1111.... 240 =\u003e 2\n+1111...1 241 =\u003e 2\n+1111..1. 242 =\u003e 2\n+1111..11 243 =\u003e 2\n+1111.1.. 244 =\u003e 2\n+1111.1.1 245 =\u003e 2\n+1111.11. 246 =\u003e 2\n+1111.111 247 =\u003e 2\n+11111... 248 =\u003e 2\n+11111..1 249 =\u003e 2\n+11111.1. 250 =\u003e 2\n+11111.11 251 =\u003e 2\n+111111.. 252 =\u003e 2\n+111111.1 253 =\u003e 2\n+1111111. 254 =\u003e 2\n+11111111 255 =\u003e 2",
"sig": "bd76327108b915c69296d83f5a7835aa0bc608a907d1af0a60f03d95f3691e140764574872bd1795bd241ec1596a50612e8c25d2d5d184b9df8c4d9022a8249c"
}