UNPKG

@linenext/dapp-portal-sdk

Version:

Dapp Portal SDK

12 lines (11 loc) 504 B
import { DappPortalSDKConfig } from '../config/config'; import { RequestArguments } from '../provider/interface'; import { RelayCommunicator } from './CommunicatorBase'; export default class MobileWalletCommunicator extends RelayCommunicator { private readonly trackingId; constructor(config: DappPortalSDKConfig, trackingId: string); postRequestAndWaitForResponse<T>(request: RequestArguments): Promise<T>; private openWallet; private openAndroidWallet; private openIosWallet; }