mirror of
https://github.com/emo2007/block-accounting.git
synced 2025-04-04 13:46:27 +00:00
21 lines
721 B
TypeScript
21 lines
721 B
TypeScript
import { Body, Controller, Get, Param } from '@nestjs/common';
|
|
import { EthereumService } from './ethereum.service';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
import { GetSeedPhraseDto } from './ethereum.dto';
|
|
|
|
@ApiTags('Ethereum')
|
|
@Controller()
|
|
export class EthereumController {
|
|
constructor(private readonly ethereumService: EthereumService) {}
|
|
|
|
@Get('/address/:privateKey')
|
|
async getAddressFromPrivateKey(@Param('privateKey') privateKey: string) {
|
|
return this.ethereumService.getAddressFromPrivateKey(privateKey);
|
|
}
|
|
|
|
@Get('/address-from-seed/:seedPhrase')
|
|
async getAddressFromSeedPhrase(@Body() body: GetSeedPhraseDto) {
|
|
return this.ethereumService.getAddressFromSeedPhrase(body.seedPhrase);
|
|
}
|
|
}
|