mirror of
https://github.com/emo2007/block-accounting.git
synced 2025-04-03 21:26:27 +00:00
11 lines
270 B
TypeScript
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;
|
|
}
|
|
}
|