| Name | yew | percy | dodrio | seed | sauron | draco | squark | smithy | dominator | mogwai | | ---------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let multisig = require('@iota/multisig'); | |
let converter = require('@iota/converter'); | |
let txconverter = require('@iota/transaction-converter'); | |
let bundle_validator = require('@iota/bundle-validator'); | |
let seedA = 'A'.repeat(81) | |
let seedB = 'B'.repeat(81) | |
let seedC = 'C'.repeat(81) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! | |
//! To Generate a new Random Seed | |
//! | |
extern crate rand; | |
use rand::Rng; | |
/// | |
/// Generates a new random String of 81 Chars of A..Z and 9 | |
/// | |
pub fn new() -> String { |
OlderNewer