From de35db769a92502d4f8e6afda7df246edb80097b Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 15 Oct 2024 09:10:36 -0400 Subject: [PATCH] Wrench extra cards --- www-api/app/Controllers/WrenchWallet.php | 36 ++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/www-api/app/Controllers/WrenchWallet.php b/www-api/app/Controllers/WrenchWallet.php index 860e62dd..2badc12f 100644 --- a/www-api/app/Controllers/WrenchWallet.php +++ b/www-api/app/Controllers/WrenchWallet.php @@ -267,9 +267,41 @@ class WrenchWallet extends BaseController "current_balance" => 0, "transfer_limit" => 0, "wallet_uid" => "be090e93-552b-421d-86cd-2d33a2823c8e", - "escrow" => 0 + "escrow" => 0, + "banner" => '' + ]; + $out["result_list"][] = [ + "amount" => 0, + "id" => 1, + "code" => "USD", + "description" => "Wrench Token", + "symbol" => "$", + "action_type" => "WRENCH_TOKEN", + "lorder" => 0, + "country" => "US", + "processor" => 5000, + "current_balance" => 0, + "transfer_limit" => 0, + "wallet_uid" => "be090e93-552b-421d-86cd-2d33a2823c8e", + "escrow" => 0, + "banner" => '' + ]; + $out["result_list"][] = [ + "amount" => 0, + "id" => 1, + "code" => "USD", + "description" => "Wrench Points", + "symbol" => "$", + "action_type" => "WRENCH_POINTS", + "lorder" => 0, + "country" => "US", + "processor" => 5000, + "current_balance" => 0, + "transfer_limit" => 0, + "wallet_uid" => "be090e93-552b-421d-86cd-2d33a2823c8e", + "escrow" => 0, + "banner" => '' ]; - log_message('critical', "***** ***** WrenchJobs::getWallet Ret "); return $this->respond( $this->summaryReturnData($in,$out), 200); }