File tree Expand file tree Collapse file tree 3 files changed +91
-51
lines changed
deployments/arbitrumSepoliaDevnet Expand file tree Collapse file tree 3 files changed +91
-51
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Smart contracts for Kleros v2
4
4
5
5
## Deployments
6
6
7
- Refresh the list of deployed contracts by running ` ./scripts/generateDeploymentsMarkdown.sh ` .
7
+ Refresh the list of deployed contracts by running ` ./scripts/generateDeploymentsMarkdown.sh ` or ` ./scripts/populateReadme.sh ` .
8
8
9
9
### Official Testnet
10
10
@@ -57,7 +57,7 @@ Refresh the list of deployed contracts by running `./scripts/generateDeployments
57
57
- [ DisputeKitClassic: proxy] ( https://sepolia.arbiscan.io/address/0x9426F127116C3652A262AE1eA48391AC8F44D35b ) , [ implementation] ( https://sepolia.arbiscan.io/address/0x692CC78F2570181FFB99297965FeAA8352ab12E8 )
58
58
- [ DisputeResolver] ( https://sepolia.arbiscan.io/address/0xB8B36CC43f852f9F0484f53Eb38CaBBA28a81bF6 )
59
59
- [ DisputeTemplateRegistry: proxy] ( https://sepolia.arbiscan.io/address/0x596D3B09E684D62217682216e9b7a0De75933391 ) , [ implementation] ( https://sepolia.arbiscan.io/address/0xc53b813ed94AaEb6F5518D60bf6a8109954bE3f6 )
60
- - [ Escrow] ( https://sepolia.arbiscan.io/address/0xdaf749DABE7be6C6894950AE69af35c20a00ABd9 )
60
+ - [ Escrow] ( https://sepolia.arbiscan.io/address/0x10f7A6f42Af606553883415bc8862643A6e63fdA )
61
61
- [ EvidenceModule: proxy] ( https://sepolia.arbiscan.io/address/0x57fd453FB0d16f8ca174E7386102D7170E17Be09 ) , [ implementation] ( https://sepolia.arbiscan.io/address/0x05AD81f245209b7f91885fd96e57c9da90554824 )
62
62
- [ KlerosCore: proxy] ( https://sepolia.arbiscan.io/address/0xA54e7A16d7460e38a8F324eF46782FB520d58CE8 ) , [ implementation] ( https://sepolia.arbiscan.io/address/0x91a373BBdE0532F86410682F362e2Cf685e95085 )
63
63
- [ PNKFaucet] ( https://sepolia.arbiscan.io/address/0x7EFE468003Ad6A858b5350CDE0A67bBED58739dD )
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1 && pwd) "
4
+
5
+ if [ ! -x " $( command -v envsubst) " ]; then
6
+ echo >&2 " error: envsubst not installed"
7
+ exit 1
8
+ fi
9
+
10
+ deployments=" $( $SCRIPT_DIR /generateDeploymentsMarkdown.sh) " \
11
+ envsubst ' $deployments' \
12
+ < README.md.template \
13
+ > README.md
You can’t perform that action at this time.
0 commit comments