This commit is contained in:
emochka2007 2024-05-29 01:56:38 +03:00
parent 96a0dc1f33
commit 2bf4a0c5b6

View File

@ -13,7 +13,7 @@ export class EthereumController {
return this.ethereumService.getAddressFromPrivateKey(privateKey);
}
@Post('/address-from-seed ')
@Post('/address-from-seed')
async getAddressFromSeedPhrase(@Body() body: GetSeedPhraseDto) {
return this.ethereumService.getAddressFromSeedPhrase(body.seedPhrase);
}