From 47a3764a6bf6a8d36d554ae9c51891497a5cd9a2 Mon Sep 17 00:00:00 2001 From: Michael de Hoog Date: Tue, 22 Apr 2025 08:40:54 +1000 Subject: [PATCH] Fix contract name in comment --- script/universal/MultisigScript.sol | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/script/universal/MultisigScript.sol b/script/universal/MultisigScript.sol index bba3224..40c249b 100644 --- a/script/universal/MultisigScript.sol +++ b/script/universal/MultisigScript.sol @@ -12,7 +12,7 @@ import {Signatures} from "./Signatures.sol"; import {Simulation} from "./Simulation.sol"; /** - * @title MultisigBuilder + * @title MultisigScript * @notice Script builder for Forge scripts that require signatures from Safes. Supports both non-nested * Safes, as well as nested Safes of arbitrary depth (Safes where the signers are other Safes). * @@ -30,9 +30,9 @@ import {Simulation} from "./Simulation.sol"; * └──────────┘ * * Sequence: - * ┌───────┐┌───────┐┌───────────┐┌───────────────┐ - * │Signer1││Signer2││Facilitator││MultisigBuilder│ - * └───┬───┘└───┬───┘└─────┬─────┘└───────┬───────┘ + * ┌───────┐┌───────┐┌───────────┐┌──────────────┐ + * │Signer1││Signer2││Facilitator││MultisigScript│ + * └───┬───┘└───┬───┘└─────┬─────┘└───────┬──────┘ * │ │ sign() │ * │─────────────────────────────────>│ * │ │ │ @@ -62,9 +62,9 @@ import {Simulation} from "./Simulation.sol"; * └──────────┘ * * Sequence: - * ┌───────┐┌───────┐┌───────┐┌───────┐┌───────────┐ ┌───────────────┐ - * │Signer1││Signer2││Signer3││Signer4││Facilitator│ │MultisigBuilder│ - * └───┬───┘└───┬───┘└───┬───┘└───┬───┘└─────┬─────┘ └───────┬───────┘ + * ┌───────┐┌───────┐┌───────┐┌───────┐┌───────────┐ ┌──────────────┐ + * │Signer1││Signer2││Signer3││Signer4││Facilitator│ │MultisigScript│ + * └───┬───┘└───┬───┘└───┬───┘└───┬───┘└─────┬─────┘ └───────┬──────┘ * │ │ │ sign(Safe1) │ │ * │─────────────────────────────────────────────────────────────>│ * │ │ │ │ │ @@ -109,9 +109,9 @@ import {Simulation} from "./Simulation.sol"; * └──────────┘ * * Sequence: - * ┌───────┐┌───────┐┌───────┐┌───────┐┌───────┐┌───────┐┌───────────┐ ┌───────────────┐ - * │Signer1││Signer2││Signer3││Signer4││Signer5││Signer6││Facilitator│ │MultisigBuilder│ - * └───┬───┘└───┬───┘└───┬───┘└───┬───┘└───┬───┘└───┬───┘└─────┬─────┘ └───────┬───────┘ + * ┌───────┐┌───────┐┌───────┐┌───────┐┌───────┐┌───────┐┌───────────┐ ┌──────────────┐ + * │Signer1││Signer2││Signer3││Signer4││Signer5││Signer6││Facilitator│ │MultisigScript│ + * └───┬───┘└───┬───┘└───┬───┘└───┬───┘└───┬───┘└───┬───┘└─────┬─────┘ └───────┬──────┘ * │ │ │ │ sign(Safe1,Safe4) │ │ * │─────────────────────────────────────────────────────────────────────────────────────>│ * │ │ │ │ │ │ │