https://github.com/brookr/lendooor-snap
Example of integrating multiple Consensys products in a proof of concept
https://github.com/brookr/lendooor-snap
Last synced: 2 months ago
JSON representation
Example of integrating multiple Consensys products in a proof of concept
- Host: GitHub
- URL: https://github.com/brookr/lendooor-snap
- Owner: brookr
- License: apache-2.0
- Created: 2024-08-17T04:33:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-20T06:33:10.000Z (over 1 year ago)
- Last Synced: 2025-02-26T20:14:14.276Z (over 1 year ago)
- Language: TypeScript
- Size: 4.17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.APACHE2
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Proof of Concept Monorepo
This repository demonstrates how to integrate various Consensys products,
using TypeScript. For detailed
instructions, see [the MetaMask documentation](https://docs.metamask.io/guide/snaps.html#serving-a-snap-to-your-local-environment).
MetaMask Snaps is a system that allows anyone to safely expand the capabilities
of MetaMask. A _snap_ is a program that we run in an isolated environment that
can customize the wallet experience.
## Testing and Linting
Run `yarn test` to run the tests once.
Run `yarn lint` to run the linter, or run `yarn lint:fix` to run the linter and
fix any automatically fixable issues.
## Using NPM packages with scripts
Scripts are disabled by default for security reasons. If you need to use NPM
packages with scripts, you can run `yarn allow-scripts auto`, and enable the
script in the `lavamoat.allowScripts` section of `package.json`.
See the documentation for [@lavamoat/allow-scripts](https://github.com/LavaMoat/LavaMoat/tree/main/packages/allow-scripts)
for more information.