Overview
ETH Balance
0 ETH
Eth Value
$0.00
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
There are no matching entriesUpdate your filters to view other transactions | |||||||||
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SaffronStrategy
Compiler Version
v0.7.4+commit.3f05b770
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-10-31
*/
// File: contracts/interfaces/ISaffronStrategy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.1;
interface ISaffronStrategy {
function deploy_all_capital() external;
function select_adapter_for_liquidity_removal() external returns(address);
function add_adapter(address adapter_address) external;
function add_pool(address pool_address) external;
function delete_adapters() external;
function set_governance(address to) external;
function get_adapter_address(uint256 adapter_index) external view returns(address);
}
// File: contracts/interfaces/ISaffronBase.sol
pragma solidity ^0.7.1;
interface ISaffronBase {
enum Tranche {S, AA, A, SAA, SA}
enum LPTokenType {dsec, principal}
// Store values (balances, dsec, vdsec) with TrancheUint256
struct TrancheUint256 {
uint256 S;
uint256 AA;
uint256 A;
uint256 SAA;
uint256 SA;
}
}
// File: contracts/interfaces/ISaffronPool.sol
pragma solidity ^0.7.1;
interface ISaffronPool is ISaffronBase {
function add_liquidity(uint256 amount, Tranche tranche) external;
function remove_liquidity(address v1_dsec_token_address, uint256 dsec_amount, address v1_principal_token_address, uint256 principal_amount) external;
function hourly_strategy(address adapter_address) external;
function get_governance() external view returns(address);
function get_base_asset_address() external view returns(address);
function get_strategy_address() external view returns(address);
function delete_adapters() external;
function set_governance(address to) external;
function get_epoch_cycle_params() external view returns (uint256, uint256);
function shutdown() external;
}
// File: contracts/interfaces/ISaffronAdapter.sol
pragma solidity ^0.7.1;
interface ISaffronAdapter is ISaffronBase {
function deploy_capital(uint256 amount) external;
function return_capital(uint256 base_asset_amount, address to) external;
function approve_transfer(address addr,uint256 amount) external;
function get_base_asset_address() external view returns(address);
function set_base_asset(address addr) external;
function get_holdings() external returns(uint256);
function get_interest(uint256 principal) external returns(uint256);
function set_governance(address to) external;
}
// File: contracts/lib/IERC20.sol
pragma solidity ^0.7.1;
/**
* @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);
}
// File: contracts/lib/SafeMath.sol
pragma solidity ^0.7.1;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: contracts/lib/Address.sol
pragma solidity ^0.7.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
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 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");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(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.3._
*/
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.3._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: contracts/lib/SafeERC20.sol
pragma solidity ^0.7.1;
/**
* @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 SafeMath for uint256;
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'
// solhint-disable-next-line max-line-length
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).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_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
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: contracts/lib/Context.sol
pragma solidity ^0.7.1;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: contracts/lib/ERC20.sol
pragma solidity ^0.7.1;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
// File: contracts/SFI.sol
pragma solidity ^0.7.1;
contract SFI is ERC20 {
using SafeERC20 for IERC20;
address public governance;
address public SFI_minter;
uint256 public MAX_TOKENS = 100000 ether;
constructor (string memory name, string memory symbol) ERC20(name, symbol) {
// Initial governance is Saffron Deployer
governance = msg.sender;
}
function mint_SFI(address to, uint256 amount) public {
require(msg.sender == SFI_minter, "must be SFI_minter");
require(this.totalSupply() + amount < MAX_TOKENS, "cannot mint more than MAX_TOKENS");
_mint(to, amount);
}
function set_minter(address to) external {
require(msg.sender == governance, "must be governance");
SFI_minter = to;
}
function set_governance(address to) external {
require(msg.sender == governance, "must be governance");
governance = to;
}
event ErcSwept(address who, address to, address token, uint256 amount);
function erc_sweep(address _token, address _to) public {
require(msg.sender == governance, "must be governance");
IERC20 tkn = IERC20(_token);
uint256 tBal = tkn.balanceOf(address(this));
tkn.safeTransfer(_to, tBal);
emit ErcSwept(msg.sender, _to, _token, tBal);
}
}
// File: contracts/SFI_repo_pool.sol
pragma solidity ^0.7.1;
contract SFI_repo_pool {
using SafeERC20 for IERC20;
SFI internal token;
address public governance;
constructor (address token_address) {
token = SFI(token_address);
governance = msg.sender;
}
function transfer(address to, uint256 amount) external {
require(msg.sender == governance, "transfer: must be governance");
token.transfer(to, amount);
}
function set_governance(address to) external {
require(msg.sender == governance, "set_governance: must be governance");
governance = to;
}
event ErcSwept(address who, address to, address token, uint256 amount);
function erc_sweep(address _token, address _to) public {
require(msg.sender == governance, "must be governance");
require(_token != address(token), "cannot sweep repo pool assets");
IERC20 tkn = IERC20(_token);
uint256 tBal = tkn.balanceOf(address(this));
tkn.safeTransfer(_to, tBal);
emit ErcSwept(msg.sender, _to, _token, tBal);
}
}
// File: contracts/SaffronStrategy.sol
pragma solidity ^0.7.1;
// v0: all functions returns the only adapter that exists
// v1: evaluate adapters by interest rate and return the best one possible per currency
contract SaffronStrategy is ISaffronStrategy {
using SafeERC20 for IERC20;
address public governance;
address[] private pools;
address[] private adapters;
mapping(address=>uint256) private adapter_indexes;
mapping(uint256=>address) private adapter_addresses;
uint256 public last_deploy; // Last run of Hourly Deploy
constructor() {
governance = msg.sender;
}
// Select best adapter based on APY
function select_best_adapter(address base_asset_address) public view returns(address) {
require(base_asset_address != address(0x0), "can't have an adapter for 0x0 address");
return adapters[0]; // v0: only one adapter
}
// Deploy all capital in pool (funnel 100% of pooled base assets into best adapter)
function deploy_all_capital() external override {
require(block.timestamp >= last_deploy + (1 hours), "deploy call too soon" );
last_deploy = block.timestamp;
for (uint256 i = 0; i < pools.length; i++) {
ISaffronPool pool = ISaffronPool(pools[i]);
IERC20 base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[i]) > 0) pool.hourly_strategy(select_best_adapter(pool.get_base_asset_address()));
}
}
function v01_final_deploy() external {
require(msg.sender == governance, "must be governance");
for (uint256 i = 0; i < pools.length; i++) {
ISaffronPool pool = ISaffronPool(pools[i]);
IERC20 base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(address(pool)) > 0) pool.hourly_strategy(select_best_adapter(pool.get_base_asset_address()));
pool.shutdown();
}
}
// Add adapters to a list of adapters passed in
function add_adapter(address adapter_address) external override {
require(msg.sender == governance, "add_adapter: must be governance");
adapter_indexes[adapter_address] = adapters.length;
adapters.push(adapter_address);
}
// Get an adapter's address by index
function get_adapter_index(address adapter_address) public view returns(uint256) {
return adapter_indexes[adapter_address];
}
// Get an adapter's address by index
function get_adapter_address(uint256 index) external view override returns(address) {
return address(adapters[index]);
}
function add_pool(address pool_address) external override {
require(msg.sender == governance, "add_pool: must be governance");
pools.push(pool_address);
}
function delete_adapters() external override {
require(msg.sender == governance, "delete_adapters: must be governance");
delete adapters;
}
function set_governance(address to) external override {
require(msg.sender == governance, "set_governance: must be governance");
governance = to;
}
function select_adapter_for_liquidity_removal() external view override returns(address) {
return adapters[0]; // v0: only one adapter
}
// v1.5 add replace adapter function
// v1.5 add remove adapter function
event ErcSwept(address who, address to, address token, uint256 amount);
function erc_sweep(address _token, address _to) public {
require(msg.sender == governance, "must be governance");
IERC20 tkn = IERC20(_token);
uint256 tBal = tkn.balanceOf(address(this));
tkn.safeTransfer(_to, tBal);
emit ErcSwept(msg.sender, _to, _token, tBal);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ErcSwept","type":"event"},{"inputs":[{"internalType":"address","name":"adapter_address","type":"address"}],"name":"add_adapter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool_address","type":"address"}],"name":"add_pool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delete_adapters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deploy_all_capital","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"erc_sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"get_adapter_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adapter_address","type":"address"}],"name":"get_adapter_index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"last_deploy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"select_adapter_for_liquidity_removal","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"base_asset_address","type":"address"}],"name":"select_best_adapter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"set_governance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"v01_final_deploy","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50600080546001600160a01b0319163317905561141a806100326000396000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c80637f9126101161008c578063ccb0630711610066578063ccb0630714610248578063d074950314610265578063e653be7414610298578063e7dbe771146102a0576100df565b80637f912610146101da578063ab3a1cc01461020d578063b613ab9714610215576100df565b80632b666fcf116100bd5780632b666fcf1461018f5780635aa6e675146101ca57806372deebf3146101d2576100df565b806305221575146100e4578063070313fa146100fe5780630823262814610133575b600080fd5b6100ec6102a8565b60408051918252519081900360200190f35b6101316004803603602081101561011457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166102ae565b005b6101666004803603602081101561014957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610365565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610131600480360360408110156101a557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610409565b6101666105b2565b6101316105ce565b6100ec600480360360208110156101f057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166108e1565b610131610909565b6101316004803603602081101561022b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c2a565b6101666004803603602081101561025e57600080fd5b5035610d36565b6101316004803603602081101561027b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d45565b610131610e41565b610166610ebf565b60055481565b60005473ffffffffffffffffffffffffffffffffffffffff16331461031e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806113766022913960400191505060405180910390fd5b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600073ffffffffffffffffffffffffffffffffffffffff82166103d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061132b6025913960400191505060405180910390fd5b60026000815481106103e157fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461048f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051839160009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b15801561050057600080fd5b505afa158015610514573d6000803e3d6000fd5b505050506040513d602081101561052a57600080fd5b5051905061054f73ffffffffffffffffffffffffffffffffffffffff83168483610ef6565b6040805133815273ffffffffffffffffffffffffffffffffffffffff80861660208301528616818301526060810183905290517f2c4e64c7c0957a81c0076a0a3f3c7d9f0a5d6158292071c794436f829d12cfb79181900360800190a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b600554610e100142101561064357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f6465706c6f792063616c6c20746f6f20736f6f6e000000000000000000000000604482015290519081900360640190fd5b4260055560005b6001548110156108de5760006001828154811061066357fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156106d657600080fd5b505afa1580156106ea573d6000803e3d6000fd5b505050506040513d602081101561070057600080fd5b50516001805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231918790811061073457fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b1580156107a757600080fd5b505afa1580156107bb573d6000803e3d6000fd5b505050506040513d60208110156107d157600080fd5b505111156108d4578173ffffffffffffffffffffffffffffffffffffffff16634c1a425961086f8473ffffffffffffffffffffffffffffffffffffffff1663a72b6c306040518163ffffffff1660e01b815260040160206040518083038186803b15801561083e57600080fd5b505afa158015610852573d6000803e3d6000fd5b505050506040513d602081101561086857600080fd5b5051610365565b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b1580156108bb57600080fd5b505af11580156108cf573d6000803e3d6000fd5b505050505b505060010161064a565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff16331461098f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b60005b6001548110156108de576000600182815481106109ab57fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015610a1e57600080fd5b505afa158015610a32573d6000803e3d6000fd5b505050506040513d6020811015610a4857600080fd5b5051604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301529151929350600092918416916370a0823191602480820192602092909190829003018186803b158015610ac057600080fd5b505afa158015610ad4573d6000803e3d6000fd5b505050506040513d6020811015610aea57600080fd5b50511115610bbc578173ffffffffffffffffffffffffffffffffffffffff16634c1a4259610b578473ffffffffffffffffffffffffffffffffffffffff1663a72b6c306040518163ffffffff1660e01b815260040160206040518083038186803b15801561083e57600080fd5b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015610ba357600080fd5b505af1158015610bb7573d6000803e3d6000fd5b505050505b8173ffffffffffffffffffffffffffffffffffffffff1663fc0e74d16040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610c0457600080fd5b505af1158015610c18573d6000803e3d6000fd5b50506001909401935061099292505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610cb057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6164645f616461707465723a206d75737420626520676f7665726e616e636500604482015290519081900360640190fd5b6002805473ffffffffffffffffffffffffffffffffffffffff9092166000818152600360205260408120849055600184018355919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6000600282815481106103e157fe5b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6164645f706f6f6c3a206d75737420626520676f7665726e616e636500000000604482015290519081900360640190fd5b6001805480820182556000919091527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610eb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806113986023913960400191505060405180910390fd5b610ebd600260006112f8565b565b60006002600081548110610ecf57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905090565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610f83908490610f88565b505050565b6060610fea826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166110609092919063ffffffff16565b805190915015610f835780806020019051602081101561100957600080fd5b5051610f83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806113bb602a913960400191505060405180910390fd5b606061106f8484600085611079565b90505b9392505050565b6060824710156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806113506026913960400191505060405180910390fd5b6110dd85611234565b61114857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106111b257805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611175565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611214576040519150601f19603f3d011682016040523d82523d6000602084013e611219565b606091505b509150915061122982828661123a565b979650505050505050565b3b151590565b60608315611249575081611072565b8251156112595782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112bd5781810151838201526020016112a5565b50505050905090810190601f1680156112ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50805460008255906000526020600020908101906108de91905b808211156113265760008155600101611312565b509056fe63616e2774206861766520616e206164617074657220666f72203078302061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7365745f676f7665726e616e63653a206d75737420626520676f7665726e616e636564656c6574655f61646170746572733a206d75737420626520676f7665726e616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212209c10f2ebe5fb465b740b8673d16be1f21e9d40b31c4b3bec184899b4af46d51964736f6c63430007040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100df5760003560e01c80637f9126101161008c578063ccb0630711610066578063ccb0630714610248578063d074950314610265578063e653be7414610298578063e7dbe771146102a0576100df565b80637f912610146101da578063ab3a1cc01461020d578063b613ab9714610215576100df565b80632b666fcf116100bd5780632b666fcf1461018f5780635aa6e675146101ca57806372deebf3146101d2576100df565b806305221575146100e4578063070313fa146100fe5780630823262814610133575b600080fd5b6100ec6102a8565b60408051918252519081900360200190f35b6101316004803603602081101561011457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166102ae565b005b6101666004803603602081101561014957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610365565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610131600480360360408110156101a557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610409565b6101666105b2565b6101316105ce565b6100ec600480360360208110156101f057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166108e1565b610131610909565b6101316004803603602081101561022b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c2a565b6101666004803603602081101561025e57600080fd5b5035610d36565b6101316004803603602081101561027b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d45565b610131610e41565b610166610ebf565b60055481565b60005473ffffffffffffffffffffffffffffffffffffffff16331461031e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806113766022913960400191505060405180910390fd5b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600073ffffffffffffffffffffffffffffffffffffffff82166103d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061132b6025913960400191505060405180910390fd5b60026000815481106103e157fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461048f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051839160009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b15801561050057600080fd5b505afa158015610514573d6000803e3d6000fd5b505050506040513d602081101561052a57600080fd5b5051905061054f73ffffffffffffffffffffffffffffffffffffffff83168483610ef6565b6040805133815273ffffffffffffffffffffffffffffffffffffffff80861660208301528616818301526060810183905290517f2c4e64c7c0957a81c0076a0a3f3c7d9f0a5d6158292071c794436f829d12cfb79181900360800190a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b600554610e100142101561064357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f6465706c6f792063616c6c20746f6f20736f6f6e000000000000000000000000604482015290519081900360640190fd5b4260055560005b6001548110156108de5760006001828154811061066357fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156106d657600080fd5b505afa1580156106ea573d6000803e3d6000fd5b505050506040513d602081101561070057600080fd5b50516001805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231918790811061073457fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b1580156107a757600080fd5b505afa1580156107bb573d6000803e3d6000fd5b505050506040513d60208110156107d157600080fd5b505111156108d4578173ffffffffffffffffffffffffffffffffffffffff16634c1a425961086f8473ffffffffffffffffffffffffffffffffffffffff1663a72b6c306040518163ffffffff1660e01b815260040160206040518083038186803b15801561083e57600080fd5b505afa158015610852573d6000803e3d6000fd5b505050506040513d602081101561086857600080fd5b5051610365565b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b1580156108bb57600080fd5b505af11580156108cf573d6000803e3d6000fd5b505050505b505060010161064a565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff16331461098f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b60005b6001548110156108de576000600182815481106109ab57fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015610a1e57600080fd5b505afa158015610a32573d6000803e3d6000fd5b505050506040513d6020811015610a4857600080fd5b5051604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301529151929350600092918416916370a0823191602480820192602092909190829003018186803b158015610ac057600080fd5b505afa158015610ad4573d6000803e3d6000fd5b505050506040513d6020811015610aea57600080fd5b50511115610bbc578173ffffffffffffffffffffffffffffffffffffffff16634c1a4259610b578473ffffffffffffffffffffffffffffffffffffffff1663a72b6c306040518163ffffffff1660e01b815260040160206040518083038186803b15801561083e57600080fd5b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015610ba357600080fd5b505af1158015610bb7573d6000803e3d6000fd5b505050505b8173ffffffffffffffffffffffffffffffffffffffff1663fc0e74d16040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610c0457600080fd5b505af1158015610c18573d6000803e3d6000fd5b50506001909401935061099292505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610cb057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6164645f616461707465723a206d75737420626520676f7665726e616e636500604482015290519081900360640190fd5b6002805473ffffffffffffffffffffffffffffffffffffffff9092166000818152600360205260408120849055600184018355919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6000600282815481106103e157fe5b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6164645f706f6f6c3a206d75737420626520676f7665726e616e636500000000604482015290519081900360640190fd5b6001805480820182556000919091527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610eb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806113986023913960400191505060405180910390fd5b610ebd600260006112f8565b565b60006002600081548110610ecf57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905090565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610f83908490610f88565b505050565b6060610fea826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166110609092919063ffffffff16565b805190915015610f835780806020019051602081101561100957600080fd5b5051610f83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806113bb602a913960400191505060405180910390fd5b606061106f8484600085611079565b90505b9392505050565b6060824710156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806113506026913960400191505060405180910390fd5b6110dd85611234565b61114857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106111b257805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611175565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611214576040519150601f19603f3d011682016040523d82523d6000602084013e611219565b606091505b509150915061122982828661123a565b979650505050505050565b3b151590565b60608315611249575081611072565b8251156112595782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112bd5781810151838201526020016112a5565b50505050905090810190601f1680156112ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50805460008255906000526020600020908101906108de91905b808211156113265760008155600101611312565b509056fe63616e2774206861766520616e206164617074657220666f72203078302061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7365745f676f7665726e616e63653a206d75737420626520676f7665726e616e636564656c6574655f61646170746572733a206d75737420626520676f7665726e616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212209c10f2ebe5fb465b740b8673d16be1f21e9d40b31c4b3bec184899b4af46d51964736f6c63430007040033
Deployed Bytecode Sourcemap
36612:3423:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36896:26;;;:::i;:::-;;;;;;;;;;;;;;;;39267:160;;;;;;;;;;;;;;;;-1:-1:-1;39267:160:0;;;;:::i;:::-;;37053:232;;;;;;;;;;;;;;;;-1:-1:-1;37053:232:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39736:296;;;;;;;;;;;;;;;;-1:-1:-1;39736:296:0;;;;;;;;;;;:::i;36695:25::-;;;:::i;37378:468::-;;;:::i;38623:133::-;;;;;;;;;;;;;;;;-1:-1:-1;38623:133:0;;;;:::i;37852:429::-;;;:::i;38338:239::-;;;;;;;;;;;;;;;;-1:-1:-1;38338:239:0;;;;:::i;38802:128::-;;;;;;;;;;;;;;;;-1:-1:-1;38802:128:0;;:::i;38936:167::-;;;;;;;;;;;;;;;;-1:-1:-1;38936:167:0;;;;:::i;39109:152::-;;;:::i;39433:143::-;;;:::i;36896:26::-;;;;:::o;39267:160::-;39350:10;;;;39336;:24;39328:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39406:10;:15;;;;;;;;;;;;;;;39267:160::o;37053:232::-;37130:7;37154:34;;;37146:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37244:8;37253:1;37244:11;;;;;;;;;;;;;;;;;;;;;37053:232;-1:-1:-1;;37053:232:0:o;39736:296::-;39820:10;;;;39806;:24;39798:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39911:28;;;;;;39933:4;39911:28;;;;;;39882:6;;39862:10;;39911:13;;;;;;:28;;;;;;;;;;;;;;:13;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39911:28:0;;-1:-1:-1;39946:27:0;:16;;;39963:3;39911:28;39946:16;:27::i;:::-;39987:39;;;39996:10;39987:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39736:296;;;;:::o;36695:25::-;;;;;;:::o;37378:468::-;37460:11;;37475:7;37460:23;37441:15;:42;;37433:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37530:15;37516:11;:29;37557:9;37552:289;37576:5;:12;37572:16;;37552:289;;;37604:17;37637:5;37643:1;37637:8;;;;;;;;;;;;;;;;;;;;37682:29;;;;;;;;37637:8;;;;;-1:-1:-1;37637:8:0;;37682:27;;:29;;;;;;;;;;37637:8;37682:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37682:29:0;37746:5;:8;;37682:29;;-1:-1:-1;37758:1:0;;37725:20;;;;;;37752:1;;37746:8;;;;;;;;;;;;;;;;;37725:30;;;;;;;;;;;37746:8;;;;37725:30;;;;;;;;;;37746:8;37725:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37725:30:0;:34;37721:112;;;37761:4;:20;;;37782:50;37802:4;:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37802:29:0;37782:19;:50::i;:::-;37761:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37721:112;-1:-1:-1;;37590:3:0;;37552:289;;;;37378:468::o;38623:133::-;38718:32;;38695:7;38718:32;;;:15;:32;;;;;;;38623:133::o;37852:429::-;37918:10;;;;37904;:24;37896:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37963:9;37958:318;37982:5;:12;37978:16;;37958:318;;;38010:17;38043:5;38049:1;38043:8;;;;;;;;;;;;;;;;;;;;38088:29;;;;;;;;38043:8;;;;;-1:-1:-1;38043:8:0;;38088:27;;:29;;;;;;;;;;38043:8;38088:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38088:29:0;38131:35;;;;;;:20;:35;;;;;;;;;38088:29;;-1:-1:-1;38169:1:0;;38131:20;;;;;;:35;;;;;38088:29;;38131:35;;;;;;;;:20;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38131:35:0;:39;38127:117;;;38172:4;:20;;;38193:50;38213:4;:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38193:50;38172:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38127:117;38253:4;:13;;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37996:3:0;;;;;-1:-1:-1;37958:318:0;;-1:-1:-1;;;37958:318:0;38338:239;38431:10;;;;38417;:24;38409:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38519:8;:15;;38484:32;;;;;;;;:15;:32;;;;;:50;;;38541:30;;;;;;;;;;;;;;;;;;;;;;38338:239::o;38802:128::-;38877:7;38908:8;38917:5;38908:15;;;;;;;38936:167;39023:10;;;;39009;:24;39001:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39073:5;:24;;;;;;;-1:-1:-1;39073:24:0;;;;;;;;;;;;;;;;;;;;;38936:167::o;39109:152::-;39183:10;;;;39169;:24;39161:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39240:15;39247:8;;39240:15;:::i;:::-;39109:152::o;39433:143::-;39512:7;39535:8;39544:1;39535:11;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39433:143:0;:::o;19143:171::-;19249:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19272:23;19249:58;;;19222:86;;19242:5;;19222:19;:86::i;:::-;19143:171;;;:::o;21344:723::-;21752:23;21778:69;21806:4;21778:69;;;;;;;;;;;;;;;;;21786:5;21778:27;;;;:69;;;;;:::i;:::-;21858:17;;21752:95;;-1:-1:-1;21858:21:0;21854:208;;21988:10;21977:30;;;;;;;;;;;;;;;-1:-1:-1;21977:30:0;21969:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14176:195;14279:12;14311:52;14333:6;14341:4;14347:1;14350:12;14311:21;:52::i;:::-;14304:59;;14176:195;;;;;;:::o;15228:530::-;15355:12;15413:5;15388:21;:30;;15380:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15480:18;15491:6;15480:10;:18::i;:::-;15472:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15606:12;15620:23;15647:6;:11;;15667:5;15675:4;15647:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15605:75;;;;15698:52;15716:7;15725:10;15737:12;15698:17;:52::i;:::-;15691:59;15228:530;-1:-1:-1;;;;;;;15228:530:0:o;11256:422::-;11623:20;11662:8;;;11256:422::o;17768:742::-;17883:12;17912:7;17908:595;;;-1:-1:-1;17943:10:0;17936:17;;17908:595;18057:17;;:21;18053:439;;18320:10;18314:17;18381:15;18368:10;18364:2;18360:19;18353:44;18268:148;18463:12;18456:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://9c10f2ebe5fb465b740b8673d16be1f21e9d40b31c4b3bec184899b4af46d519
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.