Source Code
Latest 17 from a total of 17 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Calldata Swap | 22572968 | 298 days ago | IN | 0 ETH | 0.0007389 | ||||
| Calldata Swap | 22565712 | 299 days ago | IN | 0 ETH | 0.00031551 | ||||
| Calldata Swap | 22565698 | 299 days ago | IN | 0 ETH | 0.00036757 | ||||
| Calldata Swap | 22545342 | 302 days ago | IN | 0 ETH | 0.00048972 | ||||
| Calldata Swap | 22545321 | 302 days ago | IN | 0 ETH | 0.00043976 | ||||
| Calldata Swap | 22545276 | 302 days ago | IN | 0 ETH | 0.0003879 | ||||
| Calldata Swap | 22544719 | 302 days ago | IN | 0 ETH | 0.00032783 | ||||
| Calldata Swap | 22544276 | 302 days ago | IN | 0 ETH | 0.00032011 | ||||
| Calldata Swap | 22544259 | 302 days ago | IN | 0 ETH | 0.0004809 | ||||
| Calldata Swap | 22544208 | 302 days ago | IN | 0 ETH | 0.00030085 | ||||
| Calldata Swap | 22544174 | 302 days ago | IN | 0 ETH | 0.00019558 | ||||
| Calldata Swap | 22536899 | 303 days ago | IN | 0 ETH | 0.00054975 | ||||
| Calldata Swap | 22536874 | 303 days ago | IN | 0 ETH | 0.00045273 | ||||
| Calldata Swap | 22536857 | 303 days ago | IN | 0 ETH | 0.00038616 | ||||
| Calldata Swap | 22536835 | 303 days ago | IN | 0 ETH | 0.00066076 | ||||
| Calldata Swap | 22536626 | 303 days ago | IN | 0 ETH | 0.00039831 | ||||
| Transfer Ownersh... | 22536272 | 304 days ago | IN | 0 ETH | 0.00003887 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CrpSwapHelper
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
contract CrpSwapHelper is Ownable {
event FUNDTransferred(address indexed account, uint256 indexed amount);
event AdminFeeUpdated(uint256 newFeePercentage);
address adminWallet;
uint256 adminFeePercentage;
mapping(uint8 => address) internal DexAddresses;
constructor(address _OPENOCEANADDRESS, uint256 _fee)Ownable(msg.sender) payable
{
DexAddresses[0] = _OPENOCEANADDRESS;
adminWallet = msg.sender;
adminFeePercentage = _fee;
}
function transferOwnership(address newOwner) public virtual override onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
adminWallet = newOwner;
}
function setSwapFee(uint256 _fee) public onlyOwner() returns(bool) {
adminFeePercentage= _fee;
emit AdminFeeUpdated(_fee);
return true;
}
function withdrawFunds(address token, uint256 amount) external onlyOwner() returns(bool) {
require(amount !=0, "Stablix: amount should be greater than zero");
SafeERC20.safeTransfer(IERC20(token), msg.sender, amount);
emit FUNDTransferred(token, amount);
return true;
}
function withdraw() external onlyOwner() returns(bool) {
uint256 self;
assembly {
self :=selfbalance()
}
payable(msg.sender).transfer(self);
return true;
}
function calldataSwap(address tokenIn, address tokenOut, bytes memory swapCallData) external returns(uint256) {
SafeERC20.forceApprove(IERC20(tokenIn), DexAddresses[0], type(uint256).max);
(bool txsuccess, bytes memory amountOut) = DexAddresses[0].call(swapCallData);
require(txsuccess, "SWAP_CALL_FAILED");
uint256 s_amount = abi.decode(amountOut, (uint256));
uint256 _fee = (s_amount * adminFeePercentage)/10000;
s_amount -= _fee;
SafeERC20.safeTransfer(IERC20(tokenOut), tx.origin, s_amount);
if (_fee > 0) {
SafeERC20.safeTransfer(IERC20(tokenOut), adminWallet, _fee);
}
return abi.decode(amountOut, (uint256));
}
receive() external payable {
}
fallback() external payable {
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @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 {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @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 {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_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 (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.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.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.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.2.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.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.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// 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);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_OPENOCEANADDRESS","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newFeePercentage","type":"uint256"}],"name":"AdminFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FUNDTransferred","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"bytes","name":"swapCallData","type":"bytes"}],"name":"calldataSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_fee","type":"uint256"}],"name":"setSwapFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFunds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052604051610a84380380610a84833981016040819052610022916100fc565b338061004857604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b610051816100ac565b506000805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff80546001600160a01b039093166001600160a01b0319938416179055600180549092163317909155600255610136565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806040838503121561010f57600080fd5b82516001600160a01b038116811461012657600080fd5b6020939093015192949293505050565b61093f806101456000396000f3fe60806040526004361061006e5760003560e01c80637f97df761161004b5780637f97df76146100d65780638da5cb5b14610104578063c10753291461012c578063f2fde38b1461014c57005b806334e19907146100775780633ccfd60b146100ac578063715018a6146100c157005b3661007557005b005b34801561008357600080fd5b506100976100923660046106fb565b61016c565b60405190151581526020015b60405180910390f35b3480156100b857600080fd5b506100976101b7565b3480156100cd57600080fd5b506100756101f9565b3480156100e257600080fd5b506100f66100f1366004610741565b61020d565b6040519081526020016100a3565b34801561011057600080fd5b506000546040516001600160a01b0390911681526020016100a3565b34801561013857600080fd5b50610097610147366004610813565b6103ae565b34801561015857600080fd5b5061007561016736600461083d565b610467565b60006101766104c4565b60028290556040518281527f36a705a6c19db3ef2d8bf55ca55188c8499831bdf4fb8cd76fc1cf98b740bd279060200160405180910390a15060015b919050565b60006101c16104c4565b6040514790339082156108fc029083906000818181858888f193505050501580156101f0573d6000803e3d6000fd5b50600191505090565b6102016104c4565b61020b60006104f1565b565b600080805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546102509085906001600160a01b0316600019610541565b600080805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff5460405182916001600160a01b03169061029690869061085f565b6000604051808303816000865af19150503d80600081146102d3576040519150601f19603f3d011682016040523d82523d6000602084013e6102d8565b606091505b5091509150816103225760405162461bcd60e51b815260206004820152601060248201526f14d5d05417d0d0531317d1905253115160821b60448201526064015b60405180910390fd5b600081806020019051810190610338919061088e565b905060006127106002548361034d91906108bd565b61035791906108d4565b905061036381836108f6565b9150610370873284610605565b801561038e5760015461038e9088906001600160a01b031683610605565b828060200190518101906103a2919061088e565b98975050505050505050565b60006103b86104c4565b8160000361041c5760405162461bcd60e51b815260206004820152602b60248201527f537461626c69783a20616d6f756e742073686f756c642062652067726561746560448201526a72207468616e207a65726f60a81b6064820152608401610319565b610427833384610605565b60405182906001600160a01b038516907f2d305145c4dacc194014b3fb9a07f7934da0d95b07651dec68b0ac12b6e0330a90600090a35060015b92915050565b61046f6104c4565b6001600160a01b03811661049957604051631e4fbdf760e01b815260006004820152602401610319565b6104a2816104f1565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461020b5760405163118cdaa760e01b8152336004820152602401610319565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610592848261063b565b6105ff576040516001600160a01b038481166024830152600060448301526105f591869182169063095ea7b3906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505061068a565b6105ff848261068a565b50505050565b6040516001600160a01b0383811660248301526044820183905261063691859182169063a9059cbb906064016105c3565b505050565b6000806000806020600086516020880160008a5af192503d91506000519050828015610680575081156106715780600114610680565b6000866001600160a01b03163b115b9695505050505050565b600080602060008451602086016000885af1806106ad576040513d6000823e3d81fd5b50506000513d915081156106c55780600114156106d2565b6001600160a01b0384163b155b156105ff57604051635274afe760e01b81526001600160a01b0385166004820152602401610319565b60006020828403121561070d57600080fd5b5035919050565b80356001600160a01b03811681146101b257600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561075657600080fd5b61075f84610714565b925061076d60208501610714565b9150604084013567ffffffffffffffff8082111561078a57600080fd5b818601915086601f83011261079e57600080fd5b8135818111156107b0576107b061072b565b604051601f8201601f19908116603f011681019083821181831017156107d8576107d861072b565b816040528281528960208487010111156107f157600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000806040838503121561082657600080fd5b61082f83610714565b946020939093013593505050565b60006020828403121561084f57600080fd5b61085882610714565b9392505050565b6000825160005b818110156108805760208186018101518583015201610866565b506000920191825250919050565b6000602082840312156108a057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610461576104616108a7565b6000826108f157634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610461576104616108a756fea2646970667358221220204bbabb1d965f926e1a3671a58affc5e5557b79634c9926622a7e2c186b9cba64736f6c634300081400330000000000000000000000006352a56caadc4f1e25cd6c75970fa768a3304e640000000000000000000000000000000000000000000000000000000000000005
Deployed Bytecode
0x60806040526004361061006e5760003560e01c80637f97df761161004b5780637f97df76146100d65780638da5cb5b14610104578063c10753291461012c578063f2fde38b1461014c57005b806334e19907146100775780633ccfd60b146100ac578063715018a6146100c157005b3661007557005b005b34801561008357600080fd5b506100976100923660046106fb565b61016c565b60405190151581526020015b60405180910390f35b3480156100b857600080fd5b506100976101b7565b3480156100cd57600080fd5b506100756101f9565b3480156100e257600080fd5b506100f66100f1366004610741565b61020d565b6040519081526020016100a3565b34801561011057600080fd5b506000546040516001600160a01b0390911681526020016100a3565b34801561013857600080fd5b50610097610147366004610813565b6103ae565b34801561015857600080fd5b5061007561016736600461083d565b610467565b60006101766104c4565b60028290556040518281527f36a705a6c19db3ef2d8bf55ca55188c8499831bdf4fb8cd76fc1cf98b740bd279060200160405180910390a15060015b919050565b60006101c16104c4565b6040514790339082156108fc029083906000818181858888f193505050501580156101f0573d6000803e3d6000fd5b50600191505090565b6102016104c4565b61020b60006104f1565b565b600080805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546102509085906001600160a01b0316600019610541565b600080805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff5460405182916001600160a01b03169061029690869061085f565b6000604051808303816000865af19150503d80600081146102d3576040519150601f19603f3d011682016040523d82523d6000602084013e6102d8565b606091505b5091509150816103225760405162461bcd60e51b815260206004820152601060248201526f14d5d05417d0d0531317d1905253115160821b60448201526064015b60405180910390fd5b600081806020019051810190610338919061088e565b905060006127106002548361034d91906108bd565b61035791906108d4565b905061036381836108f6565b9150610370873284610605565b801561038e5760015461038e9088906001600160a01b031683610605565b828060200190518101906103a2919061088e565b98975050505050505050565b60006103b86104c4565b8160000361041c5760405162461bcd60e51b815260206004820152602b60248201527f537461626c69783a20616d6f756e742073686f756c642062652067726561746560448201526a72207468616e207a65726f60a81b6064820152608401610319565b610427833384610605565b60405182906001600160a01b038516907f2d305145c4dacc194014b3fb9a07f7934da0d95b07651dec68b0ac12b6e0330a90600090a35060015b92915050565b61046f6104c4565b6001600160a01b03811661049957604051631e4fbdf760e01b815260006004820152602401610319565b6104a2816104f1565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461020b5760405163118cdaa760e01b8152336004820152602401610319565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610592848261063b565b6105ff576040516001600160a01b038481166024830152600060448301526105f591869182169063095ea7b3906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505061068a565b6105ff848261068a565b50505050565b6040516001600160a01b0383811660248301526044820183905261063691859182169063a9059cbb906064016105c3565b505050565b6000806000806020600086516020880160008a5af192503d91506000519050828015610680575081156106715780600114610680565b6000866001600160a01b03163b115b9695505050505050565b600080602060008451602086016000885af1806106ad576040513d6000823e3d81fd5b50506000513d915081156106c55780600114156106d2565b6001600160a01b0384163b155b156105ff57604051635274afe760e01b81526001600160a01b0385166004820152602401610319565b60006020828403121561070d57600080fd5b5035919050565b80356001600160a01b03811681146101b257600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561075657600080fd5b61075f84610714565b925061076d60208501610714565b9150604084013567ffffffffffffffff8082111561078a57600080fd5b818601915086601f83011261079e57600080fd5b8135818111156107b0576107b061072b565b604051601f8201601f19908116603f011681019083821181831017156107d8576107d861072b565b816040528281528960208487010111156107f157600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000806040838503121561082657600080fd5b61082f83610714565b946020939093013593505050565b60006020828403121561084f57600080fd5b61085882610714565b9392505050565b6000825160005b818110156108805760208186018101518583015201610866565b506000920191825250919050565b6000602082840312156108a057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610461576104616108a7565b6000826108f157634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610461576104616108a756fea2646970667358221220204bbabb1d965f926e1a3671a58affc5e5557b79634c9926622a7e2c186b9cba64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006352a56caadc4f1e25cd6c75970fa768a3304e640000000000000000000000000000000000000000000000000000000000000005
-----Decoded View---------------
Arg [0] : _OPENOCEANADDRESS (address): 0x6352a56caadC4F1E25CD6c75970Fa768A3304e64
Arg [1] : _fee (uint256): 5
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006352a56caadc4f1e25cd6c75970fa768a3304e64
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000005
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.16
Net Worth in ETH
0.000076
Token Allocations
WETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,115.85 | 0.000076 | $0.1608 |
Loading...
Loading
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.