Skip to main content

Global Functions & Operators

CashScript has several builtin functions for things like cryptographic and arithmetic applications, and it includes many common arithmetic and other operators that you would expect in a programming language.

Arithmetic functions

abs()

int abs(int a)

Returns the absolute value of argument a.

min()

int min(int a, int b)

Returns the minimum value of arguments a and b.

max()

int max(int a, int b)

Returns the maximum value of arguments a and b.

within()

bool within(int x, int lower, int upper)

Returns true if and only if x >= lower && x < upper.

Hashing functions

ripemd160()

bytes20 ripemd160(any x)

Returns the RIPEMD-160 hash of argument x.

sha1()

bytes20 sha1(any x)

Returns the SHA-1 hash of argument x.

sha256()

bytes32 sha256(any x)

Returns the SHA-256 hash of argument x.

hash160()

bytes20 hash160(any x)

Returns the RIPEMD-160 hash of the SHA-256 hash of argument x.

hash256()

bytes32 hash256(any x)

Returns the double SHA-256 hash of argument x.

Signature checking functions

caution

All signature checking functions must comply with the NULLFAIL rule. This means that if you want to use the output of a signature check inside the condition of an if-statement, the input signature needs to either be correct, or an empty byte array. When you use an incorrect signature as an input, the script will fail.

checkSig()

bool checksig(sig s, pubkey pk)

Checks that transaction signature s is valid for the current transaction and matches with public key pk.

checkMultiSig()

bool checkMultiSig(sig[] sigs, pubkey[] pks)

Performs a multi-signature check using a list of transaction signatures and public keys.

note

While this function can be used inside your smart contracts, it is not supported by the JavaScript SDK, so it is recommended not to use it. Instead a checkMultiSig() call can be simulated using multiple checkSig() calls.

checkDataSig()

bool checkDataSig(datasig s, bytes msg, pubkey pk)

Checks that sig s is a valid signature for message msg and matches with public key pk.

Operators

An overview of all supported operators and their precedence is included below. Notable is a lack of exponentiation, since these operations are not supported by the underlying Bitcoin Script.

PrecedenceDescriptionOperator
1Parentheses(<expression>)
2Type cast<type>(<expression>)
3Object instantiationnew <class>(<args...>)
4Function call<function>(<args...>)
5Tuple index<tuple>[<index>]
6Member access<object>.<member>
7Unary minus-
7Logical NOT!
8Multiplication, division and modulo*, /, %
9Addition and subtraction+, -
9String / bytes concatenation+
10Numeric comparison<, >, <=, >=
11Equality and inequality==, !=
12Bitwise AND&
13Bitwise XOR^
14Bitwise OR|
15Logical AND&&
16Logical OR||
17Assignment=