You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var Address = require("bitmessage").Address; // Generate a new random Bitmessage identity. var addr1 = Address.fromRandom(); console.log("New random Bitmessage address:", addr1.encode()); // Or create it from passphrase. var addr2 = Address.fromPassphrase("test"); console.log("Deterministic Bitmessage address:", addr2.encode()); #19