/ReactWeb3VerifySignature

Verification Signatures on React Web3

Primary LanguageJavaScript

Commands:

Verify contract, get hash, compare and use that for further verification's processes

npx hardhat block-number --network <network_name>
npx hardhat deploy
npx hardhat deploy --tags mocks
npm i create-react-app
npx create-react-app <app_name>
npm start -> RUN REACT APP
npm run build -> builds build APP

web inspect steps:

ethereum.enable()
account = <metamask_address> use String
hash = <secret_message_hash> use String
ethereum.request({method: "personal_sign", params: [account, hash]})

sigg