Options
All
  • Public
  • Public/Protected
  • All
Menu

Blockchain http repository.

since

1.0

Hierarchy

Implements

Index

Constructors

constructor

  • new BlockHttp(url: string, fetchApi?: any): BlockHttp

Properties

Protected Optional Readonly fetchApi

fetchApi: any

Protected Readonly url

url: string

Methods

Protected call

  • call<D, M>(remoteCall: Promise<D>, mapper: (value: D) => M): Observable<M>
  • This method knows how to call, convert and handle exception when doing remote http operations.

    Type parameters

    • D

    • M

    Parameters

    • remoteCall: Promise<D>

      the remote call

    • mapper: (value: D) => M

      the mapper from dto to the model object.

        • (value: D): M
        • Parameters

          • value: D

          Returns M

    Returns Observable<M>

config

  • config(): Configuration

createNetworkTypeObservable

getBlockByHeight

getMerkleReceipts

  • Get the merkle path for a given a receipt statement hash and block Returns the merkle path for a receipt statement or resolution linked to a block. The path is the complementary data needed to calculate the merkle root. A client can compare if the calculated root equals the one recorded in the block header, verifying that the receipt was linked with the block.

    Parameters

    • height: UInt64

      The height of the block.

    • hash: string

      The hash of the receipt statement or resolution.

    Returns Observable<MerkleProofInfo>

    Observable

getMerkleTransaction

  • Get the merkle path for a given a transaction and block Returns the merkle path for a transaction included in a block. The path is the complementary data needed to calculate the merkle root. A client can compare if the calculated root equals the one recorded in the block header, verifying that the transaction was included in the block.

    Parameters

    • height: UInt64

      The height of the block.

    • hash: string

      The hash of the transaction.

    Returns Observable<MerkleProofInfo>

    Observable

search

streamer

Static errorHandling

  • errorHandling(error: any): Promise<Error>

Generated using TypeDoc