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

bitcoin-nanopayment

v0.4.0

Published

Send probabilistic Bitcoin nanopayments

Downloads

4

Readme

bitcoin-nanopayment

Copyright 2013 Paul Kernfeld. This software is released under the GNU GPL v3.

The fundamental problem with Bitcoin nanopayments is that making massive numbers of payments would take up too much space on the blockchain. Probabilistic nanopayments are one way to solve this problem without requiring significant computing resources or trust in a centralized system.

bitcoin-nanopayment is a Node library that allows users to send probabilistic Bitcoin nanopayments to others. It works on top of ordinary Bitcoin, and uses RPC calls to bitcoind/Bitcoin-Qt to create, verify, and "cash in" payments. This library is an implementation of this probabilistic nanopayment strategy first proposed by casascius and jevon.

What are probabilistic nanopayments?

A probabilistic nanopayment is a payment from one party to another that succeeds with a certain probability, and otherwise does nothing. In order for the parties to determine the expected amount that will be paid, they must both know the probability of success, and they should not be able to manipulate that probability.

Probabilistic Nanopayments

What does this library do?

bitcoin-nanopayment allows users to send probabilistic Bitcoin nanopayments to others. The library can send and receive nanopayments into a user's bitcoind/Bitcoin-Qt wallet using the RPC API. It lets users create "vouchers," which are Bitcoin transactions that have a known and verifiable probability of succeeding.

How does this library work?

This library lets users request, generate, and cash in vouchers that succeed with probability 1 / K, where K ≥ 1 is an integer. Otherwise, with probability ( K - 1) / K, the voucher does nothing. When sending a voucher for value x that succeeds with probability 1 / K, the monetary value of the voucher is x / K. This library generates the vouchers, and the user is responsible for sending them between users.

Please see docs/developers.md for more details.

Who is this for?

This protocol is useful for entities that need to send or receive Bitcoin payments that are small or rapid. Although a simple CLI is provided, this will probably be more useful for automated payments by applications.

Small payments

Sending extremely small Bitcoin payments is impractical, because each transaction takes up space in the blockchain. Currently, the reference implementation discourages nanopayments by charging transaction fees for transactions smaller than 0.01 BTC and refusing to relay transactions of less than 5430 Satoshis ("dust") by default.

This protocol even lets users pay each other quantities less than 1 Satoshi.

This protocol is not to be confused with a Bitcoin micropayments channel, which allows two users to group many small transactions between themselves into a larger transaction.

Rapid payments

An entity that sends rapid payments needs to have a lot of money in its account. Otherwise, it must wait between payments so that the recipient of the payments can verify that a double-spend attack is not being committed. Probabilistic nanopayments avoid this problem because they can pay the same value while sending fewer transactions to the blockchain.

Properties

Advantages

Of this protocol

  • Neither party needs to trust the other party
  • Neither party can cheat the other party
  • Neither party needs to trust a centralized system
  • Does not require significant additional computational resources
  • Can be used with any transport mechanism
  • The smallest possible payment is infinitesimal
  • Requires only two network round trips between payer and payee

Limitations

Of this protocol

  • The recipient must hold the private key for the account that's being paid to
  • The payee must have a small amount of money to get paid
  • The payee can be DDoS'ed unless he is able to filter out illegitimate payment requests
  • Each payment that goes through requires two transactions (hence double the transaction fee)
  • The rate at which the payee can be paid depends on how much money the payee has
  • Payment requires two round trips between the payer and payee
  • Only supports payments with probability 1/K, where K is an integer

Of this implementation

  • Stores the private key in a plaintext file
  • Requires use of bitcoind/Bitcoin-Qt's RPC functionality
  • Hardcoded to only send transactions for 0.01 BTC (smallest no-fee tx as of August 2013)
  • Can only send or receive one transaction at a time
  • Hardcoded to use testnet bitcoins
  • Minimum payment is 5.92e-13 Satoshis

Asymptotic Guarantees

For N vouchers, each for x BTC and being cashable with a probability p, the distribution of payments made follows a binomial distribution with parameters N and p, scaled by x. The scaled distribution has mean xNp and variance x√( Np (1 - p)).

The Poisson approximation to the binomial distribution is appropriate when p is small and N is large. In this case the returns are approximated by a Poisson distribution with parameter Np, scaled by x.

The normal approximation of the binomial distribution is appropriate when Np >> 1. In this case, the returns are approximated by normal distribution with mean xNp and standard deviation x√( Np ).

The ratio of actual returns to expected returns is a distribution with mean 1 and standard deviation less than 1/√( Np ).

Setup

bitcoind/Bitcoin-Qt setup

In order to use this library, you must install bitcoind/Bitcoin-Qt and enable RPC.

Create or modify bitcoind/Bitcoin-Qt's bitcoin.conf file to enable the RPC server. Set testnet to 1 only if you're using the testnet. Be aware that this lets any program that can read this password have access to your Bitcoin wallet. THIS IS A SECURITY RISK.

testnet=1

rpcuser=admin
rpcpassword=12345
server=1

How to Use

This library can be used as a library from a Node application, or as an RPC server from any application.

See demo.js for an example of how to use this as a Node library. See lib/test-payment-rpc.js for an example of how to use this as RPC server.

Either way, Alice can pay Bob as follows:

Step 1

Bob requests a payment from Alice by calling the requestVoucher method. He sends the result of this method (the "target") to Alice.

Step 2

Alice creates a voucher based on the target by calling createVoucher and passing in the target. She sends the voucher she just created to Bob.

Step 3

Bob calls cashVoucher on the voucher he just received from Alice. The result of this method tells him whether the payment was valid, and whether or not it was cashable.

Example Use Cases

  • Wireless internet resale protocol
  • Server/client for nanopayment-paid web pages
  • Sell storage for nanopayments