Socket
Socket
Sign inDemoInstall

cwi-external-services

Package Overview
Dependencies
66
Maintainers
3
Versions
138
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cwi-external-services

Implementations of external service APIs and standardized APIs for use within CWI


Version published
Weekly downloads
418
increased by248.33%
Maintainers
3
Install size
12.1 MB
Created
Weekly downloads
 

Readme

Source

cwi-external-services

Implementations of external service APIs.

Standardized service APIs for use within CWI.

API

Links: API, Interfaces, Classes, Functions, Types

Interfaces

BsvExchangeRateApiGetUtxoStatusDetailsApi
CwiExternalServicesApiGetUtxoStatusResultApi
CwiExternalServicesOptionsMapiCallbackApi
ExchangeRatesIoApiMapiCallbackPayloadApi
FiatExchangeRatesApiMapiPostTxPayloadApi
GetMerkleProofResultApiMapiTxStatusPayloadApi
GetRawTxResultApiMapiTxidReturnResultApi
GetScriptHistoryDetailsApiPostRawTxResultApi
GetScriptHistoryResultApiPostTransactionMapiMinerApi

Links: API, Interfaces, Classes, Functions, Types


Interface: MapiTxStatusPayloadApi

As defined in https://github.com/bitcoin-sv-specs/brfc-merchantapi/blob/master/README.md

export interface MapiTxStatusPayloadApi {
    apiVersion: string;
    timestamp: string;
    txid: string;
    returnResult: string;
    blockHash: string;
    blockHeight: number;
    confirmations: number;
    minerId: string;
    txSecondMempoolExpiry: number;
    merkleProof?: TscMerkleProofApi;
}

Links: API, Interfaces, Classes, Functions, Types


Interface: MapiCallbackPayloadApi

As defined in https://github.com/bitcoin-sv-specs/brfc-merchantapi/blob/master/README.md

export interface MapiCallbackPayloadApi {
    apiVersion: string;
    timestamp: string;
    blockHash: string;
    blockHeight: number;
    callbackTxId: string;
    callbackReason: string;
    callbackPayload: string;
}

Links: API, Interfaces, Classes, Functions, Types


Interface: MapiTxidReturnResultApi

Used to parse payloads when only confirmation that a miner acknowledges a specific txid matters.

export interface MapiTxidReturnResultApi {
    apiVersion?: string;
    timestamp?: string;
    txid: string;
    returnResult: string;
}

Links: API, Interfaces, Classes, Functions, Types


Interface: MapiPostTxPayloadApi

As defined in https://github.com/bitcoin-sv-specs/brfc-merchantapi/blob/master/README.md

export interface MapiPostTxPayloadApi {
    apiVersion: string;
    timestamp: string;
    txid: string;
    returnResult: string;
    resultDescription: string;
    minerId: string;
    currentHighestBlockHash?: string;
    currentHighestBlockHeight?: number;
    txSecondMempoolExpiry?: number;
    failureRetryable?: boolean;
    warnings?: unknown[];
    conflictedWith?: unknown[];
}

Links: API, Interfaces, Classes, Functions, Types


Interface: PostTransactionMapiMinerApi
export interface PostTransactionMapiMinerApi {
    name: string;
    url: string;
    authType: "none" | "bearer";
    authToken?: string;
}

Links: API, Interfaces, Classes, Functions, Types


Interface: ExchangeRatesIoApi
export interface ExchangeRatesIoApi {
    success: boolean;
    timestamp: number;
    base: "EUR" | "USD";
    date: string;
    rates: Record<string, number>;
}

Links: API, Interfaces, Classes, Functions, Types


Interface: CwiExternalServicesOptions
export interface CwiExternalServicesOptions {
    mainTaalApiKey?: string;
    testTaalApiKey?: string;
    bsvExchangeRate: BsvExchangeRateApi;
    bsvUpdateMsecs: number;
    fiatExchangeRates: FiatExchangeRatesApi;
    fiatUpdateMsecs: number;
    disableMapiCallback?: boolean;
    exchangeratesapiKey?: string;
    chaintracksFiatExchangeRatesUrl?: string;
}

Links: API, Interfaces, Classes, Functions, Types


Interface: CwiExternalServicesApi

Defines standard interfaces to access functionality implemented by external transaction processing services.

