From 9a194f8a8db53c6e4ef503b3ef9eec846bb31161 Mon Sep 17 00:00:00 2001 From: stubbsta Date: Tue, 26 Aug 2025 08:35:20 +0200 Subject: [PATCH] Add descriptions in README for TST usage --- test/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/README.md b/test/README.md index e0c04b4..b2c03f3 100644 --- a/test/README.md +++ b/test/README.md @@ -23,12 +23,18 @@ token distribution while mimicking DAI's behaviour. ### Deploy new TestStableToken with proxy contract +This script deploys both the proxy and the TestStableToken implementation, initializing the proxy to point to the +new implementation. + ```bash forge script script/DeployTokenWithProxy.s.sol:DeployTokenWithProxy --rpc-url $RPC_URL --private-key $PRIVATE_KEY --broadcast ``` ### Deploy only TestStableToken contract implementation +This script deploys only the TestStableToken implementation, which can then be used to update the proxy contract to +point to this new implementation. + ```bash forge script test/TestStableToken.sol:TestStableTokenFactory --tc TestStableTokenFactory --rpc-url $RPC_URL --private-key $PRIVATE_KEY --broadcast ```