Skip to content

Commit

Permalink
Fix deploy marketplace
Browse files Browse the repository at this point in the history
  • Loading branch information
danielailie committed Apr 2, 2024
1 parent 4ce77d7 commit 6021db5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ export class ProxyDeployerMutationsResolver extends BaseResolver(TransactionNode
@Mutation(() => TransactionNode)
@UseGuards(JwtOrNativeAuthGuard, GqlAdminAuthGuard)
async deployMarketplaceContract(@Args('input') input: DeployMarketplaceArgs): Promise<TransactionNode> {
return await this.minterDeployerService.deployBulkSc(input.ownerAddress);
return await this.minterDeployerService.deployMarketplaceSc(input.ownerAddress, input.marketplaceFee, input.paymentTokens);
}
}

0 comments on commit 6021db5

Please sign in to comment.