Source Code
Latest 1 from a total of 1 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Initialize | 12854464 | 426 days ago | IN | 0 FRAX | 0.00000081 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AaveEcosystemReserveV2
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
pragma solidity ^0.8.10;
import {IERC20} from "contracts/lending/core/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
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
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
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
pragma solidity ^0.8.10;
import {IERC20} from "contracts/lending/core/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
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
pragma solidity ^0.8.10;
import {IERC20} from "contracts/lending/core/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
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
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
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
// 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
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
// 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
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import {IERC20} from "contracts/lending/core/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
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
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": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": [],
"viaIR": true,
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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
6080806040523461001f576000805560016034556117a490816100258239f35b600080fdfe6080604052600436101561001b575b361561001957600080fd5b005b60003560e01c806306bc2ee0146100eb5780630932f92b146100e65780633656eec2146100e157806351ee886b146100dc5780636db9241b146100d75780637a9b2c6c146100d2578063894e9a0d146100cd578063a82ccd4d146100c8578063beabacc8146100c3578063c4d66de8146100be578063cc1b4bf6146100b9578063dde43cba146100b45763e1f21c670361000e57610b83565b610b67565b6108ff565b610828565b6106bf565b610675565b610550565b61038d565b6101a9565b61017a565b610148565b610119565b34610114576000366003190112610114576033546040516001600160a01b039091168152602090f35b600080fd5b34610114576000366003190112610114576020603554604051908152f35b6001600160a01b0381160361011457565b3461011457604036600319011261011457602061017260243561016a81610137565b600435610cd8565b604051908152f35b3461011457600036600319011261011457602060405173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8152f35b346101145760203660031901126101145761028e6004356101cf60026034541415610f4e565b600260345560009080825260366020526101f560ff600760408520015460a01c16610c94565b7fca3e6079b726e7728802a0537949e2d1c7762304fa641fb06eb56daf2ba8c6b9610248604060018060a01b0394856033541633148015610374575b61023a90610f9a565b848152603660205220610d7f565b9260c084019361033961031a61030c61027061026a895160018060a01b031690565b88610cd8565b976102f66102ea60e061029460a089019d8e5160018060a01b031690565b8c610cd8565b976102dc6102ac8d6000526036602052604060002090565b60076000918281558260018201558260028201558260038201558260048201558260058201558260068201550155565b01516001600160a01b031690565b6001600160a01b031690565b8580610356575b5050516001600160a01b031690565b97516001600160a01b031690565b9183604051948594169816968360209093929193604081019481520152565b0390a46103466001603455565b60405160018152602090f35b0390f35b8b5161036d92906001600160a01b03165b906114a8565b38856102fd565b5084815260366020528181206005015486163314610231565b346101145760408060031936011261011457600435602435906103b560026034541415610f4e565b60026034558060005260366020526103d960ff600785600020015460a01c16610c94565b6033546001600160a01b0390811633148015610535575b6103f990610f9a565b61040483151561100c565b82610419836000526036602052604060002090565b61042290610d7f565b60a0810180519093919083906001600160a01b03166104419087610cd8565b101561044c90611049565b82878201519061045b91610e61565b61046f866000526036602052604060002090565b60020155610487856000526036602052604060002090565b6002015415936104e4610502946104d46102ea60e06104f1967f36c3ab437e6a424ed25dc4bfdeb62706aa06558660fab2dab229d2555adaf89c9a6105195701516001600160a01b031690565b83516001600160a01b0316610367565b516001600160a01b031690565b865195865216939081906020820190565b0390a361050f6001603455565b5160018152602090f35b6105306102ac8d6000526036602052604060002090565b6102dc565b506000828152603660205284902060050154811633146103f0565b346101145760203660031901126101145760043580600052603660205261058460ff60076040600020015460a01c16610c94565b60008181526036602052604090206006810154600582015482546001600160a01b039182169491909216926103529291906105c990600701546001600160a01b031690565b60036105df836000526036602052604060002090565b015460046105f7846000526036602052604060002090565b01549160016106286002610615876000526036602052604060002090565b0154956000526036602052604060002090565b015494604051988998899491909897969360e0969361010087019a60018060a01b03938480921689521660208801526040870152166060850152608084015260a083015260c08201520152565b346101145760203660031901126101145760206101726004356110a1565b6060906003190112610114576004356106ab81610137565b906024356106b881610137565b9060443590565b34610114576106cd36610693565b60335490926001600160a01b0392916106e990841633146111a0565b8282169283156107ec57811673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee036107e157505081471061079c57600080809381935af16107296114e1565b501561073157005b60405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608490fd5b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606490fd5b6100199392506114a8565b60405162461bcd60e51b81526020600482015260146024820152731253959053125117cc1617d49150d2541251539560621b6044820152606490fd5b346101145760203660031901126101145760043561084581610137565b6000908154600111156108a35760018255620186a0603555603380546001600160a01b0319166001600160a01b039290921691821790557f1ab77a654795da4cfe37c33188e862203ade9a5c7f1a9d4957669b3ccbec9e118280a280f35b60405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608490fd5b346101145760a036600319011261011457610352610a4260043561092281610137565b6024356044359161093283610137565b7f7b01d409597969366dc268d7f957a990d1ca3d3449baf8fb45db67351aecfe7860643560843594610b5460018060a01b03610973816033541633146111a0565b8516966109818815156111e2565b61098d3089141561122e565b6109993389141561127a565b6109a48715156112bd565b6109b0428510156112fb565b6109bb848211611351565b610b1260206109c861139d565b6109e06109d58886610e61565b8083528b10156113c7565b6109f46109ee82518c611429565b15611438565b6109ff81518b61148f565b91829101526035549a8b98610a12610d5e565b8b81526020810193909352604083018b905260608301889052608083018590526001600160a01b031660a0830152565b3060c08201526001600160a01b03851660e08201526001610100820152610a73886000526036602052604060002090565b815181556020820151600182015560408201516002820155606082015160038201556080820151600482015560a0808301516005830180546001600160a01b039283166001600160a01b03199182161790915560c08501516006850180549184169190921617905560e08401516007909301805461010090950151939091166001600160a81b031990941693909317911515901b60ff60a01b16179055565b610b25610b20603554611499565b603555565b604080519788526001600160a01b03909316602088015291860192909252606085015230939081906080820190565b0390a46040519081529081906020820190565b3461011457600036600319011261011457602060405160018152f35b3461011457610b9136610693565b6033546001600160a01b0393919290610bad90851633146111a0565b8215938415610c09575b50610c0490610bc86100199561153c565b60405163095ea7b360e01b60208201526001600160a01b039091166024820152604481019390935282606481015b03601f198101845283610d3c565b61161e565b604051636eb1769f60e11b81523060048201526001600160a01b038316602482015294506020908590604490829086165afa908115610c8f57610bc8610c049261001996600091610c60575b501595505090610bb7565b610c82915060203d602011610c88575b610c7a8183610d3c565b810190611521565b38610c55565b503d610c70565b611530565b15610c9b57565b60405162461bcd60e51b81526020600482015260156024820152741cdd1c99585b48191bd95cc81b9bdd08195e1a5cdd605a1b6044820152606490fd5b90610d0291806000526036602052610cfd60ff60076040600020015460a01c16610c94565b610e6e565b90565b634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff821117610d3757604052565b610d05565b90601f8019910116810190811067ffffffffffffffff821117610d3757604052565b60405190610120820182811067ffffffffffffffff821117610d3757604052565b90610e0160ff6007610d8f610d5e565b855481526001860154602082015260028601546040820152600386015460608201526004860154608082015260058601546001600160a01b031660a08201529460068101546001600160a01b031660c087015201546001600160a01b03811660e086015260a01c161515610100840152565b565b604051906060820182811067ffffffffffffffff821117610d375760405260006040838281528260208201520152565b634e487b7160e01b600052601160045260246000fd5b81810292918115918404141715610e5c57565b610e33565b91908203918211610e5c57565b610e8a610e85826000526036602052604060002090565b610d7f565b91610eaa610e9f610e99610e03565b936110a1565b602085015190610e49565b82528251926040810193845190818111610f2b575b505060a0810151610ed8906001600160a01b03166102ea565b6001600160a01b03909216918214610f235760c00151610f00906001600160a01b03166102ea565b14610f0c575050600090565b610f1b60409251825190610e61565b918291015290565b505090505190565b610f4591610f3891610e61565b8060208601528451610e61565b83523880610ebf565b15610f5557565b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b15610fa157565b60405162461bcd60e51b815260206004820152603c60248201527f63616c6c6572206973206e6f74207468652066756e64732061646d696e206f7260448201527f2074686520726563697069656e74206f66207468652073747265616d000000006064820152608490fd5b1561101357565b60405162461bcd60e51b815260206004820152600e60248201526d616d6f756e74206973207a65726f60901b6044820152606490fd5b1561105057565b60405162461bcd60e51b8152602060048201526024808201527f616d6f756e7420657863656564732074686520617661696c61626c652062616c604482015263616e636560e01b6064820152608490fd5b610d02908060005260366020526110c560ff60076040600020015460a01c16610c94565b600052603660205260406000206110da610d5e565b81548152600182015460208201526002820154604082015261116b6003830154916060810192835261010060ff60076004870154966080850197885261113c61112c600583015460018060a01b031690565b6001600160a01b031660a0870152565b60068101546001600160a01b031660c086015201546001600160a01b03811660e085015260a01c161515910152565b80519182421115611198578051421061118c57610d02925051905190610e61565b5050610d029042610e61565b505050600090565b156111a757565b60405162461bcd60e51b815260206004820152601360248201527227a7262cafa12cafa32aa72229afa0a226a4a760691b6044820152606490fd5b156111e957565b60405162461bcd60e51b815260206004820152601a60248201527f73747265616d20746f20746865207a65726f20616464726573730000000000006044820152606490fd5b1561123557565b60405162461bcd60e51b815260206004820152601d60248201527f73747265616d20746f2074686520636f6e747261637420697473656c660000006044820152606490fd5b1561128157565b60405162461bcd60e51b815260206004820152601460248201527339ba3932b0b6903a37903a34329031b0b63632b960611b6044820152606490fd5b156112c457565b60405162461bcd60e51b815260206004820152600f60248201526e6465706f736974206973207a65726f60881b6044820152606490fd5b1561130257565b60405162461bcd60e51b815260206004820152602160248201527f73746172742074696d65206265666f726520626c6f636b2e74696d657374616d6044820152600760fc1b6064820152608490fd5b1561135857565b60405162461bcd60e51b815260206004820152601f60248201527f73746f702074696d65206265666f7265207468652073746172742074696d65006044820152606490fd5b604051906040820182811067ffffffffffffffff821117610d375760405260006020838281520152565b156113ce57565b60405162461bcd60e51b815260206004820152601f60248201527f6465706f73697420736d616c6c6572207468616e2074696d652064656c7461006044820152606490fd5b634e487b7160e01b600052601260045260246000fd5b8115611433570690565b611413565b1561143f57565b60405162461bcd60e51b815260206004820152602260248201527f6465706f736974206e6f74206d756c7469706c65206f662074696d652064656c604482015261746160f01b6064820152608490fd5b8115611433570490565b6000198114610e5c5760010190565b60405163a9059cbb60e01b60208201526001600160a01b0390921660248301526044820192909252610e0191610c048260648101610bf6565b3d1561151c573d9067ffffffffffffffff8211610d375760405191611510601f8201601f191660200184610d3c565b82523d6000602084013e565b606090565b90816020910312610114575190565b6040513d6000823e3d90fd5b1561154357565b60405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608490fd5b90816020910312610114575180151581036101145790565b156115c657565b60405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b6040516001600160a01b03919091169161163782610d1b565b6020928383527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656484840152803b156116ae57600082819282876116899796519301915af16116836114e1565b906116f3565b8051908161169657505050565b82610e01936116a99383010191016115a7565b6115bf565b60405162461bcd60e51b815260048101859052601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b909190156116ff575090565b81511561170f5750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b828510611755575050604492506000838284010152601f80199101168101030190fd5b848101820151868601604401529381019385935061173256fea2646970667358221220a3aa1d566ac0ae15054f03ec788636e1ef830e5b96176fcaa505c0aea3f4feb564736f6c63430008180033
Deployed Bytecode
0x6080604052600436101561001b575b361561001957600080fd5b005b60003560e01c806306bc2ee0146100eb5780630932f92b146100e65780633656eec2146100e157806351ee886b146100dc5780636db9241b146100d75780637a9b2c6c146100d2578063894e9a0d146100cd578063a82ccd4d146100c8578063beabacc8146100c3578063c4d66de8146100be578063cc1b4bf6146100b9578063dde43cba146100b45763e1f21c670361000e57610b83565b610b67565b6108ff565b610828565b6106bf565b610675565b610550565b61038d565b6101a9565b61017a565b610148565b610119565b34610114576000366003190112610114576033546040516001600160a01b039091168152602090f35b600080fd5b34610114576000366003190112610114576020603554604051908152f35b6001600160a01b0381160361011457565b3461011457604036600319011261011457602061017260243561016a81610137565b600435610cd8565b604051908152f35b3461011457600036600319011261011457602060405173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8152f35b346101145760203660031901126101145761028e6004356101cf60026034541415610f4e565b600260345560009080825260366020526101f560ff600760408520015460a01c16610c94565b7fca3e6079b726e7728802a0537949e2d1c7762304fa641fb06eb56daf2ba8c6b9610248604060018060a01b0394856033541633148015610374575b61023a90610f9a565b848152603660205220610d7f565b9260c084019361033961031a61030c61027061026a895160018060a01b031690565b88610cd8565b976102f66102ea60e061029460a089019d8e5160018060a01b031690565b8c610cd8565b976102dc6102ac8d6000526036602052604060002090565b60076000918281558260018201558260028201558260038201558260048201558260058201558260068201550155565b01516001600160a01b031690565b6001600160a01b031690565b8580610356575b5050516001600160a01b031690565b97516001600160a01b031690565b9183604051948594169816968360209093929193604081019481520152565b0390a46103466001603455565b60405160018152602090f35b0390f35b8b5161036d92906001600160a01b03165b906114a8565b38856102fd565b5084815260366020528181206005015486163314610231565b346101145760408060031936011261011457600435602435906103b560026034541415610f4e565b60026034558060005260366020526103d960ff600785600020015460a01c16610c94565b6033546001600160a01b0390811633148015610535575b6103f990610f9a565b61040483151561100c565b82610419836000526036602052604060002090565b61042290610d7f565b60a0810180519093919083906001600160a01b03166104419087610cd8565b101561044c90611049565b82878201519061045b91610e61565b61046f866000526036602052604060002090565b60020155610487856000526036602052604060002090565b6002015415936104e4610502946104d46102ea60e06104f1967f36c3ab437e6a424ed25dc4bfdeb62706aa06558660fab2dab229d2555adaf89c9a6105195701516001600160a01b031690565b83516001600160a01b0316610367565b516001600160a01b031690565b865195865216939081906020820190565b0390a361050f6001603455565b5160018152602090f35b6105306102ac8d6000526036602052604060002090565b6102dc565b506000828152603660205284902060050154811633146103f0565b346101145760203660031901126101145760043580600052603660205261058460ff60076040600020015460a01c16610c94565b60008181526036602052604090206006810154600582015482546001600160a01b039182169491909216926103529291906105c990600701546001600160a01b031690565b60036105df836000526036602052604060002090565b015460046105f7846000526036602052604060002090565b01549160016106286002610615876000526036602052604060002090565b0154956000526036602052604060002090565b015494604051988998899491909897969360e0969361010087019a60018060a01b03938480921689521660208801526040870152166060850152608084015260a083015260c08201520152565b346101145760203660031901126101145760206101726004356110a1565b6060906003190112610114576004356106ab81610137565b906024356106b881610137565b9060443590565b34610114576106cd36610693565b60335490926001600160a01b0392916106e990841633146111a0565b8282169283156107ec57811673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee036107e157505081471061079c57600080809381935af16107296114e1565b501561073157005b60405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608490fd5b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606490fd5b6100199392506114a8565b60405162461bcd60e51b81526020600482015260146024820152731253959053125117cc1617d49150d2541251539560621b6044820152606490fd5b346101145760203660031901126101145760043561084581610137565b6000908154600111156108a35760018255620186a0603555603380546001600160a01b0319166001600160a01b039290921691821790557f1ab77a654795da4cfe37c33188e862203ade9a5c7f1a9d4957669b3ccbec9e118280a280f35b60405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608490fd5b346101145760a036600319011261011457610352610a4260043561092281610137565b6024356044359161093283610137565b7f7b01d409597969366dc268d7f957a990d1ca3d3449baf8fb45db67351aecfe7860643560843594610b5460018060a01b03610973816033541633146111a0565b8516966109818815156111e2565b61098d3089141561122e565b6109993389141561127a565b6109a48715156112bd565b6109b0428510156112fb565b6109bb848211611351565b610b1260206109c861139d565b6109e06109d58886610e61565b8083528b10156113c7565b6109f46109ee82518c611429565b15611438565b6109ff81518b61148f565b91829101526035549a8b98610a12610d5e565b8b81526020810193909352604083018b905260608301889052608083018590526001600160a01b031660a0830152565b3060c08201526001600160a01b03851660e08201526001610100820152610a73886000526036602052604060002090565b815181556020820151600182015560408201516002820155606082015160038201556080820151600482015560a0808301516005830180546001600160a01b039283166001600160a01b03199182161790915560c08501516006850180549184169190921617905560e08401516007909301805461010090950151939091166001600160a81b031990941693909317911515901b60ff60a01b16179055565b610b25610b20603554611499565b603555565b604080519788526001600160a01b03909316602088015291860192909252606085015230939081906080820190565b0390a46040519081529081906020820190565b3461011457600036600319011261011457602060405160018152f35b3461011457610b9136610693565b6033546001600160a01b0393919290610bad90851633146111a0565b8215938415610c09575b50610c0490610bc86100199561153c565b60405163095ea7b360e01b60208201526001600160a01b039091166024820152604481019390935282606481015b03601f198101845283610d3c565b61161e565b604051636eb1769f60e11b81523060048201526001600160a01b038316602482015294506020908590604490829086165afa908115610c8f57610bc8610c049261001996600091610c60575b501595505090610bb7565b610c82915060203d602011610c88575b610c7a8183610d3c565b810190611521565b38610c55565b503d610c70565b611530565b15610c9b57565b60405162461bcd60e51b81526020600482015260156024820152741cdd1c99585b48191bd95cc81b9bdd08195e1a5cdd605a1b6044820152606490fd5b90610d0291806000526036602052610cfd60ff60076040600020015460a01c16610c94565b610e6e565b90565b634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff821117610d3757604052565b610d05565b90601f8019910116810190811067ffffffffffffffff821117610d3757604052565b60405190610120820182811067ffffffffffffffff821117610d3757604052565b90610e0160ff6007610d8f610d5e565b855481526001860154602082015260028601546040820152600386015460608201526004860154608082015260058601546001600160a01b031660a08201529460068101546001600160a01b031660c087015201546001600160a01b03811660e086015260a01c161515610100840152565b565b604051906060820182811067ffffffffffffffff821117610d375760405260006040838281528260208201520152565b634e487b7160e01b600052601160045260246000fd5b81810292918115918404141715610e5c57565b610e33565b91908203918211610e5c57565b610e8a610e85826000526036602052604060002090565b610d7f565b91610eaa610e9f610e99610e03565b936110a1565b602085015190610e49565b82528251926040810193845190818111610f2b575b505060a0810151610ed8906001600160a01b03166102ea565b6001600160a01b03909216918214610f235760c00151610f00906001600160a01b03166102ea565b14610f0c575050600090565b610f1b60409251825190610e61565b918291015290565b505090505190565b610f4591610f3891610e61565b8060208601528451610e61565b83523880610ebf565b15610f5557565b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b15610fa157565b60405162461bcd60e51b815260206004820152603c60248201527f63616c6c6572206973206e6f74207468652066756e64732061646d696e206f7260448201527f2074686520726563697069656e74206f66207468652073747265616d000000006064820152608490fd5b1561101357565b60405162461bcd60e51b815260206004820152600e60248201526d616d6f756e74206973207a65726f60901b6044820152606490fd5b1561105057565b60405162461bcd60e51b8152602060048201526024808201527f616d6f756e7420657863656564732074686520617661696c61626c652062616c604482015263616e636560e01b6064820152608490fd5b610d02908060005260366020526110c560ff60076040600020015460a01c16610c94565b600052603660205260406000206110da610d5e565b81548152600182015460208201526002820154604082015261116b6003830154916060810192835261010060ff60076004870154966080850197885261113c61112c600583015460018060a01b031690565b6001600160a01b031660a0870152565b60068101546001600160a01b031660c086015201546001600160a01b03811660e085015260a01c161515910152565b80519182421115611198578051421061118c57610d02925051905190610e61565b5050610d029042610e61565b505050600090565b156111a757565b60405162461bcd60e51b815260206004820152601360248201527227a7262cafa12cafa32aa72229afa0a226a4a760691b6044820152606490fd5b156111e957565b60405162461bcd60e51b815260206004820152601a60248201527f73747265616d20746f20746865207a65726f20616464726573730000000000006044820152606490fd5b1561123557565b60405162461bcd60e51b815260206004820152601d60248201527f73747265616d20746f2074686520636f6e747261637420697473656c660000006044820152606490fd5b1561128157565b60405162461bcd60e51b815260206004820152601460248201527339ba3932b0b6903a37903a34329031b0b63632b960611b6044820152606490fd5b156112c457565b60405162461bcd60e51b815260206004820152600f60248201526e6465706f736974206973207a65726f60881b6044820152606490fd5b1561130257565b60405162461bcd60e51b815260206004820152602160248201527f73746172742074696d65206265666f726520626c6f636b2e74696d657374616d6044820152600760fc1b6064820152608490fd5b1561135857565b60405162461bcd60e51b815260206004820152601f60248201527f73746f702074696d65206265666f7265207468652073746172742074696d65006044820152606490fd5b604051906040820182811067ffffffffffffffff821117610d375760405260006020838281520152565b156113ce57565b60405162461bcd60e51b815260206004820152601f60248201527f6465706f73697420736d616c6c6572207468616e2074696d652064656c7461006044820152606490fd5b634e487b7160e01b600052601260045260246000fd5b8115611433570690565b611413565b1561143f57565b60405162461bcd60e51b815260206004820152602260248201527f6465706f736974206e6f74206d756c7469706c65206f662074696d652064656c604482015261746160f01b6064820152608490fd5b8115611433570490565b6000198114610e5c5760010190565b60405163a9059cbb60e01b60208201526001600160a01b0390921660248301526044820192909252610e0191610c048260648101610bf6565b3d1561151c573d9067ffffffffffffffff8211610d375760405191611510601f8201601f191660200184610d3c565b82523d6000602084013e565b606090565b90816020910312610114575190565b6040513d6000823e3d90fd5b1561154357565b60405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608490fd5b90816020910312610114575180151581036101145790565b156115c657565b60405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b6040516001600160a01b03919091169161163782610d1b565b6020928383527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656484840152803b156116ae57600082819282876116899796519301915af16116836114e1565b906116f3565b8051908161169657505050565b82610e01936116a99383010191016115a7565b6115bf565b60405162461bcd60e51b815260048101859052601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b909190156116ff575090565b81511561170f5750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b828510611755575050604492506000838284010152601f80199101168101030190fd5b848101820151868601604401529381019385935061173256fea2646970667358221220a3aa1d566ac0ae15054f03ec788636e1ef830e5b96176fcaa505c0aea3f4feb564736f6c63430008180033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in FRAX
0
Token Allocations
FRAX
100.00%
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| FRAXTAL | 100.00% | $0.807163 | 0.000000006704 | <$0.000001 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.