Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c4debb9

Browse files
committedJan 10, 2024
chore: new Escrow contract deployment
1 parent d803d98 commit c4debb9

File tree

3 files changed

+91
-51
lines changed

3 files changed

+91
-51
lines changed
 

‎contracts/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Smart contracts for Kleros v2
44

55
## Deployments
66

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`.
88

99
### Official Testnet
1010

@@ -57,7 +57,7 @@ Refresh the list of deployed contracts by running `./scripts/generateDeployments
5757
- [DisputeKitClassic: proxy](https://sepolia.arbiscan.io/address/0x9426F127116C3652A262AE1eA48391AC8F44D35b), [implementation](https://sepolia.arbiscan.io/address/0x692CC78F2570181FFB99297965FeAA8352ab12E8)
5858
- [DisputeResolver](https://sepolia.arbiscan.io/address/0xB8B36CC43f852f9F0484f53Eb38CaBBA28a81bF6)
5959
- [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)
6161
- [EvidenceModule: proxy](https://sepolia.arbiscan.io/address/0x57fd453FB0d16f8ca174E7386102D7170E17Be09), [implementation](https://sepolia.arbiscan.io/address/0x05AD81f245209b7f91885fd96e57c9da90554824)
6262
- [KlerosCore: proxy](https://sepolia.arbiscan.io/address/0xA54e7A16d7460e38a8F324eF46782FB520d58CE8), [implementation](https://sepolia.arbiscan.io/address/0x91a373BBdE0532F86410682F362e2Cf685e95085)
6363
- [PNKFaucet](https://sepolia.arbiscan.io/address/0x7EFE468003Ad6A858b5350CDE0A67bBED58739dD)

‎contracts/deployments/arbitrumSepoliaDevnet/Escrow.json

Lines changed: 76 additions & 49 deletions
Large diffs are not rendered by default.

‎contracts/scripts/populateReadme.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

0 commit comments

Comments
 (0)
Please sign in to comment.