UNPKG

o1js-rsa

Version:

This repository exposes the API from the [o1js RSA example](https://github.com/o1-labs/o1js/tree/main/src/examples/crypto/rsa), making it importable and enabling RSA65537 signature verification on the Mina blockchain across various projects that utilize [

24 lines (23 loc) 485 B
module.exports = { root: true, env: { browser: true, node: true, jest: true, }, extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/eslint-recommended', 'plugin:@typescript-eslint/recommended', 'plugin:o1js/recommended', ], parser: '@typescript-eslint/parser', parserOptions: { ecmaVersion: 'latest', }, plugins: ['@typescript-eslint', 'o1js'], rules: { 'no-constant-condition': 'off', 'prefer-const': 'off', }, };