Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 426 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Swap Rewards | 17826297 | 29 hrs ago | IN | 0 S | 0.01939266 | ||||
Swap Rewards | 17808437 | 31 hrs ago | IN | 0 S | 0.02031612 | ||||
Swap Rewards | 17788393 | 33 hrs ago | IN | 0 S | 0.02234773 | ||||
Swap Rewards | 16691368 | 6 days ago | IN | 0 S | 0.01932491 | ||||
Swap Rewards | 16678178 | 6 days ago | IN | 0 S | 0.0171528 | ||||
Swap Rewards | 16678107 | 6 days ago | IN | 0 S | 0.0171528 | ||||
Swap Rewards | 16676490 | 6 days ago | IN | 0 S | 0.01826989 | ||||
Swap Rewards | 16676469 | 6 days ago | IN | 0 S | 0.01830948 | ||||
Swap Rewards | 16675781 | 6 days ago | IN | 0 S | 0.01801005 | ||||
Swap Rewards | 16675688 | 6 days ago | IN | 0 S | 0.01571005 | ||||
Swap Rewards | 16675600 | 6 days ago | IN | 0 S | 0.0171528 | ||||
Swap Rewards | 16675514 | 6 days ago | IN | 0 S | 0.0161435 | ||||
Swap Rewards | 16675426 | 6 days ago | IN | 0 S | 0.0171528 | ||||
Swap Rewards | 16675342 | 6 days ago | IN | 0 S | 0.0171528 | ||||
Swap Rewards | 16675262 | 6 days ago | IN | 0 S | 0.03591282 | ||||
Swap Rewards | 16675184 | 6 days ago | IN | 0 S | 0.0184109 | ||||
Swap Rewards | 16675098 | 6 days ago | IN | 0 S | 0.01716537 | ||||
Swap Rewards | 16675014 | 6 days ago | IN | 0 S | 0.0171528 | ||||
Swap Rewards | 16674923 | 6 days ago | IN | 0 S | 0.01715282 | ||||
Swap Rewards | 16674850 | 6 days ago | IN | 0 S | 0.01841067 | ||||
Swap Rewards | 16674764 | 6 days ago | IN | 0 S | 0.0171528 | ||||
Swap Rewards | 16674671 | 6 days ago | IN | 0 S | 0.0177735 | ||||
Swap Rewards | 16674584 | 6 days ago | IN | 0 S | 0.01655915 | ||||
Swap Rewards | 16674499 | 6 days ago | IN | 0 S | 0.0171528 | ||||
Swap Rewards | 16674417 | 6 days ago | IN | 0 S | 0.0186405 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TombJeeter
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 333 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; interface ITheInception { function deposit(uint256 _pid, uint256 _amount) external; function withdraw(uint256 _pid, uint256 _amount) external; function pendingSHIELD(uint256 _pid, address _user) external view returns (uint256); function poolInfo( uint256 _pid ) external view returns ( IERC20 token, uint256 depFee, address depFeeWallet, uint256 allocPoint, uint256 lastRewardTime, uint256 accSHIELDPerShare ); } interface IRouter { function swapExactTokensForTokensSimple( uint amountIn, uint amountOutMin, address tokenFrom, address tokenTo, bool stable, address to, uint deadline ) external returns (uint[] memory amounts); } /// @title TombJeeter /// @dev Allows operator to deposit assets, collect rewards, and swap them to scUSD contract TombJeeter is ReentrancyGuard { using SafeERC20 for IERC20; /// @notice The Inception contract ITheInception public constant INCEPTION = ITheInception(0x49f5BCDBC8B2f3401d1Fc3B5Df75F91eF389657A); /// @notice The SHIELD token IERC20 public constant SHIELD = IERC20(0x6706Adb93117C0a7235dCBe639E12ed13fa5752f); /// @notice The scUSD token IERC20 public constant SCUSD = IERC20(0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE); /// @notice The router contract IRouter public constant ROUTER = IRouter(0xF5F7231073b3B41c04BA655e1a7438b1a7b29c27); /// @notice The operator who can call functions address public operator; event Deposited(uint256 poolId, uint256 amount); event Withdrawn(uint256 poolId, uint256 amount); event RewardsSwapped(uint256 amountIn, uint256 amountOut); event NewOperator(address indexed oldOperator, address indexed newOperator); event Executed(address indexed target, bytes data); modifier onlyOperator() { require(msg.sender == operator, "Not authorized"); _; } constructor() { operator = 0x84d0F74d21a89F86b67e9a38d8559d0b4e10F12d; // Approve SHIELD for router SHIELD.approve(address(ROUTER), type(uint256).max); } /// @notice Execute arbitrary call to any contract /// @dev Only callable by operator /// @param target Address to call /// @param data Calldata to send function execute(address target, bytes calldata data) external onlyOperator nonReentrant returns (bytes memory) { require(target != address(0), "Invalid target"); (bool success, bytes memory result) = target.call(data); require(success, "Call failed"); emit Executed(target, data); return result; } /// @notice Deposit assets into The Inception /// @param poolId The pool ID to deposit into /// @param amount Amount to deposit function deposit(uint256 poolId, uint256 amount) external onlyOperator nonReentrant { require(amount > 0, "Amount must be > 0"); // Get the token for this pool (IERC20 token, , , , , ) = INCEPTION.poolInfo(poolId); require(address(token) != address(0), "Invalid pool"); // Transfer assets from operator to contract SafeERC20.safeTransferFrom(token, operator, address(this), amount); // Approve and deposit into The Inception token.approve(address(INCEPTION), amount); INCEPTION.deposit(poolId, amount); emit Deposited(poolId, amount); } /// @notice Withdraw assets from The Inception /// @param poolId The pool ID to withdraw from /// @param amount Amount to withdraw function withdraw(uint256 poolId, uint256 amount) external onlyOperator nonReentrant { require(amount > 0, "Amount must be > 0"); // Get the token for this pool (IERC20 token, , , , , ) = INCEPTION.poolInfo(poolId); require(address(token) != address(0), "Invalid pool"); // Withdraw from The Inception INCEPTION.withdraw(poolId, amount); // Transfer assets to operator SafeERC20.safeTransfer(token, operator, amount); emit Withdrawn(poolId, amount); } /// @notice Claim and swap rewards to scUSD /// @param poolIds Array of pool IDs to claim rewards from function swapRewards(uint256[] calldata poolIds) external nonReentrant { uint256 i; for (; i < poolIds.length; ++i) { // Claim rewards from The Inception INCEPTION.withdraw(poolIds[i], 0); } // Get reward token balance uint256 rewardBalance = SHIELD.balanceOf(address(this)); if (rewardBalance > 0) { // Swap SHIELD to scUSD using stable pair uint256[] memory amounts = ROUTER.swapExactTokensForTokensSimple( rewardBalance, 0, // minAmountOut - can be 0 since we're the operator address(SHIELD), address(SCUSD), true, // stable pair operator, block.timestamp + 300 // 5 minute deadline ); emit RewardsSwapped(rewardBalance, amounts[1]); } } /// @notice Transfers operator role function transferOperator(address _newOperator) external onlyOperator { require(_newOperator != address(0), "Invalid operator"); address oldOperator = operator; operator = _newOperator; emit NewOperator(oldOperator, _newOperator); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @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); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC1363} from "../../../interfaces/IERC1363.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC-20 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 { /** * @dev An operation with an ERC-20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. * * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client" * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. * * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client" * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. * * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function * only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being * set here. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when * targeting contracts. * * Reverts if the returned value is other than `true`. */ function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal { if (to.code.length == 0) { safeTransfer(token, to, value); } else if (!token.transferAndCall(to, value, data)) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when * targeting contracts. * * Reverts if the returned value is other than `true`. */ function transferFromAndCallRelaxed( IERC1363 token, address from, address to, uint256 value, bytes memory data ) internal { if (to.code.length == 0) { safeTransferFrom(token, from, to, value); } else if (!token.transferFromAndCall(from, to, value, data)) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when * targeting contracts. * * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}. * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall} * once without retrying, and relies on the returned value to be true. * * Reverts if the returned value is other than `true`. */ function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal { if (to.code.length == 0) { forceApprove(token, to, value); } else if (!token.approveAndCall(to, value, data)) { revert SafeERC20FailedOperation(address(token)); } } /** * @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). * * This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements. */ function _callOptionalReturn(IERC20 token, bytes memory data) private { uint256 returnSize; uint256 returnValue; assembly ("memory-safe") { let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20) // bubble errors if iszero(success) { let ptr := mload(0x40) returndatacopy(ptr, 0, returndatasize()) revert(ptr, returndatasize()) } returnSize := returndatasize() returnValue := mload(0) } if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) { revert SafeERC20FailedOperation(address(token)); } } /** * @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). * * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { bool success; uint256 returnSize; uint256 returnValue; assembly ("memory-safe") { success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20) returnSize := returndatasize() returnValue := mload(0) } return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @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 EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * 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; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); 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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC165} from "./IERC165.sol"; /** * @title IERC1363 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363]. * * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction. */ interface IERC1363 is IERC20, IERC165 { /* * Note: the ERC-165 identifier for this interface is 0xb0202a11. * 0xb0202a11 === * bytes4(keccak256('transferAndCall(address,uint256)')) ^ * bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^ * bytes4(keccak256('approveAndCall(address,uint256)')) ^ * bytes4(keccak256('approveAndCall(address,uint256,bytes)')) */ /** * @dev Moves a `value` amount of tokens from the caller's account to `to` * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferAndCall(address to, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from the caller's account to `to` * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @param data Additional data with no specified format, sent in call to `to`. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param from The address which you want to send tokens from. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferFromAndCall(address from, address to, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param from The address which you want to send tokens from. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @param data Additional data with no specified format, sent in call to `to`. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`. * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function approveAndCall(address spender, uint256 value) external returns (bool); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`. * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. * @param data Additional data with no specified format, sent in call to `spender`. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol) pragma solidity ^0.8.20; import {Errors} from "./Errors.sol"; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert Errors.InsufficientBalance(address(this).balance, amount); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert Errors.FailedCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {Errors.FailedCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert Errors.InsufficientBalance(address(this).balance, value); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case * of an unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {Errors.FailedCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}. */ function _revert(bytes memory returndata) private pure { // 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 ("memory-safe") { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert Errors.FailedCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol) pragma solidity ^0.8.20; /** * @dev Collection of common custom errors used in multiple contracts * * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. * It is recommended to avoid relying on the error API for critical functionality. * * _Available since v5.1._ */ library Errors { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error InsufficientBalance(uint256 balance, uint256 needed); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedCall(); /** * @dev The deployment failed. */ error FailedDeployment(); /** * @dev A necessary precompile is missing. */ error MissingPrecompile(address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "remappings": [ "@layerzerolabs/=node_modules/@layerzerolabs/", "@layerzerolabs/lz-evm-protocol-v2/=node_modules/@layerzerolabs/lz-evm-protocol-v2/", "@openzeppelin-contracts-upgradeable/=dependencies/@openzeppelin-contracts-upgradeable-5.1.0/", "@openzeppelin/contracts-upgradeable/=dependencies/@openzeppelin-contracts-upgradeable-5.1.0/", "@openzeppelin-contracts/contracts/=dependencies/@openzeppelin-contracts-5.1.0/", "@openzeppelin/contracts/=dependencies/@openzeppelin-contracts-5.1.0/", "erc4626-tests/=dependencies/erc4626-property-tests-1.0/", "forge-std/=dependencies/forge-std-1.9.4/src/", "permit2/=lib/permit2/", "@openzeppelin-3.4.2/=node_modules/@openzeppelin-3.4.2/", "@openzeppelin-contracts-5.1.0/=dependencies/@openzeppelin-contracts-5.1.0/", "@openzeppelin-contracts-upgradeable-5.1.0/=dependencies/@openzeppelin-contracts-upgradeable-5.1.0/", "@uniswap/=node_modules/@uniswap/", "LayerZero-v2/=dependencies/LayerZero-v2/", "base64-sol/=node_modules/base64-sol/", "ds-test/=dependencies/ds-test/src/", "erc4626-property-tests-1.0/=dependencies/erc4626-property-tests-1.0/", "eth-gas-reporter/=node_modules/eth-gas-reporter/", "forge-std-1.9.4/=dependencies/forge-std-1.9.4/src/", "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", "hardhat/=node_modules/hardhat/", "openzeppelin-contracts-upgradeable/=dependencies/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "solidity-bytes-utils/=node_modules/solidity-bytes-utils/", "solmate/=node_modules/solmate/" ], "optimizer": { "enabled": true, "runs": 333 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "cancun", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Executed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"NewOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"}],"name":"RewardsSwapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"INCEPTION","outputs":[{"internalType":"contract ITheInception","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROUTER","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SCUSD","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHIELD","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"poolId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"poolIds","type":"uint256[]"}],"name":"swapRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"poolId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f5ffd5b5060015f81905580546001600160a01b0319167384d0f74d21a89f86b67e9a38d8559d0b4e10f12d17905560405163095ea7b360e01b815273f5f7231073b3b41c04ba655e1a7438b1a7b29c2760048201525f196024820152736706adb93117c0a7235dcbe639e12ed13fa5752f9063095ea7b3906044016020604051808303815f875af11580156100a3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906100c791906100cd565b506100f3565b5f602082840312156100dd575f5ffd5b815180151581146100ec575f5ffd5b9392505050565b61104c806101005f395ff3fe608060405234801561000f575f5ffd5b506004361061009b575f3560e01c80635b2725ed116100635780635b2725ed146101365780636a812ff214610151578063b07db47714610164578063c1c407ac1461017f578063e2bbb1581461019a575f5ffd5b80631cff79cd1461009f57806329605e77146100c857806332fe7b26146100dd578063441a3e7014610110578063570ca73514610123575b5f5ffd5b6100b26100ad366004610cd1565b6101ad565b6040516100bf9190610d51565b60405180910390f35b6100db6100d6366004610d86565b61033f565b005b6100f873f5f7231073b3b41c04ba655e1a7438b1a7b29c2781565b6040516001600160a01b0390911681526020016100bf565b6100db61011e366004610da1565b610431565b6001546100f8906001600160a01b031681565b6100f8736706adb93117c0a7235dcbe639e12ed13fa5752f81565b6100db61015f366004610dc1565b610652565b6100f873d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae81565b6100f87349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a81565b6100db6101a8366004610da1565b6108ef565b6001546060906001600160a01b031633146102005760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064015b60405180910390fd5b610208610b83565b6001600160a01b03841661024f5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081d185c99d95d60921b60448201526064016101f7565b5f5f856001600160a01b0316858560405161026b929190610e32565b5f604051808303815f865af19150503d805f81146102a4576040519150601f19603f3d011682016040523d82523d5f602084013e6102a9565b606091505b5091509150816102e95760405162461bcd60e51b815260206004820152600b60248201526a10d85b1b0819985a5b195960aa1b60448201526064016101f7565b856001600160a01b03167f0dcf4ffb3b85ab072df6f9ed79b0382ec6c9619a98f36f4538d3b2e87fd3fd118686604051610324929190610e41565b60405180910390a291505061033860015f55565b9392505050565b6001546001600160a01b0316331461038a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016101f7565b6001600160a01b0381166103d35760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b21037b832b930ba37b960811b60448201526064016101f7565b600180546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907ff1e04d73c4304b5ff164f9d10c7473e2a1593b740674a6107975e2a7001c1e5c905f90a35050565b6001546001600160a01b0316331461047c5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016101f7565b610484610b83565b5f81116104c85760405162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b60448201526064016101f7565b604051631526fe2760e01b8152600481018390525f907349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a90631526fe279060240160c060405180830381865afa158015610518573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053c9190610e6f565b50939450506001600160a01b038416925061058b9150505760405162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a59081c1bdbdb60a21b60448201526064016101f7565b604051630441a3e760e41b815260048101849052602481018390527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a9063441a3e70906044015f604051808303815f87803b1580156105dc575f5ffd5b505af11580156105ee573d5f5f3e3d5ffd5b505060015461060a92508391506001600160a01b031684610bab565b60408051848152602081018490527f0c875c8d391179c5cf7ad8303d268efd50b8beb78b671f85cd54bfb91eb8ef4091015b60405180910390a15061064e60015f55565b5050565b61065a610b83565b5f5b818110156106f6577349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a63441a3e7084848481811061069057610690610ecb565b905060200201355f6040518363ffffffff1660e01b81526004016106be929190918252602082015260400190565b5f604051808303815f87803b1580156106d5575f5ffd5b505af11580156106e7573d5f5f3e3d5ffd5b5050505080600101905061065c565b6040516370a0823160e01b81523060048201525f90736706adb93117c0a7235dcbe639e12ed13fa5752f906370a0823190602401602060405180830381865afa158015610745573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107699190610edf565b905080156108e457600180545f9173f5f7231073b3b41c04ba655e1a7438b1a7b29c27916313dcfc599185918591736706adb93117c0a7235dcbe639e12ed13fa5752f9173d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae91906001600160a01b03166107d94261012c610ef6565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e08a901b168152600481019790975260248701959095526001600160a01b0393841660448701529183166064860152151560848501521660a483015260c482015260e4015f604051808303815f875af115801561085d573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108849190810190610f2f565b90507fa6f00573d3d636305b78d01be65e94d383ea39bda1aa8163aad473b09dad640d82826001815181106108bb576108bb610ecb565b60200260200101516040516108da929190918252602082015260400190565b60405180910390a1505b505061064e60015f55565b6001546001600160a01b0316331461093a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016101f7565b610942610b83565b5f81116109865760405162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b60448201526064016101f7565b604051631526fe2760e01b8152600481018390525f907349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a90631526fe279060240160c060405180830381865afa1580156109d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fa9190610e6f565b50939450506001600160a01b0384169250610a499150505760405162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a59081c1bdbdb60a21b60448201526064016101f7565b600154610a629082906001600160a01b03163085610c0f565b60405163095ea7b360e01b81527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a6004820152602481018390526001600160a01b0382169063095ea7b3906044016020604051808303815f875af1158015610ac0573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae49190610ff7565b50604051631c57762b60e31b815260048101849052602481018390527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a9063e2bbb158906044015f604051808303815f87803b158015610b36575f5ffd5b505af1158015610b48573d5f5f3e3d5ffd5b505060408051868152602081018690527f06da3309189fa49284f335d2c2bcb4cb0b8ad2a59ad92a9bdebeeb8f1ceba511935001905061063c565b60025f5403610ba557604051633ee5aeb560e01b815260040160405180910390fd5b60025f55565b6040516001600160a01b03838116602483015260448201839052610c0a91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610c4e565b505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610c489186918216906323b872dd90608401610bd8565b50505050565b5f5f60205f8451602086015f885af180610c6d576040513d5f823e3d81fd5b50505f513d91508115610c84578060011415610c91565b6001600160a01b0384163b155b15610c4857604051635274afe760e01b81526001600160a01b03851660048201526024016101f7565b6001600160a01b0381168114610cce575f5ffd5b50565b5f5f5f60408486031215610ce3575f5ffd5b8335610cee81610cba565b9250602084013567ffffffffffffffff811115610d09575f5ffd5b8401601f81018613610d19575f5ffd5b803567ffffffffffffffff811115610d2f575f5ffd5b866020828401011115610d40575f5ffd5b939660209190910195509293505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610d96575f5ffd5b813561033881610cba565b5f5f60408385031215610db2575f5ffd5b50508035926020909101359150565b5f5f60208385031215610dd2575f5ffd5b823567ffffffffffffffff811115610de8575f5ffd5b8301601f81018513610df8575f5ffd5b803567ffffffffffffffff811115610e0e575f5ffd5b8560208260051b8401011115610e22575f5ffd5b6020919091019590945092505050565b818382375f9101908152919050565b60208152816020820152818360408301375f818301604090810191909152601f909201601f19160101919050565b5f5f5f5f5f5f60c08789031215610e84575f5ffd5b8651610e8f81610cba565b602088015160408901519197509550610ea781610cba565b6060880151608089015160a090990151979a96995090979096909590945092505050565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610eef575f5ffd5b5051919050565b80820180821115610f1557634e487b7160e01b5f52601160045260245ffd5b92915050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610f3f575f5ffd5b815167ffffffffffffffff811115610f55575f5ffd5b8201601f81018413610f65575f5ffd5b805167ffffffffffffffff811115610f7f57610f7f610f1b565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715610fac57610fac610f1b565b604052918252602081840181019290810187841115610fc9575f5ffd5b6020850194505b83851015610fec57845180825260209586019590935001610fd0565b509695505050505050565b5f60208284031215611007575f5ffd5b81518015158114610338575f5ffdfea264697066735822122014c46ad9216ed9bcc6d1e319f471bc7c03898c4b0e034957a8ec932d93006fe164736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b506004361061009b575f3560e01c80635b2725ed116100635780635b2725ed146101365780636a812ff214610151578063b07db47714610164578063c1c407ac1461017f578063e2bbb1581461019a575f5ffd5b80631cff79cd1461009f57806329605e77146100c857806332fe7b26146100dd578063441a3e7014610110578063570ca73514610123575b5f5ffd5b6100b26100ad366004610cd1565b6101ad565b6040516100bf9190610d51565b60405180910390f35b6100db6100d6366004610d86565b61033f565b005b6100f873f5f7231073b3b41c04ba655e1a7438b1a7b29c2781565b6040516001600160a01b0390911681526020016100bf565b6100db61011e366004610da1565b610431565b6001546100f8906001600160a01b031681565b6100f8736706adb93117c0a7235dcbe639e12ed13fa5752f81565b6100db61015f366004610dc1565b610652565b6100f873d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae81565b6100f87349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a81565b6100db6101a8366004610da1565b6108ef565b6001546060906001600160a01b031633146102005760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064015b60405180910390fd5b610208610b83565b6001600160a01b03841661024f5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081d185c99d95d60921b60448201526064016101f7565b5f5f856001600160a01b0316858560405161026b929190610e32565b5f604051808303815f865af19150503d805f81146102a4576040519150601f19603f3d011682016040523d82523d5f602084013e6102a9565b606091505b5091509150816102e95760405162461bcd60e51b815260206004820152600b60248201526a10d85b1b0819985a5b195960aa1b60448201526064016101f7565b856001600160a01b03167f0dcf4ffb3b85ab072df6f9ed79b0382ec6c9619a98f36f4538d3b2e87fd3fd118686604051610324929190610e41565b60405180910390a291505061033860015f55565b9392505050565b6001546001600160a01b0316331461038a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016101f7565b6001600160a01b0381166103d35760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b21037b832b930ba37b960811b60448201526064016101f7565b600180546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907ff1e04d73c4304b5ff164f9d10c7473e2a1593b740674a6107975e2a7001c1e5c905f90a35050565b6001546001600160a01b0316331461047c5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016101f7565b610484610b83565b5f81116104c85760405162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b60448201526064016101f7565b604051631526fe2760e01b8152600481018390525f907349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a90631526fe279060240160c060405180830381865afa158015610518573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053c9190610e6f565b50939450506001600160a01b038416925061058b9150505760405162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a59081c1bdbdb60a21b60448201526064016101f7565b604051630441a3e760e41b815260048101849052602481018390527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a9063441a3e70906044015f604051808303815f87803b1580156105dc575f5ffd5b505af11580156105ee573d5f5f3e3d5ffd5b505060015461060a92508391506001600160a01b031684610bab565b60408051848152602081018490527f0c875c8d391179c5cf7ad8303d268efd50b8beb78b671f85cd54bfb91eb8ef4091015b60405180910390a15061064e60015f55565b5050565b61065a610b83565b5f5b818110156106f6577349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a63441a3e7084848481811061069057610690610ecb565b905060200201355f6040518363ffffffff1660e01b81526004016106be929190918252602082015260400190565b5f604051808303815f87803b1580156106d5575f5ffd5b505af11580156106e7573d5f5f3e3d5ffd5b5050505080600101905061065c565b6040516370a0823160e01b81523060048201525f90736706adb93117c0a7235dcbe639e12ed13fa5752f906370a0823190602401602060405180830381865afa158015610745573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107699190610edf565b905080156108e457600180545f9173f5f7231073b3b41c04ba655e1a7438b1a7b29c27916313dcfc599185918591736706adb93117c0a7235dcbe639e12ed13fa5752f9173d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae91906001600160a01b03166107d94261012c610ef6565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e08a901b168152600481019790975260248701959095526001600160a01b0393841660448701529183166064860152151560848501521660a483015260c482015260e4015f604051808303815f875af115801561085d573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108849190810190610f2f565b90507fa6f00573d3d636305b78d01be65e94d383ea39bda1aa8163aad473b09dad640d82826001815181106108bb576108bb610ecb565b60200260200101516040516108da929190918252602082015260400190565b60405180910390a1505b505061064e60015f55565b6001546001600160a01b0316331461093a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016101f7565b610942610b83565b5f81116109865760405162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b60448201526064016101f7565b604051631526fe2760e01b8152600481018390525f907349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a90631526fe279060240160c060405180830381865afa1580156109d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fa9190610e6f565b50939450506001600160a01b0384169250610a499150505760405162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a59081c1bdbdb60a21b60448201526064016101f7565b600154610a629082906001600160a01b03163085610c0f565b60405163095ea7b360e01b81527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a6004820152602481018390526001600160a01b0382169063095ea7b3906044016020604051808303815f875af1158015610ac0573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae49190610ff7565b50604051631c57762b60e31b815260048101849052602481018390527349f5bcdbc8b2f3401d1fc3b5df75f91ef389657a9063e2bbb158906044015f604051808303815f87803b158015610b36575f5ffd5b505af1158015610b48573d5f5f3e3d5ffd5b505060408051868152602081018690527f06da3309189fa49284f335d2c2bcb4cb0b8ad2a59ad92a9bdebeeb8f1ceba511935001905061063c565b60025f5403610ba557604051633ee5aeb560e01b815260040160405180910390fd5b60025f55565b6040516001600160a01b03838116602483015260448201839052610c0a91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610c4e565b505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610c489186918216906323b872dd90608401610bd8565b50505050565b5f5f60205f8451602086015f885af180610c6d576040513d5f823e3d81fd5b50505f513d91508115610c84578060011415610c91565b6001600160a01b0384163b155b15610c4857604051635274afe760e01b81526001600160a01b03851660048201526024016101f7565b6001600160a01b0381168114610cce575f5ffd5b50565b5f5f5f60408486031215610ce3575f5ffd5b8335610cee81610cba565b9250602084013567ffffffffffffffff811115610d09575f5ffd5b8401601f81018613610d19575f5ffd5b803567ffffffffffffffff811115610d2f575f5ffd5b866020828401011115610d40575f5ffd5b939660209190910195509293505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610d96575f5ffd5b813561033881610cba565b5f5f60408385031215610db2575f5ffd5b50508035926020909101359150565b5f5f60208385031215610dd2575f5ffd5b823567ffffffffffffffff811115610de8575f5ffd5b8301601f81018513610df8575f5ffd5b803567ffffffffffffffff811115610e0e575f5ffd5b8560208260051b8401011115610e22575f5ffd5b6020919091019590945092505050565b818382375f9101908152919050565b60208152816020820152818360408301375f818301604090810191909152601f909201601f19160101919050565b5f5f5f5f5f5f60c08789031215610e84575f5ffd5b8651610e8f81610cba565b602088015160408901519197509550610ea781610cba565b6060880151608089015160a090990151979a96995090979096909590945092505050565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610eef575f5ffd5b5051919050565b80820180821115610f1557634e487b7160e01b5f52601160045260245ffd5b92915050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610f3f575f5ffd5b815167ffffffffffffffff811115610f55575f5ffd5b8201601f81018413610f65575f5ffd5b805167ffffffffffffffff811115610f7f57610f7f610f1b565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715610fac57610fac610f1b565b604052918252602081840181019290810187841115610fc9575f5ffd5b6020850194505b83851015610fec57845180825260209586019590935001610fd0565b509695505050505050565b5f60208284031215611007575f5ffd5b81518015158114610338575f5ffdfea264697066735822122014c46ad9216ed9bcc6d1e319f471bc7c03898c4b0e034957a8ec932d93006fe164736f6c634300081c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ 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.