Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
daveroga committed Sep 2, 2024
1 parent 9001a2c commit db8e2ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ Driver for the iden3 DID method
amoy:
contractAddress: "0xf6..."
networkURL: "https://polygon-amoy..."
walletKey: "<private ethereum key for signing EIP712>"
```
`walletKey` is only needed for the resolver if it's a trusted resolver that includes signature of EIP712 message when requested in the resolution with `signature=EthereumEip712Signature2021`.
2. Build docker container:
```bash
docker build -t driver-did-iden3:local
Expand All @@ -19,3 +17,9 @@ Driver for the iden3 DID method
```bash
docker run -p 8080:8080 driver-did-iden3:local
```

`WALLET_KEY` is only needed for the resolver if it's a trusted resolver that includes signature of EIP712 message when requested in the resolution with `signature=EthereumEip712Signature2021`.
In this case you have to run:
```bash
docker run -p 8080:8080 -e WALLET_KEY=<your_wallet_key> driver-did-iden3:local
```

0 comments on commit db8e2ec

Please sign in to comment.