Vocabulary fixes

This commit is contained in:
timurgordon
2025-05-05 11:32:09 +03:00
parent a7c0772d9b
commit 2760f00a30
27 changed files with 588 additions and 329 deletions

View File

@@ -126,8 +126,8 @@ pub fn configure_routes(cfg: &mut web::ServiceConfig) {
.service(
web::scope("/defi")
.route("", web::get().to(DefiController::index))
.route("/lending", web::post().to(DefiController::create_lending))
.route("/borrowing", web::post().to(DefiController::create_borrowing))
.route("/providing", web::post().to(DefiController::create_providing))
.route("/receiving", web::post().to(DefiController::create_receiving))
.route("/liquidity", web::post().to(DefiController::add_liquidity))
.route("/staking", web::post().to(DefiController::create_staking))
.route("/swap", web::post().to(DefiController::swap_tokens))