Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 32 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw Funds | 18435123 | 853 days ago | IN | 0 ETH | 0.00169619 | ||||
| Withdraw Funds | 18435101 | 853 days ago | IN | 0 ETH | 0.00222687 | ||||
| Withdraw Funds | 18431780 | 854 days ago | IN | 0 ETH | 0.00337627 | ||||
| Withdraw Funds | 18431775 | 854 days ago | IN | 0 ETH | 0.00342208 | ||||
| Withdraw Funds | 18431768 | 854 days ago | IN | 0 ETH | 0.0031788 | ||||
| Withdraw Funds | 18431757 | 854 days ago | IN | 0 ETH | 0.00415684 | ||||
| Withdraw ETH | 18211370 | 885 days ago | IN | 0 ETH | 0.00031021 | ||||
| Withdraw Funds | 18211358 | 885 days ago | IN | 0 ETH | 0.00048779 | ||||
| Withdraw Funds | 18211344 | 885 days ago | IN | 0 ETH | 0.00045888 | ||||
| Withdraw Funds | 18211319 | 885 days ago | IN | 0 ETH | 0.00038124 | ||||
| Withdraw Funds | 18211290 | 885 days ago | IN | 0 ETH | 0.0005038 | ||||
| Withdraw Funds | 18211247 | 885 days ago | IN | 0 ETH | 0.00043004 | ||||
| Execute Arbitrag... | 18179018 | 889 days ago | IN | 0 ETH | 0.00314084 | ||||
| Execute Arbitrag... | 18151065 | 893 days ago | IN | 0 ETH | 0.00130313 | ||||
| Execute Arbitrag... | 18151014 | 893 days ago | IN | 0 ETH | 0.00088877 | ||||
| Execute Arbitrag... | 18150993 | 893 days ago | IN | 0 ETH | 0.00084804 | ||||
| Execute Arbitrag... | 18150963 | 893 days ago | IN | 0 ETH | 0.00089357 | ||||
| Execute Arbitrag... | 18149973 | 893 days ago | IN | 0 ETH | 0.00086894 | ||||
| Execute Arbitrag... | 18149880 | 893 days ago | IN | 0 ETH | 0.00090275 | ||||
| Execute Arbitrag... | 18149809 | 893 days ago | IN | 0 ETH | 0.00119502 | ||||
| Add Ether Funds | 18146949 | 894 days ago | IN | 0.1 ETH | 0.00023104 | ||||
| Add Funds | 18146942 | 894 days ago | IN | 0 ETH | 0.00038848 | ||||
| Add Funds | 18146922 | 894 days ago | IN | 0 ETH | 0.00054967 | ||||
| Add Funds | 18146920 | 894 days ago | IN | 0 ETH | 0.00028871 | ||||
| Add Funds | 18146864 | 894 days ago | IN | 0 ETH | 0.00027044 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ArbBot
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
interface IUniswapV2Router {
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
}
contract ArbBot is Ownable, ReentrancyGuard {
using SafeERC20 for IERC20;
IUniswapV2Router public uniswapRouter;
event ArbitrageExecuted(address indexed sender, uint amountIn, uint amountReceived);
event FundsAdded(address indexed sender, address token, uint amount);
constructor(address _uniswapRouter) {
uniswapRouter = IUniswapV2Router(_uniswapRouter);
}
// Function to add funds in the form of tokens
function addFunds(address token, uint amount) external onlyOwner {
IERC20(token).safeTransferFrom(msg.sender, address(this), amount);
emit FundsAdded(msg.sender, token, amount);
}
// Function to add Ether funds
function addEtherFunds() external payable onlyOwner {
emit FundsAdded(msg.sender, address(0), msg.value);
}
function executeArbitrage(
address[] calldata path,
uint amountIn,
uint amountOutMin,
uint deadline
) external onlyOwner nonReentrant {
require(path.length > 1, "Path too short");
IERC20 inputToken = IERC20(path[0]);
inputToken.safeApprove(address(uniswapRouter), amountIn);
uint[] memory amounts = uniswapRouter.swapExactTokensForTokens(amountIn, amountOutMin, path, address(this), deadline);
emit ArbitrageExecuted(msg.sender, amounts[0], amounts[amounts.length - 1]);
}
// Function to withdraw tokens
function withdrawFunds(address token, uint amount) external onlyOwner {
IERC20(token).safeTransfer(msg.sender, amount);
}
// Function to withdraw Ether
function withdrawETH(uint amount) external onlyOwner {
require(address(this).balance >= amount, "Insufficient balance");
payable(msg.sender).transfer(amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @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 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) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// 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 v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @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.encodeWithSelector(token.transfer.selector, 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.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @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.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @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");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
/**
* @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 silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// 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 cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return
success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
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 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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://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.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_uniswapRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountReceived","type":"uint256"}],"name":"ArbitrageExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"addEtherFunds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"executeArbitrage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162001c5938038062001c598339818101604052810190620000379190620001dc565b620000576200004b620000a660201b60201c565b620000ae60201b60201c565b6001808190555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200020e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001a48262000177565b9050919050565b620001b68162000197565b8114620001c257600080fd5b50565b600081519050620001d681620001ab565b92915050565b600060208284031215620001f557620001f462000172565b5b60006200020584828501620001c5565b91505092915050565b611a3b806200021e6000396000f3fe6080604052600436106100865760003560e01c8063bc4b336511610059578063bc4b336514610102578063c10753291461012b578063e189c0d214610154578063f14210a61461017d578063f2fde38b146101a657610086565b8063363eb97c1461008b578063715018a614610095578063735de9f7146100ac5780638da5cb5b146100d7575b600080fd5b6100936101cf565b005b3480156100a157600080fd5b506100aa61022a565b005b3480156100b857600080fd5b506100c161023e565b6040516100ce9190610d9d565b60405180910390f35b3480156100e357600080fd5b506100ec610264565b6040516100f99190610dd9565b60405180910390f35b34801561010e57600080fd5b5061012960048036038101906101249190610e6a565b61028d565b005b34801561013757600080fd5b50610152600480360381019061014d9190610e6a565b610316565b005b34801561016057600080fd5b5061017b60048036038101906101769190610f0f565b61034d565b005b34801561018957600080fd5b506101a4600480360381019061019f9190610f97565b610571565b005b3480156101b257600080fd5b506101cd60048036038101906101c89190610fc4565b610606565b005b6101d7610689565b3373ffffffffffffffffffffffffffffffffffffffff167f55f368ec5df1aca853572d5a6cbda215a84cf17a93c765932dcfb1c237df2eca600034604051610220929190611000565b60405180910390a2565b610232610689565b61023c6000610707565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610295610689565b6102c23330838573ffffffffffffffffffffffffffffffffffffffff166107cb909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f55f368ec5df1aca853572d5a6cbda215a84cf17a93c765932dcfb1c237df2eca838360405161030a929190611000565b60405180910390a25050565b61031e610689565b61034933828473ffffffffffffffffffffffffffffffffffffffff166108549092919063ffffffff16565b5050565b610355610689565b61035d6108da565b600185859050116103a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a90611086565b60405180910390fd5b6000858560008181106103b9576103b86110a6565b5b90506020020160208101906103ce9190610fc4565b905061041d600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858373ffffffffffffffffffffffffffffffffffffffff166109299092919063ffffffff16565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338ed173986868a8a30896040518763ffffffff1660e01b815260040161048496959493929190611198565b6000604051808303816000875af11580156104a3573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906104cc9190611358565b90503373ffffffffffffffffffffffffffffffffffffffff167f147eadb5569d263d5aba3ca005001b85a1651d8da1204f22327ecdac7459e2ea8260008151811061051a576105196110a6565b5b6020026020010151836001855161053191906113d0565b81518110610542576105416110a6565b5b6020026020010151604051610558929190611404565b60405180910390a2505061056a610a78565b5050505050565b610579610689565b804710156105bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b390611479565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610602573d6000803e3d6000fd5b5050565b61060e610689565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361067d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106749061150b565b60405180910390fd5b61068681610707565b50565b610691610a81565b73ffffffffffffffffffffffffffffffffffffffff166106af610264565b73ffffffffffffffffffffffffffffffffffffffff1614610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc90611577565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61084e846323b872dd60e01b8585856040516024016107ec93929190611597565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610a89565b50505050565b6108d58363a9059cbb60e01b8484604051602401610873929190611000565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610a89565b505050565b60026001540361091f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109169061161a565b60405180910390fd5b6002600181905550565b60008114806109b3575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b815260040161097092919061163a565b602060405180830381865afa15801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b19190611663565b145b6109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990611702565b60405180910390fd5b610a738363095ea7b360e01b8484604051602401610a11929190611000565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610a89565b505050565b60018081905550565b600033905090565b6000610aeb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610b519092919063ffffffff16565b9050600081511480610b0d575080806020019051810190610b0c919061175a565b5b610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b43906117f9565b60405180910390fd5b505050565b6060610b608484600085610b69565b90509392505050565b606082471015610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba59061188b565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610bd7919061191c565b60006040518083038185875af1925050503d8060008114610c14576040519150601f19603f3d011682016040523d82523d6000602084013e610c19565b606091505b5091509150610c2a87838387610c36565b92505050949350505050565b60608315610c98576000835103610c9057610c5085610cab565b610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c869061197f565b60405180910390fd5b5b829050610ca3565b610ca28383610cce565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115610ce15781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1591906119e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610d63610d5e610d5984610d1e565b610d3e565b610d1e565b9050919050565b6000610d7582610d48565b9050919050565b6000610d8782610d6a565b9050919050565b610d9781610d7c565b82525050565b6000602082019050610db26000830184610d8e565b92915050565b6000610dc382610d1e565b9050919050565b610dd381610db8565b82525050565b6000602082019050610dee6000830184610dca565b92915050565b6000604051905090565b600080fd5b600080fd5b610e1181610db8565b8114610e1c57600080fd5b50565b600081359050610e2e81610e08565b92915050565b6000819050919050565b610e4781610e34565b8114610e5257600080fd5b50565b600081359050610e6481610e3e565b92915050565b60008060408385031215610e8157610e80610dfe565b5b6000610e8f85828601610e1f565b9250506020610ea085828601610e55565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112610ecf57610ece610eaa565b5b8235905067ffffffffffffffff811115610eec57610eeb610eaf565b5b602083019150836020820283011115610f0857610f07610eb4565b5b9250929050565b600080600080600060808688031215610f2b57610f2a610dfe565b5b600086013567ffffffffffffffff811115610f4957610f48610e03565b5b610f5588828901610eb9565b95509550506020610f6888828901610e55565b9350506040610f7988828901610e55565b9250506060610f8a88828901610e55565b9150509295509295909350565b600060208284031215610fad57610fac610dfe565b5b6000610fbb84828501610e55565b91505092915050565b600060208284031215610fda57610fd9610dfe565b5b6000610fe884828501610e1f565b91505092915050565b610ffa81610e34565b82525050565b60006040820190506110156000830185610dca565b6110226020830184610ff1565b9392505050565b600082825260208201905092915050565b7f5061746820746f6f2073686f7274000000000000000000000000000000000000600082015250565b6000611070600e83611029565b915061107b8261103a565b602082019050919050565b6000602082019050818103600083015261109f81611063565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b6000819050919050565b6110f981610db8565b82525050565b600061110b83836110f0565b60208301905092915050565b60006111266020840184610e1f565b905092915050565b6000602082019050919050565b600061114783856110d5565b9350611152826110e6565b8060005b8581101561118b576111688284611117565b61117288826110ff565b975061117d8361112e565b925050600181019050611156565b5085925050509392505050565b600060a0820190506111ad6000830189610ff1565b6111ba6020830188610ff1565b81810360408301526111cd81868861113b565b90506111dc6060830185610dca565b6111e96080830184610ff1565b979650505050505050565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61123d826111f4565b810181811067ffffffffffffffff8211171561125c5761125b611205565b5b80604052505050565b600061126f610df4565b905061127b8282611234565b919050565b600067ffffffffffffffff82111561129b5761129a611205565b5b602082029050602081019050919050565b6000815190506112bb81610e3e565b92915050565b60006112d46112cf84611280565b611265565b905080838252602082019050602084028301858111156112f7576112f6610eb4565b5b835b81811015611320578061130c88826112ac565b8452602084019350506020810190506112f9565b5050509392505050565b600082601f83011261133f5761133e610eaa565b5b815161134f8482602086016112c1565b91505092915050565b60006020828403121561136e5761136d610dfe565b5b600082015167ffffffffffffffff81111561138c5761138b610e03565b5b6113988482850161132a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113db82610e34565b91506113e683610e34565b92508282039050818111156113fe576113fd6113a1565b5b92915050565b60006040820190506114196000830185610ff1565b6114266020830184610ff1565b9392505050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000611463601483611029565b915061146e8261142d565b602082019050919050565b6000602082019050818103600083015261149281611456565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114f5602683611029565b915061150082611499565b604082019050919050565b60006020820190508181036000830152611524816114e8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611561602083611029565b915061156c8261152b565b602082019050919050565b6000602082019050818103600083015261159081611554565b9050919050565b60006060820190506115ac6000830186610dca565b6115b96020830185610dca565b6115c66040830184610ff1565b949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611604601f83611029565b915061160f826115ce565b602082019050919050565b60006020820190508181036000830152611633816115f7565b9050919050565b600060408201905061164f6000830185610dca565b61165c6020830184610dca565b9392505050565b60006020828403121561167957611678610dfe565b5b6000611687848285016112ac565b91505092915050565b7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60008201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000602082015250565b60006116ec603683611029565b91506116f782611690565b604082019050919050565b6000602082019050818103600083015261171b816116df565b9050919050565b60008115159050919050565b61173781611722565b811461174257600080fd5b50565b6000815190506117548161172e565b92915050565b6000602082840312156117705761176f610dfe565b5b600061177e84828501611745565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006117e3602a83611029565b91506117ee82611787565b604082019050919050565b60006020820190508181036000830152611812816117d6565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000611875602683611029565b915061188082611819565b604082019050919050565b600060208201905081810360008301526118a481611868565b9050919050565b600081519050919050565b600081905092915050565b60005b838110156118df5780820151818401526020810190506118c4565b60008484015250505050565b60006118f6826118ab565b61190081856118b6565b93506119108185602086016118c1565b80840191505092915050565b600061192882846118eb565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611969601d83611029565b915061197482611933565b602082019050919050565b600060208201905081810360008301526119988161195c565b9050919050565b600081519050919050565b60006119b58261199f565b6119bf8185611029565b93506119cf8185602086016118c1565b6119d8816111f4565b840191505092915050565b600060208201905081810360008301526119fd81846119aa565b90509291505056fea26469706673582212203dbed355002b3529280c49cc0d9f8a0e7ae92bde23a5cb105c304816104796f164736f6c634300081300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106100865760003560e01c8063bc4b336511610059578063bc4b336514610102578063c10753291461012b578063e189c0d214610154578063f14210a61461017d578063f2fde38b146101a657610086565b8063363eb97c1461008b578063715018a614610095578063735de9f7146100ac5780638da5cb5b146100d7575b600080fd5b6100936101cf565b005b3480156100a157600080fd5b506100aa61022a565b005b3480156100b857600080fd5b506100c161023e565b6040516100ce9190610d9d565b60405180910390f35b3480156100e357600080fd5b506100ec610264565b6040516100f99190610dd9565b60405180910390f35b34801561010e57600080fd5b5061012960048036038101906101249190610e6a565b61028d565b005b34801561013757600080fd5b50610152600480360381019061014d9190610e6a565b610316565b005b34801561016057600080fd5b5061017b60048036038101906101769190610f0f565b61034d565b005b34801561018957600080fd5b506101a4600480360381019061019f9190610f97565b610571565b005b3480156101b257600080fd5b506101cd60048036038101906101c89190610fc4565b610606565b005b6101d7610689565b3373ffffffffffffffffffffffffffffffffffffffff167f55f368ec5df1aca853572d5a6cbda215a84cf17a93c765932dcfb1c237df2eca600034604051610220929190611000565b60405180910390a2565b610232610689565b61023c6000610707565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610295610689565b6102c23330838573ffffffffffffffffffffffffffffffffffffffff166107cb909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f55f368ec5df1aca853572d5a6cbda215a84cf17a93c765932dcfb1c237df2eca838360405161030a929190611000565b60405180910390a25050565b61031e610689565b61034933828473ffffffffffffffffffffffffffffffffffffffff166108549092919063ffffffff16565b5050565b610355610689565b61035d6108da565b600185859050116103a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a90611086565b60405180910390fd5b6000858560008181106103b9576103b86110a6565b5b90506020020160208101906103ce9190610fc4565b905061041d600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858373ffffffffffffffffffffffffffffffffffffffff166109299092919063ffffffff16565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338ed173986868a8a30896040518763ffffffff1660e01b815260040161048496959493929190611198565b6000604051808303816000875af11580156104a3573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906104cc9190611358565b90503373ffffffffffffffffffffffffffffffffffffffff167f147eadb5569d263d5aba3ca005001b85a1651d8da1204f22327ecdac7459e2ea8260008151811061051a576105196110a6565b5b6020026020010151836001855161053191906113d0565b81518110610542576105416110a6565b5b6020026020010151604051610558929190611404565b60405180910390a2505061056a610a78565b5050505050565b610579610689565b804710156105bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b390611479565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610602573d6000803e3d6000fd5b5050565b61060e610689565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361067d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106749061150b565b60405180910390fd5b61068681610707565b50565b610691610a81565b73ffffffffffffffffffffffffffffffffffffffff166106af610264565b73ffffffffffffffffffffffffffffffffffffffff1614610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc90611577565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61084e846323b872dd60e01b8585856040516024016107ec93929190611597565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610a89565b50505050565b6108d58363a9059cbb60e01b8484604051602401610873929190611000565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610a89565b505050565b60026001540361091f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109169061161a565b60405180910390fd5b6002600181905550565b60008114806109b3575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b815260040161097092919061163a565b602060405180830381865afa15801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b19190611663565b145b6109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990611702565b60405180910390fd5b610a738363095ea7b360e01b8484604051602401610a11929190611000565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610a89565b505050565b60018081905550565b600033905090565b6000610aeb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610b519092919063ffffffff16565b9050600081511480610b0d575080806020019051810190610b0c919061175a565b5b610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b43906117f9565b60405180910390fd5b505050565b6060610b608484600085610b69565b90509392505050565b606082471015610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba59061188b565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610bd7919061191c565b60006040518083038185875af1925050503d8060008114610c14576040519150601f19603f3d011682016040523d82523d6000602084013e610c19565b606091505b5091509150610c2a87838387610c36565b92505050949350505050565b60608315610c98576000835103610c9057610c5085610cab565b610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c869061197f565b60405180910390fd5b5b829050610ca3565b610ca28383610cce565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115610ce15781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1591906119e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610d63610d5e610d5984610d1e565b610d3e565b610d1e565b9050919050565b6000610d7582610d48565b9050919050565b6000610d8782610d6a565b9050919050565b610d9781610d7c565b82525050565b6000602082019050610db26000830184610d8e565b92915050565b6000610dc382610d1e565b9050919050565b610dd381610db8565b82525050565b6000602082019050610dee6000830184610dca565b92915050565b6000604051905090565b600080fd5b600080fd5b610e1181610db8565b8114610e1c57600080fd5b50565b600081359050610e2e81610e08565b92915050565b6000819050919050565b610e4781610e34565b8114610e5257600080fd5b50565b600081359050610e6481610e3e565b92915050565b60008060408385031215610e8157610e80610dfe565b5b6000610e8f85828601610e1f565b9250506020610ea085828601610e55565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112610ecf57610ece610eaa565b5b8235905067ffffffffffffffff811115610eec57610eeb610eaf565b5b602083019150836020820283011115610f0857610f07610eb4565b5b9250929050565b600080600080600060808688031215610f2b57610f2a610dfe565b5b600086013567ffffffffffffffff811115610f4957610f48610e03565b5b610f5588828901610eb9565b95509550506020610f6888828901610e55565b9350506040610f7988828901610e55565b9250506060610f8a88828901610e55565b9150509295509295909350565b600060208284031215610fad57610fac610dfe565b5b6000610fbb84828501610e55565b91505092915050565b600060208284031215610fda57610fd9610dfe565b5b6000610fe884828501610e1f565b91505092915050565b610ffa81610e34565b82525050565b60006040820190506110156000830185610dca565b6110226020830184610ff1565b9392505050565b600082825260208201905092915050565b7f5061746820746f6f2073686f7274000000000000000000000000000000000000600082015250565b6000611070600e83611029565b915061107b8261103a565b602082019050919050565b6000602082019050818103600083015261109f81611063565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b6000819050919050565b6110f981610db8565b82525050565b600061110b83836110f0565b60208301905092915050565b60006111266020840184610e1f565b905092915050565b6000602082019050919050565b600061114783856110d5565b9350611152826110e6565b8060005b8581101561118b576111688284611117565b61117288826110ff565b975061117d8361112e565b925050600181019050611156565b5085925050509392505050565b600060a0820190506111ad6000830189610ff1565b6111ba6020830188610ff1565b81810360408301526111cd81868861113b565b90506111dc6060830185610dca565b6111e96080830184610ff1565b979650505050505050565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61123d826111f4565b810181811067ffffffffffffffff8211171561125c5761125b611205565b5b80604052505050565b600061126f610df4565b905061127b8282611234565b919050565b600067ffffffffffffffff82111561129b5761129a611205565b5b602082029050602081019050919050565b6000815190506112bb81610e3e565b92915050565b60006112d46112cf84611280565b611265565b905080838252602082019050602084028301858111156112f7576112f6610eb4565b5b835b81811015611320578061130c88826112ac565b8452602084019350506020810190506112f9565b5050509392505050565b600082601f83011261133f5761133e610eaa565b5b815161134f8482602086016112c1565b91505092915050565b60006020828403121561136e5761136d610dfe565b5b600082015167ffffffffffffffff81111561138c5761138b610e03565b5b6113988482850161132a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113db82610e34565b91506113e683610e34565b92508282039050818111156113fe576113fd6113a1565b5b92915050565b60006040820190506114196000830185610ff1565b6114266020830184610ff1565b9392505050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000611463601483611029565b915061146e8261142d565b602082019050919050565b6000602082019050818103600083015261149281611456565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114f5602683611029565b915061150082611499565b604082019050919050565b60006020820190508181036000830152611524816114e8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611561602083611029565b915061156c8261152b565b602082019050919050565b6000602082019050818103600083015261159081611554565b9050919050565b60006060820190506115ac6000830186610dca565b6115b96020830185610dca565b6115c66040830184610ff1565b949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611604601f83611029565b915061160f826115ce565b602082019050919050565b60006020820190508181036000830152611633816115f7565b9050919050565b600060408201905061164f6000830185610dca565b61165c6020830184610dca565b9392505050565b60006020828403121561167957611678610dfe565b5b6000611687848285016112ac565b91505092915050565b7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60008201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000602082015250565b60006116ec603683611029565b91506116f782611690565b604082019050919050565b6000602082019050818103600083015261171b816116df565b9050919050565b60008115159050919050565b61173781611722565b811461174257600080fd5b50565b6000815190506117548161172e565b92915050565b6000602082840312156117705761176f610dfe565b5b600061177e84828501611745565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006117e3602a83611029565b91506117ee82611787565b604082019050919050565b60006020820190508181036000830152611812816117d6565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000611875602683611029565b915061188082611819565b604082019050919050565b600060208201905081810360008301526118a481611868565b9050919050565b600081519050919050565b600081905092915050565b60005b838110156118df5780820151818401526020810190506118c4565b60008484015250505050565b60006118f6826118ab565b61190081856118b6565b93506119108185602086016118c1565b80840191505092915050565b600061192882846118eb565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611969601d83611029565b915061197482611933565b602082019050919050565b600060208201905081810360008301526119988161195c565b9050919050565b600081519050919050565b60006119b58261199f565b6119bf8185611029565b93506119cf8185602086016118c1565b6119d8816111f4565b840191505092915050565b600060208201905081810360008301526119fd81846119aa565b90509291505056fea26469706673582212203dbed355002b3529280c49cc0d9f8a0e7ae92bde23a5cb105c304816104796f164736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
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
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.