Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@burstjs/core

Package Overview
Dependencies
Maintainers
2
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@burstjs/core

Burst-related functions and models for building Burstcoin applications.

  • 0.6.0-beta.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

@burstjs/core

Burst-related functions and models for building Burstcoin applications.

Installation

burstJS can be used with NodeJS or Web. Two formats are available

Using with NodeJS and/or modern web frameworks

Install using npm:

npm install @burstjs/core

or using yarn:

yarn add @burstjs/core
Example
import {composeApi, ApiSettings} from '@burstjs/core'
import {BurstValue} from '@burstjs/util'

const apiSettings = new ApiSettings('https://testnet.burstcoin.network:6876');
const api = composeApi(apiSettings);

// this self-executing file makes turns this file into a starting point of your app

(async () => {
try{
const {balanceNQT} = await api.account.getAccountBalance('13036514135565182944')
console.log(`Account Balance: ${BurstValue.fromPlanck(balanceNQT).toString()}`)
}
catch(e){ // e is of type HttpError (as part of @burstjs/http)
console.error(`Whooops, something went wrong: ${e.message}`)
}
})()

Using in classic <script>

Each package is available as bundled standalone library using IIFE. This way burstJS can be used also within <script>-Tags. This might be useful for Wordpress and/or other PHP applications.

Just import the package using the HTML <script> tag.

<script src='https://cdn.jsdelivr.net/npm/@burstjs/core/dist/burstjs.min.js'></script>

Example
(function(){
const api = b$.composeApi({nodeHost: "https://testnet.burstcoin.network:6876"});

api.network.getBlockchainStatus().then(console.log).catch(console.error);
})()

See more here:

@burstjs/core Online Documentation


API Reference

Modules

api

The API composer mounts the API for given service and selected methods

Usually you would use [[composeApi]], which gives you all available API methods. Unfortunately, this will import almost all dependencies, even if you need only a fraction of the methods. To take advantage of tree-shaking (dead code elimination) you can compose your own API with the methods you need. This can reduce your final bundle significantly.

Usage:


const burstService = new BurstService({
    nodeHost: 'https://testnet.burst.fun',
})

const api = apiComposer .create(burstService) .withMessageApi({ sendTextMessage }) .withAccountApi({ getAccountTransactions, getUnconfirmedAccountTransactions, getAccountBalance, generateSendTransactionQRCode, generateSendTransactionQRCodeAddress, }) .compose();

The with<section>Api uses factory methods from the api.core.factories package

api

Settings for API used in [[composeApi]]

api

Composes the API, i.e. setup the environment and mounts the API structure with its functions.

const api = composeApi(new ApiSettings('https://wallet1.burst-team.us:2083')), // one of the mainnet nodes

Note, that this method mounts the entire API, i.e. all available methods. One may also customize the API composition using [[ApiComposer]].

core

Get the transaction attachment version identifier

Attachment types are identified by a field version.

core

Checks if a transaction attachment is of specific version

core
core

The default deadline (in minutes) for Transactions

core

The default endpoint for [[ApiSettings]]

core

Constants for arbitrary subtypes

core

Constants for asset subtypes

core

Constants for escrow subtypes

core

Constants for leasing subtypes

core

Constants for marketplace subtypes

core

Constants for payment subtypes

core

Constants for reward recipient subtypes (Pool Operation)

core

Constants for smart contract (aka AT) subtypes

core

Constants for transaction types

The transaction type is part of every [[Transaction]] object and used to distinguish block data. Additionally, to the transaction type a subtype is sent, that specifies the kind of transaction more detailly.

core

Constructs an Attachment

core

Creates BRS Http send parameters for a transaction from attachment data

core

Generic BRS Web Service class.

core

Tries to extract recipients and its amounts for multi out payments (different and same amount)

core

Gets the amount from a transaction, considering ordinary and multi out transactions (with same and different payments)

core

Checks if a transaction is a multi out transaction with same amounts for each recipient

core

Checks if a transaction is a multi out transaction (with different amounts)

core

Account class

The account class serves as a model for a Burstcoin account. It's meant to model the response from BRS API, except publicKey has been moved into the keys object.

core

Attachment class

The attachment class is used to appended to transaction where appropriate. It is a super class for Message and EncryptedMessage.

core

Message class

The Message class is used to model a plain message attached to a transaction.

core

EncryptedMessage class

The EncryptedMessage class is a model for a encrypted message attached to a transaction.

Classes

ApiImpl

Copyright (c) 2019 Burst Apps Team

api

The API composer mounts the API for given service and selected methods

Usually you would use [[composeApi]], which gives you all available API methods. Unfortunately, this will import almost all dependencies, even if you need only a fraction of the methods. To take advantage of tree-shaking (dead code elimination) you can compose your own API with the methods you need. This can reduce your final bundle significantly.

Usage:


const burstService = new BurstService({
    nodeHost: 'https://testnet.burst.fun',
})

const api = apiComposer .create(burstService) .withMessageApi({ sendTextMessage }) .withAccountApi({ getAccountTransactions, getUnconfirmedAccountTransactions, getAccountBalance, generateSendTransactionQRCode, generateSendTransactionQRCodeAddress, }) .compose();

The with<section>Api uses factory methods from the api.core.factories package

api~ApiSettings

Kind: inner class of api

new ApiSettings(nodeHost, apiVersion, httpClientOptions)
ParamTypeDescription
nodeHoststring

