Skip to content

Commit

Permalink
Automatically merged updates to draft EIP(s) 2535 (#2870)
Browse files Browse the repository at this point in the history
Hi, I'm a bot! This change was automatically merged because:

 - It only modifies existing Draft or Last Call EIP(s)
 - The PR was approved or written by at least one author of each modified EIP
 - The build is passing
  • Loading branch information
mudgen authored Aug 9, 2020
1 parent c8febed commit 54d8755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EIPS/eip-2535.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The two use cases below assume that you want an immutable contract:
The solidity `delegatecall` opcode enables a contract to execute a function from another contract, but it is executed as if the function was from the calling contract. Essentially `delegatecall` enables a contract to "borrow" another contract's function. Functions executed with `delegatecall` affect the storage variables of the calling contract, not the contract where the functions are defined.

### Terms
1. A **diamond** is a contract that uses the functions from its facets to execute function calls. A diamond can have one or more facets.
1. A **diamond** is a contract that uses functions from its facets to execute function calls. A diamond can have one or more facets.
2. The word **facet** comes from the diamond industry. It is a side, or flat surface of a diamond. A diamond can have many facets. In this standard a facet is a contract with one or more functions that executes functionality of a diamond.
3. A **loupe** is a magnifying glass that is used to look at diamonds. In this standard a loupe is a facet that provides functions to look at a diamond and its facets.
3. An **immutable function** is a function that is defined directly in a diamond and so cannot be replaced or removed. Or it is a function that is defined in a facet that cannot be replaced or removed.
Expand Down

0 comments on commit 54d8755

Please sign in to comment.