Files
zkopru/packages/circuits/utils/pull-keys.ts
2021-11-02 10:29:59 +09:00

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)
})