UNPKG

kotanipay-sdk

Version:

Official Kotani Pay SDK for Node.js and Browser

12 lines 640 B
import { HttpClientUtil } from '../../utils/http-client.util'; import { CreateWalletRequest, CreateWalletResponse } from '../../types'; export declare class WalletService { private httpClient; constructor(httpClient: HttpClientUtil); private validateCreateWalletRequest; create(request: CreateWalletRequest): Promise<CreateWalletResponse>; getIntegratorFiatWallets(): Promise<CreateWalletResponse[]>; getIntegratorFiatWalletById(walletId: string): Promise<CreateWalletResponse>; getIntegratorFiatWalletsByCurrency(currency: string): Promise<CreateWalletResponse[]>; } //# sourceMappingURL=wallet.service.d.ts.map