Source Code
Overview
MOVR Balance
MOVR Value
$0.00Latest 25 from a total of 238 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Request Bridge | 8016262 | 515 days ago | IN | 0 MOVR | 0.00034095 | ||||
| Request Bridge | 7932674 | 521 days ago | IN | 0 MOVR | 0.00034095 | ||||
| Request Bridge | 7728070 | 536 days ago | IN | 0 MOVR | 0.00017047 | ||||
| Request Bridge | 7630034 | 543 days ago | IN | 0 MOVR | 0.00017047 | ||||
| Request Bridge | 7588099 | 546 days ago | IN | 0 MOVR | 0.00017047 | ||||
| Request Bridge | 7531271 | 550 days ago | IN | 0 MOVR | 0.00017047 | ||||
| Request Bridge | 7391127 | 560 days ago | IN | 0 MOVR | 0.00017047 | ||||
| Request Bridge | 7291812 | 567 days ago | IN | 0 MOVR | 0.00017047 | ||||
| Request Bridge | 7235573 | 571 days ago | IN | 0 MOVR | 0.00017047 | ||||
| Request Bridge | 7194594 | 574 days ago | IN | 0 MOVR | 0.00017047 | ||||
| Request Bridge | 7137159 | 578 days ago | IN | 0 MOVR | 0.00017047 | ||||
| Request Bridge | 7020535 | 588 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6991415 | 592 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6892865 | 606 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6874298 | 609 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6857980 | 611 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6816265 | 617 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6809336 | 618 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6760471 | 625 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6753566 | 626 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6746623 | 627 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6725629 | 630 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6718700 | 631 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6704829 | 633 days ago | IN | 0 MOVR | 0.00011475 | ||||
| Request Bridge | 6670031 | 638 days ago | IN | 0 MOVR | 0.00011475 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BridgeBase
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interfaces/IORBToken.sol";
contract BridgeBase is Ownable, ReentrancyGuard {
using SafeMath for uint256;
uint256 private index;
mapping(uint256 => bool) public supportedChainIds;
mapping(address => mapping(uint256 => bool))
public supportedTokensToChainId;
uint256 immutable public chainId;
event RequestBridge(
address indexed _token,
bytes _toAddr,
uint256 _amount,
uint256 _originChainId,
uint256 _fromChainId,
uint256 _toChainId,
uint256 _index
);
constructor(uint256[] memory _chainIds, uint256 _chainId) {
for (uint256 i = 0; i < _chainIds.length; i++) {
supportedChainIds[_chainIds[i]] = true;
}
chainId = _chainId;
index = 1;
}
function requestBridge(
address _tokenAddress,
bytes memory _toAddr,
uint256 _amount,
uint256 _toChainId
) public payable nonReentrant {
require(chainId != _toChainId, "Chain ids must be different");
require(supportedChainIds[_toChainId], "Unsupported chainId");
require(
supportedTokensToChainId[_tokenAddress][_toChainId],
"Unsupported token"
);
safeTransferIn(_tokenAddress, msg.sender, _amount);
emit RequestBridge(
_tokenAddress,
_toAddr,
_amount,
_toChainId,
chainId,
_toChainId,
index
);
index++;
}
function addChainIdSupported(
uint256 _chainId,
bool _state
) public onlyOwner {
supportedChainIds[_chainId] = _state;
}
function setSupportedToken(
uint256 _chainId,
address _token,
bool _state
) public onlyOwner {
supportedTokensToChainId[_token][_chainId] = _state;
}
function safeTransferIn(
address _token,
address _from,
uint256 _amount
) internal {
IORBToken erc20 = IORBToken(_token);
uint256 balBefore = erc20.balanceOf(address(this));
erc20.transferFrom(_from, address(this), _amount);
require(
erc20.balanceOf(address(this)).sub(balBefore) == _amount,
"!transfer from"
);
erc20.burn(address(this), _amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IORBToken is IERC20 {
function burn(address to, uint256 amount) external;
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"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":"uint256[]","name":"_chainIds","type":"uint256[]"},{"internalType":"uint256","name":"_chainId","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":true,"internalType":"address","name":"_token","type":"address"},{"indexed":false,"internalType":"bytes","name":"_toAddr","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_originChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_fromChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_index","type":"uint256"}],"name":"RequestBridge","type":"event"},{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"addChainIdSupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chainId","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"bytes","name":"_toAddr","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_toChainId","type":"uint256"}],"name":"requestBridge","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSupportedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supportedChainIds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"supportedTokensToChainId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a06040523480156200001157600080fd5b50604051620018d0380380620018d0833981810160405281019062000037919062000373565b620000576200004b620000e360201b60201c565b620000eb60201b60201c565b6001808190555060005b8251811015620000ca57600160036000858481518110620000875762000086620003d9565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620000c19062000437565b91505062000061565b5080608081815250506001600281905550505062000484565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200021382620001c8565b810181811067ffffffffffffffff82111715620002355762000234620001d9565b5b80604052505050565b60006200024a620001af565b905062000258828262000208565b919050565b600067ffffffffffffffff8211156200027b576200027a620001d9565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b620002a68162000291565b8114620002b257600080fd5b50565b600081519050620002c6816200029b565b92915050565b6000620002e3620002dd846200025d565b6200023e565b905080838252602082019050602084028301858111156200030957620003086200028c565b5b835b81811015620003365780620003218882620002b5565b8452602084019350506020810190506200030b565b5050509392505050565b600082601f830112620003585762000357620001c3565b5b81516200036a848260208601620002cc565b91505092915050565b600080604083850312156200038d576200038c620001b9565b5b600083015167ffffffffffffffff811115620003ae57620003ad620001be565b5b620003bc8582860162000340565b9250506020620003cf85828601620002b5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620004448262000291565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000479576200047862000408565b5b600182019050919050565b608051611422620004ae6000396000818161024b015281816103ef015261052601526114226000f3fe6080604052600436106100865760003560e01c8063715018a611610059578063715018a6146101365780638da5cb5b1461014d5780639a8a059214610178578063a00d29f7146101a3578063f2fde38b146101e057610086565b8063127bf1fd1461008b5780632db34b27146100b45780634cf2ab32146100d05780635af534711461010d575b600080fd5b34801561009757600080fd5b506100b260048036038101906100ad9190610a79565b610209565b005b6100ce60048036038101906100c99190610c5d565b610240565b005b3480156100dc57600080fd5b506100f760048036038101906100f29190610ce0565b610452565b6040516101049190610d1c565b60405180910390f35b34801561011957600080fd5b50610134600480360381019061012f9190610d37565b610472565b005b34801561014257600080fd5b5061014b6104e7565b005b34801561015957600080fd5b506101626104fb565b60405161016f9190610d99565b60405180910390f35b34801561018457600080fd5b5061018d610524565b60405161019a9190610dc3565b60405180910390f35b3480156101af57600080fd5b506101ca60048036038101906101c59190610dde565b610548565b6040516101d79190610d1c565b60405180910390f35b3480156101ec57600080fd5b5061020760048036038101906102029190610e1e565b610577565b005b6102116105fa565b806003600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610248610678565b807f0000000000000000000000000000000000000000000000000000000000000000036102aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102a190610ea8565b60405180910390fd5b6003600082815260200190815260200160002060009054906101000a900460ff1661030a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161030190610f14565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff166103a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039e90610f80565b60405180910390fd5b6103b28433846106c7565b8373ffffffffffffffffffffffffffffffffffffffff167fc210de9a5a98ab6c6b579b8d4b8003cce89c8ec3ff669ff2481d63172e00779b8484847f0000000000000000000000000000000000000000000000000000000000000000866002546040516104249695949392919061101f565b60405180910390a26002600081548092919061043f906110b6565b919050555061044c61090c565b50505050565b60036020528060005260406000206000915054906101000a900460ff1681565b61047a6105fa565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6104ef6105fa565b6104f96000610915565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60046020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61057f6105fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590611170565b60405180910390fd5b6105f781610915565b50565b6106026109d9565b73ffffffffffffffffffffffffffffffffffffffff166106206104fb565b73ffffffffffffffffffffffffffffffffffffffff1614610676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066d906111dc565b60405180910390fd5b565b6002600154036106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b490611248565b60405180910390fd5b6002600181905550565b600083905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107079190610d99565b602060405180830381865afa158015610724573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610748919061127d565b90508173ffffffffffffffffffffffffffffffffffffffff166323b872dd8530866040518463ffffffff1660e01b8152600401610787939291906112aa565b6020604051808303816000875af11580156107a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ca91906112f6565b5082610858828473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108099190610d99565b602060405180830381865afa158015610826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084a919061127d565b6109e190919063ffffffff16565b14610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f9061136f565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16639dc29fac30856040518363ffffffff1660e01b81526004016108d392919061138f565b600060405180830381600087803b1580156108ed57600080fd5b505af1158015610901573d6000803e3d6000fd5b505050505050505050565b60018081905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600081836109ef91906113b8565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b610a1e81610a0b565b8114610a2957600080fd5b50565b600081359050610a3b81610a15565b92915050565b60008115159050919050565b610a5681610a41565b8114610a6157600080fd5b50565b600081359050610a7381610a4d565b92915050565b60008060408385031215610a9057610a8f610a01565b5b6000610a9e85828601610a2c565b9250506020610aaf85828601610a64565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ae482610ab9565b9050919050565b610af481610ad9565b8114610aff57600080fd5b50565b600081359050610b1181610aeb565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610b6a82610b21565b810181811067ffffffffffffffff82111715610b8957610b88610b32565b5b80604052505050565b6000610b9c6109f7565b9050610ba88282610b61565b919050565b600067ffffffffffffffff821115610bc857610bc7610b32565b5b610bd182610b21565b9050602081019050919050565b82818337600083830152505050565b6000610c00610bfb84610bad565b610b92565b905082815260208101848484011115610c1c57610c1b610b1c565b5b610c27848285610bde565b509392505050565b600082601f830112610c4457610c43610b17565b5b8135610c54848260208601610bed565b91505092915050565b60008060008060808587031215610c7757610c76610a01565b5b6000610c8587828801610b02565b945050602085013567ffffffffffffffff811115610ca657610ca5610a06565b5b610cb287828801610c2f565b9350506040610cc387828801610a2c565b9250506060610cd487828801610a2c565b91505092959194509250565b600060208284031215610cf657610cf5610a01565b5b6000610d0484828501610a2c565b91505092915050565b610d1681610a41565b82525050565b6000602082019050610d316000830184610d0d565b92915050565b600080600060608486031215610d5057610d4f610a01565b5b6000610d5e86828701610a2c565b9350506020610d6f86828701610b02565b9250506040610d8086828701610a64565b9150509250925092565b610d9381610ad9565b82525050565b6000602082019050610dae6000830184610d8a565b92915050565b610dbd81610a0b565b82525050565b6000602082019050610dd86000830184610db4565b92915050565b60008060408385031215610df557610df4610a01565b5b6000610e0385828601610b02565b9250506020610e1485828601610a2c565b9150509250929050565b600060208284031215610e3457610e33610a01565b5b6000610e4284828501610b02565b91505092915050565b600082825260208201905092915050565b7f436861696e20696473206d75737420626520646966666572656e740000000000600082015250565b6000610e92601b83610e4b565b9150610e9d82610e5c565b602082019050919050565b60006020820190508181036000830152610ec181610e85565b9050919050565b7f556e737570706f7274656420636861696e496400000000000000000000000000600082015250565b6000610efe601383610e4b565b9150610f0982610ec8565b602082019050919050565b60006020820190508181036000830152610f2d81610ef1565b9050919050565b7f556e737570706f7274656420746f6b656e000000000000000000000000000000600082015250565b6000610f6a601183610e4b565b9150610f7582610f34565b602082019050919050565b60006020820190508181036000830152610f9981610f5d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fda578082015181840152602081019050610fbf565b60008484015250505050565b6000610ff182610fa0565b610ffb8185610fab565b935061100b818560208601610fbc565b61101481610b21565b840191505092915050565b600060c08201905081810360008301526110398189610fe6565b90506110486020830188610db4565b6110556040830187610db4565b6110626060830186610db4565b61106f6080830185610db4565b61107c60a0830184610db4565b979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110c182610a0b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036110f3576110f2611087565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061115a602683610e4b565b9150611165826110fe565b604082019050919050565b600060208201905081810360008301526111898161114d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006111c6602083610e4b565b91506111d182611190565b602082019050919050565b600060208201905081810360008301526111f5816111b9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611232601f83610e4b565b915061123d826111fc565b602082019050919050565b6000602082019050818103600083015261126181611225565b9050919050565b60008151905061127781610a15565b92915050565b60006020828403121561129357611292610a01565b5b60006112a184828501611268565b91505092915050565b60006060820190506112bf6000830186610d8a565b6112cc6020830185610d8a565b6112d96040830184610db4565b949350505050565b6000815190506112f081610a4d565b92915050565b60006020828403121561130c5761130b610a01565b5b600061131a848285016112e1565b91505092915050565b7f217472616e736665722066726f6d000000000000000000000000000000000000600082015250565b6000611359600e83610e4b565b915061136482611323565b602082019050919050565b600060208201905081810360008301526113888161134c565b9050919050565b60006040820190506113a46000830185610d8a565b6113b16020830184610db4565b9392505050565b60006113c382610a0b565b91506113ce83610a0b565b92508282039050818111156113e6576113e5611087565b5b9291505056fea2646970667358221220430dcad92294d426f04f49d7d5affb40699b9dd7a4b2d8839e398ca4b105eaf564736f6c634300081200330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000050500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000504
Deployed Bytecode
0x6080604052600436106100865760003560e01c8063715018a611610059578063715018a6146101365780638da5cb5b1461014d5780639a8a059214610178578063a00d29f7146101a3578063f2fde38b146101e057610086565b8063127bf1fd1461008b5780632db34b27146100b45780634cf2ab32146100d05780635af534711461010d575b600080fd5b34801561009757600080fd5b506100b260048036038101906100ad9190610a79565b610209565b005b6100ce60048036038101906100c99190610c5d565b610240565b005b3480156100dc57600080fd5b506100f760048036038101906100f29190610ce0565b610452565b6040516101049190610d1c565b60405180910390f35b34801561011957600080fd5b50610134600480360381019061012f9190610d37565b610472565b005b34801561014257600080fd5b5061014b6104e7565b005b34801561015957600080fd5b506101626104fb565b60405161016f9190610d99565b60405180910390f35b34801561018457600080fd5b5061018d610524565b60405161019a9190610dc3565b60405180910390f35b3480156101af57600080fd5b506101ca60048036038101906101c59190610dde565b610548565b6040516101d79190610d1c565b60405180910390f35b3480156101ec57600080fd5b5061020760048036038101906102029190610e1e565b610577565b005b6102116105fa565b806003600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610248610678565b807f0000000000000000000000000000000000000000000000000000000000000505036102aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102a190610ea8565b60405180910390fd5b6003600082815260200190815260200160002060009054906101000a900460ff1661030a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161030190610f14565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff166103a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039e90610f80565b60405180910390fd5b6103b28433846106c7565b8373ffffffffffffffffffffffffffffffffffffffff167fc210de9a5a98ab6c6b579b8d4b8003cce89c8ec3ff669ff2481d63172e00779b8484847f0000000000000000000000000000000000000000000000000000000000000505866002546040516104249695949392919061101f565b60405180910390a26002600081548092919061043f906110b6565b919050555061044c61090c565b50505050565b60036020528060005260406000206000915054906101000a900460ff1681565b61047a6105fa565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6104ef6105fa565b6104f96000610915565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000050581565b60046020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61057f6105fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590611170565b60405180910390fd5b6105f781610915565b50565b6106026109d9565b73ffffffffffffffffffffffffffffffffffffffff166106206104fb565b73ffffffffffffffffffffffffffffffffffffffff1614610676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066d906111dc565b60405180910390fd5b565b6002600154036106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b490611248565b60405180910390fd5b6002600181905550565b600083905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107079190610d99565b602060405180830381865afa158015610724573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610748919061127d565b90508173ffffffffffffffffffffffffffffffffffffffff166323b872dd8530866040518463ffffffff1660e01b8152600401610787939291906112aa565b6020604051808303816000875af11580156107a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ca91906112f6565b5082610858828473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108099190610d99565b602060405180830381865afa158015610826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084a919061127d565b6109e190919063ffffffff16565b14610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f9061136f565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16639dc29fac30856040518363ffffffff1660e01b81526004016108d392919061138f565b600060405180830381600087803b1580156108ed57600080fd5b505af1158015610901573d6000803e3d6000fd5b505050505050505050565b60018081905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600081836109ef91906113b8565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b610a1e81610a0b565b8114610a2957600080fd5b50565b600081359050610a3b81610a15565b92915050565b60008115159050919050565b610a5681610a41565b8114610a6157600080fd5b50565b600081359050610a7381610a4d565b92915050565b60008060408385031215610a9057610a8f610a01565b5b6000610a9e85828601610a2c565b9250506020610aaf85828601610a64565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ae482610ab9565b9050919050565b610af481610ad9565b8114610aff57600080fd5b50565b600081359050610b1181610aeb565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610b6a82610b21565b810181811067ffffffffffffffff82111715610b8957610b88610b32565b5b80604052505050565b6000610b9c6109f7565b9050610ba88282610b61565b919050565b600067ffffffffffffffff821115610bc857610bc7610b32565b5b610bd182610b21565b9050602081019050919050565b82818337600083830152505050565b6000610c00610bfb84610bad565b610b92565b905082815260208101848484011115610c1c57610c1b610b1c565b5b610c27848285610bde565b509392505050565b600082601f830112610c4457610c43610b17565b5b8135610c54848260208601610bed565b91505092915050565b60008060008060808587031215610c7757610c76610a01565b5b6000610c8587828801610b02565b945050602085013567ffffffffffffffff811115610ca657610ca5610a06565b5b610cb287828801610c2f565b9350506040610cc387828801610a2c565b9250506060610cd487828801610a2c565b91505092959194509250565b600060208284031215610cf657610cf5610a01565b5b6000610d0484828501610a2c565b91505092915050565b610d1681610a41565b82525050565b6000602082019050610d316000830184610d0d565b92915050565b600080600060608486031215610d5057610d4f610a01565b5b6000610d5e86828701610a2c565b9350506020610d6f86828701610b02565b9250506040610d8086828701610a64565b9150509250925092565b610d9381610ad9565b82525050565b6000602082019050610dae6000830184610d8a565b92915050565b610dbd81610a0b565b82525050565b6000602082019050610dd86000830184610db4565b92915050565b60008060408385031215610df557610df4610a01565b5b6000610e0385828601610b02565b9250506020610e1485828601610a2c565b9150509250929050565b600060208284031215610e3457610e33610a01565b5b6000610e4284828501610b02565b91505092915050565b600082825260208201905092915050565b7f436861696e20696473206d75737420626520646966666572656e740000000000600082015250565b6000610e92601b83610e4b565b9150610e9d82610e5c565b602082019050919050565b60006020820190508181036000830152610ec181610e85565b9050919050565b7f556e737570706f7274656420636861696e496400000000000000000000000000600082015250565b6000610efe601383610e4b565b9150610f0982610ec8565b602082019050919050565b60006020820190508181036000830152610f2d81610ef1565b9050919050565b7f556e737570706f7274656420746f6b656e000000000000000000000000000000600082015250565b6000610f6a601183610e4b565b9150610f7582610f34565b602082019050919050565b60006020820190508181036000830152610f9981610f5d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fda578082015181840152602081019050610fbf565b60008484015250505050565b6000610ff182610fa0565b610ffb8185610fab565b935061100b818560208601610fbc565b61101481610b21565b840191505092915050565b600060c08201905081810360008301526110398189610fe6565b90506110486020830188610db4565b6110556040830187610db4565b6110626060830186610db4565b61106f6080830185610db4565b61107c60a0830184610db4565b979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110c182610a0b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036110f3576110f2611087565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061115a602683610e4b565b9150611165826110fe565b604082019050919050565b600060208201905081810360008301526111898161114d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006111c6602083610e4b565b91506111d182611190565b602082019050919050565b600060208201905081810360008301526111f5816111b9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611232601f83610e4b565b915061123d826111fc565b602082019050919050565b6000602082019050818103600083015261126181611225565b9050919050565b60008151905061127781610a15565b92915050565b60006020828403121561129357611292610a01565b5b60006112a184828501611268565b91505092915050565b60006060820190506112bf6000830186610d8a565b6112cc6020830185610d8a565b6112d96040830184610db4565b949350505050565b6000815190506112f081610a4d565b92915050565b60006020828403121561130c5761130b610a01565b5b600061131a848285016112e1565b91505092915050565b7f217472616e736665722066726f6d000000000000000000000000000000000000600082015250565b6000611359600e83610e4b565b915061136482611323565b602082019050919050565b600060208201905081810360008301526113888161134c565b9050919050565b60006040820190506113a46000830185610d8a565b6113b16020830184610db4565b9392505050565b60006113c382610a0b565b91506113ce83610a0b565b92508282039050818111156113e6576113e5611087565b5b9291505056fea2646970667358221220430dcad92294d426f04f49d7d5affb40699b9dd7a4b2d8839e398ca4b105eaf564736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000050500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000504
-----Decoded View---------------
Arg [0] : _chainIds (uint256[]): 1284
Arg [1] : _chainId (uint256): 1285
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000505
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000504
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in MOVR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.