mirror of
https://github.com/bohd4nx/FragmentAPI.git
synced 2026-07-25 14:24:31 +00:00
ae164d4fe7
- Added MarketplaceService for searching usernames, numbers, and gifts. - Introduced PurchasesService for purchasing stars and premium subscriptions. - Created WalletService for wallet operations including balance checks and top-ups. - Developed transaction handling for TON and USDT transfers. - Added models for payments, marketplace results, and wallet information. - Implemented error handling for various operations including wallet and transaction errors. - Established domain structure for purchases, marketplace, and wallet functionalities.
9 lines
193 B
Python
9 lines
193 B
Python
from __future__ import annotations
|
|
|
|
from typing import Literal
|
|
|
|
PaymentMethod = Literal["ton", "usdt_ton"]
|
|
WalletVersion = Literal["V4R2", "V5R1"]
|
|
|
|
__all__ = ["PaymentMethod", "WalletVersion"]
|