Skip to content

Commit

Permalink
docs(GoerliAndSepolia): update docs about new supported Ethereum test…
Browse files Browse the repository at this point in the history
…nets, goerli and sepolia.
  • Loading branch information
koshilife committed Jul 12, 2022
1 parent a7c3834 commit 0355520
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ issuing_address = <issuing-address>
# issuer URL / DID
verification_method = <verification-method>
chain=<bitcoin_regtest|bitcoin_testnet|bitcoin_mainnet|ethereum_ropsten|ethereum_mainnet|mockchain>
chain=<bitcoin_regtest|bitcoin_testnet|bitcoin_mainnet|ethereum_goerli|ethereum_sepolia|ethereum_ropsten|ethereum_mainnet|mockchain>
usb_name = </Volumes/path-to-usb/>
key_file = <file-you-saved-pk-to>
Expand Down Expand Up @@ -380,7 +380,7 @@ python cert-issuer -c conf.ini
- The Blockchain Certificates will be located in data/blockchain_certificates.
- If you ran in the mainnet or testnet mode, you can also see your transaction on a live blockchain explorer.
- For Bitcoin, Blockchain.com has explorers for both [testnet](https://www.blockchain.com/explorer?view=btc-testnet) and [mainnet](https://www.blockchain.com/explorer?view=btc).
- For Ethereum, Etherscan has explorers for [ropsten](https://ropsten.etherscan.io/) and [mainnet](https://etherscan.io/)
- For Ethereum, Etherscan has explorers for [goerli](https://goerli.etherscan.io/), [sepolia](https://sepolia.etherscan.io/), [ropsten](https://ropsten.etherscan.io/) and [mainnet](https://etherscan.io/)
- The transaction id is located in the Blockchain Certificate under `signature.anchors[0].sourceId`

# Contributing
Expand Down Expand Up @@ -409,6 +409,8 @@ For an Ethereum transaction, you'll need to use a different explorer, which migh
output. To view a transaction in a web browser, you might try something like this:

- Ethereum Mainnet: https://etherscan.io/tx/0xf537d81667c8011e34e1f450e18fd1c5a8a10c770cd0acdc91a79746696f36a3
- Ethereum Goerli (testnet): https://goerli.etherscan.io/tx/0xfb593f186a274f58f861e5186150bc692ed533c7af50efb094f756ccb81c7023
- Ethereum Sepolia (testnet): https://sepolia.etherscan.io/tx/0xa5484369839ba54cd3be71271155fc1a76b52499607dcddbf682ee04534a3f95
- Ethereum Ropsten (testnet): https://ropsten.etherscan.io/tx/0xf537d81667c8011e34e1f450e18fd1c5a8a10c770cd0acdc91a79746696f36a3

## Mac scrypt problems
Expand Down
2 changes: 1 addition & 1 deletion conf_ethtest.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
issuing_address = <Your Ethereum address>

chain = <ethereum_ropsten|ethereum_mainnet>
chain = <ethereum_goerli|ethereum_sepolia|ethereum_ropsten|ethereum_mainnet>

usb_name=</Volumes/path-to-usb/>
key_file=<file-you-saved-pk-to>
Expand Down
4 changes: 3 additions & 1 deletion docs/ethereum_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ This should hold the Hex string of the BIP32 derived private key, generated from
## conf.ini
```
issuing_address=0xYOUR_ADDRESS # matching with the private key above
chain=ethereum_ropsten # one of ['ethereum_ropsten', 'ethereum_mainnet']
chain=ethereum_goerli # one of ['ethereum_goerli', 'ethereum_sepolia', 'ethereum_ropsten', 'ethereum_mainnet']
```

`ethereum_ropsten` is DEPRECATED because the Ropsten has been announced to close in Q4 2022.

0 comments on commit 0355520

Please sign in to comment.