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

scrypt-boilerplate

v1.0.0

Published

[![CI-Test](https://github.com/sCrypt-Inc/boilerplate/actions/workflows/ci.yml/badge.svg)](https://github.com/sCrypt-Inc/boilerplate/actions/workflows/ci.yml) [![Build Status](https://app.travis-ci.com/sCrypt-Inc/boilerplate.svg?branch=master)](https://a

Downloads

3

Readme

CI-Test Build Status

A collection of smart contract examples along with tests, implemented using sCrypt, a Typescript framework to write smart contracts on Bitcoin.

Install all dependencies first.

npm install

Local Tests

In order to run smart contract tests locally, just simply run:

npm test

This will run every test defined under tests/local/.

To run tests for a specific smart contract, i.e. the Counter smart contract, run the following:

npm run build && npx mocha 'dist/tests/local/counter.test.js'

To understand how these tests work, please read the sCrypt docs.

Test on the Bitcoin Testnet

This repository also contains tests for the testnet. They will deploy and call contracts on chain, so you first need to have some testnet coins.

First, generate a private key along with an address:

npm run genprivkey

This will store a private key in a file named .env. Additionally, it will output its address to the console, which you can then fund from a faucet.

Once the address is funded, you can either run

npm run testnet

to run all defined testnet tests, or:

npm run build && npx mocha 'dist/tests/testnet/<contract_name>.js'

to run a specific contract test.

Debug Smart Contract Code

In order to debug smart contract code in Visual Studio Code, you need to configure launch.json (located under .vscode/). This repository already has an example configuration for the Demo smart contract.

See the docs for more information on how to use the debugger.

Project Structure

  • src/contracts - This is where all the smart contract code is. Each file is for a separate smart contract example, e.g. the P2PKH smart contract is defined inside src/contracts/p2pkh.ts.
  • tests/local - This is the directory which contains smart contract tests that get executed locally. Each smart contract has its separate test file.
  • tests/testnet - This is the directory which contains smart contract tests that get broadcast to the Bitcoin testnet.

Legacy boilerplate

The old boilerplate code which was using the now deprecated legacy sCrypt was deprecated in favour of our new Typescript-based implementation.

You can still find the old code under the legacy branch.