neucron-signer
v1.3.2
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
16
Readme
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. theP2PKH
smart contract is defined insidesrc/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.