Clones.sol 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. // SPDX-License-Identifier: MIT
  2. // OpenZeppelin Contracts (last updated v5.0.0) (proxy/Clones.sol)
  3. pragma solidity ^0.8.20;
  4. import {Errors} from "../utils/Errors.sol";
  5. /**
  6. * @dev https://eips.ethereum.org/EIPS/eip-1167[ERC-1167] is a standard for
  7. * deploying minimal proxy contracts, also known as "clones".
  8. *
  9. * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies
  10. * > a minimal bytecode implementation that delegates all calls to a known, fixed address.
  11. *
  12. * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`
  13. * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the
  14. * deterministic method.
  15. */
  16. library Clones {
  17. /**
  18. * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
  19. *
  20. * This function uses the create opcode, which should never revert.
  21. */
  22. function clone(address implementation) internal returns (address instance) {
  23. return clone(implementation, 0);
  24. }
  25. /**
  26. * @dev Same as {xref-Clones-clone-address-}[clone], but with a `value` parameter to send native currency
  27. * to the new contract.
  28. *
  29. * NOTE: Using a non-zero value at creation will require the contract using this function (e.g. a factory)
  30. * to always have enough balance for new deployments. Consider exposing this function under a payable method.
  31. */
  32. function clone(address implementation, uint256 value) internal returns (address instance) {
  33. if (address(this).balance < value) {
  34. revert Errors.InsufficientBalance(address(this).balance, value);
  35. }
  36. /// @solidity memory-safe-assembly
  37. assembly {
  38. // Stores the bytecode after address
  39. mstore(0x20, 0x5af43d82803e903d91602b57fd5bf3)
  40. // implementation address
  41. mstore(0x11, implementation)
  42. // Packs the first 3 bytes of the `implementation` address with the bytecode before the address.
  43. mstore(0x00, or(shr(0x88, implementation), 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000))
  44. instance := create(value, 0x09, 0x37)
  45. }
  46. if (instance == address(0)) {
  47. revert Errors.FailedDeployment();
  48. }
  49. }
  50. /**
  51. * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
  52. *
  53. * This function uses the create2 opcode and a `salt` to deterministically deploy
  54. * the clone. Using the same `implementation` and `salt` multiple time will revert, since
  55. * the clones cannot be deployed twice at the same address.
  56. */
  57. function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {
  58. return cloneDeterministic(implementation, salt, 0);
  59. }
  60. /**
  61. * @dev Same as {xref-Clones-cloneDeterministic-address-bytes32-}[cloneDeterministic], but with
  62. * a `value` parameter to send native currency to the new contract.
  63. *
  64. * NOTE: Using a non-zero value at creation will require the contract using this function (e.g. a factory)
  65. * to always have enough balance for new deployments. Consider exposing this function under a payable method.
  66. */
  67. function cloneDeterministic(
  68. address implementation,
  69. bytes32 salt,
  70. uint256 value
  71. ) internal returns (address instance) {
  72. if (address(this).balance < value) {
  73. revert Errors.InsufficientBalance(address(this).balance, value);
  74. }
  75. /// @solidity memory-safe-assembly
  76. assembly {
  77. // Stores the bytecode after address
  78. mstore(0x20, 0x5af43d82803e903d91602b57fd5bf3)
  79. // implementation address
  80. mstore(0x11, implementation)
  81. // Packs the first 3 bytes of the `implementation` address with the bytecode before the address.
  82. mstore(0x00, or(shr(0x88, implementation), 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000))
  83. instance := create2(value, 0x09, 0x37, salt)
  84. }
  85. if (instance == address(0)) {
  86. revert Errors.FailedDeployment();
  87. }
  88. }
  89. /**
  90. * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
  91. */
  92. function predictDeterministicAddress(
  93. address implementation,
  94. bytes32 salt,
  95. address deployer
  96. ) internal pure returns (address predicted) {
  97. /// @solidity memory-safe-assembly
  98. assembly {
  99. let ptr := mload(0x40)
  100. mstore(add(ptr, 0x38), deployer)
  101. mstore(add(ptr, 0x24), 0x5af43d82803e903d91602b57fd5bf3ff)
  102. mstore(add(ptr, 0x14), implementation)
  103. mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73)
  104. mstore(add(ptr, 0x58), salt)
  105. mstore(add(ptr, 0x78), keccak256(add(ptr, 0x0c), 0x37))
  106. predicted := and(keccak256(add(ptr, 0x43), 0x55), 0xffffffffffffffffffffffffffffffffffffffff)
  107. }
  108. }
  109. /**
  110. * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
  111. */
  112. function predictDeterministicAddress(
  113. address implementation,
  114. bytes32 salt
  115. ) internal view returns (address predicted) {
  116. return predictDeterministicAddress(implementation, salt, address(this));
  117. }
  118. }