https://github.com/scrypt-inc/scrypt-ts-lib
A library for building smart contracts with `scrypt-ts`.
https://github.com/scrypt-inc/scrypt-ts-lib
Last synced: 3 months ago
JSON representation
A library for building smart contracts with `scrypt-ts`.
- Host: GitHub
- URL: https://github.com/scrypt-inc/scrypt-ts-lib
- Owner: sCrypt-Inc
- Created: 2022-12-19T02:41:30.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-27T09:10:32.000Z (3 months ago)
- Last Synced: 2025-03-27T20:45:03.475Z (3 months ago)
- Language: TypeScript
- Size: 537 KB
- Stars: 12
- Watchers: 4
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/sCrypt-Inc/scrypt-ts-lib/actions/workflows/ci.yml)
[](https://app.travis-ci.com/sCrypt-Inc/scrypt-ts-lib)# scrypt-ts-lib
A collection of contracts and libraries for writing smart contracts with [`scrypt-ts`](https://www.npmjs.com/package/scrypt-ts).
Learn more about how to write smart contracts with `sCrypt` at https://scrypt.io.
## Installation
Install `scrypt-ts-lib` to your project with this command:
```sh
npm install scrypt-ts-lib
```## Usage
You can use the contracts or libraries by importing them like this:
```ts
import { Mimc7 } from "scrypt-ts-lib";
```or
```ts
import { Mimc7 } from "scrypt-ts-lib/dist/hash/mimc7";
```Then use them in a contract like:
```ts
class MyContract extends SmartContract {
@method
public unlock(x: bigint, k: bigint, h: bigint) {
// call imported library method
assert(Mimc7.hash(x, k) == h);
}
}
```## Contributing
Pull requests are welcome.