-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Some Documentation to Entity.sol, Fragment.sol, RezProxy.sol, RoyaltiesReceiver.sol, UnstructuredStorage.sol and Vault.sol #5
base: clamor
Are you sure you want to change the base?
Conversation
…oyaltiesReceiver.sol, UnstructuredStorage.sol and Vault.sol
…ity.sol, PreERC721Factory.sol, PreERC721.sol and PreERC721Genesis.sol
/// @dev Note: The Fragment must have been created with `updateable` set to true - otherwise the update is not allowed | ||
/// @param signature - A signature from the the state variable `_delegate` | ||
/// @param id - ¿The ID of the Fragment? | ||
/// @param environment - ¿The New Data of the Fragment? | ||
function update( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well be removed
@@ -60,6 +60,8 @@ contract PreERC721 is ERC721, Initializable, Ownable, RoyaltiesReceiver { | |||
|
|||
/// Overrides | |||
/// | |||
/// @notice Returns the name of this ERC-721 Contract | |||
/// @dev ¿I am not sure what _getImmutableVariablesOffset does? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_getImmutableVariablesOffset is complex, but basically it's almost a hack inside EVM to get a location in memory where we stored things when we created this contract in a very cheap way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work, I skipped many entity related things as we need to rewrite that part
No description provided.