From bb78e0ba8ae347e80dbfc5f634de4c523b598a05 Mon Sep 17 00:00:00 2001 From: Alin Cruceat Date: Tue, 12 Nov 2024 13:34:44 +0200 Subject: [PATCH 1/2] add a note about audit in multisig SC --- contracts/multisig/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contracts/multisig/README.md b/contracts/multisig/README.md index 0e5e3b86..61de3afe 100644 --- a/contracts/multisig/README.md +++ b/contracts/multisig/README.md @@ -11,6 +11,10 @@ As an example, let us imagine the following scenario. An institution launches a Thus, essentially the multisig SC (we will refer to it, from now on, as MSC) enables multiple parties to sign or approve an action that takes place - typically a requirement for certain wallets, accounts, and smart contracts to prevent a rogue or hacked individual from performing detrimental actions. +## Developer's note + +Starting with the release version v0.45.5 of mx-contracts-rs, this contract has beed audited and changed to meet the required standards. + ## Multisig transaction flow On-chain multisig wallets are made possible by the fact that smart contracts can call other smart contracts. To execute a multisig transaction the flow would be: From e180bdd51301d50edcbcdd406fc3cc05cff2b9d5 Mon Sep 17 00:00:00 2001 From: Alin Cruceat Date: Tue, 19 Nov 2024 12:28:13 +0200 Subject: [PATCH 2/2] update comment on readme --- contracts/multisig/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/multisig/README.md b/contracts/multisig/README.md index 61de3afe..0ca8cd0b 100644 --- a/contracts/multisig/README.md +++ b/contracts/multisig/README.md @@ -13,7 +13,7 @@ Thus, essentially the multisig SC (we will refer to it, from now on, as MSC) ena ## Developer's note -Starting with the release version v0.45.5 of mx-contracts-rs, this contract has beed audited and changed to meet the required standards. +The release version v0.45.5 of mx-contracts-rs, contains the audited of for the multisig contract. It can be found here: https://github.com/multiversx/mx-contracts-rs/releases/tag/v0.45.5 ## Multisig transaction flow On-chain multisig wallets are made possible by the fact that smart contracts can call other smart contracts. To execute a multisig transaction the flow would be: