util.ts 214 B

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