https://github.com/codingwithmanny/solidity-signature-verification
A simple way to verify a wallet signature in a Solidity contract
https://github.com/codingwithmanny/solidity-signature-verification
Last synced: 5 months ago
JSON representation
A simple way to verify a wallet signature in a Solidity contract
- Host: GitHub
- URL: https://github.com/codingwithmanny/solidity-signature-verification
- Owner: codingwithmanny
- License: mit
- Created: 2022-09-02T22:39:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-02T22:48:47.000Z (over 3 years ago)
- Last Synced: 2025-09-25T00:35:07.732Z (6 months ago)
- Language: TypeScript
- Size: 111 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Solidity Signature Verification
A project that demonstrates wallet signatures being verified through a solidity contract.
If you like this check me out on Twitter at [@codingwithmanny](https://twitter.com/codingwithmanny)
## Requirements
- NVM or Node 16.17.0
## Local Setup
```bash
yarn;
# npm install;
```
## Running Local Node
**Shell Terminal 1:**
```bash
yarn hardhat:compile;
yarn hardhat:node;
```
## Running Local Tests
**Shell Terminal 2:**
```bash
yarn hardhat:test;
```
## Other Commands
Try running some of the following tasks:
```shell
npx hardhat help
npx hardhat test
GAS_REPORT=true npx hardhat test
npx hardhat node
npx hardhat run scripts/deploy.ts
```