Overview
S Balance
0 S
S Value
-More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Initialize | 2422011 | 3 days ago | IN | 0 S | 0.00007618 |
Loading...
Loading
Contract Name:
AaveEcosystemReserveV2
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.10; import {IERC20} from '@aave/core-v3/contracts/dependencies/openzeppelin/contracts/IERC20.sol'; import {IStreamable} from './interfaces/IStreamable.sol'; import {AdminControlledEcosystemReserve} from './AdminControlledEcosystemReserve.sol'; import {ReentrancyGuard} from './libs/ReentrancyGuard.sol'; import {SafeERC20} from './libs/SafeERC20.sol'; /** * @title AaveEcosystemReserve v2 * @notice Stores ERC20 tokens of an ecosystem reserve, adding streaming capabilities. * Modification of Sablier https://github.com/sablierhq/sablier/blob/develop/packages/protocol/contracts/Sablier.sol * Original can be found also deployed on https://etherscan.io/address/0xCD18eAa163733Da39c232722cBC4E8940b1D8888 * Modifications: * - Sablier "pulls" the funds from the creator of the stream at creation. In the Aave case, we already have the funds. * - Anybody can create streams on Sablier. Here, only the funds admin (Aave governance via controller) can * - Adapted codebase to Solidity 0.8.11, mainly removing SafeMath and CarefulMath to use native safe math * - Same as with creation, on Sablier the `sender` and `recipient` can cancel a stream. Here, only fund admin and recipient * @author BGD Labs **/ contract AaveEcosystemReserveV2 is AdminControlledEcosystemReserve, ReentrancyGuard, IStreamable { using SafeERC20 for IERC20; /*** Storage Properties ***/ /** * @notice Counter for new stream ids. */ uint256 private _nextStreamId; /** * @notice The stream objects identifiable by their unsigned integer ids. */ mapping(uint256 => Stream) private _streams; /*** Modifiers ***/ /** * @dev Throws if the caller is not the funds admin of the recipient of the stream. */ modifier onlyAdminOrRecipient(uint256 streamId) { require( msg.sender == _fundsAdmin || msg.sender == _streams[streamId].recipient, 'caller is not the funds admin or the recipient of the stream' ); _; } /** * @dev Throws if the provided id does not point to a valid stream. */ modifier streamExists(uint256 streamId) { require(_streams[streamId].isEntity, 'stream does not exist'); _; } /*** Contract Logic Starts Here */ function initialize(address fundsAdmin) external initializer { _nextStreamId = 100000; _setFundsAdmin(fundsAdmin); } /*** View Functions ***/ /** * @notice Returns the next available stream id * @notice Returns the stream id. */ function getNextStreamId() external view returns (uint256) { return _nextStreamId; } /** * @notice Returns the stream with all its properties. * @dev Throws if the id does not point to a valid stream. * @param streamId The id of the stream to query. * @notice Returns the stream object. */ function getStream( uint256 streamId ) external view streamExists(streamId) returns ( address sender, address recipient, uint256 deposit, address tokenAddress, uint256 startTime, uint256 stopTime, uint256 remainingBalance, uint256 ratePerSecond ) { sender = _streams[streamId].sender; recipient = _streams[streamId].recipient; deposit = _streams[streamId].deposit; tokenAddress = _streams[streamId].tokenAddress; startTime = _streams[streamId].startTime; stopTime = _streams[streamId].stopTime; remainingBalance = _streams[streamId].remainingBalance; ratePerSecond = _streams[streamId].ratePerSecond; } /** * @notice Returns either the delta in seconds between `block.timestamp` and `startTime` or * between `stopTime` and `startTime, whichever is smaller. If `block.timestamp` is before * `startTime`, it returns 0. * @dev Throws if the id does not point to a valid stream. * @param streamId The id of the stream for which to query the delta. * @notice Returns the time delta in seconds. */ function deltaOf(uint256 streamId) public view streamExists(streamId) returns (uint256 delta) { Stream memory stream = _streams[streamId]; if (block.timestamp <= stream.startTime) return 0; if (block.timestamp < stream.stopTime) return block.timestamp - stream.startTime; return stream.stopTime - stream.startTime; } struct BalanceOfLocalVars { uint256 recipientBalance; uint256 withdrawalAmount; uint256 senderBalance; } /** * @notice Returns the available funds for the given stream id and address. * @dev Throws if the id does not point to a valid stream. * @param streamId The id of the stream for which to query the balance. * @param who The address for which to query the balance. * @notice Returns the total funds allocated to `who` as uint256. */ function balanceOf( uint256 streamId, address who ) public view streamExists(streamId) returns (uint256 balance) { Stream memory stream = _streams[streamId]; BalanceOfLocalVars memory vars; uint256 delta = deltaOf(streamId); vars.recipientBalance = delta * stream.ratePerSecond; /* * If the stream `balance` does not equal `deposit`, it means there have been withdrawals. * We have to subtract the total amount withdrawn from the amount of money that has been * streamed until now. */ if (stream.deposit > stream.remainingBalance) { vars.withdrawalAmount = stream.deposit - stream.remainingBalance; vars.recipientBalance = vars.recipientBalance - vars.withdrawalAmount; } if (who == stream.recipient) return vars.recipientBalance; if (who == stream.sender) { vars.senderBalance = stream.remainingBalance - vars.recipientBalance; return vars.senderBalance; } return 0; } /*** Public Effects & Interactions Functions ***/ struct CreateStreamLocalVars { uint256 duration; uint256 ratePerSecond; } /** * @notice Creates a new stream funded by this contracts itself and paid towards `recipient`. * @dev Throws if the recipient is the zero address, the contract itself or the caller. * Throws if the deposit is 0. * Throws if the start time is before `block.timestamp`. * Throws if the stop time is before the start time. * Throws if the duration calculation has a math error. * Throws if the deposit is smaller than the duration. * Throws if the deposit is not a multiple of the duration. * Throws if the rate calculation has a math error. * Throws if the next stream id calculation has a math error. * Throws if the contract is not allowed to transfer enough tokens. * Throws if there is a token transfer failure. * @param recipient The address towards which the money is streamed. * @param deposit The amount of money to be streamed. * @param tokenAddress The ERC20 token to use as streaming currency. * @param startTime The unix timestamp for when the stream starts. * @param stopTime The unix timestamp for when the stream stops. * @notice Returns the uint256 id of the newly created stream. */ function createStream( address recipient, uint256 deposit, address tokenAddress, uint256 startTime, uint256 stopTime ) external onlyFundsAdmin returns (uint256) { require(recipient != address(0), 'stream to the zero address'); require(recipient != address(this), 'stream to the contract itself'); require(recipient != msg.sender, 'stream to the caller'); require(deposit > 0, 'deposit is zero'); require(startTime >= block.timestamp, 'start time before block.timestamp'); require(stopTime > startTime, 'stop time before the start time'); CreateStreamLocalVars memory vars; vars.duration = stopTime - startTime; /* Without this, the rate per second would be zero. */ require(deposit >= vars.duration, 'deposit smaller than time delta'); /* This condition avoids dealing with remainders */ require(deposit % vars.duration == 0, 'deposit not multiple of time delta'); vars.ratePerSecond = deposit / vars.duration; /* Create and store the stream object. */ uint256 streamId = _nextStreamId; _streams[streamId] = Stream({ remainingBalance: deposit, deposit: deposit, isEntity: true, ratePerSecond: vars.ratePerSecond, recipient: recipient, sender: address(this), startTime: startTime, stopTime: stopTime, tokenAddress: tokenAddress }); /* Increment the next stream id. */ _nextStreamId++; emit CreateStream( streamId, address(this), recipient, deposit, tokenAddress, startTime, stopTime ); return streamId; } /** * @notice Withdraws from the contract to the recipient's account. * @dev Throws if the id does not point to a valid stream. * Throws if the caller is not the funds admin or the recipient of the stream. * Throws if the amount exceeds the available balance. * Throws if there is a token transfer failure. * @param streamId The id of the stream to withdraw tokens from. * @param amount The amount of tokens to withdraw. */ function withdrawFromStream( uint256 streamId, uint256 amount ) external nonReentrant streamExists(streamId) onlyAdminOrRecipient(streamId) returns (bool) { require(amount > 0, 'amount is zero'); Stream memory stream = _streams[streamId]; uint256 balance = balanceOf(streamId, stream.recipient); require(balance >= amount, 'amount exceeds the available balance'); _streams[streamId].remainingBalance = stream.remainingBalance - amount; if (_streams[streamId].remainingBalance == 0) delete _streams[streamId]; IERC20(stream.tokenAddress).safeTransfer(stream.recipient, amount); emit WithdrawFromStream(streamId, stream.recipient, amount); return true; } /** * @notice Cancels the stream and transfers the tokens back on a pro rata basis. * @dev Throws if the id does not point to a valid stream. * Throws if the caller is not the funds admin or the recipient of the stream. * Throws if there is a token transfer failure. * @param streamId The id of the stream to cancel. * @notice Returns bool true=success, otherwise false. */ function cancelStream( uint256 streamId ) external nonReentrant streamExists(streamId) onlyAdminOrRecipient(streamId) returns (bool) { Stream memory stream = _streams[streamId]; uint256 senderBalance = balanceOf(streamId, stream.sender); uint256 recipientBalance = balanceOf(streamId, stream.recipient); delete _streams[streamId]; IERC20 token = IERC20(stream.tokenAddress); if (recipientBalance > 0) token.safeTransfer(stream.recipient, recipientBalance); emit CancelStream(streamId, stream.sender, stream.recipient, senderBalance, recipientBalance); return true; } }
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.10; import {IERC20} from '@aave/core-v3/contracts/dependencies/openzeppelin/contracts/IERC20.sol'; import {IAdminControlledEcosystemReserve} from './interfaces/IAdminControlledEcosystemReserve.sol'; import {VersionedInitializable} from './libs/VersionedInitializable.sol'; import {SafeERC20} from './libs/SafeERC20.sol'; import {ReentrancyGuard} from './libs/ReentrancyGuard.sol'; import {Address} from './libs/Address.sol'; /** * @title AdminControlledEcosystemReserve * @notice Stores ERC20 tokens, and allows to dispose of them via approval or transfer dynamics * Adapted to be an implementation of a transparent proxy * @dev Done abstract to add an `initialize()` function on the child, with `initializer` modifier * @author BGD Labs **/ abstract contract AdminControlledEcosystemReserve is VersionedInitializable, IAdminControlledEcosystemReserve { using SafeERC20 for IERC20; using Address for address payable; address internal _fundsAdmin; uint256 public constant REVISION = 1; /// @inheritdoc IAdminControlledEcosystemReserve address public constant ETH_MOCK_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; modifier onlyFundsAdmin() { require(msg.sender == _fundsAdmin, 'ONLY_BY_FUNDS_ADMIN'); _; } function getRevision() internal pure override returns (uint256) { return REVISION; } /// @inheritdoc IAdminControlledEcosystemReserve function getFundsAdmin() external view returns (address) { return _fundsAdmin; } /// @inheritdoc IAdminControlledEcosystemReserve function approve(IERC20 token, address recipient, uint256 amount) external onlyFundsAdmin { token.safeApprove(recipient, amount); } /// @inheritdoc IAdminControlledEcosystemReserve function transfer(IERC20 token, address recipient, uint256 amount) external onlyFundsAdmin { require(recipient != address(0), 'INVALID_0X_RECIPIENT'); if (address(token) == ETH_MOCK_ADDRESS) { payable(recipient).sendValue(amount); } else { token.safeTransfer(recipient, amount); } } /// @dev needed in order to receive ETH from the Aave v1 ecosystem reserve receive() external payable {} function _setFundsAdmin(address admin) internal { _fundsAdmin = admin; emit NewFundsAdmin(admin); } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.10; import {IERC20} from '@aave/core-v3/contracts/dependencies/openzeppelin/contracts/IERC20.sol'; interface IAdminControlledEcosystemReserve { /** @notice Emitted when the funds admin changes * @param fundsAdmin The new funds admin **/ event NewFundsAdmin(address indexed fundsAdmin); /** @notice Returns the mock ETH reference address * @return address The address **/ function ETH_MOCK_ADDRESS() external pure returns (address); /** * @notice Return the funds admin, only entity to be able to interact with this contract (controller of reserve) * @return address The address of the funds admin **/ function getFundsAdmin() external view returns (address); /** * @dev Function for the funds admin to give ERC20 allowance to other parties * @param token The address of the token to give allowance from * @param recipient Allowance's recipient * @param amount Allowance to approve **/ function approve(IERC20 token, address recipient, uint256 amount) external; /** * @notice Function for the funds admin to transfer ERC20 tokens to other parties * @param token The address of the token to transfer * @param recipient Transfer's recipient * @param amount Amount to transfer **/ function transfer(IERC20 token, address recipient, uint256 amount) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; interface IStreamable { struct Stream { uint256 deposit; uint256 ratePerSecond; uint256 remainingBalance; uint256 startTime; uint256 stopTime; address recipient; address sender; address tokenAddress; bool isEntity; } event CreateStream( uint256 indexed streamId, address indexed sender, address indexed recipient, uint256 deposit, address tokenAddress, uint256 startTime, uint256 stopTime ); event WithdrawFromStream(uint256 indexed streamId, address indexed recipient, uint256 amount); event CancelStream( uint256 indexed streamId, address indexed sender, address indexed recipient, uint256 senderBalance, uint256 recipientBalance ); function balanceOf(uint256 streamId, address who) external view returns (uint256 balance); function getStream( uint256 streamId ) external view returns ( address sender, address recipient, uint256 deposit, address token, uint256 startTime, uint256 stopTime, uint256 remainingBalance, uint256 ratePerSecond ); function createStream( address recipient, uint256 deposit, address tokenAddress, uint256 startTime, uint256 stopTime ) external returns (uint256 streamId); function withdrawFromStream(uint256 streamId, uint256 funds) external returns (bool); function cancelStream(uint256 streamId) external returns (bool); function initialize(address fundsAdmin) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, 'Address: insufficient balance'); (bool success, ) = recipient.call{value: amount}(''); require(success, 'Address: unable to send value, recipient may have reverted'); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, 'Address: low-level call failed'); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, 'Address: low-level call with value failed'); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, 'Address: insufficient balance for call'); require(isContract(target), 'Address: call to non-contract'); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data ) internal view returns (bytes memory) { return functionStaticCall(target, data, 'Address: low-level static call failed'); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), 'Address: static call to non-contract'); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, 'Address: low-level delegate call failed'); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), 'Address: delegate call to non-contract'); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, 'ReentrancyGuard: reentrant call'); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import {IERC20} from '@aave/core-v3/contracts/dependencies/openzeppelin/contracts/IERC20.sol'; import {Address} from './Address.sol'; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value) ); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), 'SafeERC20: approve from non-zero to non-zero allowance' ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn( token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance) ); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, 'SafeERC20: decreased allowance below zero'); uint256 newAllowance = oldAllowance - value; _callOptionalReturn( token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance) ); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, 'SafeERC20: low-level call failed'); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), 'SafeERC20: ERC20 operation did not succeed'); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; /** * @title VersionedInitializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. * * @author Aave, inspired by the OpenZeppelin Initializable contract */ abstract contract VersionedInitializable { /** * @dev Indicates that the contract has been initialized. */ uint256 internal lastInitializedRevision = 0; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { uint256 revision = getRevision(); require(revision > lastInitializedRevision, 'Contract instance has already been initialized'); lastInitializedRevision = revision; _; } /// @dev returns the revision number of the contract. /// Needs to be defined in the inherited class as a constant. function getRevision() internal pure virtual returns (uint256); // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; }
{ "evmVersion": "berlin", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 100000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"streamId","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"recipientBalance","type":"uint256"}],"name":"CancelStream","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"streamId","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"deposit","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stopTime","type":"uint256"}],"name":"CreateStream","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"fundsAdmin","type":"address"}],"name":"NewFundsAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"streamId","type":"uint256"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawFromStream","type":"event"},{"inputs":[],"name":"ETH_MOCK_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"streamId","type":"uint256"},{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"streamId","type":"uint256"}],"name":"cancelStream","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"stopTime","type":"uint256"}],"name":"createStream","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"streamId","type":"uint256"}],"name":"deltaOf","outputs":[{"internalType":"uint256","name":"delta","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFundsAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextStreamId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"streamId","type":"uint256"}],"name":"getStream","outputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"stopTime","type":"uint256"},{"internalType":"uint256","name":"remainingBalance","type":"uint256"},{"internalType":"uint256","name":"ratePerSecond","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"fundsAdmin","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"streamId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromStream","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000805534801561001457600080fd5b506001603455612536806100296000396000f3fe6080604052600436106100d65760003560e01c8063894e9a0d1161007f578063c4d66de811610059578063c4d66de8146102a4578063cc1b4bf6146102c4578063dde43cba146102e4578063e1f21c67146102f957600080fd5b8063894e9a0d146101ea578063a82ccd4d14610262578063beabacc81461028257600080fd5b806351ee886b116100b057806351ee886b146101725780636db9241b1461019a5780637a9b2c6c146101ca57600080fd5b806306bc2ee0146100e25780630932f92b146101335780633656eec21461015257600080fd5b366100dd57005b600080fd5b3480156100ee57600080fd5b5060335473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561013f57600080fd5b506035545b60405190815260200161012a565b34801561015e57600080fd5b5061014461016d3660046121fa565b610319565b34801561017e57600080fd5b5061010973eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b3480156101a657600080fd5b506101ba6101b536600461222a565b610573565b604051901515815260200161012a565b3480156101d657600080fd5b506101ba6101e5366004612243565b610972565b3480156101f657600080fd5b5061020a61020536600461222a565b610e5c565b6040805173ffffffffffffffffffffffffffffffffffffffff998a1681529789166020890152870195909552959092166060850152608084015260a083015260c082019290925260e08101919091526101000161012a565b34801561026e57600080fd5b5061014461027d36600461222a565b610f5c565b34801561028e57600080fd5b506102a261029d366004612265565b6110f0565b005b3480156102b057600080fd5b506102a26102bf3660046122a6565b611266565b3480156102d057600080fd5b506101446102df3660046122c3565b611313565b3480156102f057600080fd5b50610144600181565b34801561030557600080fd5b506102a2610314366004612265565b611a06565b600082815260366020526040812060070154839074010000000000000000000000000000000000000000900460ff166103b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064015b60405180910390fd5b600084815260366020908152604080832081516101208101835281548152600182015481850152600282015481840152600382015460608083019190915260048301546080830152600583015473ffffffffffffffffffffffffffffffffffffffff90811660a08401526006840154811660c084015260079093015492831660e08301527401000000000000000000000000000000000000000090920460ff161515610100820152825191820183528482529281018490529081019290925290600061047e87610f5c565b90508260200151816104909190612344565b82526040830151835111156104c657604083015183516104b09190612381565b6020830181905282516104c39190612381565b82525b8260a0015173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610509575051925061056c9050565b8260c0015173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561056457815160408401516105529190612381565b604090920182905250925061056c9050565b600094505050505b5092915050565b6000600260345414156105e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103aa565b6002603455600082815260366020526040902060070154829074010000000000000000000000000000000000000000900460ff1661067c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064016103aa565b603354839073ffffffffffffffffffffffffffffffffffffffff163314806106ca575060008181526036602052604090206005015473ffffffffffffffffffffffffffffffffffffffff1633145b610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603c60248201527f63616c6c6572206973206e6f74207468652066756e64732061646d696e206f7260448201527f2074686520726563697069656e74206f66207468652073747265616d0000000060648201526084016103aa565b6000848152603660209081526040808320815161012081018352815481526001820154938101939093526002810154918301919091526003810154606083015260048101546080830152600581015473ffffffffffffffffffffffffffffffffffffffff90811660a08401526006820154811660c0840181905260079092015490811660e084015274010000000000000000000000000000000000000000900460ff16151561010083015290919061080f908790610319565b90506000610821878460a00151610319565b600088815260366020526040812081815560018101829055600281018290556003810182905560048101919091556005810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000908116909155600682018054909116905560070180547fffffffffffffffffffffff00000000000000000000000000000000000000000016905560e084015190915081156108e55760a08401516108e59073ffffffffffffffffffffffffffffffffffffffff83169084611aa8565b8360a0015173ffffffffffffffffffffffffffffffffffffffff168460c0015173ffffffffffffffffffffffffffffffffffffffff16897fca3e6079b726e7728802a0537949e2d1c7762304fa641fb06eb56daf2ba8c6b98686604051610956929190918252602082015260400190565b60405180910390a4600196505050505050506001603455919050565b6000600260345414156109e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103aa565b6002603455600083815260366020526040902060070154839074010000000000000000000000000000000000000000900460ff16610a7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064016103aa565b603354849073ffffffffffffffffffffffffffffffffffffffff16331480610ac9575060008181526036602052604090206005015473ffffffffffffffffffffffffffffffffffffffff1633145b610b55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603c60248201527f63616c6c6572206973206e6f74207468652066756e64732061646d696e206f7260448201527f2074686520726563697069656e74206f66207468652073747265616d0000000060648201526084016103aa565b60008411610bbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f616d6f756e74206973207a65726f00000000000000000000000000000000000060448201526064016103aa565b6000858152603660209081526040808320815161012081018352815481526001820154938101939093526002810154918301919091526003810154606083015260048101546080830152600581015473ffffffffffffffffffffffffffffffffffffffff90811660a084018190526006830154821660c085015260079092015490811660e084015274010000000000000000000000000000000000000000900460ff161515610100830152909190610c78908890610319565b905085811015610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f616d6f756e7420657863656564732074686520617661696c61626c652062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016103aa565b858260400151610d199190612381565b6000888152603660205260409020600201819055610dc157600087815260366020526040812081815560018101829055600281018290556003810182905560048101919091556005810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000908116909155600682018054909116905560070180547fffffffffffffffffffffff0000000000000000000000000000000000000000001690555b610df48260a00151878460e0015173ffffffffffffffffffffffffffffffffffffffff16611aa89092919063ffffffff16565b8160a0015173ffffffffffffffffffffffffffffffffffffffff16877f36c3ab437e6a424ed25dc4bfdeb62706aa06558660fab2dab229d2555adaf89c88604051610e4191815260200190565b60405180910390a36001945050505050600160345592915050565b600080600080600080600080886036600082815260200190815260200160002060070160149054906101000a900460ff16610ef3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064016103aa565b50505060009687525050603660205250506040909220600681015460058201548254600784015460038501546004860154600287015460019097015473ffffffffffffffffffffffffffffffffffffffff9687169a958716995093975091909416949092909190565b600081815260366020526040812060070154829074010000000000000000000000000000000000000000900460ff16610ff1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064016103aa565b6000838152603660209081526040918290208251610120810184528154815260018201549281019290925260028101549282019290925260038201546060820181905260048301546080830152600583015473ffffffffffffffffffffffffffffffffffffffff90811660a08401526006840154811660c084015260079093015492831660e08301527401000000000000000000000000000000000000000090920460ff1615156101008201529042116110af5760009250506110ea565b80608001514210156110d25760608101516110ca9042612381565b9250506110ea565b806060015181608001516110e69190612381565b9250505b50919050565b60335473ffffffffffffffffffffffffffffffffffffffff163314611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f4e4c595f42595f46554e44535f41444d494e0000000000000000000000000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff82166111ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f494e56414c49445f30585f524543495049454e5400000000000000000000000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156112455761124073ffffffffffffffffffffffffffffffffffffffff831682611b7c565b505050565b61124073ffffffffffffffffffffffffffffffffffffffff84168383611aa8565b60005460019081116112fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a656400000000000000000000000000000000000060648201526084016103aa565b6000819055620186a060355561130f82611cd6565b5050565b60335460009073ffffffffffffffffffffffffffffffffffffffff163314611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f4e4c595f42595f46554e44535f41444d494e0000000000000000000000000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff8616611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f73747265616d20746f20746865207a65726f206164647265737300000000000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff8616301415611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f73747265616d20746f2074686520636f6e747261637420697473656c6600000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff8616331415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f73747265616d20746f207468652063616c6c657200000000000000000000000060448201526064016103aa565b6000851161157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f6465706f736974206973207a65726f000000000000000000000000000000000060448201526064016103aa565b4283101561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f73746172742074696d65206265666f726520626c6f636b2e74696d657374616d60448201527f700000000000000000000000000000000000000000000000000000000000000060648201526084016103aa565b828211611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f73746f702074696d65206265666f7265207468652073746172742074696d650060448201526064016103aa565b60408051808201909152600080825260208201526116958484612381565b808252861015611701576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6465706f73697420736d616c6c6572207468616e2074696d652064656c74610060448201526064016103aa565b805161170d90876123c7565b1561179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f6465706f736974206e6f74206d756c7469706c65206f662074696d652064656c60448201527f746100000000000000000000000000000000000000000000000000000000000060648201526084016103aa565b80516117a690876123db565b81602001818152505060006035549050604051806101200160405280888152602001836020015181526020018881526020018681526020018581526020018973ffffffffffffffffffffffffffffffffffffffff1681526020013073ffffffffffffffffffffffffffffffffffffffff1681526020018773ffffffffffffffffffffffffffffffffffffffff1681526020016001151581525060366000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c08201518160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060e08201518160070160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160070160146101000a81548160ff02191690831515021790555090505060356000815480929190611990906123ef565b90915550506040805188815273ffffffffffffffffffffffffffffffffffffffff88811660208301529181018790526060810186905290891690309083907f7b01d409597969366dc268d7f957a990d1ca3d3449baf8fb45db67351aecfe789060800160405180910390a4979650505050505050565b60335473ffffffffffffffffffffffffffffffffffffffff163314611a87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f4e4c595f42595f46554e44535f41444d494e0000000000000000000000000060448201526064016103aa565b61124073ffffffffffffffffffffffffffffffffffffffff84168383611d45565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526112409084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611ec7565b80471015611be6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103aa565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611c40576040519150601f19603f3d011682016040523d82523d6000602084013e611c45565b606091505b5050905080611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103aa565b603380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f1ab77a654795da4cfe37c33188e862203ade9a5c7f1a9d4957669b3ccbec9e1190600090a250565b801580611de557506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611dbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de39190612428565b155b611e71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016103aa565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526112409084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611afa565b6000611f29826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611fd39092919063ffffffff16565b8051909150156112405780806020019051810190611f479190612441565b611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103aa565b6060611fe28484600085611fec565b90505b9392505050565b60608247101561207e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103aa565b73ffffffffffffffffffffffffffffffffffffffff85163b6120fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103aa565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516121259190612493565b60006040518083038185875af1925050503d8060008114612162576040519150601f19603f3d011682016040523d82523d6000602084013e612167565b606091505b5091509150612177828286612182565b979650505050505050565b60608315612191575081611fe5565b8251156121a15782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103aa91906124af565b73ffffffffffffffffffffffffffffffffffffffff811681146121f757600080fd5b50565b6000806040838503121561220d57600080fd5b82359150602083013561221f816121d5565b809150509250929050565b60006020828403121561223c57600080fd5b5035919050565b6000806040838503121561225657600080fd5b50508035926020909101359150565b60008060006060848603121561227a57600080fd5b8335612285816121d5565b92506020840135612295816121d5565b929592945050506040919091013590565b6000602082840312156122b857600080fd5b8135611fe5816121d5565b600080600080600060a086880312156122db57600080fd5b85356122e6816121d5565b94506020860135935060408601356122fd816121d5565b94979396509394606081013594506080013592915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561237c5761237c612315565b500290565b60008282101561239357612393612315565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826123d6576123d6612398565b500690565b6000826123ea576123ea612398565b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561242157612421612315565b5060010190565b60006020828403121561243a57600080fd5b5051919050565b60006020828403121561245357600080fd5b81518015158114611fe557600080fd5b60005b8381101561247e578181015183820152602001612466565b8381111561248d576000848401525b50505050565b600082516124a5818460208701612463565b9190910192915050565b60208152600082518060208401526124ce816040850160208701612463565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212202205885b7d7a951becfcc0dcbf469c5a21607e75efdbb2e37d240e8dc2821c7c64736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106100d65760003560e01c8063894e9a0d1161007f578063c4d66de811610059578063c4d66de8146102a4578063cc1b4bf6146102c4578063dde43cba146102e4578063e1f21c67146102f957600080fd5b8063894e9a0d146101ea578063a82ccd4d14610262578063beabacc81461028257600080fd5b806351ee886b116100b057806351ee886b146101725780636db9241b1461019a5780637a9b2c6c146101ca57600080fd5b806306bc2ee0146100e25780630932f92b146101335780633656eec21461015257600080fd5b366100dd57005b600080fd5b3480156100ee57600080fd5b5060335473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561013f57600080fd5b506035545b60405190815260200161012a565b34801561015e57600080fd5b5061014461016d3660046121fa565b610319565b34801561017e57600080fd5b5061010973eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b3480156101a657600080fd5b506101ba6101b536600461222a565b610573565b604051901515815260200161012a565b3480156101d657600080fd5b506101ba6101e5366004612243565b610972565b3480156101f657600080fd5b5061020a61020536600461222a565b610e5c565b6040805173ffffffffffffffffffffffffffffffffffffffff998a1681529789166020890152870195909552959092166060850152608084015260a083015260c082019290925260e08101919091526101000161012a565b34801561026e57600080fd5b5061014461027d36600461222a565b610f5c565b34801561028e57600080fd5b506102a261029d366004612265565b6110f0565b005b3480156102b057600080fd5b506102a26102bf3660046122a6565b611266565b3480156102d057600080fd5b506101446102df3660046122c3565b611313565b3480156102f057600080fd5b50610144600181565b34801561030557600080fd5b506102a2610314366004612265565b611a06565b600082815260366020526040812060070154839074010000000000000000000000000000000000000000900460ff166103b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064015b60405180910390fd5b600084815260366020908152604080832081516101208101835281548152600182015481850152600282015481840152600382015460608083019190915260048301546080830152600583015473ffffffffffffffffffffffffffffffffffffffff90811660a08401526006840154811660c084015260079093015492831660e08301527401000000000000000000000000000000000000000090920460ff161515610100820152825191820183528482529281018490529081019290925290600061047e87610f5c565b90508260200151816104909190612344565b82526040830151835111156104c657604083015183516104b09190612381565b6020830181905282516104c39190612381565b82525b8260a0015173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610509575051925061056c9050565b8260c0015173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561056457815160408401516105529190612381565b604090920182905250925061056c9050565b600094505050505b5092915050565b6000600260345414156105e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103aa565b6002603455600082815260366020526040902060070154829074010000000000000000000000000000000000000000900460ff1661067c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064016103aa565b603354839073ffffffffffffffffffffffffffffffffffffffff163314806106ca575060008181526036602052604090206005015473ffffffffffffffffffffffffffffffffffffffff1633145b610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603c60248201527f63616c6c6572206973206e6f74207468652066756e64732061646d696e206f7260448201527f2074686520726563697069656e74206f66207468652073747265616d0000000060648201526084016103aa565b6000848152603660209081526040808320815161012081018352815481526001820154938101939093526002810154918301919091526003810154606083015260048101546080830152600581015473ffffffffffffffffffffffffffffffffffffffff90811660a08401526006820154811660c0840181905260079092015490811660e084015274010000000000000000000000000000000000000000900460ff16151561010083015290919061080f908790610319565b90506000610821878460a00151610319565b600088815260366020526040812081815560018101829055600281018290556003810182905560048101919091556005810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000908116909155600682018054909116905560070180547fffffffffffffffffffffff00000000000000000000000000000000000000000016905560e084015190915081156108e55760a08401516108e59073ffffffffffffffffffffffffffffffffffffffff83169084611aa8565b8360a0015173ffffffffffffffffffffffffffffffffffffffff168460c0015173ffffffffffffffffffffffffffffffffffffffff16897fca3e6079b726e7728802a0537949e2d1c7762304fa641fb06eb56daf2ba8c6b98686604051610956929190918252602082015260400190565b60405180910390a4600196505050505050506001603455919050565b6000600260345414156109e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103aa565b6002603455600083815260366020526040902060070154839074010000000000000000000000000000000000000000900460ff16610a7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064016103aa565b603354849073ffffffffffffffffffffffffffffffffffffffff16331480610ac9575060008181526036602052604090206005015473ffffffffffffffffffffffffffffffffffffffff1633145b610b55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603c60248201527f63616c6c6572206973206e6f74207468652066756e64732061646d696e206f7260448201527f2074686520726563697069656e74206f66207468652073747265616d0000000060648201526084016103aa565b60008411610bbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f616d6f756e74206973207a65726f00000000000000000000000000000000000060448201526064016103aa565b6000858152603660209081526040808320815161012081018352815481526001820154938101939093526002810154918301919091526003810154606083015260048101546080830152600581015473ffffffffffffffffffffffffffffffffffffffff90811660a084018190526006830154821660c085015260079092015490811660e084015274010000000000000000000000000000000000000000900460ff161515610100830152909190610c78908890610319565b905085811015610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f616d6f756e7420657863656564732074686520617661696c61626c652062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016103aa565b858260400151610d199190612381565b6000888152603660205260409020600201819055610dc157600087815260366020526040812081815560018101829055600281018290556003810182905560048101919091556005810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000908116909155600682018054909116905560070180547fffffffffffffffffffffff0000000000000000000000000000000000000000001690555b610df48260a00151878460e0015173ffffffffffffffffffffffffffffffffffffffff16611aa89092919063ffffffff16565b8160a0015173ffffffffffffffffffffffffffffffffffffffff16877f36c3ab437e6a424ed25dc4bfdeb62706aa06558660fab2dab229d2555adaf89c88604051610e4191815260200190565b60405180910390a36001945050505050600160345592915050565b600080600080600080600080886036600082815260200190815260200160002060070160149054906101000a900460ff16610ef3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064016103aa565b50505060009687525050603660205250506040909220600681015460058201548254600784015460038501546004860154600287015460019097015473ffffffffffffffffffffffffffffffffffffffff9687169a958716995093975091909416949092909190565b600081815260366020526040812060070154829074010000000000000000000000000000000000000000900460ff16610ff1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f73747265616d20646f6573206e6f74206578697374000000000000000000000060448201526064016103aa565b6000838152603660209081526040918290208251610120810184528154815260018201549281019290925260028101549282019290925260038201546060820181905260048301546080830152600583015473ffffffffffffffffffffffffffffffffffffffff90811660a08401526006840154811660c084015260079093015492831660e08301527401000000000000000000000000000000000000000090920460ff1615156101008201529042116110af5760009250506110ea565b80608001514210156110d25760608101516110ca9042612381565b9250506110ea565b806060015181608001516110e69190612381565b9250505b50919050565b60335473ffffffffffffffffffffffffffffffffffffffff163314611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f4e4c595f42595f46554e44535f41444d494e0000000000000000000000000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff82166111ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f494e56414c49445f30585f524543495049454e5400000000000000000000000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156112455761124073ffffffffffffffffffffffffffffffffffffffff831682611b7c565b505050565b61124073ffffffffffffffffffffffffffffffffffffffff84168383611aa8565b60005460019081116112fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a656400000000000000000000000000000000000060648201526084016103aa565b6000819055620186a060355561130f82611cd6565b5050565b60335460009073ffffffffffffffffffffffffffffffffffffffff163314611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f4e4c595f42595f46554e44535f41444d494e0000000000000000000000000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff8616611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f73747265616d20746f20746865207a65726f206164647265737300000000000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff8616301415611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f73747265616d20746f2074686520636f6e747261637420697473656c6600000060448201526064016103aa565b73ffffffffffffffffffffffffffffffffffffffff8616331415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f73747265616d20746f207468652063616c6c657200000000000000000000000060448201526064016103aa565b6000851161157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f6465706f736974206973207a65726f000000000000000000000000000000000060448201526064016103aa565b4283101561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f73746172742074696d65206265666f726520626c6f636b2e74696d657374616d60448201527f700000000000000000000000000000000000000000000000000000000000000060648201526084016103aa565b828211611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f73746f702074696d65206265666f7265207468652073746172742074696d650060448201526064016103aa565b60408051808201909152600080825260208201526116958484612381565b808252861015611701576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6465706f73697420736d616c6c6572207468616e2074696d652064656c74610060448201526064016103aa565b805161170d90876123c7565b1561179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f6465706f736974206e6f74206d756c7469706c65206f662074696d652064656c60448201527f746100000000000000000000000000000000000000000000000000000000000060648201526084016103aa565b80516117a690876123db565b81602001818152505060006035549050604051806101200160405280888152602001836020015181526020018881526020018681526020018581526020018973ffffffffffffffffffffffffffffffffffffffff1681526020013073ffffffffffffffffffffffffffffffffffffffff1681526020018773ffffffffffffffffffffffffffffffffffffffff1681526020016001151581525060366000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c08201518160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060e08201518160070160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160070160146101000a81548160ff02191690831515021790555090505060356000815480929190611990906123ef565b90915550506040805188815273ffffffffffffffffffffffffffffffffffffffff88811660208301529181018790526060810186905290891690309083907f7b01d409597969366dc268d7f957a990d1ca3d3449baf8fb45db67351aecfe789060800160405180910390a4979650505050505050565b60335473ffffffffffffffffffffffffffffffffffffffff163314611a87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f4e4c595f42595f46554e44535f41444d494e0000000000000000000000000060448201526064016103aa565b61124073ffffffffffffffffffffffffffffffffffffffff84168383611d45565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526112409084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611ec7565b80471015611be6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103aa565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611c40576040519150601f19603f3d011682016040523d82523d6000602084013e611c45565b606091505b5050905080611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103aa565b603380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f1ab77a654795da4cfe37c33188e862203ade9a5c7f1a9d4957669b3ccbec9e1190600090a250565b801580611de557506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611dbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de39190612428565b155b611e71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016103aa565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526112409084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611afa565b6000611f29826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611fd39092919063ffffffff16565b8051909150156112405780806020019051810190611f479190612441565b611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103aa565b6060611fe28484600085611fec565b90505b9392505050565b60608247101561207e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103aa565b73ffffffffffffffffffffffffffffffffffffffff85163b6120fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103aa565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516121259190612493565b60006040518083038185875af1925050503d8060008114612162576040519150601f19603f3d011682016040523d82523d6000602084013e612167565b606091505b5091509150612177828286612182565b979650505050505050565b60608315612191575081611fe5565b8251156121a15782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103aa91906124af565b73ffffffffffffffffffffffffffffffffffffffff811681146121f757600080fd5b50565b6000806040838503121561220d57600080fd5b82359150602083013561221f816121d5565b809150509250929050565b60006020828403121561223c57600080fd5b5035919050565b6000806040838503121561225657600080fd5b50508035926020909101359150565b60008060006060848603121561227a57600080fd5b8335612285816121d5565b92506020840135612295816121d5565b929592945050506040919091013590565b6000602082840312156122b857600080fd5b8135611fe5816121d5565b600080600080600060a086880312156122db57600080fd5b85356122e6816121d5565b94506020860135935060408601356122fd816121d5565b94979396509394606081013594506080013592915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561237c5761237c612315565b500290565b60008282101561239357612393612315565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826123d6576123d6612398565b500690565b6000826123ea576123ea612398565b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561242157612421612315565b5060010190565b60006020828403121561243a57600080fd5b5051919050565b60006020828403121561245357600080fd5b81518015158114611fe557600080fd5b60005b8381101561247e578181015183820152602001612466565b8381111561248d576000848401525b50505050565b600082516124a5818460208701612463565b9190910192915050565b60208152600082518060208401526124ce816040850160208701612463565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212202205885b7d7a951becfcc0dcbf469c5a21607e75efdbb2e37d240e8dc2821c7c64736f6c634300080a0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.