More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
View more zero value Internal Transactions in Advanced View mode
Loading...
Loading
Contract Name:
OmnibridgeFeeManager
Compiler Version
v0.7.5+commit.eb77ed08
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at gnosisscan.io on 2022-08-04 */ // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.7.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.7.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.7.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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://diligence.consensys.net/posts/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.5.11/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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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 functionCall(target, data, "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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.7.0; /** * @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 SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } 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' // solhint-disable-next-line max-line-length 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)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @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"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: contracts/upgradeable_contracts/modules/OwnableModule.sol pragma solidity 0.7.5; /** * @title OwnableModule * @dev Common functionality for multi-token extension non-upgradeable module. */ contract OwnableModule { address public owner; /** * @dev Initializes this contract. * @param _owner address of the owner that is allowed to perform additional actions on the particular module. */ constructor(address _owner) { owner = _owner; } /** * @dev Throws if sender is not the owner of this contract. */ modifier onlyOwner { require(msg.sender == owner); _; } /** * @dev Changes the owner of this contract. * @param _newOwner address of the new owner. */ function transferOwnership(address _newOwner) external onlyOwner { owner = _newOwner; } } // File: contracts/upgradeable_contracts/modules/MediatorOwnableModule.sol pragma solidity 0.7.5; /** * @title MediatorOwnableModule * @dev Common functionality for non-upgradeable Omnibridge extension module. */ contract MediatorOwnableModule is OwnableModule { address public mediator; /** * @dev Initializes this contract. * @param _mediator address of the deployed Omnibridge extension for which this module is deployed. * @param _owner address of the owner that is allowed to perform additional actions on the particular module. */ constructor(address _mediator, address _owner) OwnableModule(_owner) { require(Address.isContract(_mediator)); mediator = _mediator; } /** * @dev Throws if sender is not the Omnibridge extension. */ modifier onlyMediator { require(msg.sender == mediator); _; } } // File: contracts/upgradeable_contracts/modules/fee_manager/OmnibridgeFeeManager.sol pragma solidity 0.7.5; /** * @title OmnibridgeFeeManager * @dev Implements the logic to distribute fees from the Omnibridge mediator contract operations. * The fees are distributed in the form of ERC20/ERC677 tokens to the list of reward addresses. */ contract OmnibridgeFeeManager is MediatorOwnableModule { using SafeMath for uint256; using SafeERC20 for IERC20; // This is not a real fee value but a relative value used to calculate the fee percentage. // 1 ether = 100% of the value. uint256 internal constant MAX_FEE = 1 ether; uint256 internal constant MAX_REWARD_ACCOUNTS = 50; bytes32 public constant HOME_TO_FOREIGN_FEE = 0x741ede137d0537e88e0ea0ff25b1f22d837903dbbee8980b4a06e8523247ee26; // keccak256(abi.encodePacked("homeToForeignFee")) bytes32 public constant FOREIGN_TO_HOME_FEE = 0x03be2b2875cb41e0e77355e802a16769bb8dfcf825061cde185c73bf94f12625; // keccak256(abi.encodePacked("foreignToHomeFee")) // mapping feeType => token address => fee percentage mapping(bytes32 => mapping(address => uint256)) internal fees; address[] internal rewardAddresses; event FeeUpdated(bytes32 feeType, address indexed token, uint256 fee); /** * @dev Stores the initial parameters of the fee manager. * @param _mediator address of the mediator contract used together with this fee manager. * @param _owner address of the contract owner. * @param _rewardAddresses list of unique initial reward addresses, between whom fees will be distributed * @param _fees array with initial fees for both bridge directions. * [ 0 = homeToForeignFee, 1 = foreignToHomeFee ] */ constructor( address _mediator, address _owner, address[] memory _rewardAddresses, uint256[2] memory _fees ) MediatorOwnableModule(_mediator, _owner) { require(_rewardAddresses.length <= MAX_REWARD_ACCOUNTS); _setFee(HOME_TO_FOREIGN_FEE, address(0), _fees[0]); _setFee(FOREIGN_TO_HOME_FEE, address(0), _fees[1]); for (uint256 i = 0; i < _rewardAddresses.length; i++) { require(_isValidAddress(_rewardAddresses[i])); for (uint256 j = 0; j < i; j++) { require(_rewardAddresses[j] != _rewardAddresses[i]); } } rewardAddresses = _rewardAddresses; } /** * @dev Throws if given fee amount is invalid. */ modifier validFee(uint256 _fee) { require(_fee < MAX_FEE); /* solcov ignore next */ _; } /** * @dev Throws if given fee type is unknown. */ modifier validFeeType(bytes32 _feeType) { require(_feeType == HOME_TO_FOREIGN_FEE || _feeType == FOREIGN_TO_HOME_FEE); /* solcov ignore next */ _; } /** * @dev Updates the value for the particular fee type. * Only the owner can call this method. * @param _feeType type of the updated fee, can be one of [HOME_TO_FOREIGN_FEE, FOREIGN_TO_HOME_FEE]. * @param _token address of the token contract for which fee should apply, 0x00..00 describes the initial fee for newly created tokens. * @param _fee new fee value, in percentage (1 ether == 10**18 == 100%). */ function setFee( bytes32 _feeType, address _token, uint256 _fee ) external validFeeType(_feeType) onlyOwner { _setFee(_feeType, _token, _fee); } /** * @dev Retrieves the value for the particular fee type. * @param _feeType type of the updated fee, can be one of [HOME_TO_FOREIGN_FEE, FOREIGN_TO_HOME_FEE]. * @param _token address of the token contract for which fee should apply, 0x00..00 describes the initial fee for newly created tokens. * @return fee value associated with the requested fee type. */ function getFee(bytes32 _feeType, address _token) public view validFeeType(_feeType) returns (uint256) { // use token-specific fee if one is registered uint256 _tokenFee = fees[_feeType][_token]; if (_tokenFee > 0) { return _tokenFee - 1; } // use default fee otherwise return fees[_feeType][address(0)] - 1; } /** * @dev Calculates the amount of fee to pay for the value of the particular fee type. * @param _feeType type of the updated fee, can be one of [HOME_TO_FOREIGN_FEE, FOREIGN_TO_HOME_FEE]. * @param _token address of the token contract for which fee should apply, 0x00..00 describes the initial fee for newly created tokens. * @param _value bridged value, for which fee should be evaluated. * @return amount of fee to be subtracted from the transferred value. */ function calculateFee( bytes32 _feeType, address _token, uint256 _value ) public view returns (uint256) { if (rewardAddresses.length == 0) { return 0; } uint256 _fee = getFee(_feeType, _token); return _value.mul(_fee).div(MAX_FEE); } /** * @dev Adds a new address to the list of accounts to receive rewards for the operations. * Only the owner can call this method. * @param _addr new reward address. */ function addRewardAddress(address _addr) external onlyOwner { require(_isValidAddress(_addr)); require(!isRewardAddress(_addr)); require(rewardAddresses.length < MAX_REWARD_ACCOUNTS); rewardAddresses.push(_addr); } /** * @dev Removes an address from the list of accounts to receive rewards for the operations. * Only the owner can call this method. * finds the element, swaps it with the last element, and then deletes it; * @param _addr to be removed. * return boolean whether the element was found and deleted */ function removeRewardAddress(address _addr) external onlyOwner { uint256 numOfAccounts = rewardAddresses.length; for (uint256 i = 0; i < numOfAccounts; i++) { if (rewardAddresses[i] == _addr) { rewardAddresses[i] = rewardAddresses[numOfAccounts - 1]; delete rewardAddresses[numOfAccounts - 1]; rewardAddresses.pop(); return; } } // If account is not found and removed, the transactions is reverted revert(); } /** * @dev Tells the number of registered reward receivers. * @return amount of addresses. */ function rewardAddressCount() external view returns (uint256) { return rewardAddresses.length; } /** * @dev Tells the list of registered reward receivers. * @return list with all registered reward receivers. */ function rewardAddressList() external view returns (address[] memory) { return rewardAddresses; } /** * @dev Tells if a given address is part of the reward address list. * @param _addr address to check if it is part of the list. * @return true if the given address is in the list */ function isRewardAddress(address _addr) public view returns (bool) { for (uint256 i = 0; i < rewardAddresses.length; i++) { if (rewardAddresses[i] == _addr) { return true; } } return false; } /** * @dev Distributes the fee proportionally between registered reward addresses. * @param _token address of the token contract for which fee should be distributed. */ function distributeFee(address _token) external onlyMediator { uint256 numOfAccounts = rewardAddresses.length; uint256 fee = IERC20(_token).balanceOf(address(this)); uint256 feePerAccount = fee.div(numOfAccounts); uint256 randomAccountIndex; uint256 diff = fee.sub(feePerAccount.mul(numOfAccounts)); if (diff > 0) { randomAccountIndex = random(numOfAccounts); } for (uint256 i = 0; i < numOfAccounts; i++) { uint256 feeToDistribute = feePerAccount; if (diff > 0 && randomAccountIndex == i) { feeToDistribute = feeToDistribute.add(diff); } IERC20(_token).safeTransfer(rewardAddresses[i], feeToDistribute); } } /** * @dev Calculates a random number based on the block number. * @param _count the max value for the random number. * @return a number between 0 and _count. */ function random(uint256 _count) internal view returns (uint256) { return uint256(blockhash(block.number.sub(1))) % _count; } /** * @dev Internal function for updating the fee value for the given fee type. * @param _feeType type of the updated fee, can be one of [HOME_TO_FOREIGN_FEE, FOREIGN_TO_HOME_FEE]. * @param _token address of the token contract for which fee should apply, 0x00..00 describes the initial fee for newly created tokens. * @param _fee new fee value, in percentage (1 ether == 10**18 == 100%). */ function _setFee( bytes32 _feeType, address _token, uint256 _fee ) internal validFee(_fee) { fees[_feeType][_token] = 1 + _fee; emit FeeUpdated(_feeType, _token, _fee); } /** * @dev Checks if a given address can be a reward receiver. * @param _addr address of the proposed reward receiver. * @return true, if address is valid. */ function _isValidAddress(address _addr) internal view returns (bool) { return _addr != address(0) && _addr != address(mediator); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_mediator","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address[]","name":"_rewardAddresses","type":"address[]"},{"internalType":"uint256[2]","name":"_fees","type":"uint256[2]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"feeType","type":"bytes32"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"inputs":[],"name":"FOREIGN_TO_HOME_FEE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HOME_TO_FOREIGN_FEE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addRewardAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_feeType","type":"bytes32"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"calculateFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"distributeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_feeType","type":"bytes32"},{"internalType":"address","name":"_token","type":"address"}],"name":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isRewardAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mediator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"removeRewardAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardAddressList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_feeType","type":"bytes32"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200130b3803806200130b833981810160405260a08110156200003757600080fd5b815160208301516040808501805191519395929483019291846401000000008211156200006357600080fd5b9083019060208201858111156200007957600080fd5b82518660208202830111640100000000821117156200009757600080fd5b82525081516020918201928201910280838360005b83811015620000c6578181015183820152602001620000ac565b505050509190910160405250600080546001600160a01b0319166001600160a01b0387161790556020908101925085915084906200010f90839062000273811b620008e017901c565b6200011957600080fd5b50600180546001600160a01b0319166001600160a01b03929092169190911790558151603210156200014a57600080fd5b6200017f7f741ede137d0537e88e0ea0ff25b1f22d837903dbbee8980b4a06e8523247ee26600083815b6020020151620002b0565b620001af7f03be2b2875cb41e0e77355e802a16769bb8dfcf825061cde185c73bf94f12625600083600162000174565b60005b82518110156200025257620001e1838281518110620001cd57fe5b60200260200101516200032e60201b60201c565b620001eb57600080fd5b60005b8181101562000248578382815181106200020457fe5b60200260200101516001600160a01b03168482815181106200022257fe5b60200260200101516001600160a01b031614156200023f57600080fd5b600101620001ee565b50600101620001b2565b508151620002689060039060208501906200035d565b5050505050620003de565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590620002a857508115155b949350505050565b80670de0b6b3a76400008110620002c657600080fd5b60008481526002602090815260408083206001600160a01b03871680855290835292819020600186019055805187815291820185905280517fb8ff7722579ab646299f4f7d3ec42f3aaa482cce1e47d6041e8ca971600455309281900390910190a250505050565b60006001600160a01b038216158015906200035757506001546001600160a01b03838116911614155b92915050565b828054828255906000526020600020908101928215620003b5579160200282015b82811115620003b557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200037e565b50620003c3929150620003c7565b5090565b5b80821115620003c35760008155600101620003c8565b610f1d80620003ee6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806371e9a8b21161008c578063e9d6c05911610066578063e9d6c05914610273578063f2fde38b146102cb578063f3ce14c2146102f1578063fab19091146102f9576100ea565b806371e9a8b21461023d5780638da5cb5b14610245578063b4be506e1461024d576100ea565b80634e281a7b116100c85780634e281a7b1461018357806368400963146101a95780636d0501f6146101e7578063710c60131461020b576100ea565b8063071664c5146100ef57806310b8075b146101295780634b1a758214610151575b600080fd5b6101156004803603602081101561010557600080fd5b50356001600160a01b0316610301565b604080519115158252519081900360200190f35b61014f6004803603602081101561013f57600080fd5b50356001600160a01b031661035e565b005b61014f6004803603606081101561016757600080fd5b508035906001600160a01b036020820135169060400135610488565b61014f6004803603602081101561019957600080fd5b50356001600160a01b0316610507565b6101d5600480360360408110156101bf57600080fd5b50803590602001356001600160a01b031661063f565b60408051918252519081900360200190f35b6101ef6106f5565b604080516001600160a01b039092168252519081900360200190f35b6101d56004803603606081101561022157600080fd5b508035906001600160a01b036020820135169060400135610704565b6101d561074b565b6101ef610751565b61014f6004803603602081101561026357600080fd5b50356001600160a01b0316610760565b61027b6107fd565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156102b757818101518382015260200161029f565b505050509050019250505060405180910390f35b61014f600480360360208110156102e157600080fd5b50356001600160a01b031661085f565b6101d5610898565b6101d56108bc565b6000805b60035481101561035357826001600160a01b03166003828154811061032657fe5b6000918252602090912001546001600160a01b0316141561034b576001915050610359565b600101610305565b50600090505b919050565b6000546001600160a01b0316331461037557600080fd5b60035460005b8181101561047f57826001600160a01b03166003828154811061039a57fe5b6000918252602090912001546001600160a01b0316141561047757600360018303815481106103c557fe5b600091825260209091200154600380546001600160a01b0390921691839081106103eb57fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506003600183038154811061042957fe5b600091825260209091200180546001600160a01b0319169055600380548061044d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055506104859050565b60010161037b565b50600080fd5b50565b827f741ede137d0537e88e0ea0ff25b1f22d837903dbbee8980b4a06e8523247ee268114806104d657507f03be2b2875cb41e0e77355e802a16769bb8dfcf825061cde185c73bf94f1262581145b6104df57600080fd5b6000546001600160a01b031633146104f657600080fd5b61050184848461091c565b50505050565b6001546001600160a01b0316331461051e57600080fd5b600354604080516370a0823160e01b815230600482015290516000916001600160a01b038516916370a0823191602480820192602092909190829003018186803b15801561056b57600080fd5b505afa15801561057f573d6000803e3d6000fd5b505050506040513d602081101561059557600080fd5b5051905060006105a58284610999565b90506000806105be6105b784876109e4565b8590610a3d565b905080156105d2576105cf85610a7f565b91505b60005b85811015610636578382158015906105ec57508184145b156105fe576105fb8184610a9c565b90505b61062d6003838154811061060e57fe5b6000918252602090912001546001600160a01b038a8116911683610af6565b506001016105d5565b50505050505050565b6000827f741ede137d0537e88e0ea0ff25b1f22d837903dbbee8980b4a06e8523247ee2681148061068f57507f03be2b2875cb41e0e77355e802a16769bb8dfcf825061cde185c73bf94f1262581145b61069857600080fd5b60008481526002602090815260408083206001600160a01b038716845290915290205480156106cc576000190191506106ee565b5060008481526002602090815260408083208380529091529020546000190191505b5092915050565b6001546001600160a01b031681565b60035460009061071657506000610744565b6000610722858561063f565b9050610740670de0b6b3a764000061073a85846109e4565b90610999565b9150505b9392505050565b60035490565b6000546001600160a01b031681565b6000546001600160a01b0316331461077757600080fd5b61078081610b4d565b61078957600080fd5b61079281610301565b1561079c57600080fd5b6003546032116107ab57600080fd5b600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380548060200260200160405190810160405280929190818152602001828054801561085557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610837575b5050505050905090565b6000546001600160a01b0316331461087657600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b7f03be2b2875cb41e0e77355e802a16769bb8dfcf825061cde185c73bf94f1262581565b7f741ede137d0537e88e0ea0ff25b1f22d837903dbbee8980b4a06e8523247ee2681565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061091457508115155b949350505050565b80670de0b6b3a7640000811061093157600080fd5b60008481526002602090815260408083206001600160a01b03871680855290835292819020600186019055805187815291820185905280517fb8ff7722579ab646299f4f7d3ec42f3aaa482cce1e47d6041e8ca971600455309281900390910190a250505050565b60006109db83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610b78565b90505b92915050565b6000826109f3575060006109de565b82820282848281610a0057fe5b04146109db5760405162461bcd60e51b8152600401808060200182810382526021815260200180610e9d6021913960400191505060405180910390fd5b60006109db83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c1a565b600081610a8d436001610a3d565b4081610a9557fe5b0692915050565b6000828201838110156109db576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b48908490610c74565b505050565b60006001600160a01b038216158015906109de5750506001546001600160a01b039081169116141590565b60008183610c045760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bc9578181015183820152602001610bb1565b50505050905090810190601f168015610bf65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581610c1057fe5b0495945050505050565b60008184841115610c6c5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610bc9578181015183820152602001610bb1565b505050900390565b6060610cc9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610d259092919063ffffffff16565b805190915015610b4857808060200190516020811015610ce857600080fd5b5051610b485760405162461bcd60e51b815260040180806020018281038252602a815260200180610ebe602a913960400191505060405180910390fd5b606061091484846000856060610d3a856108e0565b610d8b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310610dca5780518252601f199092019160209182019101610dab565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610e2c576040519150601f19603f3d011682016040523d82523d6000602084013e610e31565b606091505b50915091508115610e455791506109149050565b805115610e555780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315610bc9578181015183820152602001610bb156fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220fff5311570da1001c3c11ca6e5113ddede052e1bd7ac84ae66045962a6a5e59f64736f6c6343000705003300000000000000000000000059447362798334d3485c64d1e4870fde2ddc0d75000000000000000000000000ce2b2dd016d13fb2d202405827f134dc85efb5ca00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087533bfd390c6d11afd8df1a8c095657e0eeed0d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806371e9a8b21161008c578063e9d6c05911610066578063e9d6c05914610273578063f2fde38b146102cb578063f3ce14c2146102f1578063fab19091146102f9576100ea565b806371e9a8b21461023d5780638da5cb5b14610245578063b4be506e1461024d576100ea565b80634e281a7b116100c85780634e281a7b1461018357806368400963146101a95780636d0501f6146101e7578063710c60131461020b576100ea565b8063071664c5146100ef57806310b8075b146101295780634b1a758214610151575b600080fd5b6101156004803603602081101561010557600080fd5b50356001600160a01b0316610301565b604080519115158252519081900360200190f35b61014f6004803603602081101561013f57600080fd5b50356001600160a01b031661035e565b005b61014f6004803603606081101561016757600080fd5b508035906001600160a01b036020820135169060400135610488565b61014f6004803603602081101561019957600080fd5b50356001600160a01b0316610507565b6101d5600480360360408110156101bf57600080fd5b50803590602001356001600160a01b031661063f565b60408051918252519081900360200190f35b6101ef6106f5565b604080516001600160a01b039092168252519081900360200190f35b6101d56004803603606081101561022157600080fd5b508035906001600160a01b036020820135169060400135610704565b6101d561074b565b6101ef610751565b61014f6004803603602081101561026357600080fd5b50356001600160a01b0316610760565b61027b6107fd565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156102b757818101518382015260200161029f565b505050509050019250505060405180910390f35b61014f600480360360208110156102e157600080fd5b50356001600160a01b031661085f565b6101d5610898565b6101d56108bc565b6000805b60035481101561035357826001600160a01b03166003828154811061032657fe5b6000918252602090912001546001600160a01b0316141561034b576001915050610359565b600101610305565b50600090505b919050565b6000546001600160a01b0316331461037557600080fd5b60035460005b8181101561047f57826001600160a01b03166003828154811061039a57fe5b6000918252602090912001546001600160a01b0316141561047757600360018303815481106103c557fe5b600091825260209091200154600380546001600160a01b0390921691839081106103eb57fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506003600183038154811061042957fe5b600091825260209091200180546001600160a01b0319169055600380548061044d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055506104859050565b60010161037b565b50600080fd5b50565b827f741ede137d0537e88e0ea0ff25b1f22d837903dbbee8980b4a06e8523247ee268114806104d657507f03be2b2875cb41e0e77355e802a16769bb8dfcf825061cde185c73bf94f1262581145b6104df57600080fd5b6000546001600160a01b031633146104f657600080fd5b61050184848461091c565b50505050565b6001546001600160a01b0316331461051e57600080fd5b600354604080516370a0823160e01b815230600482015290516000916001600160a01b038516916370a0823191602480820192602092909190829003018186803b15801561056b57600080fd5b505afa15801561057f573d6000803e3d6000fd5b505050506040513d602081101561059557600080fd5b5051905060006105a58284610999565b90506000806105be6105b784876109e4565b8590610a3d565b905080156105d2576105cf85610a7f565b91505b60005b85811015610636578382158015906105ec57508184145b156105fe576105fb8184610a9c565b90505b61062d6003838154811061060e57fe5b6000918252602090912001546001600160a01b038a8116911683610af6565b506001016105d5565b50505050505050565b6000827f741ede137d0537e88e0ea0ff25b1f22d837903dbbee8980b4a06e8523247ee2681148061068f57507f03be2b2875cb41e0e77355e802a16769bb8dfcf825061cde185c73bf94f1262581145b61069857600080fd5b60008481526002602090815260408083206001600160a01b038716845290915290205480156106cc576000190191506106ee565b5060008481526002602090815260408083208380529091529020546000190191505b5092915050565b6001546001600160a01b031681565b60035460009061071657506000610744565b6000610722858561063f565b9050610740670de0b6b3a764000061073a85846109e4565b90610999565b9150505b9392505050565b60035490565b6000546001600160a01b031681565b6000546001600160a01b0316331461077757600080fd5b61078081610b4d565b61078957600080fd5b61079281610301565b1561079c57600080fd5b6003546032116107ab57600080fd5b600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380548060200260200160405190810160405280929190818152602001828054801561085557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610837575b5050505050905090565b6000546001600160a01b0316331461087657600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b7f03be2b2875cb41e0e77355e802a16769bb8dfcf825061cde185c73bf94f1262581565b7f741ede137d0537e88e0ea0ff25b1f22d837903dbbee8980b4a06e8523247ee2681565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061091457508115155b949350505050565b80670de0b6b3a7640000811061093157600080fd5b60008481526002602090815260408083206001600160a01b03871680855290835292819020600186019055805187815291820185905280517fb8ff7722579ab646299f4f7d3ec42f3aaa482cce1e47d6041e8ca971600455309281900390910190a250505050565b60006109db83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610b78565b90505b92915050565b6000826109f3575060006109de565b82820282848281610a0057fe5b04146109db5760405162461bcd60e51b8152600401808060200182810382526021815260200180610e9d6021913960400191505060405180910390fd5b60006109db83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c1a565b600081610a8d436001610a3d565b4081610a9557fe5b0692915050565b6000828201838110156109db576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b48908490610c74565b505050565b60006001600160a01b038216158015906109de5750506001546001600160a01b039081169116141590565b60008183610c045760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bc9578181015183820152602001610bb1565b50505050905090810190601f168015610bf65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581610c1057fe5b0495945050505050565b60008184841115610c6c5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610bc9578181015183820152602001610bb1565b505050900390565b6060610cc9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610d259092919063ffffffff16565b805190915015610b4857808060200190516020811015610ce857600080fd5b5051610b485760405162461bcd60e51b815260040180806020018281038252602a815260200180610ebe602a913960400191505060405180910390fd5b606061091484846000856060610d3a856108e0565b610d8b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310610dca5780518252601f199092019160209182019101610dab565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610e2c576040519150601f19603f3d011682016040523d82523d6000602084013e610e31565b606091505b50915091508115610e455791506109149050565b805115610e555780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315610bc9578181015183820152602001610bb156fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220fff5311570da1001c3c11ca6e5113ddede052e1bd7ac84ae66045962a6a5e59f64736f6c63430007050033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000059447362798334d3485c64d1e4870fde2ddc0d75000000000000000000000000ce2b2dd016d13fb2d202405827f134dc85efb5ca00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087533bfd390c6d11afd8df1a8c095657e0eeed0d
-----Decoded View---------------
Arg [0] : _mediator (address): 0x59447362798334d3485c64D1e4870Fde2DDC0d75
Arg [1] : _owner (address): 0xcE2B2Dd016d13Fb2D202405827f134dC85eFb5cA
Arg [2] : _rewardAddresses (address[]): 0x87533bfd390C6d11aFD8dF1A8c095657E0eeeD0d
Arg [3] : _fees (uint256[2]): 1000000000000000,0
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000059447362798334d3485c64d1e4870fde2ddc0d75
Arg [1] : 000000000000000000000000ce2b2dd016d13fb2d202405827f134dc85efb5ca
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000087533bfd390c6d11afd8df1a8c095657e0eeed0d
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.