A collection of contracts and libraries for writing smart contracts with scrypt-ts.
Learn more about how to write smart contracts with sCrypt at https://scrypt.io.
Install scrypt-ts-lib to your project with this command:
npm install scrypt-ts-libYou can use the contracts or libraries by importing them like this:
import { Mimc7 } from "scrypt-ts-lib";or
import { Mimc7 } from "scrypt-ts-lib/dist/hash/mimc7";Then use them in a contract like:
class MyContract extends SmartContract { @method public unlock(x: bigint, k: bigint, h: bigint) { // call imported library method assert(Mimc7.hash(x, k) == h); } }Pull requests are welcome.