Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andremiras/smart-contract-verifier
https://github.com/andremiras/smart-contract-verifier
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andremiras/smart-contract-verifier
- Owner: AndreMiras
- Created: 2022-10-28T13:21:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T19:40:11.000Z (2 months ago)
- Last Synced: 2024-10-27T07:29:47.596Z (about 2 months ago)
- Language: TypeScript
- Homepage: smart-contract-verifier.vercel.app
- Size: 663 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Smart Contract Verifier
Experimenting with smart contract verification
## Limitations
Vercel serverless functions currently have limited resources setup (including in pro account).
This make it difficult to dynamically download solc version and compile/verify a contract.
While this this working in local it's not in Vercel with current serverless specs.
In order to make it working, the smart contract compilation process had to be deployed on a custom lambda function with bigger resources, see## Run
First, setup the environment variables:
```sh
cp .env.example .env.local
```Then run the development server:
```sh
npm run dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.