mirror of
https://github.com/zkopru-network/zkopru.git
synced 2026-04-24 03:00:03 -04:00
11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
import path from 'path'
|
|
import { getKeysFromContainer } from './key-builder'
|
|
|
|
// eslint-disable-next-line prettier/prettier
|
|
(async () => {
|
|
const keyPath = path.join(path.dirname(__filename), '../keys')
|
|
await getKeysFromContainer(keyPath, { build: false })
|
|
})().catch(e => {
|
|
console.error(e)
|
|
})
|