A collection of contracts and libraries for writing smart contracts with scrypt-ts
.
You can install scrypt-ts-lib
to your project with this command:
npm install scrypt-ts-lib
You 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 your 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.
You can learn more about how to write smart contracts with scrypt-ts
from here.