
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
cashscript
Advanced tools
CashScript is a high level language enabling basic smart contract functionality on Bitcoin Cash. While these cash contracts are less powerful than Ethereum's smart contracts, CashScript was in many ways inspired by Ethereum's development ecosystem. Ethereum has always had one of the most accessible development ecosystems in terms of tooling, and with CashScript we want to bring that accessibility to Bitcoin Cash.
The CashScript JavaScript SDK allows you to easily integrate cash contracts written with CashScript into JavaScript or TypeScript applications. The CashScript SDK uses cash contract .cash
files or .json
artifact files to generate a JavaScript Contract
object that can be used to instantiated and interact with these cash contracts. See the SDK documentation for a full reference of the SDK.
Note: The CashScript currently only supports NodeJS, as it uses some NodeJS-specific functionality (fs, path). We are working on making the library compatible with the browser as well as NodeJS, but this is currently not supported.
Attention: CashScript is in active development, and is currently in a beta
phase. While CashScript is in beta
stage, its APIs and usage is subject to change, so be sure to check the documentation. During the beta
phase it is possible that the library still contains bugs, so for now the CashScript SDK can only be used on the testnet
network.
The CashScript SDK can be installed through npm
:
npm install cashscript
After installing, the CashScript SDK can be imported into your TypeScript or JavaScript projects.
import { Contract, ... } from 'cashscript';
const { Contract, ... } = require('cashscript');
Using the CashScript SDK, you can import / compile existing cash contract files, create new instances of these contracts, and interact with these instances:
...
// Compile the P2PKH Cash Contract
const P2PKH: Contract = Contract.compile(path.join(__dirname, 'p2pkh.cash'), 'testnet');
// Instantiate a new P2PKH contract with constructor arguments: { pkh: pkh }
const instance: Instance = P2PKH.new(pkh);
// Get contract balance & output address + balance
const contractBalance: number = await instance.getBalance();
console.log('contract address:', instance.address);
console.log('contract balance:', contractBalance);
// Call the spend function with the owner's signature
// And use it to send 0. 000 100 00 BCH back to the contract's address
const tx: TxnDetailsResult = await instance.functions.spend(pk, new Sig(keypair))
.send(instance.address, 10000);
console.log('transaction details:', tx);
...
If you want to see CashScript in action and check out its usage, there are several example contracts in the examples/
directory. The .cash
files contain example contracts, and the .ts
files contain example usage of the CashScript SDK to interact with these contracts.
The "Hello World" of cash contracts is defining the P2PKH pattern inside a cash contract, which can be found under examples/p2pkh.cash
. Its usage can be found under examples/p2pkh.ts
or examples/p2pkh-artifact.ts
.
To run the examples, clone this repository and navigate to the examples/
directory. Since the examples depend on the SDK, be sure to run npm install
or yarn
inside the examples/
directory, which installs all required packages.
git clone git@github.com:Bitcoin-com/cashscript.git
cd cashscript/examples
yarn / npm install
All .ts
files in the examples/
directory can then be executed with ts-node
.
npm install -g ts-node
ts-node p2pkh.ts
All .js
files can be executed with node
.
node p2pkh.js
CashScript is a high-level language that allows you to write Cash Contracts in a straightforward and familiar way. It is inspired by Ethereum's Solidity, but it is not the same, and cash contracts work very differently from Ethereum's smart contracts. See the Language documentation for a full reference of the language.
FAQs
Easily write and interact with Bitcoin Cash contracts
The npm package cashscript receives a total of 179 weekly downloads. As such, cashscript popularity was classified as not popular.
We found that cashscript demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.