Skip to content

Commit

Permalink
chore: rename endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
shoom3301 committed Dec 2, 2024
1 parent af371ad commit d289f14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/api/src/app/routes/trading/getEthFlowTransaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const root: FastifyPluginAsync = async (fastify): Promise<void> => {
Reply: SuccessSchema | ErrorSchema;
Body: BodySchema;
}>(
'/eth-flow-transaction',
'/sell-native-currency-requests',
{
schema: {
body: ethFlowTxBodySchema,
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/app/routes/trading/postOrder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const root: FastifyPluginAsync = async (fastify): Promise<void> => {
Reply: SuccessSchema | ErrorSchema;
Body: BodySchema;
}>(
'/order',
'/orders',
{
schema: {
body: postOrderBodySchema,
Expand Down

0 comments on commit d289f14

Please sign in to comment.