Socket
Socket
Sign inDemoInstall

interstellar-network

Package Overview
Dependencies
75
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    interstellar-network

The interstellar-network module provides communication layer between Interstellar application and Stellar network.


Version published
Maintainers
1
Created

Readme

Source

interstellar-network

The interstellar-network module is part of the Interstellar Module System.

It provides a communication layer between Interstellar applications and the Stellar network.

Quick start to developing in the Interstellar eco-system:

Default configuration

{
  "networkPassphrase": "Test SDF Network ; September 2015",
  "horizon": {
    "secure": true,
    "hostname": "horizon-testnet.stellar.org",
    "port": 443
  }
}

interstellar-network module exports two consts:

  • NETWORK_PUBLIC - containing Public Global Stellar Network passphrase,
  • NETWORK_TESTNET - containing Test SDF Network passphrase

Read more about modules configuration.

Module contents

Classes

None

Services
Widgets

None

interstellar-network.AccountObservable service

interstellar-network.AccountObservable provides a shared space for accounts state and events. Let's say there are 2 widgets displaying a current balance. Without interstellar-network.AccountObservable each of them would have to make it's own requests to horizon server in order to get balance data. This service saves a recently fetched account information in the internal cache so every widget can get the latest information about the account without having to make requests to horizon.

getBalances(address) method

Returns the cached balance data for address. If there is no cache data will be requested from horizon and then returned.

AccountObservable.getBalances(address)
  .then(balances => {
    console.log(balances);
  });

Returns a Promise.

getTransactions(address) method

Returns the transactions list for address. This data will not be cached so it will be requested from horizon every time it's used.

AccountObservable.getTransactions(address)
  .then(transactions => {
    console.log(transactions);
  });

Returns a Promise.

registerBalanceChangeListener(address, callback) method

Registers listener for balance changes. callback function will be called every time there is a change in one or more user balances.

AccountObservable.registerBalanceChangeListener(address, balances => {
  console.log(balances);
});
registerTransactionListener(address, callback) method

Registers listener for new transactions. callback function will be called every time there is a new transaction in address.

AccountObservable.registerTransactionListener(address, transaction => {
  console.log(transaction);
});

interstellar-network.Server service

interstellar-network.Server is a stellar-sdk Server object created using application configuration. For more information please read stellar-sdk documentation.

Publishing to npm

npm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease]
npm publish

npm >=2.13.0 required. Read more about npm version.

Keywords

FAQs

Last updated on 13 Sep 2016

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