From f79f64cd74452f799ba19a2eaee4b0348afd21c9 Mon Sep 17 00:00:00 2001 From: Andrei A Date: Sat, 4 Mar 2023 17:46:18 +0200 Subject: [PATCH] added same format to the return types added same format to the return types for predictDeterministicAddress --- content/3. Solidity 201/OZ Clones.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/3. Solidity 201/OZ Clones.md b/content/3. Solidity 201/OZ Clones.md index 6dd30d0f..dbacdf91 100644 --- a/content/3. Solidity 201/OZ Clones.md +++ b/content/3. Solidity 201/OZ Clones.md @@ -11,7 +11,7 @@ It also includes functions to predict the addresses of clones deployed using the 2. `cloneDeterministic(address implementation, bytes32 salt)` → `address instance`: Deploys and returns the address of a clone that mimics the behaviour of implementation. This function uses the create2 opcode and a salt to deterministically deploy the clone. Using the same implementation and salt multiple times will revert, since the clones cannot be deployed twice at the same address. -3. `predictDeterministicAddress(address implementation, bytes32 salt, address deployer)` → address predicted: Computes the address of a clone deployed using Clones.cloneDeterministic. +3. `predictDeterministicAddress(address implementation, bytes32 salt, address deployer)` → `address predicted`: Computes the address of a clone deployed using Clones.cloneDeterministic. 4. `predictDeterministicAddress(address implementation, bytes32 salt)` → `address predicted`: Computes the address of a clone deployed using Clones.cloneDeterministic. ___ @@ -28,4 +28,4 @@ ___ ## References - [Youtube Reference](https://youtu.be/0kx8M4u5980?t=836) ___ -## Tags \ No newline at end of file +## Tags