Skip to content

Commit

Permalink
Added getBlsJavy to bindaries.
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioespinoza committed Jul 17, 2024
1 parent 908a8f1 commit 606777a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/commands/offchain/install.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Chalk from 'chalk'
import { getRuntime, getNetworking } from '../../lib/binaries'
import { getRuntime, getNetworking, getBlsJavy } from '../../lib/binaries'
import { generateKey } from '../../lib/keygen'
import { headConfigJSON, saveConfig, workerConfigJSON } from '../../lib/configs'
import { store, get as storeGet, set as storeSet } from '../../store'
Expand Down Expand Up @@ -31,8 +31,12 @@ const install = async function ({ path, inline = false }: { path?: string; inlin

await getNetworking()
console.log(`${Chalk.green('Installing')} ... done`)
console.log(`${Chalk.yellow('Installing')} ... downloading keygen identity tool`)
console.log(`${Chalk.yellow('Installing')} ... downloading bls-javy tool`)

await getBlsJavy()
console.log(`${Chalk.green('Installing')} ... done`)

console.log(`${Chalk.yellow('Installing')} ... downloading keygen identity tool`)
console.log(`${Chalk.green('Installing')} ... done`)
generateKey('head')
generateKey('worker1')
Expand Down

0 comments on commit 606777a

Please sign in to comment.