import bs58 from 'bs58'; import { Keypair } from '@solana/web3.js'; export function loadKeypair(privateKey: string): Keypair { if (typeof window === undefined) { throw new Error('Not node environment'); } return Keypair.generate(); }