Wie können Kryptowährungsadressen überprüft werden? Also wie können z.B. Bitcoin Adresse überprüft werden? Die Bitcoin Adressen habe wie so viele Adressen eine interne Checksumme, die mit sha256 gebildet wird. Das heißt, es wird zweimal einSHA-256 Hash auf die Adresse gemacht und die ersten 4 Bytes als Checksumme verwendet und an die Adresse angehangen.
Um es ganz einfach zu machen, habe ich einen NodeRed Node node-red-contrib-cryptography-address-check erstellt. Und dazu einen Flow, wo die Adresse nur eingegeben werden muss, und es dann automatisch auf Gültig oder Ungültig überprüft wird.
Dieser Node, muss also nur über die „Pallette hinzufügen“ Funktion geladen werden:
So sieht meine public „Buy me a coffee“ Adresse aus, die ist gültig:
Sobald man da auch nur ein Zeichen verändert, …stimmt natürlich die Checksumme nicht mehr und es wird ein Fehler angezeigt:
Der NodeRed-Flow, der im Docker-Kontainer auf einem Raspberry Pi unter portainer.io läuft, und auch ein paar Tests enthält sieht wie folgt aus:
Folgende Network Type können Optional verwendet werden (prod) default, (testnet) für das Testnetz und (both) für nichts.
Folgende Währungen werden unterstüzt:
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 |
Auroracoin/AUR, 'auroracoin' or 'AUR' Bankex/BKX, 'bankex' or 'BKX' BeaverCoin/BVC, 'beavercoin' or 'BVC' Biocoin/BIO, 'biocoin' or 'BIO' Bitcoin/BTC, 'bitcoin' or 'BTC' (default) BitcoinCash/BCH, 'bitcoincash' or 'BCH' BitcoinGold/BTG, 'bitcoingold' or 'BTG' BitcoinPrivate/BTCP, 'bitcoinprivate' or 'BTCP' BitcoinZ/BTCZ, 'bitcoinz' or 'BTCZ' Callisto/CLO, 'callisto' or 'CLO' Dash, 'dash' or 'DASH' Decred/DCR, 'decred' or 'DCR' Digibyte/DGB, 'digibyte' or 'DGB' Dogecoin/DOGE, 'dogecoin' or 'DOGE' Ethereum/ETH, 'ethereum' or 'ETH' EthereumClassic/ETH, 'ethereumclassic' or 'ETC' EthereumZero/ETZ, 'etherzero' or 'ETZ' Freicoin/FRC, 'freicoin' or 'FRC' Garlicoin/GRLC, 'garlicoin' or 'GRLC' Hush/HUSH, 'hush' or 'HUSH' Komodo/KMD, 'komodo' or 'KMD' Litecoin/LTC, 'litecoin' or 'LTC' Megacoin/MEC, 'megacoin' or 'MEC' Monero/XMR, 'monero' or 'XMR' Namecoin/NMC, 'namecoin' or 'NMC' Nano/NANO, 'nano' or 'NANO' NEO/NEO, 'NEO' or 'NEO' NeoGas/GAS, 'neogas' or 'GAS' Peercoin/PPCoin/PPC, 'peercoin' or 'PPC' Primecoin/XPM, 'primecoin' or 'XPM' Protoshares/PTS, 'protoshares' or 'PTS' Qtum/QTUM, 'qtum' or 'QTUM' Raiblocks/XRB, 'raiblocks' or 'XRB' Ripple/XRP, 'ripple' or 'XRP' Snowgem/SNG, 'snowgem' or 'SNG' Vertcoin/VTC, 'vertcoin' or 'VTC' Votecoin/VTC, 'votecoin' or 'VOT' Zcash/ZEC, 'zcash' or 'ZEC' Zclassic/ZCL, 'zclassic' or 'ZCL' ZenCash/ZEN, 'zencash' or 'ZEN' |
Hier der JavaScript-Code für den Import
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
[ { "id": "fe436d38.fdf1a8", "type": "tab", "label": "Adressen Check", "disabled": false, "info": "" }, { "id": "31584f55.0deb8", "type": "group", "z": "fe436d38.fdf1a8", "name": "Test", "style": { "label": true, "fill": "#d1d1d1" }, "nodes": [ "674f2fe4.dab528", "6ddfdb5b.61742c", "d7434db2.21178", "bf7b4f8f.89743" ], "x": 14, "y": 219, "w": 552, "h": 202 }, { "id": "674f2fe4.dab528", "type": "inject", "z": "fe436d38.fdf1a8", "g": "31584f55.0deb8", "name": "Gültige Bitcoin Addresse im mainnet \"By my a coffee\"", "props": [ { "p": "payload" }, { "p": "topic", "vt": "str" } ], "repeat": "", "crontab": "", "once": false, "onceDelay": 0.1, "topic": "", "payload": "1NSaQXyTHGanGvQHgPkoSDtbBY2LFySnyc", "payloadType": "str", "x": 340, "y": 260, "wires": [ [ "66c456d9.6fc58" ] ] }, { "id": "3a4dfe0c.64d3aa", "type": "debug", "z": "fe436d38.fdf1a8", "name": "Ergebnis", "active": true, "tosidebar": true, "console": false, "tostatus": true, "complete": "payload", "targetType": "msg", "statusVal": "payload", "statusType": "auto", "x": 820, "y": 60, "wires": [] }, { "id": "6ddfdb5b.61742c", "type": "inject", "z": "fe436d38.fdf1a8", "g": "31584f55.0deb8", "name": "Falsche Addresse", "props": [ { "p": "payload" }, { "p": "topic", "vt": "str" } ], "repeat": "", "crontab": "", "once": false, "onceDelay": 0.1, "topic": "", "payload": "Keine-Gültige", "payloadType": "str", "x": 450, "y": 340, "wires": [ [ "66c456d9.6fc58" ] ] }, { "id": "d7434db2.21178", "type": "inject", "z": "fe436d38.fdf1a8", "g": "31584f55.0deb8", "name": "Ungültige Testnet Bitcoin Addresse", "props": [ { "p": "payload" }, { "p": "topic", "vt": "str" } ], "repeat": "", "crontab": "", "once": false, "onceDelay": 0.1, "topic": "", "payload": "1PMycacnJaSqwwJqjawXBErnLsZ7RkXUAsxxx", "payloadType": "str", "x": 400, "y": 380, "wires": [ [ "66c456d9.6fc58" ] ] }, { "id": "66c456d9.6fc58", "type": "addresscheck", "z": "fe436d38.fdf1a8", "name": "", "currency": "bitcoin", "networktype": "prod", "x": 620, "y": 120, "wires": [ [ "3a4dfe0c.64d3aa", "5ab73dd5.b88f94" ] ] }, { "id": "253b810f.357b1e", "type": "comment", "z": "fe436d38.fdf1a8", "name": "(c) 2021 Thomas Wenzlaff www.wenzlaff.info", "info": "", "x": 950, "y": 400, "wires": [] }, { "id": "bf7b4f8f.89743", "type": "comment", "z": "fe436d38.fdf1a8", "g": "31584f55.0deb8", "name": "Buy my a coffee: bitcoin:1NSaQXyTHGanGvQHgPkoSDtbBY2LFySnyc", "info": "", "x": 290, "y": 300, "wires": [] }, { "id": "3f0e0871.1915a", "type": "ui_text_input", "z": "fe436d38.fdf1a8", "name": "", "label": "Eingabe Crypto Adresse", "tooltip": "", "group": "6bf3e314.c61a04", "order": 11, "width": "9", "height": "1", "passthru": true, "mode": "text", "delay": 300, "topic": "topic", "topicType": "msg", "x": 370, "y": 120, "wires": [ [ "66c456d9.6fc58" ] ] }, { "id": "5ab73dd5.b88f94", "type": "function", "z": "fe436d38.fdf1a8", "name": "Set Status", "func": "\nif (msg.payload === true)\n node.send({ui_control: {icon: \"fa-2x fa-check\"}, bgcolor:\"green\", color:\"black\", label :\"Gültig\", payload:msg.payload});\n\nif (msg.payload === false)\n node.send({ui_control:{icon:\"fa-2x fa-exclamation\"},bgcolor:\"red\",color:\"black\",label : \"Ungültig!\",payload:msg.payload});\n\n", "outputs": 1, "noerr": 0, "initialize": "", "finalize": "", "x": 830, "y": 120, "wires": [ [ "8523d176.da3c" ] ] }, { "id": "8523d176.da3c", "type": "ui_button", "z": "fe436d38.fdf1a8", "name": "Anzeige Ergebnis", "group": "6bf3e314.c61a04", "order": 3, "width": "9", "height": 1, "passthru": true, "label": "{{msg.label}}", "tooltip": "", "color": "{{msg.color}}", "bgcolor": "{{msg.bgcolor}}", "icon": "{{msg.icon}}", "payload": "check", "payloadType": "str", "topic": "", "topicType": "str", "x": 1050, "y": 120, "wires": [ [] ] }, { "id": "6bf3e314.c61a04", "type": "ui_group", "name": "Adressen Check", "tab": "6acf525a.3476cc", "order": 1, "disp": true, "width": "9", "collapse": false }, { "id": "6acf525a.3476cc", "type": "ui_tab", "name": "Adressen Check", "icon": "dashboard", "disabled": false, "hidden": false } ] |