util.ts 227 B

123456789
  1. import { Keypair } from '@solana/web3.js';
  2. export function createKeypairFromFile(path: string): Keypair {
  3. return Keypair.fromSecretKey(
  4. Buffer.from(JSON.parse(require('fs').readFileSync(path, "utf-8")))
  5. )
  6. };