This commit is contained in:
emochka2007 2024-05-25 01:56:45 +03:00
parent 747bcf5be6
commit 4d2e169795

View File

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