Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Implements

Index

Constructors

constructor

  • new AccountQR(accountPrivateKey: string, networkType: INetworkType, generationHash: string, password?: string): AccountQR

Properties

accountPrivateKey

accountPrivateKey: string

The account to be exported

var

{Account}

Optional base64

base64: string

encrypted

encrypted: boolean

Whether the data is encrypted

var

{boolean}

generationHash

generationHash: string

networkType

networkType: INetworkType

The network type.

var

{NetworkType}

Optional password

password: string

Optional password for encryption when not provided means non-password-protected

var

{string=}

type

The QR Code type.

var

{QRCodeType}

Methods

getCorrectionLevel

getSchema

getTypeNumber

  • getTypeNumber(): number

toBase64

  • Generate QRcode image Base64.

    The returned string can be put in the src attribute of a <img /> tag directly in HTML. The produced image will be a PNG.

    Parameters

    • Default value settings: QRCodeSettings = new QRCodeSettings()

      (Optional) Settings for generation

    Returns Observable<string>

    Return image data in Base64.

toCanvas

toJSON

  • toJSON(): string

toObject

toString

Static fromJSON

  • fromJSON(json: string, password?: string): AccountQR
  • Parse a JSON QR code content into a AccountQR object.

    throws

    {Error} On empty json given.

    throws

    {Error} On missing type field value.

    throws

    {Error} On unrecognized QR code type field value.

    Parameters

    • json: string
    • Optional password: string

      Optional password

    Returns AccountQR

Generated using TypeDoc