From bd8146f096f1dfb269d45f16e9e177b74425b501 Mon Sep 17 00:00:00 2001 From: konstantin Date: Fri, 6 Mar 2026 15:32:17 +0700 Subject: [PATCH] remove https://sourcify.rnk.dev/ --- docs/docs/reactive-contracts.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/docs/reactive-contracts.md b/docs/docs/reactive-contracts.md index bdc16df..b054090 100644 --- a/docs/docs/reactive-contracts.md +++ b/docs/docs/reactive-contracts.md @@ -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 ``` @@ -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 \ @@ -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 \