IOTA: Signature And Validation
Address generation
First of all, create Private Key from Seed.
// length = security (1: light client, 2: wallet default, 3: exchange level)
var key = function(seed, index, length) {
... return key; // private key
}
have your Private…