diff --git a/chain-api/src/ethereum/ethereum.controller.ts b/chain-api/src/ethereum/ethereum.controller.ts index 7fce356..cfde614 100644 --- a/chain-api/src/ethereum/ethereum.controller.ts +++ b/chain-api/src/ethereum/ethereum.controller.ts @@ -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); }