Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 604 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 604 Bytes

iota-seed-generator

Build Status Windows Build status

Install

yarn install iota-seed-generator

Usage

import generateSeed from '../'

async function seed() {
  try {
    const seed = await generateSeed()
    
    // Use seed
  }
  catch (err) {
    // Handle error
  }
}

seed()