The url of the Burst peer

apiVersionApiVersion

For future usage.

httpClientOptionsany | AxiosRequestSettings

Optional http options, like additional header. The default implementation uses axios. In case of a custom client pass your own options. see Axios Configuration

api

Settings for API used in [[composeApi]]

api~ApiSettings

Kind: inner class of api

new ApiSettings(nodeHost, apiVersion, httpClientOptions)
ParamTypeDescription
nodeHoststring

The url of the Burst peer

apiVersionApiVersion

For future usage.

httpClientOptionsany | AxiosRequestSettings

Optional http options, like additional header. The default implementation uses axios. In case of a custom client pass your own options. see Axios Configuration

api ⇒

Composes the API, i.e. setup the environment and mounts the API structure with its functions.

const api = composeApi(new ApiSettings('https://wallet1.burst-team.us:2083')), // one of the mainnet nodes

Note, that this method mounts the entire API, i.e. all available methods. One may also customize the API composition using [[ApiComposer]].

Returns:

The complete API

ParamDescription
settings

necessary execution context

api~ApiSettings

Kind: inner class of api

new ApiSettings(nodeHost, apiVersion, httpClientOptions)
ParamTypeDescription
nodeHoststring

The url of the Burst peer

apiVersionApiVersion

For future usage.

httpClientOptionsany | AxiosRequestSettings

Optional http options, like additional header. The default implementation uses axios. In case of a custom client pass your own options. see Axios Configuration

core ⇒

Get the transaction attachment version identifier

Attachment types are identified by a field version.

Returns:

return Identifier, if exists, otherwise undefined

ParamDescription
transaction

The transaction to be checked

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core ⇒

Checks if a transaction attachment is of specific version

Returns:

true, if version string matches

ParamDescription
transaction

The transaction to be checked

versionIdentifier

The version string, i.e. MultiOutCreation

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

The default deadline (in minutes) for Transactions

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

The default endpoint for [[ApiSettings]]

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Constants for arbitrary subtypes

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Constants for asset subtypes

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Constants for escrow subtypes

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Constants for leasing subtypes

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Constants for marketplace subtypes

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Constants for payment subtypes

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Constants for reward recipient subtypes (Pool Operation)

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Constants for smart contract (aka AT) subtypes

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Constants for transaction types

The transaction type is part of every [[Transaction]] object and used to distinguish block data. Additionally, to the transaction type a subtype is sent, that specifies the kind of transaction more detailly.

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core ⇒

Deprecated

Constructs an Attachment

Returns:

HttpParams


Internal:

ParamDescription
transaction

The transaction with the attachment

params

Some HttpParams

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core ⇒

Creates BRS Http send parameters for a transaction from attachment data

Returns:

HttpParams


Internal:

ParamDescription
attachment

The attachment

params

Any object

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Generic BRS Web Service class.

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core ⇒

Tries to extract recipients and its amounts for multi out payments (different and same amount)

Returns:

A list of recipients and their payed amount (in NQT)


Throws:

  • An exception in case of wrong transaction types

ParamDescription
transaction

The transaction

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core ⇒

Gets the amount from a transaction, considering ordinary and multi out transactions (with same and different payments)

Returns:

the amount in BURST (not NQT)

ParamDescription
recipientId

The numeric id of the recipient

transaction

The payment transaction

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core ⇒

Checks if a transaction is a multi out transaction with same amounts for each recipient

Returns:

true, if is a multi out transaction

ParamDescription
transaction

Transaction to be checked

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core ⇒

Checks if a transaction is a multi out transaction (with different amounts)

Returns:

true, if is a multi out transaction

ParamDescription
transaction

Transaction to be checked

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Account class

The account class serves as a model for a Burstcoin account. It's meant to model the response from BRS API, except publicKey has been moved into the keys object.

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Attachment class

The attachment class is used to appended to transaction where appropriate. It is a super class for Message and EncryptedMessage.

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

Message class

The Message class is used to model a plain message attached to a transaction.

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

core

EncryptedMessage class

The EncryptedMessage class is a model for a encrypted message attached to a transaction.

core~BurstService

Kind: inner class of core

new BurstService(settings)

Creates Service instance

ParamDescription
settings

The settings for the service

burstService.toBRSEndpoint(method, data) ⇒ string

Mounts a BRS conform API (V1) endpoint of format <host>?requestType=getBlock&height=123

Kind: instance method of BurstService
Returns: string -

The mounted url (without host)


See: https://burstwiki.org/wiki/The_Burst_API

ParamTypeDescription
methodstring

The method name for requestType

dataany

A JSON object which will be mapped to url params

burstService.query(method, args, options) ⇒ Promise.<T>

Requests a query to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API

argsany

A JSON object which will be mapped to url params

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

burstService.send(method, args, body, options) ⇒ Promise.<T>

Send data to BRS

Kind: instance method of BurstService
Returns: Promise.<T> -

The response data of success


Throws:

  • HttpError in case of failure

ParamTypeDescription
methodstring

The BRS method according https://burstwiki.org/wiki/The_Burst_API. Note that there are only a few POST methods

argsany

A JSON object which will be mapped to url params

bodyany

An object with key value pairs to submit as post body

optionsany | AxiosRequestConfig

The optional request configuration for the passed Http client

ApiImpl

Copyright (c) 2019 Burst Apps Team

Kind: global class

FAQs

Package last updated on 29 Apr 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc