Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions docs/docs/reactive-contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,11 @@ Inside [ReactVM](./reactvm.md), Reactive Contracts can't access external systems

Contracts can be verified during or after deployment using the Sourcify endpoint. Sourcify is a decentralized verification service that matches deployed bytecode with source code, making contracts auditable and transparent.

**Reactive Sourcify Endpoint**: https://sourcify.rnk.dev/

## Verify After Deployment

```bash
forge verify-contract \
--verifier sourcify \
--verifier-url https://sourcify.rnk.dev/ \
--chain-id $CHAIN_ID \
$CONTRACT_ADDR $CONTRACT_NAME
```
Expand All @@ -59,7 +56,6 @@ Replace:
```bash
forge create \
--verifier sourcify \
--verifier-url https://sourcify.rnk.dev/ \
--verify \
--chain-id $CHAIN_ID \
--private-key $PRIVATE_KEY \
Expand All @@ -83,7 +79,6 @@ forge create \
--value 0.01ether \
--verify \
--verifier sourcify \
--verifier-url https://sourcify.rnk.dev/ \
src/.../MyContract.sol:MyContract \
--constructor-args \
$ARGUMENT_1 \
Expand Down
Loading