diff --git a/pages/reference-smart-account/signature-functions/checkNSignatures.mdx b/pages/reference-smart-account/signature-functions/checkNSignatures.mdx index 7a916a177..4b89ca32a 100644 --- a/pages/reference-smart-account/signature-functions/checkNSignatures.mdx +++ b/pages/reference-smart-account/signature-functions/checkNSignatures.mdx @@ -15,7 +15,7 @@ function checkNSignatures( Checks whether the signature provided is valid for the provided data and hash. Reverts otherwise. -*Since the EIP-1271 does an external call, be mindful of reentrancy attacks.* +*Since the EIP-1271 does an external call, be mindful of re-entrancy attacks.* ## Parameters diff --git a/pages/reference-smart-account/transaction-functions/execTransaction.mdx b/pages/reference-smart-account/transaction-functions/execTransaction.mdx index 719ba55a5..d4a55a398 100644 --- a/pages/reference-smart-account/transaction-functions/execTransaction.mdx +++ b/pages/reference-smart-account/transaction-functions/execTransaction.mdx @@ -59,7 +59,7 @@ Gas that should be used for the Safe transaction. ### `baseGas` - **Type:** `uint256` -Gas costs that are independent of the transaction execution (e.g. base transaction fee, signature check, payment of the refund). +Gas costs that are independent of the transaction execution (for example base transaction fee, signature check, payment of the refund). ### `gasPrice` - **Type:** `uint256` diff --git a/pages/reference-smart-account/transaction-functions/simulateAndRevert.mdx b/pages/reference-smart-account/transaction-functions/simulateAndRevert.mdx index 027b88c9b..b3f141a6f 100644 --- a/pages/reference-smart-account/transaction-functions/simulateAndRevert.mdx +++ b/pages/reference-smart-account/transaction-functions/simulateAndRevert.mdx @@ -8,7 +8,7 @@ function simulateAndRevert(address targetContract, bytes calldataPayload) extern ``` -*Performs a delegatecall on a targetContract in the context of self. Internally reverts execution to avoid side effects (making it static).* +*Performs a `delegatecall` on a `targetContract` in the context of `self`. Internally reverts execution to avoid side effects (making it static).* This method reverts with data equal to `abi.encode(bool(success), bytes(response))`. Specifically, the `returndata` after a call to this method will be: `success:bool || response.length:uint256 || response:bytes`.