block-accounting/chain-api/src/ethereum/ethereum.controller.ts
2024-05-25 01:49:53 +03:00

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);
}
}