From 2c1f98ad82fc26abcf2e8dba18c3ba0b658333e3 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Mon, 29 Jan 2024 14:21:24 +0800 Subject: [PATCH] 1 --- .../controller/OutAppNftController.class.php | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 webapp/controller/OutAppNftController.class.php diff --git a/webapp/controller/OutAppNftController.class.php b/webapp/controller/OutAppNftController.class.php new file mode 100644 index 00000000..b1fbbc24 --- /dev/null +++ b/webapp/controller/OutAppNftController.class.php @@ -0,0 +1,42 @@ + $nft['idx'], + "owner_address" => $nft['owner_address'], + "item_id" => $nft['item_id'], + "token_id" => $nft['token_id'], + "token_type" => $nft['token_type'], + "contract_address" => $nft['contract_address'], + 'image' => $image, + 'full_image' => $full_image, + "details" => array(), + ); + array_push($listInfo,$info); + } + } + + $this->_rspData(array( + 'nfts' => $listInfo, + )); + + } +} +