├── LICENSE ├── README.md ├── css ├── bootstrap.min.css └── index.css ├── index.html └── js ├── bootstrap.min.js ├── index.js └── iota.js /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Dominik Schiener 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IOTA Address Generator 2 | 3 | This is a simple website which lets you generate a new address with a variety of options. This is mainly for educational purposes and should not be used for anything sensitive. Open up index.html, the rest is self-explanatory. If you want to see what's happening, open up the developer console for extra logging. 4 | 5 | Using Bootstrap 4. 6 | -------------------------------------------------------------------------------- /css/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 2rem; 3 | } 4 | 5 | 6 | .seedSubmitButton { 7 | 8 | margin-top: 15px; 9 | 10 | } 11 | 12 | .stepSection { 13 | 14 | 15 | 16 | } 17 | 18 | .stepTitle { 19 | 20 | margin: 50px 0; 21 | 22 | } 23 | 24 | .generateAddress { 25 | 26 | margin-bottom: 50px; 27 | } 28 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 |This is an educational website for people to learn more about address generation in IOTA and the kind of steps that are involved in going from a seed to an address. Everything is done client-side, so you don't have to worry about your seed leaving your seed at any point in time. This website is best used in conjunction with the IOTA Learn Tutorial with Code Snippets on how to generate addresses in Javascript and Python.
46 |The key index is probably the most important option, as it determines which private key will be used for the address. The key index starts at 0 and can be incremented. Needless to say, a different key index gives you a completely different address
85 |In IOTA there are 3 security levels to choose from. Low tier (81-trit security), Mid tier (162-trit security) and High tier (243-trit security). It basically determines how much effort is put up in generating (i.e. hashing) your address.
90 |A checksum is an extra security check which ensures that the generated address is correct and was not altered in any form. A checksum in IOTA is an extra 9-characters (or trytes) which are added to the address
95 |Generating addresses deterministically simplifies the key index management for users. It automatically increments the key index during the generation process in case your address was used in a transaction. In order to use this feature you need to have a connected node
100 |