/** * @module Wallet works with wallets. It initializes them from the privatekey. */ import { ethers } from "ethers"; /** * @description Init a wallet that will sign messages or send transactions. * @param privateKey that will be used to create a wallet. * @returns ethers.Wallet * @throws error if Privatekey is invalid. */ declare let fromPrivateKey: (privateKey: string) => ethers.Wallet; export { fromPrivateKey }; declare const _default: { fromPrivateKey: (privateKey: string) => ethers.Wallet; }; export default _default;