export interface CwiExternalServicesApi {
    getBsvExchangeRate(): Promise<number>;
    getFiatExchangeRate(currency: "USD" | "GBP" | "EUR", base?: "USD" | "GBP" | "EUR"): Promise<number>;
    getRawTx(txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<GetRawTxResultApi>;
    getTransaction(txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<Transaction>;
    getTransactionOutput(vout: number, txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<TransactionOutput>;
    getMerkleProof(txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<GetMerkleProofResultApi>;
    postRawTx(rawTx: string | Buffer, chain: Chain, callback?: MapiCallbackApi): Promise<PostRawTxResultApi[]>;
    getUtxoStatus(output: string | Buffer, chain: Chain, outputFormat?: GetUtxoStatusOutputFormatApi, useNext?: boolean): Promise<GetUtxoStatusResultApi>;
}
Interface CwiExternalServicesApi Details
Method getBsvExchangeRate

Approximate exchange rate US Dollar / BSV, USD / BSV

This is the US Dollar price of one BSV

getBsvExchangeRate(): Promise<number>
Method getFiatExchangeRate

Approximate exchange rate currency per base.

getFiatExchangeRate(currency: "USD" | "GBP" | "EUR", base?: "USD" | "GBP" | "EUR"): Promise<number>
Method getMerkleProof

Attempts to obtain the merkle proof associated with a 32 byte transaction hash (txid).

Cycles through configured transaction processing services attempting to get a valid response.

On success: Result txid is the requested transaction hash Result proof will be the merkle proof. Result name will be the responding service's identifying name. Returns result without incrementing active service.

On failure: Result txid is the requested transaction hash Result mapi will be the first mapi response obtained (service name and response), or null Result error will be the first error thrown (service name and CwiError), or null Increments to next configured service and tries again until all services have been tried.

getMerkleProof(txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<GetMerkleProofResultApi>

Argument Details

  • txid
    • transaction hash for which proof is requested
  • chain
    • which chain to look on
  • useNext
    • optional, forces skip to next service before starting service requests cycle.
Method getRawTx

Attempts to obtain the raw transaction bytes associated with a 32 byte transaction hash (txid).

Cycles through configured transaction processing services attempting to get a valid response.

On success: Result txid is the requested transaction hash Result rawTx will be Buffer containing raw transaction bytes. Result name will be the responding service's identifying name. Returns result without incrementing active service.

On failure: Result txid is the requested transaction hash Result mapi will be the first mapi response obtained (service name and response), or null Result error will be the first error thrown (service name and CwiError), or null Increments to next configured service and tries again until all services have been tried.

getRawTx(txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<GetRawTxResultApi>

Argument Details

  • txid
    • transaction hash for which raw transaction bytes are requested
  • chain
    • which chain to look on
  • useNext
    • optional, forces skip to next service before starting service requests cycle.
Method getTransaction

Typically uses getRawTx to lookup a raw transaction to return a parsed Transaction.

getTransaction(txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<Transaction>

Argument Details

  • txid
    • transaction hash for which raw transaction bytes are requested
  • chain
    • which chain to look on
  • useNext
    • optional, forces skip to next service before starting service requests cycle.

Throws

ERR_INVALID_PARAMETER if txid does not exist, or can't be found, on chain.

Method getTransactionOutput

Typically uses getTransaction to obtain a parsed Transaction and returns a specific TransactionOutput.

getTransactionOutput(vout: number, txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<TransactionOutput>

Argument Details

  • vout
    • the index (zero based) of the output to be returned
  • txid
    • transaction hash for which raw transaction bytes are requested
  • chain
    • which chain to look on
  • useNext
    • optional, forces skip to next service before starting service requests cycle.

Throws

ERR_INVALID_PARAMETER if txid does not exist, or can't be found, on chain, or if vout is invalid.

Method getUtxoStatus

Attempts to determine the UTXO status of a transaction output.

Cycles through configured transaction processing services attempting to get a valid response.

getUtxoStatus(output: string | Buffer, chain: Chain, outputFormat?: GetUtxoStatusOutputFormatApi, useNext?: boolean): Promise<GetUtxoStatusResultApi>

Argument Details

  • output
    • transaction output identifier in format determined by outputFormat.
  • chain
    • which chain to post to, all of rawTx's inputs must be unspent on this chain.
  • outputFormat
    • optional, supported values: 'hashLE' little-endian sha256 hash of output script 'hashBE' big-endian sha256 hash of output script 'script' entire transaction output script undefined if asBuffer length of output is 32 then 'hashBE`, otherwise 'script'.
  • useNext
    • optional, forces skip to next service before starting service requests cycle.
Method postRawTx

Attempts to post a new transaction to each configured external transaction processing service.

Asynchronously posts the transaction simultaneously to all the configured services.

postRawTx(rawTx: string | Buffer, chain: Chain, callback?: MapiCallbackApi): Promise<PostRawTxResultApi[]>

Returns

an array of PostRawTxResultApi objects with results of posting to each service

Argument Details

  • rawTx
    • new raw transaction to post for processing
  • chain
    • which chain to post to, all of rawTx's inputs must be unspent on this chain.
  • callback
    • optional, controls whether and how each service is to make transaction status update callbacks.

Links: API, Interfaces, Classes, Functions, Types


Interface: MapiCallbackApi

An API that enables unique callback IDs to be generated for potentially multiple independent callback clients.

export interface MapiCallbackApi {
    getId: () => Promise<string>;
    url: string;
}
Interface MapiCallbackApi Details
Property getId

Each call to this method generates a unique callbackID string and creates a record of the circumstances under which it was generated.

getId: () => Promise<string>
Property url

The public url to which callbacks will occur.

Callback requests must include a previously getId generated callbackID which must match an already existing callback record.

url: string

Links: API, Interfaces, Classes, Functions, Types


Interface: GetMerkleProofResultApi

Properties on result returned from CwiExternalServicesApi function getMerkleProof.

export interface GetMerkleProofResultApi {
    name?: string;
    proof?: TscMerkleProofApi | TscMerkleProofApi[];
    mapi?: {
        name?: string;
        resp: MapiResponseApi;
    };
    error?: {
        name?: string;
        err: CwiError;
    };
}
Interface GetMerkleProofResultApi Details
Property error

The first exception error that occurred during processing, if any.

error?: {
    name?: string;
    err: CwiError;
}
Property mapi

The first valid mapi response received from a service, if any. Relevant when no proof was received.

mapi?: {
    name?: string;
    resp: MapiResponseApi;
}
Property name

The name of the service returning the proof, or undefined if no proof

name?: string
Property proof

Multiple proofs may be returned when a transaction also appears in one or more orphaned blocks

proof?: TscMerkleProofApi | TscMerkleProofApi[]

Links: API, Interfaces, Classes, Functions, Types


Interface: GetRawTxResultApi

Properties on result returned from CwiExternalServicesApi function getRawTx.

export interface GetRawTxResultApi {
    txid: string;
    name?: string;
    rawTx?: Buffer;
    mapi?: {
        name?: string;
        resp: MapiResponseApi;
    };
    error?: {
        name?: string;
        err: CwiError;
    };
}
Interface GetRawTxResultApi Details
Property error

The first exception error that occurred during processing, if any.

error?: {
    name?: string;
    err: CwiError;
}
Property mapi

The first valid mapi response received from a service, if any. Relevant when no proof was received.

mapi?: {
    name?: string;
    resp: MapiResponseApi;
}
Property name

The name of the service returning the rawTx, or undefined if no rawTx

name?: string
Property rawTx

Multiple proofs may be returned when a transaction also appears in one or more orphaned blocks

rawTx?: Buffer
Property txid

Transaction hash or rawTx (and of initial request)

txid: string

Links: API, Interfaces, Classes, Functions, Types


Interface: PostRawTxResultApi

Properties on array items of result returned from CwiExternalServicesApi function postRawTx.

export interface PostRawTxResultApi {
    name: string;
    callbackID?: string;
    status: "success" | "error";
    mapi?: MapiResponseApi;
    payload?: MapiPostTxPayloadApi;
    error?: CwiError;
    alreadyKnown?: boolean;
}
Interface PostRawTxResultApi Details
Property alreadyKnown

if true, the transaction was already known to this service. Usually treat as a success.

Potentially stop posting to additional transaction processors.

alreadyKnown?: boolean
Property callbackID

callbackID associated with this request

callbackID?: string
Property error

When status is 'error', provides code and description

Specific potential errors: ERR_BAD_REQUEST ERR_EXTSVS_DOUBLE_SPEND ERR_EXTSVS_ALREADY_MINED (description has error details) ERR_EXTSVS_INVALID_TRANSACTION (description has error details) ERR_EXTSVS_TXID_INVALID (service response txid doesn't match rawTx) ERR_EXTSVS_MAPI_SIGNATURE_INVALID ERR_EXTSVS_MAPI_UNSUPPORTED_ENCODING ERR_EXTSVS_MAPI_UNSUPPORTED_MIMETYPE ERR_EXTSVS_MAPI_MISSING (description has service request error details)

error?: CwiError
Property mapi

Raw mapi response including stringified payload

mapi?: MapiResponseApi
Property name

The name of the service to which the transaction was submitted for processing

name: string
Property payload

Parsed and signature verified mapi payload

payload?: MapiPostTxPayloadApi
Property status

'success' - The transaction was accepted for processing

status: "success" | "error"

Links: API, Interfaces, Classes, Functions, Types


Interface: GetUtxoStatusDetailsApi
export interface GetUtxoStatusDetailsApi {
    height?: number;
    txid?: string;
    index?: number;
    amount?: number;
}
Interface GetUtxoStatusDetailsApi Details
Property amount

if isUtxo, the amount of the matching unspent transaction output

typically there will be only one, but future orphans can result in multiple values

amount?: number
Property height

if isUtxo, the block height containing the matching unspent transaction output

typically there will be only one, but future orphans can result in multiple values

height?: number
Property index

if isUtxo, the output index in the transaction containing of the matching unspent transaction output

typically there will be only one, but future orphans can result in multiple values

index?: number
Property txid

if isUtxo, the transaction hash (txid) of the transaction containing the matching unspent transaction output

typically there will be only one, but future orphans can result in multiple values

txid?: string

Links: API, Interfaces, Classes, Functions, Types


Interface: GetUtxoStatusResultApi
export interface GetUtxoStatusResultApi {
    name: string;
    status: "success" | "error";
    error?: CwiError;
    isUtxo?: boolean;
    details: GetUtxoStatusDetailsApi[];
}
Interface GetUtxoStatusResultApi Details
Property details

Additional details about occurances of this output script as a utxo.

Normally there will be one item in the array but due to the possibility of orphan races there could be more than one block in which it is a valid utxo.

details: GetUtxoStatusDetailsApi[]
Property error

When status is 'error', provides code and description

error?: CwiError
Property isUtxo

true if the output is associated with at least one unspent transaction output

isUtxo?: boolean
Property name

The name of the service to which the transaction was submitted for processing

name: string
Property status

'success' - the operation was successful, non-error results are valid. 'error' - the operation failed, error may have relevant information.

status: "success" | "error"

Links: API, Interfaces, Classes, Functions, Types


Interface: GetScriptHistoryDetailsApi
export interface GetScriptHistoryDetailsApi {
    txid: string;
    height?: number;
    fee?: number;
}
Interface GetScriptHistoryDetailsApi Details
Property fee

the fee paid by the transaction referencing this output script, may be an input or output

typically valid if the transaction has not been mined.

fee?: number
Property height

the block height of the transaction referencing this output script, may be an input or output

typically valid if the transaction has been mined.

height?: number
Property txid

the hash of the transaction referencing this output script, may be an input or output

txid: string

Links: API, Interfaces, Classes, Functions, Types


Interface: GetScriptHistoryResultApi
export interface GetScriptHistoryResultApi {
    name: string;
    status: "success" | "error";
    error?: CwiError;
    details: GetScriptHistoryDetailsApi[];
}
Interface GetScriptHistoryResultApi Details
Property details

Additional details about occurances of this output script.

Sorted by decreasing fee, then decreasing height. i.e. most likely spending transaction first.

details: GetScriptHistoryDetailsApi[]
Property error

When status is 'error', provides code and description

error?: CwiError
Property name

The name of the service to which the transaction was submitted for processing

name: string
Property status

'success' - the operation was successful, non-error results are valid. 'error' - the operation failed, error may have relevant information.

status: "success" | "error"

Links: API, Interfaces, Classes, Functions, Types


Interface: BsvExchangeRateApi
export interface BsvExchangeRateApi {
    timestamp: Date;
    base: "USD";
    rate: number;
}

Links: API, Interfaces, Classes, Functions, Types


Interface: FiatExchangeRatesApi
export interface FiatExchangeRatesApi {
    timestamp: Date;
    base: "USD";
    rates: Record<string, number>;
}

Links: API, Interfaces, Classes, Functions, Types


Classes

CwiExternalServicesERR_EXTSVS_MAPI_UNSUPPORTED_ENCODING
ERR_EXTSVS_ALREADY_MINEDERR_EXTSVS_MAPI_UNSUPPORTED_MIMETYPE
ERR_EXTSVS_BLOCK_HASH_MISSINGERR_EXTSVS_MAPI_UNSUPPORTED_RETURNRESULT
ERR_EXTSVS_BLOCK_HEIGHT_MISSINGERR_EXTSVS_MERKLEPROOF_NODE_TYPE
ERR_EXTSVS_DOUBLE_SPENDERR_EXTSVS_MERKLEPROOF_PARSING
ERR_EXTSVS_ENVELOPE_DEPTHERR_EXTSVS_MERKLEPROOF_TAGET_TYPE
ERR_EXTSVS_FAILUREERR_EXTSVS_MERKLEPROOF_UNSUPPORTED
ERR_EXTSVS_INVALID_TRANSACTIONERR_EXTSVS_MERKLEROOT_INVALID
ERR_EXTSVS_INVALID_TXIDERR_EXTSVS_MERKLEROOT_MISSING
ERR_EXTSVS_MAPI_MISSINGERR_EXTSVS_TXID_INVALID
ERR_EXTSVS_MAPI_SIGNATURE_INVALIDServiceCollection

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_FAILURE

Expected txid ${expected} doesn't match proof txid ${actual}

export class ERR_EXTSVS_FAILURE extends CwiError {
    constructor(public url: string, public cwiError?: CwiError, description?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_TXID_INVALID

Expected txid ${expected} doesn't match proof txid ${actual}

export class ERR_EXTSVS_TXID_INVALID extends CwiError {
    constructor(expected?: string, actual?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_BLOCK_HASH_MISSING

Header for block hash ${hash} was not found.

export class ERR_EXTSVS_BLOCK_HASH_MISSING extends CwiError {
    constructor(hash?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_BLOCK_HEIGHT_MISSING

Header for block height ${height} was not found.

export class ERR_EXTSVS_BLOCK_HEIGHT_MISSING extends CwiError {
    constructor(height?: number) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_ENVELOPE_DEPTH

Exceeded max envelope depth ${maxDepth}

export class ERR_EXTSVS_ENVELOPE_DEPTH extends CwiError {
    constructor(maxDepth: number) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MERKLEROOT_INVALID

Expected merkleRoot ${expected} doesn't match computed ${actual}

export class ERR_EXTSVS_MERKLEROOT_INVALID extends CwiError {
    constructor(expected?: string, actual?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MERKLEROOT_MISSING

MerkleRoot ${merkleRoot} was not found in active chain.

export class ERR_EXTSVS_MERKLEROOT_MISSING extends CwiError {
    constructor(merkleRoot?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MERKLEPROOF_TAGET_TYPE

Unsupported merkle proof target type ${targetType}.

export class ERR_EXTSVS_MERKLEPROOF_TAGET_TYPE extends CwiError {
    constructor(targetType?: string | number) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MERKLEPROOF_NODE_TYPE

Unsupported merkle proof node type ${nodeType}.

export class ERR_EXTSVS_MERKLEPROOF_NODE_TYPE extends CwiError {
    constructor(nodeType?: string | number) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MERKLEPROOF_PARSING

Merkle proof parsing error.

export class ERR_EXTSVS_MERKLEPROOF_PARSING extends CwiError {
    constructor() 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MERKLEPROOF_UNSUPPORTED

Merkle proof unsuported feature ${feature}.

export class ERR_EXTSVS_MERKLEPROOF_UNSUPPORTED extends CwiError {
    constructor(feature?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MAPI_MISSING

Required Mapi response is missing.

export class ERR_EXTSVS_MAPI_MISSING extends CwiError {
    constructor(description?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MAPI_SIGNATURE_INVALID

Mapi response signature is invalid.

export class ERR_EXTSVS_MAPI_SIGNATURE_INVALID extends CwiError {
    constructor() 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MAPI_UNSUPPORTED_MIMETYPE

mAPI response unsupported mimetype ${mimeType}

export class ERR_EXTSVS_MAPI_UNSUPPORTED_MIMETYPE extends CwiError {
    constructor(mimeType?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MAPI_UNSUPPORTED_ENCODING

mAPI response unsupported encoding ${encoding}

export class ERR_EXTSVS_MAPI_UNSUPPORTED_ENCODING extends CwiError {
    constructor(encoding?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_MAPI_UNSUPPORTED_RETURNRESULT

mAPI response unsupported returnResult ${result}

export class ERR_EXTSVS_MAPI_UNSUPPORTED_RETURNRESULT extends CwiError {
    constructor(result?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_INVALID_TRANSACTION

Transaction is invalid.

export class ERR_EXTSVS_INVALID_TRANSACTION extends CwiError {
    constructor(description?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_INVALID_TXID

Txid of broadcast transaction doesn't match returned txid.

export class ERR_EXTSVS_INVALID_TXID extends CwiError {
    constructor(description?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_DOUBLE_SPEND

Transaction with txid of ${txid} is a double spend.

This class does not include spendingTransactions, see ERR_DOUBLE_SPEND if required.

export class ERR_EXTSVS_DOUBLE_SPEND extends CwiError {
    constructor(public txid: string, description?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ERR_EXTSVS_ALREADY_MINED

Transaction was already mined.

export class ERR_EXTSVS_ALREADY_MINED extends CwiError {
    constructor(description?: string) 
}

Links: API, Interfaces, Classes, Functions, Types


Class: ServiceCollection
export class ServiceCollection<T> {
    services: {
        name: string;
        service: T;
    }[];
    _index: number;
    constructor() 
    add(s: {
        name: string;
        service: T;
    }): ServiceCollection<T> 
    remove(name: string): void 
    get name() 
    get service() 
    get allServices() 
    get count() 
    get index() 
    next(): number 
}

Links: API, Interfaces, Classes, Functions, Types


Class: CwiExternalServices
export class CwiExternalServices implements CwiExternalServicesApi {
    static createDefaultOptions(): CwiExternalServicesOptions 
    options: CwiExternalServicesOptions;
    getMerkleProofServices: ServiceCollection<GetMerkleProofServiceApi>;
    getRawTxServices: ServiceCollection<GetRawTxServiceApi>;
    postRawTxServices: ServiceCollection<PostRawTxServiceApi>;
    getUtxoStatusServices: ServiceCollection<GetUtxoStatusServiceApi>;
    getScriptHistoryServices: ServiceCollection<GetScriptHistoryServiceApi>;
    updateFiatExchangeRateServices: ServiceCollection<UpdateFiatExchangeRateServiceApi>;
    constructor(options?: CwiExternalServicesOptions) 
    async getBsvExchangeRate(): Promise<number> 
    async getFiatExchangeRate(currency: "USD" | "GBP" | "EUR", base?: "USD" | "GBP" | "EUR"): Promise<number> 
    targetCurrencies = ["USD", "GBP", "EUR"];
    async updateFiatExchangeRates(rates?: FiatExchangeRatesApi, updateMsecs?: number): Promise<FiatExchangeRatesApi> 
    get getProofsCount() 
    get getRawTxsCount() 
    get postRawTxsCount() 
    get getUtxoStatsCount() 
    async getUtxoStatus(output: string | Buffer, chain: Chain, outputFormat?: GetUtxoStatusOutputFormatApi, useNext?: boolean): Promise<GetUtxoStatusResultApi> 
    async getScriptHistory(output: string | Buffer, chain: Chain, outputFormat?: GetUtxoStatusOutputFormatApi, useNext?: boolean): Promise<GetScriptHistoryResultApi> 
    async verifyOutput(output: {
        outputScript: Buffer | null;
        amount: number | null;
    }, chain: Chain): Promise<boolean> 
    async postRawTx(rawTx: string | Buffer, chain: Chain, callback?: MapiCallbackApi): Promise<PostRawTxResultApi[]> 
    async getRawTx(txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<GetRawTxResultApi> 
    async getTransaction(txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<Transaction> 
    async getTransactionOutput(vout: number, txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<TransactionOutput> 
    async getMerkleProof(txid: string | Buffer, chain: Chain, useNext?: boolean): Promise<GetMerkleProofResultApi> 
}

Links: API, Interfaces, Classes, Functions, Types


Functions

checkMapiResponsegetMerkleProofFromTaalgetUtxoStatusFromWhatsOnChain
checkMapiResponseForTxidgetMerkleProofFromWhatsOnChainpostRawTxToGorillaPool
checkMerkleProofgetMerkleProofFromWhatsOnChainTscpostRawTxToMapiMiner
createMapiPostTxResponsegetProofFromGorillaPoolpostRawTxToTaal
getExchangeRatesIogetProofFromMetastremepostRawTxToWhatsOnChain
getMapiCallbackPayloadgetProofFromTaalsignMapiPayload
getMapiJsonResponsePayloadgetProofFromWhatsOnChainupdateBsvExchangeRate
getMapiPostTxPayloadgetProofFromWhatsOnChainTscupdateChaintracksFiatExchangeRates
getMapiTxStatusPayloadgetRawTxFromWhatsOnChainupdateExchangeratesapi
getMerkleProofFromGorillaPoolgetScriptHistoryFromWhatsOnChainvalidateScriptHash
getMerkleProofFromMetastremegetSpentStatusForOutpointverifyMapiResponseForTxid

Links: API, Interfaces, Classes, Functions, Types


Function: createMapiPostTxResponse
export function createMapiPostTxResponse(txid: string, key: string, resultDescription: string, returnResult = "success"): {
    mapi: MapiResponseApi;
    payloadData: MapiPostTxPayloadApi;
} 

Links: API, Interfaces, Classes, Functions, Types


Function: checkMapiResponse

Verifies the payload signature on a mAPI response object

export function checkMapiResponse(response: MapiResponseApi) 
Function checkMapiResponse Details

Throws

ERR_EXTSVS_MAPI_SIGNATURE_INVALID if signature fails to validate.

https://github.com/bitcoin-sv-specs/brfc-misc/tree/master/jsonenvelope

Links: API, Interfaces, Classes, Functions, Types


Function: signMapiPayload
export function signMapiPayload(payload: string, privateKey: string): string 

Links: API, Interfaces, Classes, Functions, Types


Function: getMapiJsonResponsePayload

Parses a mAPI mimetype 'application/json' response payload after verifying the envelope signature.

Throws on verification errors.

export function getMapiJsonResponsePayload<T>(response: MapiResponseApi): T 
Function getMapiJsonResponsePayload Details

Returns

parse JSON payload object

Argument Details

  • mAPI
    • response

Links: API, Interfaces, Classes, Functions, Types


Function: getMapiTxStatusPayload

Validates the mapi response signature and parses payload as transaction status.

Throws an error if payload txid doesn't match requested txid.

Throws an error if payload returnResult is not 'success' or 'failure'.

'failure' indicates the txid is unknown to the service.

'success' indicates the txid is known to the service and status was returned.

export function getMapiTxStatusPayload(txid: string | Buffer | undefined, response: MapiResponseApi): MapiTxStatusPayloadApi 
Function getMapiTxStatusPayload Details

Argument Details

  • txid
    • hash of transaction whose status was requested

Links: API, Interfaces, Classes, Functions, Types


Function: getMapiCallbackPayload
export function getMapiCallbackPayload(txid: string | Buffer | undefined, response: MapiResponseApi): MapiCallbackPayloadApi 

Links: API, Interfaces, Classes, Functions, Types


Function: verifyMapiResponseForTxid
export function verifyMapiResponseForTxid<T extends MapiTxidReturnResultApi>(response: MapiResponseApi, txid?: string | Buffer, checkFailure?: boolean): T 

Links: API, Interfaces, Classes, Functions, Types


Function: getMapiPostTxPayload
export function getMapiPostTxPayload(response: MapiResponseApi, txid?: string | Buffer, checkFailure?: boolean): MapiPostTxPayloadApi 

Links: API, Interfaces, Classes, Functions, Types


Function: checkMapiResponseForTxid
export function checkMapiResponseForTxid(response: MapiResponseApi, txid?: string | Buffer): boolean 

Links: API, Interfaces, Classes, Functions, Types


Function: postRawTxToGorillaPool
export async function postRawTxToGorillaPool(txid: string | Buffer, rawTx: string | Buffer, chain: Chain, callback?: MapiCallbackApi): Promise<PostRawTxResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: postRawTxToTaal
export function postRawTxToTaal(txid: string | Buffer, rawTx: string | Buffer, chain: Chain, callback?: MapiCallbackApi, apiKey?: string): Promise<PostRawTxResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: postRawTxToMapiMiner
export async function postRawTxToMapiMiner(txid: string | Buffer, rawTx: string | Buffer, miner: PostTransactionMapiMinerApi, callback?: MapiCallbackApi): Promise<PostRawTxResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: postRawTxToWhatsOnChain
export async function postRawTxToWhatsOnChain(txid: string | Buffer | undefined, rawTx: string | Buffer, chain: Chain, callback?: MapiCallbackApi): Promise<PostRawTxResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getRawTxFromWhatsOnChain
export async function getRawTxFromWhatsOnChain(txid: string | Buffer, chain: Chain): Promise<GetRawTxResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getProofFromGorillaPool

GorillaPool.io MAINNET ONLY

has a mapi transaction status endpoint for mainNet, not for testNet, and does NOT return merkle proofs...

mapiResponse is signed and has txStatus payload. { apiVersion: "", timestamp: "2023-03-23T02:14:39.362Z", txid: "9c31ed1dea4ec1aae0475addc0a74eaed68b718d9983d42b111c387d6696a949", returnResult: "success", resultDescription: "", blockHash: "00000000000000000e155235fd83a8757c44c6299e63104fb12632368f3f0cc9", blockHeight: 700000, confirmations: 84353, minerId: "03ad780153c47df915b3d2e23af727c68facaca4facd5f155bf5018b979b9aeb83", txSecondMempoolExpiry: 0, }

export async function getProofFromGorillaPool(txid: string | Buffer, chain: Chain): Promise<GetMerkleProofResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getProofFromTaal

Taal.com has the most functional txStatus and merkleProof endpoint for both mainNet and testNet

Proofs use targetType "header" which is converted to "merkleRoot".

Proofs correctly use duplicate computed node value symbol "*".

An apiKey must be used and must correspond to the target chain: mainNet or testNet.

export async function getProofFromTaal(txid: string | Buffer, apiKey: string): Promise<GetMerkleProofResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getProofFromMetastreme

metastreme.com has a partially conforming merkleProof implementation.

Both mainNet and testNet are supported.

Proofs incorrectly included a copy of the computed value instead of "*" along right side of merkle tree.

targetType of hash

export async function getProofFromMetastreme(txid: string | Buffer, chain: Chain): Promise<GetMerkleProofResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getProofFromWhatsOnChain

WhatOnChain.com has their own "hash/pos/R/L" proof format and a more TSC compliant proof format.

The "/proof" endpoint returns an object for each node with "hash" and "pos" properties. "pos" can have values "R" or "L". Normally "pos" indicates which side of a concatenation the provided "hash" goes with one exception! EXCEPTION: When the provided should be "*" indicating edge-of-the-tree-duplicate-computed-value, they include the expected computed value and the pos value is always "L", even when it should really be "R". This only matters if you are trying to compute index from the "R" and "L" values.

export async function getProofFromWhatsOnChain(txid: string | Buffer, chain: Chain): Promise<GetMerkleProofResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getProofFromWhatsOnChainTsc

WhatOnChain.com has their own "hash/pos/R/L" proof format and a more TSC compliant proof format.

The "/proof/tsc" endpoint is much closer to the TSC specification. It provides "index" directly and each node is just the provided hash value. The "targetType" is unspecified and thus defaults to block header hash, requiring a Chaintracks lookup to get the merkleRoot... Duplicate hash values are provided in full instead of being replaced by "*".

export async function getProofFromWhatsOnChainTsc(txid: string | Buffer, chain: Chain): Promise<GetMerkleProofResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getUtxoStatusFromWhatsOnChain
export async function getUtxoStatusFromWhatsOnChain(output: string | Buffer, chain: Chain, outputFormat?: GetUtxoStatusOutputFormatApi): Promise<GetUtxoStatusResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getScriptHistoryFromWhatsOnChain
export async function getScriptHistoryFromWhatsOnChain(output: string | Buffer, chain: Chain, outputFormat?: GetUtxoStatusOutputFormatApi): Promise<GetScriptHistoryResultApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: validateScriptHash
export function validateScriptHash(output: string | Buffer, outputFormat?: GetUtxoStatusOutputFormatApi): string 

Links: API, Interfaces, Classes, Functions, Types


Function: updateBsvExchangeRate
export async function updateBsvExchangeRate(rate?: BsvExchangeRateApi, updateMsecs?: number): Promise<BsvExchangeRateApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: updateChaintracksFiatExchangeRates
export async function updateChaintracksFiatExchangeRates(targetCurrencies: string[], options: CwiExternalServicesOptions): Promise<FiatExchangeRatesApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: updateExchangeratesapi
export async function updateExchangeratesapi(targetCurrencies: string[], options: CwiExternalServicesOptions): Promise<FiatExchangeRatesApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getExchangeRatesIo
export async function getExchangeRatesIo(key: string): Promise<ExchangeRatesIoApi> 

Links: API, Interfaces, Classes, Functions, Types


Function: getMerkleProofFromGorillaPool

GorillaPool.io has a mapi transaction status endpoint for mainNet, not for testNet, and does NOT return merkle proofs...

mapiResponse is signed and has txStatus payload. { apiVersion: "", timestamp: "2023-03-23T02:14:39.362Z", txid: "9c31ed1dea4ec1aae0475addc0a74eaed68b718d9983d42b111c387d6696a949", returnResult: "success", resultDescription: "", blockHash: "00000000000000000e155235fd83a8757c44c6299e63104fb12632368f3f0cc9", blockHeight: 700000, confirmations: 84353, minerId: "03ad780153c47df915b3d2e23af727c68facaca4facd5f155bf5018b979b9aeb83", txSecondMempoolExpiry: 0, }

export async function getMerkleProofFromGorillaPool(txid: string | Buffer): Promise<TscMerkleProofApi | undefined> 

Links: API, Interfaces, Classes, Functions, Types


Function: getMerkleProofFromTaal

Taal.com has the most functional txStatus and merkleProof endpoint for both mainNet and testNet

Proofs use targetType "header" which is converted to "merkleRoot".

Proofs correctly use duplicate computed node value symbol "*".

An apiKey must be used and must correspond to the target chain: mainNet or testNet.

export async function getMerkleProofFromTaal(txid: string | Buffer, apiKey: string): Promise<TscMerkleProofApi | undefined> 

Links: API, Interfaces, Classes, Functions, Types


Function: getMerkleProofFromMetastreme

metastreme.com has a partially conforming merkleProof implementation.

Both mainNet and testNet are supported.

Proofs incorrectly included a copy of the computed value instead of "*" along right side of merkle tree.

targetType of hash is used which prevents automatic proof checking as the target root value isn't known without a lookup request.

export async function getMerkleProofFromMetastreme(txid: string | Buffer, chain: Chain): Promise<TscMerkleProofApi | undefined> 

Links: API, Interfaces, Classes, Functions, Types


Function: getMerkleProofFromWhatsOnChain

WhatOnChain.com has their own "hash/pos/R/L" proof format and a more TSC compliant proof format.

The "/proof" endpoint returns an object for each node with "hash" and "pos" properties. "pos" can have values "R" or "L". Normally "pos" indicates which side of a concatenation the provided "hash" goes with one exception! EXCEPTION: When the provided should be "*" indicating edge-of-the-tree-duplicate-computed-value, they include the expected computed value and the pos value is always "L", even when it should really be "R". This only matters if you are trying to compute index from the "R" and "L" values.

export async function getMerkleProofFromWhatsOnChain(txid: string | Buffer, chain: Chain): Promise<TscMerkleProofApi | undefined> 

Links: API, Interfaces, Classes, Functions, Types


Function: getMerkleProofFromWhatsOnChainTsc

WhatOnChain.com has their own "hash/pos/R/L" proof format and a more TSC compliant proof format.

The "/proof/tsc" endpoint is much closer to the TSC specification. It provides "index" directly and each node is just the provided hash value. The "targetType" is unspecified and thus defaults to block header hash, requiring a Chaintracks lookup to get the merkleRoot... Duplicate hash values are provided in full instead of being replaced by "*".

export async function getMerkleProofFromWhatsOnChainTsc(txid: string | Buffer, chain: Chain): Promise<TscMerkleProofApi | undefined> 

Links: API, Interfaces, Classes, Functions, Types


Function: checkMerkleProof

Implement merkle proof per https://tsc.bitcoinassociation.net/standards/merkle-proof-standardised-format/

We extend the current standard by implementing targetType 'height' (binary value 3). This extension avoids the need to maintain a merkleroot or block hash index for all headers, reducing the space required by 50%.

Other extensions are not currently supported.

Supports partial and full binary format as well as hex strings.

External Assumptions:

  1. The raw transaction is in-hand and is either duplicated in the proof or matches the starting hash used to evaluate the merkle tree branch.

Checking the proof verifies these claims:

  1. The merkleRoot determined by the targetType is confirmed to match a block header on the active chain.
  2. Computing a merkleRoot value starting with the transaction hash, using the proof nodes yields a match for the target value.

Implications:

  1. The transaction in-hand is valid and was included in a block on the active chain.
export async function checkMerkleProof(txid: string | Buffer, proof: TscMerkleProofApi | Buffer, chaintracks: ChaintracksClientApi): Promise<BlockHeader> 
Function checkMerkleProof Details

Returns

The block header containing the verified merkleRoot

Argument Details

  • txid
    • the transaction hash of the in-hand transaction to which this proof applies.

Links: API, Interfaces, Classes, Functions, Types


Function: getSpentStatusForOutpoint

Attempts to validate whether or not an outpoint has been spent by using the WhatsOnChain API

export async function getSpentStatusForOutpoint(outpoint: string, chain: Chain): Promise<boolean> 

Links: API, Interfaces, Classes, Functions, Types


Types

GetMerkleProofServiceApi
GetRawTxServiceApi
GetScriptHistoryServiceApi
GetUtxoStatusOutputFormatApi
GetUtxoStatusServiceApi
PostRawTxServiceApi
UpdateFiatExchangeRateServiceApi

Links: API, Interfaces, Classes, Functions, Types


Type: GetUtxoStatusOutputFormatApi
export type GetUtxoStatusOutputFormatApi = "hashLE" | "hashBE" | "script"

Links: API, Interfaces, Classes, Functions, Types


Type: GetUtxoStatusServiceApi
export type GetUtxoStatusServiceApi = (output: string | Buffer, chain: Chain, outputFormat?: GetUtxoStatusOutputFormatApi) => Promise<GetUtxoStatusResultApi>

Links: API, Interfaces, Classes, Functions, Types


Type: GetScriptHistoryServiceApi
export type GetScriptHistoryServiceApi = (output: string | Buffer, chain: Chain, outputFormat?: GetUtxoStatusOutputFormatApi) => Promise<GetScriptHistoryResultApi>

Links: API, Interfaces, Classes, Functions, Types


Type: GetMerkleProofServiceApi
export type GetMerkleProofServiceApi = (txid: string | Buffer, chain: Chain) => Promise<GetMerkleProofResultApi>

Links: API, Interfaces, Classes, Functions, Types


Type: GetRawTxServiceApi
export type GetRawTxServiceApi = (txid: string | Buffer, chain: Chain) => Promise<GetRawTxResultApi>

Links: API, Interfaces, Classes, Functions, Types


Type: UpdateFiatExchangeRateServiceApi
export type UpdateFiatExchangeRateServiceApi = (targetCurrencies: string[], options: CwiExternalServicesOptions) => Promise<FiatExchangeRatesApi>

Links: API, Interfaces, Classes, Functions, Types


Type: PostRawTxServiceApi
export type PostRawTxServiceApi = (txid: string | Buffer, rawTx: string | Buffer, chain: Chain, callback?: MapiCallbackApi) => Promise<PostRawTxResultApi>

Links: API, Interfaces, Classes, Functions, Types


License

The license for the code in this repository is the Open BSV License.

Keywords

FAQs

Last updated on 24 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc