unshETHZap - Dependencies

Context.sol

This is a Solidity file defining an abstract contract named 'Context'. The contract provides information about the current execution context, including the sender of the transaction and its data. It includes two functions: '_msgSender' and '_msgData', which are designed to be used instead of accessing 'msg.sender' and 'msg.data' directly for GSN meta-transactions.

Context

An abstract contract that provides information about the current execution context.

_msgSender

_msgSender() internal view virtual returns (address payable)

Returns the address of the account that is currently sending the transaction.

Return Values

  • address payable: The address of the sender of the transaction.

_msgData

_msgData() internal view virtual returns (bytes memory)

Returns the data of the message that is currently being processed.

Return Values

  • bytes memory: The data of the message being processed.
Previous
Address.sol