// ord-litecoin-specific imports // import 'package:stackwallet/dto/ordinals/feed_response.dart'; // import 'package:stackwallet/dto/ordinals/inscription_response.dart'; // import 'package:stackwallet/dto/ordinals/sat_response.dart'; // import 'package:stackwallet/dto/ordinals/transaction_response.dart'; // import 'package:stackwallet/dto/ordinals/output_response.dart'; // import 'package:stackwallet/dto/ordinals/address_response.dart'; // import 'package:stackwallet/dto/ordinals/block_response.dart'; // import 'package:stackwallet/dto/ordinals/content_response.dart'; // import 'package:stackwallet/dto/ordinals/preview_response.dart'; // import 'package:stackwallet/services/ordinals_api.dart'; import 'package:stackwallet/dto/ordinals/address_inscription_response.dart'; // verbose due to Litescribe being the 2nd API import 'package:stackwallet/services/litescribe_api.dart'; mixin OrdinalsInterface { final LitescribeAPI litescribeAPI = LitescribeAPI(baseUrl: 'https://litescribe.io/api'); Future> getInscriptionsByAddress(String address) async { try { var response = await litescribeAPI.getInscriptionsByAddress(address); print("Found ${response.result.total} inscriptions at address $address"); // TODO disable (POC) return response.result.list; } catch (e) { throw Exception('Error in OrdinalsInterface getInscriptionsByAddress: $e'); } } /* // ord-litecoin interface final OrdinalsAPI ordinalsAPI = OrdinalsAPI(baseUrl: 'https://ord-litecoin.stackwallet.com'); Future fetchLatestInscriptions() async { try { final feedResponse = await ordinalsAPI.getLatestInscriptions(); // Process the feedResponse data as needed // print('Latest Inscriptions:'); // for (var inscription in feedResponse.inscriptions) { // print('Title: ${inscription.title}, Href: ${inscription.href}'); // } return feedResponse; } catch (e) { // Handle errors throw Exception('Error in OrdinalsInterface fetchLatestInscriptions: $e'); } } Future getInscriptionDetails(String inscriptionId) async { try { return await ordinalsAPI.getInscriptionDetails(inscriptionId); } catch (e) { throw Exception('Error in OrdinalsInterface getInscriptionDetails: $e'); } } Future getSatDetails(int satNumber) async { try { return await ordinalsAPI.getSatDetails(satNumber); } catch (e) { throw Exception('Error in OrdinalsInterface getSatDetails: $e'); } } Future getTransaction(String transactionId) async { try { print(1); return await ordinalsAPI.getTransaction(transactionId); } catch (e) { throw Exception('Error in OrdinalsInterface getTransaction: $e'); } } Future getTransactionOutputs(String transactionId) async { try { return await ordinalsAPI.getTransactionOutputs(transactionId); } catch (e) { throw Exception('Error in OrdinalsInterface getTransactionOutputs: $e'); } } Future getInscriptionsByAddress(String address) async { try { return await ordinalsAPI.getInscriptionsByAddress(address); } catch (e) { throw Exception('Error in OrdinalsInterface getInscriptionsByAddress: $e'); } } Future getBlock(int blockNumber) async { try { return await ordinalsAPI.getBlock(blockNumber); } catch (e) { throw Exception('Error in OrdinalsInterface getBlock: $e'); } } Future getInscriptionContent(String inscriptionId) async { try { return await ordinalsAPI.getInscriptionContent(inscriptionId); } catch (e) { throw Exception('Error in OrdinalsInterface getInscriptionContent: $e'); } } Future getInscriptionPreview(String inscriptionId) async { try { return await ordinalsAPI.getInscriptionPreview(inscriptionId); } catch (e) { throw Exception('Error in OrdinalsInterface getInscriptionPreview: $e'); } } */ // /ord-litecoin interface }