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, + )); + + } +} +