File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ It is based on the [EIP-712 standard for typed structured data hashing and signi
12
12
[ DIDStampVCVerifier] ( contracts/DIDStampVCVerifier.sol ) - On chain verification that the signer of the provided credential is the issuer.
13
13
[ Test] ( test/DIDStampVCVerifier.ts ) - Verify that signed credential is valid and signed by issuer
14
14
15
+ ### Gas usage of simple verification
16
+
17
+
15
18
### Pre Requisites
16
19
17
20
Before running any command, you need to create a ` .env ` file and set a BIP-39 compatible mnemonic or a private key as an environment
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ import { HardhatUserConfig } from "hardhat/config";
4
4
import { NetworkUserConfig } from "hardhat/types" ;
5
5
import { resolve } from "path" ;
6
6
7
+ import "hardhat-gas-reporter"
8
+
7
9
import "./tasks/accounts" ;
8
10
import "./tasks/didpkh" ;
9
11
import "./tasks/issue" ;
@@ -83,6 +85,7 @@ const config: HardhatUserConfig = {
83
85
enabled : process . env . REPORT_GAS ? true : false ,
84
86
excludeContracts : [ ] ,
85
87
src : "./contracts" ,
88
+ coinmarketcap : process . env . COINMARKETCAP_API_KEY ,
86
89
} ,
87
90
networks : {
88
91
hardhat : {
You can’t perform that action at this time.
0 commit comments