npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@futuretense/stellar-pathfinder-server

v1.1.0

Published

A standalone path finder for Stellar

Downloads

4

Readme

@futuretense/stellar-pathfinder-server

What?

Listen to anyone talking about Stellar and what sets it apart from other blockchain projects, and path payments will ultimately be touted.

The ability to pay for a cup of coffee using whatever asset you have at hand, and still have the merchant receive their preferred currency. Commerce, cross-border remittances; the uses are many.

Path finding is at the center of this.

To do a path payment you need to supply a path to the network, to get a path you need to ask someone to figure one out for you.

By default, this is one of the responsibilities of a Horizon server.

This is a standalone path finding server that performs path finding without the need to have a Horizon server running.

Why?

For the vision to come true of everyday use of path payments, for every payment, path finding has to be able to run at interactive rates. You don't want to leave users hanging, waiting around wondering what's going on.

Looking at the current stats, that's exactly what happens now, which is what led to the development of this project.

| | stellar.org | satoshipay.io | pathfinder | |-------|-------------|----------------|------------| |Get account status 1 | 0.300s | 0.353s | N/A | |Find path 2 | 5.340s | 6.647s | 0.586s |

How?

Requirements

  • A synced stellar-core node
  • A PostgreSQL instance w/ a stellar-core database

Installing

npm install -g @futuretense/stellar-pathfinder-server

This will install the command-line tool stellar-pathfinder-server, which can be run, with the proper environment variables set.

Environment variables

  • STELLAR_CORE_DB
    • PostgreSQL connection string, e.g.
      • postgres://{username}:{password}@{host}:{port}/{database}
  • API_PORT
    • TCP port to listen to for incoming connections for the API. Default: 8000
  • TRIGGER_DELAY
    • How many milliseconds after the last trigger to wait before considering a ledger complete. Default: 5
  • LOG_LEVEL
    • NONE, FATAL, ERROR, WARN, INFO, DEBUG, TRACE/ALL. Default: INFO

Compatibility with Horizon

The REST API is more-or-less compatible with the Horizon API, and could be used as a drop-in replacement.

The differences are

  • pathfinder requires the source_account query parameter
  • pathfinder ignores the destination_account query parameter
  • pathfinder returns fewer results

TODO:

  • add rate limiting

Notes: 1) using the median value of three runs of time curl https://{host}/accounts/GDUMWJ3ISSVBKGZHVQZRVUN6TUOJETXDV7POKVNXEYBCRN4CQOYCV5AA 2) using the median value of three runs of time curl "https://{host}/paths?source_account=GDUMWJ3ISSVBKGZHVQZRVUN6TUOJETXDV7POKVNXEYBCRN4CQOYCV5AA&destination_account=GDUMWJ3ISSVBKGZHVQZRVUN6TUOJETXDV7POKVNXEYBCRN4CQOYCV5AA&destination_asset_type=credit_alphanum4&destination_asset_code=BTC&destination_asset_issuer=GBSTRH4QOTWNSVA6E4HFERETX4ZLSR3CIUBLK7AXYII277PFJC4BBYOG&destination_amount=0.01"

Copyright © 2019 Future Tense, LLC