diff --git a/README.md b/README.md index 1b76c1f..722376d 100644 --- a/README.md +++ b/README.md @@ -531,17 +531,15 @@ Stellar-side problem), so `scripts/deploy.mjs` and `scripts/invoke.mjs` perform the same upload → create-contract → initialize flow the CLI would otherwise do. -| Contract | Contract ID | -|---|---| -| `mergefi-escrow` | `CAY77D2SFDVQYONSPYHOEWARE3UIWQDYHWWI2WXNPFBLBKR2Q4GEWXFB` | -| `mergefi-milestones` | `CBBRLSL6TM6XCNP2XBVT4GFHJ3NNPFKI2BCZQJ4U3TI7GV7DO2F2HG6F` | -| `mergefi-maintenance-pool` | `CD46U7WTEM2I77TXQI2VIBRQXOHEFEYYR2XFA7OVGTXX5M2F7Z3ZQOX2` | +| Contract | Contract ID | Explorer | +|---|---|---| +| `mergefi-escrow` | `CAY77D2SFDVQYONSPYHOEWARE3UIWQDYHWWI2WXNPFBLBKR2Q4GEWXFB` | [Stellar Expert](https://stellar.expert/explorer/testnet/contract/CAY77D2SFDVQYONSPYHOEWARE3UIWQDYHWWI2WXNPFBLBKR2Q4GEWXFB) | +| `mergefi-milestones` | `CBBRLSL6TM6XCNP2XBVT4GFHJ3NNPFKI2BCZQJ4U3TI7GV7DO2F2HG6F` | [Stellar Expert](https://stellar.expert/explorer/testnet/contract/CBBRLSL6TM6XCNP2XBVT4GFHJ3NNPFKI2BCZQJ4U3TI7GV7DO2F2HG6F) | +| `mergefi-maintenance-pool` | `CD46U7WTEM2I77TXQI2VIBRQXOHEFEYYR2XFA7OVGTXX5M2F7Z3ZQOX2` | [Stellar Expert](https://stellar.expert/explorer/testnet/contract/CD46U7WTEM2I77TXQI2VIBRQXOHEFEYYR2XFA7OVGTXX5M2F7Z3ZQOX2) | All three were initialized with the same admin/treasury address (`GBUXADZJ7O4NM7S7CDZYVXGP37M772D2TYMFBT2QFH2JSRCFEJPAVW5N`, a throwaway testnet-only account) and a 250 bps (2.5%) treasury fee. -View them on -[Stellar Expert](https://stellar.expert/explorer/testnet/contract/CAY77D2SFDVQYONSPYHOEWARE3UIWQDYHWWI2WXNPFBLBKR2Q4GEWXFB). To redeploy (e.g. after a contract change), once `stellar-cli` has working network access: diff --git a/contracts/escrow/src/lib.rs b/contracts/escrow/src/lib.rs index 7d96937..9b8d2f9 100644 --- a/contracts/escrow/src/lib.rs +++ b/contracts/escrow/src/lib.rs @@ -3,7 +3,7 @@ //! Holds sponsor-funded bounty escrows for individual GitHub issues and //! releases them (in full or split across a team) once the mergefi-backend //! oracle reports that the underlying work has been merged/accepted, or -//! refunds them back to the sponsor if the issue is cancelled / its deadline +//! refunds each contributor their own contribution if the issue is cancelled / its deadline //! passes unresolved. #![no_std]