1import { Keyring } from "@polkadot/api";2import { IKeyringPair } from "@polkadot/types/types";34export default function privateKey(account: string): IKeyringPair {5 const keyring = new Keyring({ type: 'sr25519' });6 7 return keyring.addFromUri(account);8}