block-accounting/chain-api/src/ethereum/ethereum.service.ts

11 lines
270 B
TypeScript

import { Inject, Injectable } from '@nestjs/common';
import { ethers } from 'ethers';
@Injectable()
export class EthereumService {
async getAddressFromPrivateKey(privateKey: string) {
const wallet = new ethers.Wallet(privateKey);
return wallet.address;
}
}