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

@functional-bitcoin/agent

v0.0.1-beta.22

Published

🚨 **Alert: This repository is for the legacy JavaScript-based agent, which is not being actively developed right now.**

Downloads

24

Readme

license

Functional Bitcoin :: Agent

🚨 Alert: This repository is for the legacy JavaScript-based agent, which is not being actively developed right now.

A node module for fetching and executing Functional Bitcoin scripts.

Installation

$ yarn add @functional-bitcoin/agent@beta

Usage

const fbAgent = require('@functional-bitcoin/agent')

fbAgent.runScript(txid)
  .on('load:script', (script, tx) => {
    // Callback after script TX has been loaded
    // `script.tx` contains the whole tx so is possible to
    // check all outputs and other tx attributes
  })
  .on('load:functions', (script, funcs) => {
    // Callback after all functions have been loaded,
    // but prior to script being validated
  })
  .on('success', (script, res) => {
    console.log('Result:', res)
  })
  .on('error', (script, err) => {
    console.log('Error:', err)
  })

Compatibility with Bitcom protocols

Bitcom protocols are identified using a 25-byte Bitcoin address as the prefix for a protocol, whereas Functional Bitcoin scripts rely on a 32 byte TXID to reference a function. It is possible transform Bitcom address prefixes into valid function references using the following approach:

const prefixTransforms = {
  // b:// protocal prefix               // bfile/new function
  '19HxigV4QyBv3tHpQVcUEQyq1pzZVdoAut': '5f94a325c835ac0fcc89370061c6a63b305b2c6cf3d2fe002d264e98dbd44ac2'

}

fbAgent.runScript(txid)
  .on('load:script', (script) => {
    script.stack
      .filter(ln => Object.keys(prefixTransforms).includes(ln.cmd))
      .forEach(ln => ln.cmd = prefixTransforms[ln.cmd])
  })
  .on('success', (script) => {
    console.log('B:// file:', script.result)
  })

Function sandbox

Functions are executed within a sandboxed node VM, which by default has access to very little of the agent's environment. A function cannot access environment variables, or overwrite global functions.

It is expected that functions remain small, simple and self contained, and the agent application itself be responsible for handling and responding to the output of a script.

However, it is possible to manually expose objects to the sandbox, and so opt-in to sharing external libraries and environment variables with the functions executed within a script.

const datapay = require('datapay')

fbAgent.config.env.datapay = datapay;
fbAgent.config.env.privKey = process.env.PRIVATE_KEY;

// functions can now access `env.datapay` and `env.privKey`
fbAgent.runScript(txid)

Using this approach it is entirely possible for a function to create a new transaction, and for multiple agents to autonomously interract by sending scripts to one another.