UNPKG

dev3-sdk

Version:

SDK for interacting with the 0xDev3 platform.

15 lines (14 loc) 528 B
import { AssetSendRequest, RequestStatus } from '../types'; export declare class TokenSendRequestAction { private readonly sendRequest; constructor(sendRequest: AssetSendRequest); get actionUrl(): string; get status(): RequestStatus; get token(): string; get amount(): string; get sender(): string | undefined; get receiver(): string | undefined; get transactionHash(): string | undefined; present(): Promise<TokenSendRequestAction>; awaitResult(): Promise<TokenSendRequestAction>; }