https://github.com/zkemail/relayer-utils
Common relayer-related code, in Rust and WASM.
https://github.com/zkemail/relayer-utils
Last synced: 10 months ago
JSON representation
Common relayer-related code, in Rust and WASM.
- Host: GitHub
- URL: https://github.com/zkemail/relayer-utils
- Owner: zkemail
- Created: 2024-06-08T12:31:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-07-30T15:25:58.000Z (10 months ago)
- Last Synced: 2025-07-30T18:22:37.442Z (10 months ago)
- Language: Rust
- Homepage: https://www.npmjs.com/package/@zk-email/relayer-utils
- Size: 48.8 MB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# Relayer Utils
A utility package for ZK email relayer operations.
## Installation
You can install the package using npm or any other package manager:
```sh
npm install @zk-email/relayer-utils
```
Or using yarn:
```sh
yarn add @zk-email/relayer-utils
```
Or using Bun:
```sh
bun add @zk-email/relayer-utils
```
## Usage Example
```javascript
import { init, parseEmail } from '@zk-email/relayer-utils';
await init();
const email = await parseEmail(emailString);
```
## Development
For development setup, building from source, and contributing to this package, please refer to our [Development Guide](./DEV-README.md).
## Learn More
To learn more about:
- Rust: see the [Rust documentation](https://www.rust-lang.org)
- Node: see the [Node documentation](https://nodejs.org)
- Bun: see the [Bun documentation](https://bun.sh)