Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 19 from a total of 19 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Buyr Mner | 21643026 | 29 mins ago | IN | 0 ETH | 0.00084798 | ||||
Buyr Mner | 21634763 | 28 hrs ago | IN | 0 ETH | 0.00036224 | ||||
Buyr Mner | 21626585 | 2 days ago | IN | 0 ETH | 0.00061065 | ||||
Buyr Mner | 21622007 | 2 days ago | IN | 0 ETH | 0.00111158 | ||||
Buyr Mner | 21620352 | 3 days ago | IN | 0 ETH | 0.00027837 | ||||
Buyr Mner | 21609679 | 4 days ago | IN | 0 ETH | 0.00051086 | ||||
Buyr Mner | 21598128 | 6 days ago | IN | 0 ETH | 0.00049556 | ||||
Buyr Mner | 21591293 | 7 days ago | IN | 0 ETH | 0.00063748 | ||||
Buyr Mner | 21591230 | 7 days ago | IN | 0 ETH | 0.00081033 | ||||
Buyr Mner | 21585731 | 8 days ago | IN | 0 ETH | 0.00086709 | ||||
Buyr Mner | 21580434 | 8 days ago | IN | 0 ETH | 0.00156905 | ||||
Buyr Mner | 21570736 | 10 days ago | IN | 0 ETH | 0.00080584 | ||||
Buyr Mner | 21563395 | 11 days ago | IN | 0 ETH | 0.00168612 | ||||
Buyr Mner | 21555903 | 12 days ago | IN | 0 ETH | 0.0009454 | ||||
Buyr Mner | 21549923 | 13 days ago | IN | 0 ETH | 0.00099794 | ||||
Buyr Mner | 21540535 | 14 days ago | IN | 0 ETH | 0.00156114 | ||||
Buyr Mner | 21540431 | 14 days ago | IN | 0 ETH | 0.00119649 | ||||
Buyr Mner | 21527309 | 16 days ago | IN | 0 ETH | 0.00048418 | ||||
Set Admin | 21487354 | 21 days ago | IN | 0 ETH | 0.00031634 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
rMnerRebase
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./interface/ISwap.sol"; import "./utils/SafeERC20.sol"; import "./utils/Ownable.sol"; import "./interface/IR2MNER.sol"; import "./utils/SafeMath.sol"; import "./utils/TransferHelper.sol"; contract rMnerRebase is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; ISwap private constant router = ISwap(0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45); address public immutable r2MNER; address public immutable BTC; address public immutable exchangeAddress; address public admin; bytes public path; uint256 public nextTime; uint256 public maxOutAmount = 500 * 1e18; error RMNERAmountInvalid(); modifier onlyAdmin() { require(msg.sender == admin, "permissions error"); _; } constructor(address _r2MNER, address btc_, address _exchangeAddress, bytes memory path_) Ownable(msg.sender) { require(_exchangeAddress != address(0), "Cannot be zero address"); require(_r2MNER != address(0), "Cannot be zero address"); admin = msg.sender; r2MNER = _r2MNER; path = path_; exchangeAddress = _exchangeAddress; BTC = btc_; } function buyrMner(uint128 amountIn) public onlyAdmin { require(nextTime < block.timestamp, "Operating too quickly"); IERC20(BTC).safeTransferFrom(msg.sender, address(this), amountIn); TransferHelper.safeApprove(BTC, address(router), amountIn); ISwap.ExactInputParams memory params = ISwap.ExactInputParams({ path: path, recipient: exchangeAddress, amountIn: amountIn, amountOutMinimum: 0 }); uint256 amountOut = router.exactInput(params); if (amountOut == 0 || amountOut > maxOutAmount) { revert RMNERAmountInvalid(); } nextTime = block.timestamp + 300; IR2MNER(r2MNER).rebase(int256(amountOut)); emit SwapAndRebase(amountIn, amountOut); } event SwapAndRebase(uint128 amountIn, uint256 amountOut); function withdrawTokensSelf(address token, address to) external onlyOwner { require(to != address(0), "Address cannot be zero"); if (token == address(0)) { (bool success, ) = payable(to).call{ value: address(this).balance }(""); if (!success) { revert(); } } else { uint256 bal = IERC20(token).balanceOf(address(this)); IERC20(token).safeTransfer(to, bal); } emit Withdraw(token, to); } function setAdmin(address admin_) external onlyOwner { require(admin_ != address(0), "Cannot be zero address"); address prev = admin; admin = admin_; emit UpdateAdmin(prev, admin_); } function setMaxAmount(uint256 _max) external onlyOwner { uint256 prev = maxOutAmount; maxOutAmount = _max; emit UpdateMaxAmount(prev, _max); } receive() external payable { emit Received(msg.sender, msg.value); } event Received(address, uint256); event UpdateMaxAmount(uint256 pre, uint256 next); event Withdraw(address token, address to); event UpdateAdmin(address pre, address next); }
// 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.4) (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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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]. * * CAUTION: See Security Considerations above. */ 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 pragma solidity 0.8.7; import "./IERC20.sol"; interface IR2MNER is IERC20 { function mintTo(address to, uint256 _amount) external; function burn(uint256 _amount) external; function decimals() external returns (uint8); function rebase(int256 _amount) external returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @title Interface for LiquidityManager interface ISwap { struct ExactInputParams { bytes path; address recipient; uint256 amountIn; uint256 amountOutMinimum; } /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path /// @dev Setting `amountIn` to 0 will cause the contract to look up its own balance, /// and swap the entire amount, enabling contracts to send tokens before calling this function. /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata /// @return amountOut The amount of the received token function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut); }
// 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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.7; import {Context} from "./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 v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../interface/IERC20.sol"; import "../interface/IERC20Permit.sol"; import "./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 pragma solidity ^0.8.7; /** * @title SafeMath * @dev Math operations with safety checks that revert on error */ library SafeMath { string private constant ERROR_ADD_OVERFLOW = "MATH_ADD_OVERFLOW"; string private constant ERROR_SUB_UNDERFLOW = "MATH_SUB_UNDERFLOW"; string private constant ERROR_MUL_OVERFLOW = "MATH_MUL_OVERFLOW"; string private constant ERROR_DIV_ZERO = "MATH_DIV_ZERO"; /** * @dev Multiplies two numbers, reverts on overflow. */ function mul(uint256 _a, uint256 _b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (_a == 0) { return 0; } uint256 c = _a * _b; require(c / _a == _b, ERROR_MUL_OVERFLOW); return c; } /** * @dev Integer division of two numbers truncating the quotient, reverts on division by zero. */ function div(uint256 _a, uint256 _b) internal pure returns (uint256) { require(_b > 0, ERROR_DIV_ZERO); // Solidity only automatically asserts when dividing by 0 uint256 c = _a / _b; // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 _a, uint256 _b) internal pure returns (uint256) { require(_b <= _a, ERROR_SUB_UNDERFLOW); uint256 c = _a - _b; return c; } /** * @dev Adds two numbers, reverts on overflow. */ function add(uint256 _a, uint256 _b) internal pure returns (uint256) { uint256 c = _a + _b; require(c >= _a, ERROR_ADD_OVERFLOW); return c; } /** * @dev Divides two numbers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, ERROR_DIV_ZERO); return a % b; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.6.0; import "../interface/IERC20.sol"; library TransferHelper { /// @notice Transfers tokens from the targeted address to the given destination /// @notice Errors with 'STF' if transfer fails /// @param token The contract address of the token to be transferred /// @param from The originating address from which the tokens will be transferred /// @param to The destination address of the transfer /// @param value The amount to be transferred function safeTransferFrom( address token, address from, address to, uint256 value ) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'STF'); } /// @notice Transfers tokens from msg.sender to a recipient /// @dev Errors with ST if transfer fails /// @param token The contract address of the token which will be transferred /// @param to The recipient of the transfer /// @param value The value of the transfer function safeTransfer( address token, address to, uint256 value ) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.transfer.selector, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'ST'); } /// @notice Approves the stipulated contract to spend the given allowance in the given token /// @dev Errors with 'SA' if transfer fails /// @param token The contract address of the token to be approved /// @param to The target of the approval /// @param value The amount of the given token the target will be allowed to spend function safeApprove( address token, address to, uint256 value ) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.approve.selector, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'SA'); } /// @notice Transfers ETH to the recipient address /// @dev Fails with `STE` /// @param to The destination of the transfer /// @param value The value to be transferred function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); require(success, 'STE'); } }
{ "metadata": { "bytecodeHash": "none", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 800 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_r2MNER","type":"address"},{"internalType":"address","name":"btc_","type":"address"},{"internalType":"address","name":"_exchangeAddress","type":"address"},{"internalType":"bytes","name":"path_","type":"bytes"}],"stateMutability":"nonpayable","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":[],"name":"RMNERAmountInvalid","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint128","name":"amountIn","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"}],"name":"SwapAndRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pre","type":"address"},{"indexed":false,"internalType":"address","name":"next","type":"address"}],"name":"UpdateAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pre","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"next","type":"uint256"}],"name":"UpdateMaxAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BTC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"amountIn","type":"uint128"}],"name":"buyrMner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exchangeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxOutAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"path","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"r2MNER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin_","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawTokensSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e0604052681b1ae4d6e2ef5000006004553480156200001e57600080fd5b506040516200163f3803806200163f833981016040819052620000419162000294565b33806200006957604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000748162000181565b506001600160a01b038216620000cd5760405162461bcd60e51b815260206004820152601660248201527f43616e6e6f74206265207a65726f206164647265737300000000000000000000604482015260640162000060565b6001600160a01b038416620001255760405162461bcd60e51b815260206004820152601660248201527f43616e6e6f74206265207a65726f206164647265737300000000000000000000604482015260640162000060565b600180546001600160a01b031916331790556001600160601b0319606085901b1660805280516200015e906002906020840190620001d1565b50506001600160601b0319606091821b811660c05291901b1660a05250620003fc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001df90620003a9565b90600052602060002090601f0160209004810192826200020357600085556200024e565b82601f106200021e57805160ff19168380011785556200024e565b828001600101855582156200024e579182015b828111156200024e57825182559160200191906001019062000231565b506200025c92915062000260565b5090565b5b808211156200025c576000815560010162000261565b80516001600160a01b03811681146200028f57600080fd5b919050565b60008060008060808587031215620002ab57600080fd5b620002b68562000277565b93506020620002c781870162000277565b9350620002d76040870162000277565b60608701519093506001600160401b0380821115620002f557600080fd5b818801915088601f8301126200030a57600080fd5b8151818111156200031f576200031f620003e6565b604051601f8201601f19908116603f011681019083821181831017156200034a576200034a620003e6565b816040528281528b868487010111156200036357600080fd5b600093505b8284101562000387578484018601518185018701529285019262000368565b82841115620003995760008684830101525b989b979a50959850505050505050565b600181811c90821680620003be57607f821691505b60208210811415620003e057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c60c05160601c6111ee6200045160003960008181610297015261086f01526000818161015901528181610745015261078401526000818161021001526109a201526111ee6000f3fe6080604052600436106100e15760003560e01c8063715018a61161007f578063b85ffb1911610059578063b85ffb19146102b9578063bc15ede6146102d9578063f2fde38b146102ef578063f851a4401461030f57600080fd5b8063715018a6146102525780638da5cb5b146102675780639cd016051461028557600080fd5b80633dc06356116100bb5780633dc06356146101bc5780634fe47f70146101de5780635a76f319146101fe578063704b6c021461023257600080fd5b806325617950146101255780632792949d146101475780632c27fe991461019857600080fd5b3661012057604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561013157600080fd5b50610145610140366004610ff1565b61032f565b005b34801561015357600080fd5b5061017b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101a457600080fd5b506101ae60035481565b60405190815260200161018f565b3480156101c857600080fd5b506101d16104e0565b60405161018f91906110f2565b3480156101ea57600080fd5b506101456101f9366004611078565b61056e565b34801561020a57600080fd5b5061017b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561023e57600080fd5b5061014561024d366004610fcf565b6105b4565b34801561025e57600080fd5b50610145610679565b34801561027357600080fd5b506000546001600160a01b031661017b565b34801561029157600080fd5b5061017b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156102c557600080fd5b506101456102d4366004611046565b61068d565b3480156102e557600080fd5b506101ae60045481565b3480156102fb57600080fd5b5061014561030a366004610fcf565b610a77565b34801561031b57600080fd5b5060015461017b906001600160a01b031681565b610337610ab5565b6001600160a01b0381166103925760405162461bcd60e51b815260206004820152601660248201527f416464726573732063616e6e6f74206265207a65726f0000000000000000000060448201526064015b60405180910390fd5b6001600160a01b038216610406576000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146103ed576040519150601f19603f3d011682016040523d82523d6000602084013e6103f2565b606091505b505090508061040057600080fd5b50610498565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b15801561044857600080fd5b505afa15801561045c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104809190611091565b90506104966001600160a01b0384168383610ae2565b505b604080516001600160a01b038085168252831660208201527f34d58c18c6c1df2c698ccac556acea92941ca7b99d2fccf9e3ac1852d0dec36f91015b60405180910390a15050565b600280546104ed906111a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610519906111a6565b80156105665780601f1061053b57610100808354040283529160200191610566565b820191906000526020600020905b81548152906001019060200180831161054957829003601f168201915b505050505081565b610576610ab5565b600480549082905560408051828152602081018490527f1e3089a72b5c0aad46e19edcaa7e91c22af74dce9b53ee5741692ee27ff56c7291016104d4565b6105bc610ab5565b6001600160a01b0381166106125760405162461bcd60e51b815260206004820152601660248201527f43616e6e6f74206265207a65726f2061646472657373000000000000000000006044820152606401610389565b600180546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff1983168117909355604080519190921680825260208201939093527fcd6ba6b7da89e039d53b5d981527a893755342bb9d8e5c2f61f6638f1fb5192b91016104d4565b610681610ab5565b61068b6000610b77565b565b6001546001600160a01b031633146106e75760405162461bcd60e51b815260206004820152601160248201527f7065726d697373696f6e73206572726f720000000000000000000000000000006044820152606401610389565b42600354106107385760405162461bcd60e51b815260206004820152601560248201527f4f7065726174696e6720746f6f20717569636b6c7900000000000000000000006044820152606401610389565b61077f6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633306fffffffffffffffffffffffffffffffff8516610bd4565b6107d07f00000000000000000000000000000000000000000000000000000000000000007368b3465833fb72a70ecdf485e0e4c7bd8665fc45836fffffffffffffffffffffffffffffffff16610c12565b60006040518060800160405280600280546107ea906111a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610816906111a6565b80156108635780601f1061083857610100808354040283529160200191610863565b820191906000526020600020905b81548152906001019060200180831161084657829003601f168201915b505050505081526020017f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602001836fffffffffffffffffffffffffffffffff1681526020016000815250905060007368b3465833fb72a70ecdf485e0e4c7bd8665fc456001600160a01b031663b858183f836040518263ffffffff1660e01b81526004016108fd9190611105565b602060405180830381600087803b15801561091757600080fd5b505af115801561092b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094f9190611091565b905080158061095f575060045481115b1561097d5760405163c88bed3560e01b815260040160405180910390fd5b6109894261012c611154565b600355604051630ab114f960e01b8152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630ab114f990602401602060405180830381600087803b1580156109ee57600080fd5b505af1158015610a02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a269190611091565b50604080516fffffffffffffffffffffffffffffffff85168152602081018390527ff0c81fc0bd02d68b448e791c0dcb904f93e742a7cfd12104419c252f1fb3adfd910160405180910390a1505050565b610a7f610ab5565b6001600160a01b038116610aa957604051631e4fbdf760e01b815260006004820152602401610389565b610ab281610b77565b50565b6000546001600160a01b0316331461068b5760405163118cdaa760e01b8152336004820152602401610389565b6040516001600160a01b038316602482015260448101829052610b7290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610d27565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b0380851660248301528316604482015260648101829052610c0c9085906323b872dd60e01b90608401610b0e565b50505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b1790529151600092839290871691610c8391906110d6565b6000604051808303816000865af19150503d8060008114610cc0576040519150601f19603f3d011682016040523d82523d6000602084013e610cc5565b606091505b5091509150818015610cef575080511580610cef575080806020019051810190610cef9190611024565b610d205760405162461bcd60e51b8152602060048201526002602482015261534160f01b6044820152606401610389565b5050505050565b6000610d7c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e0f9092919063ffffffff16565b9050805160001480610d9d575080806020019051810190610d9d9190611024565b610b725760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610389565b6060610e1e8484600085610e26565b949350505050565b606082471015610e9e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610389565b600080866001600160a01b03168587604051610eba91906110d6565b60006040518083038185875af1925050503d8060008114610ef7576040519150601f19603f3d011682016040523d82523d6000602084013e610efc565b606091505b5091509150610f0d87838387610f18565b979650505050505050565b60608315610f84578251610f7d576001600160a01b0385163b610f7d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610389565b5081610e1e565b610e1e8383815115610f995781518083602001fd5b8060405162461bcd60e51b815260040161038991906110f2565b80356001600160a01b0381168114610fca57600080fd5b919050565b600060208284031215610fe157600080fd5b610fea82610fb3565b9392505050565b6000806040838503121561100457600080fd5b61100d83610fb3565b915061101b60208401610fb3565b90509250929050565b60006020828403121561103657600080fd5b81518015158114610fea57600080fd5b60006020828403121561105857600080fd5b81356fffffffffffffffffffffffffffffffff81168114610fea57600080fd5b60006020828403121561108a57600080fd5b5035919050565b6000602082840312156110a357600080fd5b5051919050565b600081518084526110c281602086016020860161117a565b601f01601f19169290920160200192915050565b600082516110e881846020870161117a565b9190910192915050565b602081526000610fea60208301846110aa565b60208152600082516080602084015261112160a08401826110aa565b90506001600160a01b03602085015116604084015260408401516060840152606084015160808401528091505092915050565b6000821982111561117557634e487b7160e01b600052601160045260246000fd5b500190565b60005b8381101561119557818101518382015260200161117d565b83811115610c0c5750506000910152565b600181811c908216806111ba57607f821691505b602082108114156111db57634e487b7160e01b600052602260045260246000fd5b5091905056fea164736f6c6343000807000a000000000000000000000000c19ccb3423157f5d537baaba120ecad80c4ba02e0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000294ad5b1cfeb2b1177101604f6041e6ddfbab40c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002b2260fac5e5542a773aa44fbcfedf7c193bc2c599000bb84fd67c2d9e8c4fdd9c66954bafe124ca50fc1819000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100e15760003560e01c8063715018a61161007f578063b85ffb1911610059578063b85ffb19146102b9578063bc15ede6146102d9578063f2fde38b146102ef578063f851a4401461030f57600080fd5b8063715018a6146102525780638da5cb5b146102675780639cd016051461028557600080fd5b80633dc06356116100bb5780633dc06356146101bc5780634fe47f70146101de5780635a76f319146101fe578063704b6c021461023257600080fd5b806325617950146101255780632792949d146101475780632c27fe991461019857600080fd5b3661012057604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561013157600080fd5b50610145610140366004610ff1565b61032f565b005b34801561015357600080fd5b5061017b7f0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c59981565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101a457600080fd5b506101ae60035481565b60405190815260200161018f565b3480156101c857600080fd5b506101d16104e0565b60405161018f91906110f2565b3480156101ea57600080fd5b506101456101f9366004611078565b61056e565b34801561020a57600080fd5b5061017b7f000000000000000000000000c19ccb3423157f5d537baaba120ecad80c4ba02e81565b34801561023e57600080fd5b5061014561024d366004610fcf565b6105b4565b34801561025e57600080fd5b50610145610679565b34801561027357600080fd5b506000546001600160a01b031661017b565b34801561029157600080fd5b5061017b7f000000000000000000000000294ad5b1cfeb2b1177101604f6041e6ddfbab40c81565b3480156102c557600080fd5b506101456102d4366004611046565b61068d565b3480156102e557600080fd5b506101ae60045481565b3480156102fb57600080fd5b5061014561030a366004610fcf565b610a77565b34801561031b57600080fd5b5060015461017b906001600160a01b031681565b610337610ab5565b6001600160a01b0381166103925760405162461bcd60e51b815260206004820152601660248201527f416464726573732063616e6e6f74206265207a65726f0000000000000000000060448201526064015b60405180910390fd5b6001600160a01b038216610406576000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146103ed576040519150601f19603f3d011682016040523d82523d6000602084013e6103f2565b606091505b505090508061040057600080fd5b50610498565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b15801561044857600080fd5b505afa15801561045c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104809190611091565b90506104966001600160a01b0384168383610ae2565b505b604080516001600160a01b038085168252831660208201527f34d58c18c6c1df2c698ccac556acea92941ca7b99d2fccf9e3ac1852d0dec36f91015b60405180910390a15050565b600280546104ed906111a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610519906111a6565b80156105665780601f1061053b57610100808354040283529160200191610566565b820191906000526020600020905b81548152906001019060200180831161054957829003601f168201915b505050505081565b610576610ab5565b600480549082905560408051828152602081018490527f1e3089a72b5c0aad46e19edcaa7e91c22af74dce9b53ee5741692ee27ff56c7291016104d4565b6105bc610ab5565b6001600160a01b0381166106125760405162461bcd60e51b815260206004820152601660248201527f43616e6e6f74206265207a65726f2061646472657373000000000000000000006044820152606401610389565b600180546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff1983168117909355604080519190921680825260208201939093527fcd6ba6b7da89e039d53b5d981527a893755342bb9d8e5c2f61f6638f1fb5192b91016104d4565b610681610ab5565b61068b6000610b77565b565b6001546001600160a01b031633146106e75760405162461bcd60e51b815260206004820152601160248201527f7065726d697373696f6e73206572726f720000000000000000000000000000006044820152606401610389565b42600354106107385760405162461bcd60e51b815260206004820152601560248201527f4f7065726174696e6720746f6f20717569636b6c7900000000000000000000006044820152606401610389565b61077f6001600160a01b037f0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5991633306fffffffffffffffffffffffffffffffff8516610bd4565b6107d07f0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5997368b3465833fb72a70ecdf485e0e4c7bd8665fc45836fffffffffffffffffffffffffffffffff16610c12565b60006040518060800160405280600280546107ea906111a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610816906111a6565b80156108635780601f1061083857610100808354040283529160200191610863565b820191906000526020600020905b81548152906001019060200180831161084657829003601f168201915b505050505081526020017f000000000000000000000000294ad5b1cfeb2b1177101604f6041e6ddfbab40c6001600160a01b03168152602001836fffffffffffffffffffffffffffffffff1681526020016000815250905060007368b3465833fb72a70ecdf485e0e4c7bd8665fc456001600160a01b031663b858183f836040518263ffffffff1660e01b81526004016108fd9190611105565b602060405180830381600087803b15801561091757600080fd5b505af115801561092b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094f9190611091565b905080158061095f575060045481115b1561097d5760405163c88bed3560e01b815260040160405180910390fd5b6109894261012c611154565b600355604051630ab114f960e01b8152600481018290527f000000000000000000000000c19ccb3423157f5d537baaba120ecad80c4ba02e6001600160a01b031690630ab114f990602401602060405180830381600087803b1580156109ee57600080fd5b505af1158015610a02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a269190611091565b50604080516fffffffffffffffffffffffffffffffff85168152602081018390527ff0c81fc0bd02d68b448e791c0dcb904f93e742a7cfd12104419c252f1fb3adfd910160405180910390a1505050565b610a7f610ab5565b6001600160a01b038116610aa957604051631e4fbdf760e01b815260006004820152602401610389565b610ab281610b77565b50565b6000546001600160a01b0316331461068b5760405163118cdaa760e01b8152336004820152602401610389565b6040516001600160a01b038316602482015260448101829052610b7290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610d27565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b0380851660248301528316604482015260648101829052610c0c9085906323b872dd60e01b90608401610b0e565b50505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b1790529151600092839290871691610c8391906110d6565b6000604051808303816000865af19150503d8060008114610cc0576040519150601f19603f3d011682016040523d82523d6000602084013e610cc5565b606091505b5091509150818015610cef575080511580610cef575080806020019051810190610cef9190611024565b610d205760405162461bcd60e51b8152602060048201526002602482015261534160f01b6044820152606401610389565b5050505050565b6000610d7c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e0f9092919063ffffffff16565b9050805160001480610d9d575080806020019051810190610d9d9190611024565b610b725760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610389565b6060610e1e8484600085610e26565b949350505050565b606082471015610e9e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610389565b600080866001600160a01b03168587604051610eba91906110d6565b60006040518083038185875af1925050503d8060008114610ef7576040519150601f19603f3d011682016040523d82523d6000602084013e610efc565b606091505b5091509150610f0d87838387610f18565b979650505050505050565b60608315610f84578251610f7d576001600160a01b0385163b610f7d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610389565b5081610e1e565b610e1e8383815115610f995781518083602001fd5b8060405162461bcd60e51b815260040161038991906110f2565b80356001600160a01b0381168114610fca57600080fd5b919050565b600060208284031215610fe157600080fd5b610fea82610fb3565b9392505050565b6000806040838503121561100457600080fd5b61100d83610fb3565b915061101b60208401610fb3565b90509250929050565b60006020828403121561103657600080fd5b81518015158114610fea57600080fd5b60006020828403121561105857600080fd5b81356fffffffffffffffffffffffffffffffff81168114610fea57600080fd5b60006020828403121561108a57600080fd5b5035919050565b6000602082840312156110a357600080fd5b5051919050565b600081518084526110c281602086016020860161117a565b601f01601f19169290920160200192915050565b600082516110e881846020870161117a565b9190910192915050565b602081526000610fea60208301846110aa565b60208152600082516080602084015261112160a08401826110aa565b90506001600160a01b03602085015116604084015260408401516060840152606084015160808401528091505092915050565b6000821982111561117557634e487b7160e01b600052601160045260246000fd5b500190565b60005b8381101561119557818101518382015260200161117d565b83811115610c0c5750506000910152565b600181811c908216806111ba57607f821691505b602082108114156111db57634e487b7160e01b600052602260045260246000fd5b5091905056fea164736f6c6343000807000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c19ccb3423157f5d537baaba120ecad80c4ba02e0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000294ad5b1cfeb2b1177101604f6041e6ddfbab40c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002b2260fac5e5542a773aa44fbcfedf7c193bc2c599000bb84fd67c2d9e8c4fdd9c66954bafe124ca50fc1819000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _r2MNER (address): 0xC19Ccb3423157f5D537BAabA120eCAd80c4BA02e
Arg [1] : btc_ (address): 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599
Arg [2] : _exchangeAddress (address): 0x294ad5B1cFEb2B1177101604f6041e6dDFBaB40c
Arg [3] : path_ (bytes): 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599000bb84fd67c2d9e8c4fdd9c66954bafe124ca50fc1819
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000c19ccb3423157f5d537baaba120ecad80c4ba02e
Arg [1] : 0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599
Arg [2] : 000000000000000000000000294ad5b1cfeb2b1177101604f6041e6ddfbab40c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [5] : 2260fac5e5542a773aa44fbcfedf7c193bc2c599000bb84fd67c2d9e8c4fdd9c
Arg [6] : 66954bafe124ca50fc1819000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.