This repository is deprecated. Please go to boilerplate.
A collection of smart contract examples along with tests, implemented in scryptTS, a Typescript framework to write smart contracts on Bitcoin.
Install all dependencies first.
npm install
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 scryptTS docs.
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.
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.
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.