@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
14 lines (13 loc) • 513 B
TypeScript
/**
* Original work Copyright (c) 2019 Burst Apps Team
*/
import { ChainService } from '../../../service/chainService';
/**
* Use with {@link ApiComposer} and belongs to {@link AccountApi}.
*
* See details at {@link AccountApi.generateSendTransactionQRCodeAddress}
*
*
* @category factories
*/
export declare const generateSendTransactionQRCodeAddress: (service: ChainService) => (receiverId: string, amountNQT?: number, feeSuggestionType?: string, feeNQT?: number, immutable?: boolean) => Promise<string>;