diff --git a/libs/exchange-module/src/index.ts b/libs/exchange-module/src/index.ts index 2754ee1edde0..8ebe1a74c18f 100644 --- a/libs/exchange-module/src/index.ts +++ b/libs/exchange-module/src/index.ts @@ -36,11 +36,11 @@ export class ExchangeModule extends CustomModule { * * @returns - A transaction ID used to complete the exchange process */ - async startSell({ provider, exchangeType }: ExchangeStartSellParams) { + async startSell({ provider }: Omit) { const result = await this.request( "custom.exchange.start", { - exchangeType, + exchangeType: "SELL", provider, }, );