Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 11 from a total of 11 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Fee | 15801069 | 822 days ago | IN | 0 ETH | 0.00051192 | ||||
Transfer Ownersh... | 15800816 | 822 days ago | IN | 0 ETH | 0.00127758 | ||||
Set Gaslimits | 15651693 | 843 days ago | IN | 0 ETH | 0.00017814 | ||||
Set Gaslimits | 15651691 | 843 days ago | IN | 0 ETH | 0.00028 | ||||
Set Gaslimits | 15651685 | 843 days ago | IN | 0 ETH | 0.00030026 | ||||
Set Gaslimits | 15651683 | 843 days ago | IN | 0 ETH | 0.00028375 | ||||
Set Gaslimits | 15651677 | 843 days ago | IN | 0 ETH | 0.00019117 | ||||
Set Gaslimits | 15651675 | 843 days ago | IN | 0 ETH | 0.00030231 | ||||
Set Create Proxy... | 15651672 | 843 days ago | IN | 0 ETH | 0.00028642 | ||||
Set Receiver | 15651661 | 843 days ago | IN | 0 ETH | 0.00029558 | ||||
Set Vault | 15651658 | 843 days ago | IN | 0 ETH | 0.00028296 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15801069 | 822 days ago | 0.13554495 ETH | ||||
15716892 | 834 days ago | 0.00211913 ETH | ||||
15716892 | 834 days ago | 0.0000486 ETH | ||||
15716892 | 834 days ago | 0.01034219 ETH | ||||
15716443 | 834 days ago | 0.00066911 ETH | ||||
15716443 | 834 days ago | 0.0000486 ETH | ||||
15716443 | 834 days ago | 0.00304113 ETH | ||||
15716310 | 834 days ago | 0.00037225 ETH | ||||
15716310 | 834 days ago | 0.0000486 ETH | ||||
15716310 | 834 days ago | 0.00254304 ETH | ||||
15716169 | 834 days ago | 0.00046795 ETH | ||||
15716169 | 834 days ago | 0.0000486 ETH | ||||
15716169 | 834 days ago | 0.00208435 ETH | ||||
15715532 | 834 days ago | 0.00243831 ETH | ||||
15715532 | 834 days ago | 0.0000486 ETH | ||||
15715532 | 834 days ago | 0.00960867 ETH | ||||
15715443 | 834 days ago | 0.00333812 ETH | ||||
15715443 | 834 days ago | 0.0000486 ETH | ||||
15715443 | 834 days ago | 0.02127207 ETH | ||||
15715221 | 834 days ago | 0.00414881 ETH | ||||
15715221 | 834 days ago | 0.0000486 ETH | ||||
15715221 | 834 days ago | 0.01387127 ETH | ||||
15715004 | 834 days ago | 0.00813297 ETH | ||||
15715004 | 834 days ago | 0.0000486 ETH | ||||
15715004 | 834 days ago | 0.02736036 ETH |
Loading...
Loading
Contract Name:
CrossFarmingSender
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 99999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "sgn-v2-contracts/contracts/message/framework/MessageReceiverApp.sol"; import "sgn-v2-contracts/contracts/message/interfaces/IMessageBus.sol"; import {AggregatorV3Interface} from "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; import "./libraries/DataTypes.sol"; import "./interfaces/IVault.sol"; /// @title A cross chain sender contract for send message to receiver contract on BSC chain. // It's for users from other EVM chain can participate Pancakeswap MCV2 farm pool CAKE reward in BSC chain. contract CrossFarmingSender is MessageReceiverApp { using SafeERC20 for IERC20; // oracle data feeds enum Feeds { BNBUSD, ETHUSD } enum Chains { EVM, BSC } // cross farming vault contract on EVM chain. // Only Vault contract can send farming message to receiver contract. address public Vault; // cross farming receiver contract on BSC chain. address public CROSS_FARMING_RECEIVER; // create proxy contract on dest chain(BSC) gas limit. uint256 public createProxyGasLimit; // gas fee = gaslimit * gasprice, different EVM chain transaction have different average gas price // compensation rate in the range [0.1,10], for converting gas fee from dest chain to source chain. // for example, source chain gas price is 1/2 dest chain gas price, so the user paid for dest chain transaction // fee in sourcechain should base on 2x gas fee in source chain. uint256 public compensationRate; // Gas fee compensation rate precision.(100%) uint256 public constant COMPENSATION_PRECISION = 1e5; // Max compensation rate(1000%) uint256 public constant MAX_COMPENSATION_RATE = 10e5; // Minimize compensation rate(10%) uint256 public constant MIN_COMPENSATION_RATE = 1e4; // Small BNB change for the new user in BSC chain. uint256 public BNB_CHANGE = 0.005 ether; // ETH/BNB price exchange rate precison uint256 public constant EXCHANGE_RATE_PRECISION = 1e12; // BSC chain ID (Dest chainId) uint64 public immutable BSC_CHAIN_ID; // oracle data feeds mapping(Feeds => AggregatorV3Interface) public oracle; // oracle data feeds update time buffer mapping(Feeds => uint256) public oracleUpdateBuffer; // user pool nonce info(account => (pid => nonce)) mapping(address => mapping(uint256 => uint64)) public nonces; // whether user send 1st cross-chain tx. mapping(address => bool) public is1st; // different message(operation) type have different estimate gas limit on EVM chain. mapping(Chains => mapping(DataTypes.MessageTypes => uint256)) public gaslimits; event NewOracle(address oracle); event VaultUpdated(address vault); event ReceiverUpdated(address receiver); event BnbChangeUpdated(uint256 amount); event CompensationRateUpdated(uint256 rate); event FeeClaimed(uint256 amount, bool success); event CreateProxyGasLimitUpdated(uint256 gaslimit); event OracleBufferUpdated(Feeds feed, uint256 oracleUpdateBuffer); event GasLimitUpdated(Chains chain, DataTypes.MessageTypes msgtype, uint256 gaslimit); event FarmingMessageReceived( address sender, uint64 srcChainId, uint64 nonce, DataTypes.MessageTypes msgType, address acount, uint256 pid, uint256 amount ); constructor( address _messageBus, address _oracle_bnb, address _oracle_eth, uint256 _oracle_bnb_update_buffer, uint256 _oracle_eth_update_buffer, uint64 _chainId ) { // Dummy check oracle AggregatorV3Interface(_oracle_bnb).latestRoundData(); AggregatorV3Interface(_oracle_eth).latestRoundData(); messageBus = _messageBus; oracle[Feeds.BNBUSD] = AggregatorV3Interface(_oracle_bnb); oracle[Feeds.ETHUSD] = AggregatorV3Interface(_oracle_eth); oracleUpdateBuffer[Feeds.BNBUSD] = _oracle_bnb_update_buffer; oracleUpdateBuffer[Feeds.ETHUSD] = _oracle_eth_update_buffer; // initially, compensation rate is 100% compensationRate = COMPENSATION_PRECISION; BSC_CHAIN_ID = _chainId; } modifier onlyVault() { require(msg.sender == Vault, "Only vault contract"); _; } /** * @notice Only called by Vault contract. * @param _message Encoded CrossFarmingRequest message bytes. */ function sendFarmMessage(bytes calldata _message) external payable onlyVault { // decode the message DataTypes.CrossFarmRequest memory request = abi.decode((_message), (DataTypes.CrossFarmRequest)); // ETH/USD price int256 ethPrice = _getPriceFromOracle(Feeds.ETHUSD); // BNB/USD price int256 bnbPrice = _getPriceFromOracle(Feeds.BNBUSD); require(bnbPrice > 0 && ethPrice > 0, "Abnormal prices"); uint256 exchangeRate = (uint256(bnbPrice) * EXCHANGE_RATE_PRECISION) / uint256(ethPrice); // msgbus fee price by native token uint256 msgBusFee = IMessageBus(messageBus).calcFee(_message); uint256 totalFee = msgBusFee + // destTxFee (tx.gasprice * estimateGaslimit(Chains.BSC, request.account, request.msgType) * exchangeRate * compensationRate) / (EXCHANGE_RATE_PRECISION * COMPENSATION_PRECISION); // BNB change fee for new BNB user if (!is1st[request.account]) { totalFee += (BNB_CHANGE * exchangeRate) / EXCHANGE_RATE_PRECISION; is1st[request.account] = true; } if (request.msgType >= DataTypes.MessageTypes.Withdraw) { totalFee += (// executor call fee(Ack call on this contract 'executeMessage' interface) tx.gasprice * estimateGaslimit(Chains.EVM, request.account, request.msgType) + // withdraw ack msg messageBus fee on BSC chain ((msgBusFee * exchangeRate) / EXCHANGE_RATE_PRECISION)); } require(msg.value >= totalFee, "Insufficient fee"); IMessageBus(messageBus).sendMessage{value: msgBusFee}(request.receiver, request.dstChainId, _message); // increase nonce ++nonces[request.account][request.pid]; if (msg.value > totalFee) { //send back to the user payable(request.account).transfer(msg.value - totalFee); } } /** * @notice Only called by MessageBus * @param _sender The address of the source app contract * @param _srcChainId The source chain ID where the transfer is originated from * @param _message Encoded CrossFarmingRequest message bytes. */ function executeMessage( address _sender, uint64 _srcChainId, bytes calldata _message, address // executor who called the MessageBus execution function ) external payable override onlyMessageBus returns (ExecutionStatus) { require(_srcChainId == BSC_CHAIN_ID && _sender == CROSS_FARMING_RECEIVER, "Invalid receiver contract"); // decode the message DataTypes.CrossFarmRequest memory request = abi.decode((_message), (DataTypes.CrossFarmRequest)); if (request.msgType == DataTypes.MessageTypes.Withdraw) { IVault(Vault).ackWithdraw(request.account, request.pid, request.amount, request.nonce); } else if (request.msgType == DataTypes.MessageTypes.EmergencyWithdraw) { IVault(Vault).ackEmergencyWithdraw(request.account, request.pid, request.nonce); } emit FarmingMessageReceived( _sender, _srcChainId, request.nonce, request.msgType, request.account, request.pid, request.amount ); return ExecutionStatus.Success; } /// set cross farming vault contract on source chain. /// @notice only be set once. function setVault(address _vault) external onlyOwner { require(_vault != address(0), "Vault contract can't be zero address"); require(Vault == address(0), "Already set vault contract"); Vault = _vault; emit VaultUpdated(Vault); } /// set cross farming receiver contract on dest chain(BSC chain). /// @notice only be set once. function setReceiver(address _receiver) external onlyOwner { require(_receiver != address(0), "Receiver contract can't be zero address"); require(CROSS_FARMING_RECEIVER == address(0), "Already set receiver contract"); CROSS_FARMING_RECEIVER = _receiver; emit ReceiverUpdated(_receiver); } /// set oracle data feeds. function setOracle(Feeds _feed, address _oracle) external onlyOwner { require(_oracle != address(0), "Oracle feed can't be zero address"); oracle[_feed] = AggregatorV3Interface(_oracle); // Dummy check to make sure the interface implements this function properly oracle[_feed].latestRoundData(); emit NewOracle(_oracle); } /// set oracle update buffer, different oracle feeds have different update frequency, /// so the buffer should also change accordingly function setOracleUpdateBuffer(Feeds _feed, uint256 _oracleUpdateBuffer) external onlyOwner { require(_oracleUpdateBuffer > 0, "oracle update time buffer should > 0"); oracleUpdateBuffer[_feed] = _oracleUpdateBuffer; emit OracleBufferUpdated(_feed, _oracleUpdateBuffer); } /// set gas cost for specific operation in different chain. function setGaslimits( Chains _chain, DataTypes.MessageTypes _type, uint256 _gaslimit ) external onlyOwner { require(_gaslimit > 0, "Gaslimit should be > zero"); gaslimits[_chain][_type] = _gaslimit; emit GasLimitUpdated(_chain, _type, _gaslimit); } /// @notice gas price and gas limit is different in differenct EVM chain, compensation rate /// is for hedging the risk of this difference caused the executor signer lose gas fee in execution function setCompensationRate(uint256 _rate) external onlyOwner { require(_rate >= MIN_COMPENSATION_RATE && _rate <= MAX_COMPENSATION_RATE, "Invalid compensation rate"); compensationRate = _rate; emit CompensationRateUpdated(compensationRate); } /// set BNB change amount for new BSC chain user. function setBnbChange(uint256 _change) external onlyOwner { require(_change > 0, "BNB change for new user should greater than zero"); BNB_CHANGE = _change; emit BnbChangeUpdated(_change); } /// create farming-proxy contract gas limit cost in BSC chain. function setCreateProxyGasLimit(uint256 _gaslimit) external onlyOwner { createProxyGasLimit = _gaslimit; emit CreateProxyGasLimitUpdated(_gaslimit); } /// estimate different operation consume gas limit in BSC chain. function estimateGaslimit( Chains _chain, address _account, DataTypes.MessageTypes _msgType ) public view returns (uint256 gaslimit) { gaslimit = gaslimits[_chain][_msgType]; // 1st cross-chain tx should add create proxy gaslimit. if (!is1st[_account] && _chain == Chains.BSC) gaslimit += createProxyGasLimit; } /// transfer any ERC20 token of current contract to owner. function drainToken(address _token, uint256 _amount) external onlyOwner { IERC20(_token).safeTransfer(msg.sender, _amount); } /// send cross-chain sender contract all gas token to owner function claimFee(uint256 _gas) external onlyOwner { require(_gas >= 2300, "claimFee gaslimit should exceed 2300 "); uint256 amount = address(this).balance; (bool success, ) = msg.sender.call{value: amount, gas: _gas}(""); emit FeeClaimed(amount, success); } /// @notice Get latest oracle price from chainlink. function _getPriceFromOracle(Feeds _feed) internal view returns (int256) { (, int256 price, , uint256 timestamp, ) = oracle[_feed].latestRoundData(); require(timestamp + oracleUpdateBuffer[_feed] >= block.timestamp, "out of date oracle data"); return price; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; library DataTypes { enum MessageTypes { Deposit, Withdraw, EmergencyWithdraw } struct CrossFarmRequest { address receiver; uint64 dstChainId; uint64 nonce; address account; uint256 pid; uint256 amount; MessageTypes msgType; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; interface IVault { function ackWithdraw( address _user, uint256 _pid, uint256 _amount, uint64 _nonce ) external; function ackEmergencyWithdraw( address _user, uint256 _pid, uint64 _nonce ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface AggregatorV3Interface { function decimals() external view returns ( uint8 ); function description() external view returns ( string memory ); function version() external view returns ( uint256 ); // getRoundData and latestRoundData should both raise "No data present" // if they do not have data to report, instead of returning unset values // which could be misinterpreted as actual reported values. function getRoundData( uint80 _roundId ) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// 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: GPL-3.0-only pragma solidity >=0.8.0; import "../libraries/MsgDataTypes.sol"; interface IMessageBus { function liquidityBridge() external view returns (address); function pegBridge() external view returns (address); function pegBridgeV2() external view returns (address); function pegVault() external view returns (address); function pegVaultV2() external view returns (address); /** * @notice Calculates the required fee for the message. * @param _message Arbitrary message bytes to be decoded by the destination app contract. @ @return The required fee. */ function calcFee(bytes calldata _message) external view returns (uint256); /** * @notice Sends a message to an app on another chain via MessageBus without an associated transfer. * A fee is charged in the native gas token. * @param _receiver The address of the destination app contract. * @param _dstChainId The destination chain ID. * @param _message Arbitrary message bytes to be decoded by the destination app contract. */ function sendMessage( address _receiver, uint256 _dstChainId, bytes calldata _message ) external payable; /** * @notice Sends a message associated with a transfer to an app on another chain via MessageBus without an associated transfer. * A fee is charged in the native token. * @param _receiver The address of the destination app contract. * @param _dstChainId The destination chain ID. * @param _srcBridge The bridge contract to send the transfer with. * @param _srcTransferId The transfer ID. * @param _dstChainId The destination chain ID. * @param _message Arbitrary message bytes to be decoded by the destination app contract. */ function sendMessageWithTransfer( address _receiver, uint256 _dstChainId, address _srcBridge, bytes32 _srcTransferId, bytes calldata _message ) external payable; /** * @notice Withdraws message fee in the form of native gas token. * @param _account The address receiving the fee. * @param _cumulativeFee The cumulative fee credited to the account. Tracked by SGN. * @param _sigs The list of signatures sorted by signing addresses in ascending order. A withdrawal must be * signed-off by +2/3 of the sigsVerifier's current signing power to be delivered. * @param _signers The sorted list of signers. * @param _powers The signing powers of the signers. */ function withdrawFee( address _account, uint256 _cumulativeFee, bytes[] calldata _sigs, address[] calldata _signers, uint256[] calldata _powers ) external; /** * @notice Execute a message with a successful transfer. * @param _message Arbitrary message bytes originated from and encoded by the source app contract * @param _transfer The transfer info. * @param _sigs The list of signatures sorted by signing addresses in ascending order. A relay must be signed-off by * +2/3 of the sigsVerifier's current signing power to be delivered. * @param _signers The sorted list of signers. * @param _powers The signing powers of the signers. */ function executeMessageWithTransfer( bytes calldata _message, MsgDataTypes.TransferInfo calldata _transfer, bytes[] calldata _sigs, address[] calldata _signers, uint256[] calldata _powers ) external payable; /** * @notice Execute a message with a refunded transfer. * @param _message Arbitrary message bytes originated from and encoded by the source app contract * @param _transfer The transfer info. * @param _sigs The list of signatures sorted by signing addresses in ascending order. A relay must be signed-off by * +2/3 of the sigsVerifier's current signing power to be delivered. * @param _signers The sorted list of signers. * @param _powers The signing powers of the signers. */ function executeMessageWithTransferRefund( bytes calldata _message, // the same message associated with the original transfer MsgDataTypes.TransferInfo calldata _transfer, bytes[] calldata _sigs, address[] calldata _signers, uint256[] calldata _powers ) external payable; /** * @notice Execute a message not associated with a transfer. * @param _message Arbitrary message bytes originated from and encoded by the source app contract * @param _sigs The list of signatures sorted by signing addresses in ascending order. A relay must be signed-off by * +2/3 of the sigsVerifier's current signing power to be delivered. * @param _signers The sorted list of signers. * @param _powers The signing powers of the signers. */ function executeMessage( bytes calldata _message, MsgDataTypes.RouteInfo calldata _route, bytes[] calldata _sigs, address[] calldata _signers, uint256[] calldata _powers ) external payable; }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.9; import "../interfaces/IMessageReceiverApp.sol"; import "./MessageBusAddress.sol"; abstract contract MessageReceiverApp is IMessageReceiverApp, MessageBusAddress { modifier onlyMessageBus() { require(msg.sender == messageBus, "caller is not message bus"); _; } /** * @notice Called by MessageBus (MessageBusReceiver) if the process is originated from MessageBus (MessageBusSender)'s * sendMessageWithTransfer it is only called when the tokens are checked to be arrived at this contract's address. * @param _sender The address of the source app contract * @param _token The address of the token that comes out of the bridge * @param _amount The amount of tokens received at this contract through the cross-chain bridge. * the contract that implements this contract can safely assume that the tokens will arrive before this * function is called. * @param _srcChainId The source chain ID where the transfer is originated from * @param _message Arbitrary message bytes originated from and encoded by the source app contract * @param _executor Address who called the MessageBus execution function */ function executeMessageWithTransfer( address _sender, address _token, uint256 _amount, uint64 _srcChainId, bytes calldata _message, address _executor ) external payable virtual override onlyMessageBus returns (ExecutionStatus) {} /** * @notice Only called by MessageBus (MessageBusReceiver) if * 1. executeMessageWithTransfer reverts, or * 2. executeMessageWithTransfer returns ExecutionStatus.Fail * @param _sender The address of the source app contract * @param _token The address of the token that comes out of the bridge * @param _amount The amount of tokens received at this contract through the cross-chain bridge. * the contract that implements this contract can safely assume that the tokens will arrive before this * function is called. * @param _srcChainId The source chain ID where the transfer is originated from * @param _message Arbitrary message bytes originated from and encoded by the source app contract * @param _executor Address who called the MessageBus execution function */ function executeMessageWithTransferFallback( address _sender, address _token, uint256 _amount, uint64 _srcChainId, bytes calldata _message, address _executor ) external payable virtual override onlyMessageBus returns (ExecutionStatus) {} /** * @notice Called by MessageBus (MessageBusReceiver) to process refund of the original transfer from this contract * @param _token The token address of the original transfer * @param _amount The amount of the original transfer * @param _message The same message associated with the original transfer * @param _executor Address who called the MessageBus execution function */ function executeMessageWithTransferRefund( address _token, uint256 _amount, bytes calldata _message, address _executor ) external payable virtual override onlyMessageBus returns (ExecutionStatus) {} /** * @notice Called by MessageBus (MessageBusReceiver) * @param _sender The address of the source app contract * @param _srcChainId The source chain ID where the transfer is originated from * @param _message Arbitrary message bytes originated from and encoded by the source app contract * @param _executor Address who called the MessageBus execution function */ function executeMessage( address _sender, uint64 _srcChainId, bytes calldata _message, address _executor ) external payable virtual override onlyMessageBus returns (ExecutionStatus) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://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"); (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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.9; library MsgDataTypes { // bridge operation type at the sender side (src chain) enum BridgeSendType { Null, Liquidity, PegDeposit, PegBurn, PegV2Deposit, PegV2Burn, PegV2BurnFrom } // bridge operation type at the receiver side (dst chain) enum TransferType { Null, LqRelay, // relay through liquidity bridge LqWithdraw, // withdraw from liquidity bridge PegMint, // mint through pegged token bridge PegWithdraw, // withdraw from original token vault PegV2Mint, // mint through pegged token bridge v2 PegV2Withdraw // withdraw from original token vault v2 } enum MsgType { MessageWithTransfer, MessageOnly } enum TxStatus { Null, Success, Fail, Fallback, Pending // transient state within a transaction } struct TransferInfo { TransferType t; address sender; address receiver; address token; uint256 amount; uint64 wdseq; // only needed for LqWithdraw (refund) uint64 srcChainId; bytes32 refId; bytes32 srcTxHash; // src chain msg tx hash } struct RouteInfo { address sender; address receiver; uint64 srcChainId; bytes32 srcTxHash; // src chain msg tx hash } struct MsgWithTransferExecutionParams { bytes message; TransferInfo transfer; bytes[] sigs; address[] signers; uint256[] powers; } struct BridgeTransferParams { bytes request; bytes[] sigs; address[] signers; uint256[] powers; } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity >=0.8.0; interface IMessageReceiverApp { enum ExecutionStatus { Fail, // execution failed, finalized Success, // execution succeeded, finalized Retry // execution rejected, can retry later } /** * @notice Called by MessageBus (MessageBusReceiver) if the process is originated from MessageBus (MessageBusSender)'s * sendMessageWithTransfer it is only called when the tokens are checked to be arrived at this contract's address. * @param _sender The address of the source app contract * @param _token The address of the token that comes out of the bridge * @param _amount The amount of tokens received at this contract through the cross-chain bridge. * the contract that implements this contract can safely assume that the tokens will arrive before this * function is called. * @param _srcChainId The source chain ID where the transfer is originated from * @param _message Arbitrary message bytes originated from and encoded by the source app contract * @param _executor Address who called the MessageBus execution function */ function executeMessageWithTransfer( address _sender, address _token, uint256 _amount, uint64 _srcChainId, bytes calldata _message, address _executor ) external payable returns (ExecutionStatus); /** * @notice Only called by MessageBus (MessageBusReceiver) if * 1. executeMessageWithTransfer reverts, or * 2. executeMessageWithTransfer returns ExecutionStatus.Fail * @param _sender The address of the source app contract * @param _token The address of the token that comes out of the bridge * @param _amount The amount of tokens received at this contract through the cross-chain bridge. * the contract that implements this contract can safely assume that the tokens will arrive before this * function is called. * @param _srcChainId The source chain ID where the transfer is originated from * @param _message Arbitrary message bytes originated from and encoded by the source app contract * @param _executor Address who called the MessageBus execution function */ function executeMessageWithTransferFallback( address _sender, address _token, uint256 _amount, uint64 _srcChainId, bytes calldata _message, address _executor ) external payable returns (ExecutionStatus); /** * @notice Called by MessageBus (MessageBusReceiver) to process refund of the original transfer from this contract * @param _token The token address of the original transfer * @param _amount The amount of the original transfer * @param _message The same message associated with the original transfer * @param _executor Address who called the MessageBus execution function */ function executeMessageWithTransferRefund( address _token, uint256 _amount, bytes calldata _message, address _executor ) external payable returns (ExecutionStatus); /** * @notice Called by MessageBus (MessageBusReceiver) * @param _sender The address of the source app contract * @param _srcChainId The source chain ID where the transfer is originated from * @param _message Arbitrary message bytes originated from and encoded by the source app contract * @param _executor Address who called the MessageBus execution function */ function executeMessage( address _sender, uint64 _srcChainId, bytes calldata _message, address _executor ) external payable returns (ExecutionStatus); }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.9; import "../../safeguard/Ownable.sol"; abstract contract MessageBusAddress is Ownable { event MessageBusUpdated(address messageBus); address public messageBus; function setMessageBus(address _messageBus) public onlyOwner { messageBus = _messageBus; emit MessageBusUpdated(messageBus); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; /** * @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. * * This adds a normal func that setOwner if _owner is address(0). So we can't allow * renounceOwnership. So we can support Proxy based upgradable contract */ abstract contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(msg.sender); } /** * @dev Only to be called by inherit contracts, in their init func called by Proxy * we require _owner == address(0), which is only possible when it's a delegateCall * because constructor sets _owner in contract state. */ function initOwner() internal { require(_owner == address(0), "owner already set"); _setOwner(msg.sender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == msg.sender, "Ownable: caller is not the owner"); _; } /** * @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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "optimizer": { "enabled": true, "runs": 99999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_messageBus","type":"address"},{"internalType":"address","name":"_oracle_bnb","type":"address"},{"internalType":"address","name":"_oracle_eth","type":"address"},{"internalType":"uint256","name":"_oracle_bnb_update_buffer","type":"uint256"},{"internalType":"uint256","name":"_oracle_eth_update_buffer","type":"uint256"},{"internalType":"uint64","name":"_chainId","type":"uint64"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BnbChangeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"}],"name":"CompensationRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"gaslimit","type":"uint256"}],"name":"CreateProxyGasLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint64","name":"srcChainId","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"nonce","type":"uint64"},{"indexed":false,"internalType":"enum DataTypes.MessageTypes","name":"msgType","type":"uint8"},{"indexed":false,"internalType":"address","name":"acount","type":"address"},{"indexed":false,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FarmingMessageReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"name":"FeeClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum CrossFarmingSender.Chains","name":"chain","type":"uint8"},{"indexed":false,"internalType":"enum DataTypes.MessageTypes","name":"msgtype","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"gaslimit","type":"uint256"}],"name":"GasLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"messageBus","type":"address"}],"name":"MessageBusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oracle","type":"address"}],"name":"NewOracle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum CrossFarmingSender.Feeds","name":"feed","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"oracleUpdateBuffer","type":"uint256"}],"name":"OracleBufferUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"}],"name":"ReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"vault","type":"address"}],"name":"VaultUpdated","type":"event"},{"inputs":[],"name":"BNB_CHANGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BSC_CHAIN_ID","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COMPENSATION_PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CROSS_FARMING_RECEIVER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXCHANGE_RATE_PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COMPENSATION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_COMPENSATION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gas","type":"uint256"}],"name":"claimFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compensationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createProxyGasLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"drainToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum CrossFarmingSender.Chains","name":"_chain","type":"uint8"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"enum DataTypes.MessageTypes","name":"_msgType","type":"uint8"}],"name":"estimateGaslimit","outputs":[{"internalType":"uint256","name":"gaslimit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint64","name":"_srcChainId","type":"uint64"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"","type":"address"}],"name":"executeMessage","outputs":[{"internalType":"enum IMessageReceiverApp.ExecutionStatus","name":"","type":"uint8"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint64","name":"_srcChainId","type":"uint64"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"_executor","type":"address"}],"name":"executeMessageWithTransfer","outputs":[{"internalType":"enum IMessageReceiverApp.ExecutionStatus","name":"","type":"uint8"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint64","name":"_srcChainId","type":"uint64"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"_executor","type":"address"}],"name":"executeMessageWithTransferFallback","outputs":[{"internalType":"enum IMessageReceiverApp.ExecutionStatus","name":"","type":"uint8"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"_executor","type":"address"}],"name":"executeMessageWithTransferRefund","outputs":[{"internalType":"enum IMessageReceiverApp.ExecutionStatus","name":"","type":"uint8"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"enum CrossFarmingSender.Chains","name":"","type":"uint8"},{"internalType":"enum DataTypes.MessageTypes","name":"","type":"uint8"}],"name":"gaslimits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"is1st","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"messageBus","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"nonces","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum CrossFarmingSender.Feeds","name":"","type":"uint8"}],"name":"oracle","outputs":[{"internalType":"contract AggregatorV3Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum CrossFarmingSender.Feeds","name":"","type":"uint8"}],"name":"oracleUpdateBuffer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_message","type":"bytes"}],"name":"sendFarmMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_change","type":"uint256"}],"name":"setBnbChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setCompensationRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gaslimit","type":"uint256"}],"name":"setCreateProxyGasLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum CrossFarmingSender.Chains","name":"_chain","type":"uint8"},{"internalType":"enum DataTypes.MessageTypes","name":"_type","type":"uint8"},{"internalType":"uint256","name":"_gaslimit","type":"uint256"}],"name":"setGaslimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_messageBus","type":"address"}],"name":"setMessageBus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum CrossFarmingSender.Feeds","name":"_feed","type":"uint8"},{"internalType":"address","name":"_oracle","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum CrossFarmingSender.Feeds","name":"_feed","type":"uint8"},{"internalType":"uint256","name":"_oracleUpdateBuffer","type":"uint256"}],"name":"setOracleUpdateBuffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"setReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526611c37937e080006006553480156200001c57600080fd5b50604051620035e6380380620035e68339810160408190526200003f9162000298565b6200004a336200022b565b846001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b1580156200008457600080fd5b505afa15801562000099573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000bf919062000330565b5050505050836001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b158015620000fe57600080fd5b505afa15801562000113573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000139919062000330565b5050600180546001600160a01b03199081166001600160a01b039b8c161782557f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df805482169a8c169a909a179099557fb39221ace053465ec3453ce2b36430bd138b997ecea25c1043da0c366812b828805498909a1697909816969096179097555060086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c7929092556000939093527fad67d757c34507f157cacfa2e3153e9f260a2244f30428821be7be64587ac55f9290925550620186a06005556001600160401b03166080525062000385565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200029357600080fd5b919050565b60008060008060008060c08789031215620002b257600080fd5b620002bd876200027b565b9550620002cd602088016200027b565b9450620002dd604088016200027b565b6060880151608089015160a08a015192965090945092506001600160401b03811681146200030a57600080fd5b809150509295509295509295565b80516001600160501b03811681146200029357600080fd5b600080600080600060a086880312156200034957600080fd5b620003548662000318565b9450602086015193506040860151925060608601519150620003796080870162000318565b90509295509295909350565b60805161323e620003a8600039600081816105da0152611b18015261323e6000f3fe6080604052600436106102345760003560e01c80637cd2bffc11610138578063a80ad651116100b0578063c76449e81161007f578063df4ee24f11610064578063df4ee24f146106b8578063f2fde38b146106f8578063f667526a1461071857600080fd5b8063c76449e814610669578063da1a50601461068057600080fd5b8063a80ad651146105c8578063ad64ffdc146105fc578063ba870fff1461061c578063c53c26771461064957600080fd5b80638f4e00ad116101075780639d4323be116100ec5780639d4323be14610565578063a1a227fa14610585578063a40661bc146105b257600080fd5b80638f4e00ad146105325780639c649fdf1461055257600080fd5b80637cd2bffc146104715780638170e90f146104db5780638916d1c1146104f15780638da5cb5b1461050757600080fd5b80633ea281d3116101cb578063553880231161019a5780636625e7671161017f5780636625e767146104845780636817031b1461049b578063718da7ee146104bb57600080fd5b8063553880231461042e5780635ab7afc61461047157600080fd5b80633ea281d3146103735780634e1b043614610393578063502e1a16146103b3578063547cad121461040e57600080fd5b80631f967cb3116102075780631f967cb3146102fa5780632bff7a3e1461030d5780632d2c44f21461032d5780633a01b9641461035a57600080fd5b80630bcb49821461023957806310655ad11461026257806315584e64146102b45780631b784a47146102d8575b600080fd5b61024c610247366004612a1d565b610738565b6040516102599190612acb565b60405180910390f35b34801561026e57600080fd5b5060035461028f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610259565b3480156102c057600080fd5b506102ca60045481565b604051908152602001610259565b3480156102e457600080fd5b506102f86102f3366004612aeb565b6107ca565b005b6102f8610308366004612b20565b610aaa565b34801561031957600080fd5b506102ca610328366004612b71565b610fea565b34801561033957600080fd5b5060025461028f9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561036657600080fd5b506102ca64e8d4a5100081565b34801561037f57600080fd5b506102f861038e366004612bb6565b6110bc565b34801561039f57600080fd5b506102f86103ae366004612bcf565b611195565b3480156103bf57600080fd5b506103f56103ce366004612bfb565b600960209081526000928352604080842090915290825290205467ffffffffffffffff1681565b60405167ffffffffffffffff9091168152602001610259565b34801561041a57600080fd5b506102f8610429366004612c17565b61132c565b34801561043a57600080fd5b5061028f610449366004612c32565b60076020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b61024c61047f366004612c67565b61143c565b34801561049057600080fd5b506102ca620f424081565b3480156104a757600080fd5b506102f86104b6366004612c17565b6114cb565b3480156104c757600080fd5b506102f86104d6366004612c17565b6116fd565b3480156104e757600080fd5b506102ca60055481565b3480156104fd57600080fd5b506102ca61271081565b34801561051357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661028f565b34801561053e57600080fd5b506102f861054d366004612bb6565b611930565b61024c610560366004612cf7565b611a92565b34801561057157600080fd5b506102f8610580366004612bfb565b611df0565b34801561059157600080fd5b5060015461028f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105be57600080fd5b506102ca60065481565b3480156105d457600080fd5b506103f57f000000000000000000000000000000000000000000000000000000000000000081565b34801561060857600080fd5b506102f8610617366004612d42565b611eb2565b34801561062857600080fd5b506102ca610637366004612c32565b60086020526000908152604090205481565b34801561065557600080fd5b506102f8610664366004612bb6565b612066565b34801561067557600080fd5b506102ca620186a081565b34801561068c57600080fd5b506102ca61069b366004612d80565b600b60209081526000928352604080842090915290825290205481565b3480156106c457600080fd5b506106e86106d3366004612c17565b600a6020526000908152604090205460ff1681565b6040519015158152602001610259565b34801561070457600080fd5b506102f8610713366004612c17565b6121b3565b34801561072457600080fd5b506102f8610733366004612bb6565b6122ff565b60015460009073ffffffffffffffffffffffffffffffffffffffff1633146107c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f63616c6c6572206973206e6f74206d657373616765206275730000000000000060448201526064015b60405180910390fd5b95945050505050565b336107ea60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b73ffffffffffffffffffffffffffffffffffffffff811661090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4f7261636c6520666565642063616e2774206265207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016107b8565b806007600084600181111561092157610921612a8c565b600181111561093257610932612a8c565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506007600083600181111561099457610994612a8c565b60018111156109a5576109a5612a8c565b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b158015610a1957600080fd5b505afa158015610a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a519190612dc6565b505060405173ffffffffffffffffffffffffffffffffffffffff851681527fb3eacd0e351fafdfefdec84e1cd19679b38dbcd63ea7c2c24da17fd2bc3b3c0e93506020019150610a9e9050565b60405180910390a15050565b60025473ffffffffffffffffffffffffffffffffffffffff163314610b2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f6e6c79207661756c7420636f6e74726163740000000000000000000000000060448201526064016107b8565b6000610b3982840184612e0a565b90506000610b4760016124b6565b90506000610b5560006124b6565b9050600081138015610b675750600082135b610bcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f41626e6f726d616c20707269636573000000000000000000000000000000000060448201526064016107b8565b600082610bdf64e8d4a5100084612f02565b610be99190612f3f565b6001546040517f5335dca200000000000000000000000000000000000000000000000000000000815291925060009173ffffffffffffffffffffffffffffffffffffffff90911690635335dca290610c47908a908a90600401612fc3565b60206040518083038186803b158015610c5f57600080fd5b505afa158015610c73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c979190612fd7565b90506000610cad620186a064e8d4a51000612f02565b60055484610cc560018a606001518b60c00151610fea565b610ccf903a612f02565b610cd99190612f02565b610ce39190612f02565b610ced9190612f3f565b610cf79083612ff0565b606087015173ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490915060ff16610da85764e8d4a5100083600654610d3f9190612f02565b610d499190612f3f565b610d539082612ff0565b606087015173ffffffffffffffffffffffffffffffffffffffff166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590505b60018660c001516002811115610dc057610dc0612a8c565b10610e145764e8d4a51000610dd58484612f02565b610ddf9190612f3f565b610df3600088606001518960c00151610fea565b610dfd903a612f02565b610e079190612ff0565b610e119082612ff0565b90505b80341015610e7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f496e73756666696369656e74206665650000000000000000000000000000000060448201526064016107b8565b600154865160208801516040517f9f3ce55a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90931692639f3ce55a928692610edf928e908e90600401613008565b6000604051808303818588803b158015610ef857600080fd5b505af1158015610f0c573d6000803e3d6000fd5b50505050606087015173ffffffffffffffffffffffffffffffffffffffff16600090815260096020908152604080832060808b0151845290915281208054909250610f609067ffffffffffffffff16613052565b91906101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080341115610fe057606086015173ffffffffffffffffffffffffffffffffffffffff166108fc610fb6833461307a565b6040518115909202916000818181858888f19350505050158015610fde573d6000803e3d6000fd5b505b5050505050505050565b6000600b600085600181111561100257611002612a8c565b600181111561101357611013612a8c565b8152602001908152602001600020600083600281111561103557611035612a8c565b600281111561104657611046612a8c565b8152602080820192909252604090810160009081205473ffffffffffffffffffffffffffffffffffffffff87168252600a909352205490915060ff161580156110a05750600184600181111561109e5761109e612a8c565b145b156110b5576004546110b29082612ff0565b90505b9392505050565b336110dc60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b60048190556040518181527f68344b3e424de23a591234ccb5c7a66f130d07fb4667166a787491c6c6d35d2d906020015b60405180910390a150565b336111b560005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b600081116112c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f7261636c65207570646174652074696d65206275666665722073686f756c6460448201527f203e20300000000000000000000000000000000000000000000000000000000060648201526084016107b8565b80600860008460018111156112d8576112d8612a8c565b60018111156112e9576112e9612a8c565b8152602001908152602001600020819055507fec08e4d9b7a54968774df31e701f84b786e3c2ea3dd744d46dbd98fb395cb1da8282604051610a9e9291906130a1565b3361134c60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f3f8223bcd8b3b875473e9f9e14e1ad075451a2b5ffd31591655da9a01516bf5e9060200161118a565b60015460009073ffffffffffffffffffffffffffffffffffffffff1633146114c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f63616c6c6572206973206e6f74206d657373616765206275730000000000000060448201526064016107b8565b979650505050505050565b336114eb60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b73ffffffffffffffffffffffffffffffffffffffff811661160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5661756c7420636f6e74726163742063616e2774206265207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107b8565b60025473ffffffffffffffffffffffffffffffffffffffff161561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f416c726561647920736574207661756c7420636f6e747261637400000000000060448201526064016107b8565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f161584aed96e7f34998117c9ad67e2d21ff46d2a42775c22b11ed282f3c7b2cd9060200161118a565b3361171d60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b73ffffffffffffffffffffffffffffffffffffffff811661183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f526563656976657220636f6e74726163742063616e2774206265207a65726f2060448201527f616464726573730000000000000000000000000000000000000000000000000060648201526084016107b8565b60035473ffffffffffffffffffffffffffffffffffffffff16156118bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416c72656164792073657420726563656976657220636f6e747261637400000060448201526064016107b8565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f75fd3aa5d9b6e2a8a9d8894008c9263200713f4b1fa9113665e09ceac00277469060200161118a565b3361195060005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146119cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b60008111611a5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f424e42206368616e676520666f72206e657720757365722073686f756c64206760448201527f726561746572207468616e207a65726f0000000000000000000000000000000060648201526084016107b8565b60068190556040518181527f9269ec925ce7322ee80f680dec63e4057a13ae6c6c58d893a3495e200013e6bd9060200161118a565b60015460009073ffffffffffffffffffffffffffffffffffffffff163314611b16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f63616c6c6572206973206e6f74206d657373616765206275730000000000000060448201526064016107b8565b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff168567ffffffffffffffff16148015611b73575060035473ffffffffffffffffffffffffffffffffffffffff8781169116145b611bd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496e76616c696420726563656976657220636f6e74726163740000000000000060448201526064016107b8565b6000611be784860186612e0a565b905060018160c001516002811115611c0157611c01612a8c565b1415611cc3576002546060820151608083015160a084015160408086015190517faaa22c7f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff94851660048201526024810193909352604483019190915267ffffffffffffffff16606482015291169063aaa22c7f90608401600060405180830381600087803b158015611ca657600080fd5b505af1158015611cba573d6000803e3d6000fd5b50505050611d8c565b60028160c001516002811115611cdb57611cdb612a8c565b1415611d8c576002546060820151608083015160408085015190517f5ee85bca00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9384166004820152602481019290925267ffffffffffffffff166044820152911690635ee85bca90606401600060405180830381600087803b158015611d7357600080fd5b505af1158015611d87573d6000803e3d6000fd5b505050505b7fc4b29c72ac77bb0c23e225ea2aae4de3065ed9c51193759479c126a987bce5f5878783604001518460c00151856060015186608001518760a00151604051611ddb97969594939291906130b8565b60405180910390a15060019695505050505050565b33611e1060005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611e8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b611eae73ffffffffffffffffffffffffffffffffffffffff83163383612646565b5050565b33611ed260005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611f4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b60008111611fb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4761736c696d69742073686f756c64206265203e207a65726f0000000000000060448201526064016107b8565b80600b6000856001811115611fd057611fd0612a8c565b6001811115611fe157611fe1612a8c565b8152602001908152602001600020600084600281111561200357612003612a8c565b600281111561201457612014612a8c565b8152602001908152602001600020819055507fce03fe21469a965b26b8a8f8117824ff1f1011ef740e8d8b228da913b3fd6b918383836040516120599392919061311f565b60405180910390a1505050565b3361208660005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b61271081101580156121185750620f42408111155b61217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496e76616c696420636f6d70656e736174696f6e20726174650000000000000060448201526064016107b8565b60058190556040518181527f425a23ba9d1d72ebc7e7beec13260a276c80f1a430deb5da8fd6c331d25aaba59060200161118a565b336121d360005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b73ffffffffffffffffffffffffffffffffffffffff81166122f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107b8565b6122fc816126d8565b50565b3361231f60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461239c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b6108fc81101561242e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f636c61696d466565206761736c696d69742073686f756c64206578636565642060448201527f323330302000000000000000000000000000000000000000000000000000000060648201526084016107b8565b604051479060009033908490849084818181858888f193505050503d8060008114612475576040519150601f19603f3d011682016040523d82523d6000602084013e61247a565b606091505b50506040805184815282151560208201529192507fd04d114f4c1b692d33ce8a2eafd40b884f2c3baeba47267503261a83563b65f79101612059565b6000806000600760008560018111156124d1576124d1612a8c565b60018111156124e2576124e2612a8c565b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b15801561255657600080fd5b505afa15801561256a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258e9190612dc6565b5093505092505042600860008660018111156125ac576125ac612a8c565b60018111156125bd576125bd612a8c565b815260200190815260200160002054826125d79190612ff0565b101561263f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f6f7574206f662064617465206f7261636c65206461746100000000000000000060448201526064016107b8565b5092915050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526126d390849061274d565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006127af826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166128599092919063ffffffff16565b8051909150156126d357808060200190518101906127cd9190613149565b6126d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016107b8565b60606110b284846000858573ffffffffffffffffffffffffffffffffffffffff85163b6128e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107b8565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161290b919061319b565b60006040518083038185875af1925050503d8060008114612948576040519150601f19603f3d011682016040523d82523d6000602084013e61294d565b606091505b50915091506114c0828286606083156129675750816110b5565b8251156129775782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b891906131b7565b803573ffffffffffffffffffffffffffffffffffffffff811681146129cf57600080fd5b919050565b60008083601f8401126129e657600080fd5b50813567ffffffffffffffff8111156129fe57600080fd5b602083019150836020828501011115612a1657600080fd5b9250929050565b600080600080600060808688031215612a3557600080fd5b612a3e866129ab565b945060208601359350604086013567ffffffffffffffff811115612a6157600080fd5b612a6d888289016129d4565b9094509250612a809050606087016129ab565b90509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106122fc576122fc612a8c565b60208101612ad883612abb565b91905290565b600281106122fc57600080fd5b60008060408385031215612afe57600080fd5b8235612b0981612ade565b9150612b17602084016129ab565b90509250929050565b60008060208385031215612b3357600080fd5b823567ffffffffffffffff811115612b4a57600080fd5b612b56858286016129d4565b90969095509350505050565b8035600381106129cf57600080fd5b600080600060608486031215612b8657600080fd5b8335612b9181612ade565b9250612b9f602085016129ab565b9150612bad60408501612b62565b90509250925092565b600060208284031215612bc857600080fd5b5035919050565b60008060408385031215612be257600080fd5b8235612bed81612ade565b946020939093013593505050565b60008060408385031215612c0e57600080fd5b612bed836129ab565b600060208284031215612c2957600080fd5b6110b5826129ab565b600060208284031215612c4457600080fd5b81356110b581612ade565b803567ffffffffffffffff811681146129cf57600080fd5b600080600080600080600060c0888a031215612c8257600080fd5b612c8b886129ab565b9650612c99602089016129ab565b955060408801359450612cae60608901612c4f565b9350608088013567ffffffffffffffff811115612cca57600080fd5b612cd68a828b016129d4565b9094509250612ce9905060a089016129ab565b905092959891949750929550565b600080600080600060808688031215612d0f57600080fd5b612d18866129ab565b9450612d2660208701612c4f565b9350604086013567ffffffffffffffff811115612a6157600080fd5b600080600060608486031215612d5757600080fd5b8335612d6281612ade565b9250612d7060208501612b62565b9150604084013590509250925092565b60008060408385031215612d9357600080fd5b8235612d9e81612ade565b9150612b1760208401612b62565b805169ffffffffffffffffffff811681146129cf57600080fd5b600080600080600060a08688031215612dde57600080fd5b612de786612dac565b9450602086015193506040860151925060608601519150612a8060808701612dac565b600060e08284031215612e1c57600080fd5b60405160e0810181811067ffffffffffffffff82111715612e66577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604052612e72836129ab565b8152612e8060208401612c4f565b6020820152612e9160408401612c4f565b6040820152612ea2606084016129ab565b60608201526080830135608082015260a083013560a0820152612ec760c08401612b62565b60c08201529392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f3a57612f3a612ed3565b500290565b600082612f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6020815260006110b2602083018486612f7a565b600060208284031215612fe957600080fd5b5051919050565b6000821982111561300357613003612ed3565b500190565b73ffffffffffffffffffffffffffffffffffffffff8516815267ffffffffffffffff84166020820152606060408201526000613048606083018486612f7a565b9695505050505050565b600067ffffffffffffffff8083168181141561307057613070612ed3565b6001019392505050565b60008282101561308c5761308c612ed3565b500390565b600281106122fc576122fc612a8c565b604081016130ae84613091565b9281526020015290565b73ffffffffffffffffffffffffffffffffffffffff888116825267ffffffffffffffff88811660208401528716604083015260e08201906130f887612abb565b8660608401528086166080840152508360a08301528260c083015298975050505050505050565b6060810161312c85613091565b84825261313884612abb565b602082019390935260400152919050565b60006020828403121561315b57600080fd5b815180151581146110b557600080fd5b60005b8381101561318657818101518382015260200161316e565b83811115613195576000848401525b50505050565b600082516131ad81846020870161316b565b9190910192915050565b60208152600082518060208401526131d681604085016020870161316b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea2646970667358221220cab5394da4459022ab4c970e98df9f49054b0b18c50f33a72f246b9d9152540d64736f6c634300080900330000000000000000000000004066d196a423b2b3b8b054f4f40efb47a74e200c00000000000000000000000014e613ac84a31f709eadbdf89c6cc390fdc9540a0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419000000000000000000000000000000000000000000000000000000000001518000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000038
Deployed Bytecode
0x6080604052600436106102345760003560e01c80637cd2bffc11610138578063a80ad651116100b0578063c76449e81161007f578063df4ee24f11610064578063df4ee24f146106b8578063f2fde38b146106f8578063f667526a1461071857600080fd5b8063c76449e814610669578063da1a50601461068057600080fd5b8063a80ad651146105c8578063ad64ffdc146105fc578063ba870fff1461061c578063c53c26771461064957600080fd5b80638f4e00ad116101075780639d4323be116100ec5780639d4323be14610565578063a1a227fa14610585578063a40661bc146105b257600080fd5b80638f4e00ad146105325780639c649fdf1461055257600080fd5b80637cd2bffc146104715780638170e90f146104db5780638916d1c1146104f15780638da5cb5b1461050757600080fd5b80633ea281d3116101cb578063553880231161019a5780636625e7671161017f5780636625e767146104845780636817031b1461049b578063718da7ee146104bb57600080fd5b8063553880231461042e5780635ab7afc61461047157600080fd5b80633ea281d3146103735780634e1b043614610393578063502e1a16146103b3578063547cad121461040e57600080fd5b80631f967cb3116102075780631f967cb3146102fa5780632bff7a3e1461030d5780632d2c44f21461032d5780633a01b9641461035a57600080fd5b80630bcb49821461023957806310655ad11461026257806315584e64146102b45780631b784a47146102d8575b600080fd5b61024c610247366004612a1d565b610738565b6040516102599190612acb565b60405180910390f35b34801561026e57600080fd5b5060035461028f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610259565b3480156102c057600080fd5b506102ca60045481565b604051908152602001610259565b3480156102e457600080fd5b506102f86102f3366004612aeb565b6107ca565b005b6102f8610308366004612b20565b610aaa565b34801561031957600080fd5b506102ca610328366004612b71565b610fea565b34801561033957600080fd5b5060025461028f9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561036657600080fd5b506102ca64e8d4a5100081565b34801561037f57600080fd5b506102f861038e366004612bb6565b6110bc565b34801561039f57600080fd5b506102f86103ae366004612bcf565b611195565b3480156103bf57600080fd5b506103f56103ce366004612bfb565b600960209081526000928352604080842090915290825290205467ffffffffffffffff1681565b60405167ffffffffffffffff9091168152602001610259565b34801561041a57600080fd5b506102f8610429366004612c17565b61132c565b34801561043a57600080fd5b5061028f610449366004612c32565b60076020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b61024c61047f366004612c67565b61143c565b34801561049057600080fd5b506102ca620f424081565b3480156104a757600080fd5b506102f86104b6366004612c17565b6114cb565b3480156104c757600080fd5b506102f86104d6366004612c17565b6116fd565b3480156104e757600080fd5b506102ca60055481565b3480156104fd57600080fd5b506102ca61271081565b34801561051357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661028f565b34801561053e57600080fd5b506102f861054d366004612bb6565b611930565b61024c610560366004612cf7565b611a92565b34801561057157600080fd5b506102f8610580366004612bfb565b611df0565b34801561059157600080fd5b5060015461028f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105be57600080fd5b506102ca60065481565b3480156105d457600080fd5b506103f57f000000000000000000000000000000000000000000000000000000000000003881565b34801561060857600080fd5b506102f8610617366004612d42565b611eb2565b34801561062857600080fd5b506102ca610637366004612c32565b60086020526000908152604090205481565b34801561065557600080fd5b506102f8610664366004612bb6565b612066565b34801561067557600080fd5b506102ca620186a081565b34801561068c57600080fd5b506102ca61069b366004612d80565b600b60209081526000928352604080842090915290825290205481565b3480156106c457600080fd5b506106e86106d3366004612c17565b600a6020526000908152604090205460ff1681565b6040519015158152602001610259565b34801561070457600080fd5b506102f8610713366004612c17565b6121b3565b34801561072457600080fd5b506102f8610733366004612bb6565b6122ff565b60015460009073ffffffffffffffffffffffffffffffffffffffff1633146107c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f63616c6c6572206973206e6f74206d657373616765206275730000000000000060448201526064015b60405180910390fd5b95945050505050565b336107ea60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b73ffffffffffffffffffffffffffffffffffffffff811661090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4f7261636c6520666565642063616e2774206265207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016107b8565b806007600084600181111561092157610921612a8c565b600181111561093257610932612a8c565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506007600083600181111561099457610994612a8c565b60018111156109a5576109a5612a8c565b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b158015610a1957600080fd5b505afa158015610a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a519190612dc6565b505060405173ffffffffffffffffffffffffffffffffffffffff851681527fb3eacd0e351fafdfefdec84e1cd19679b38dbcd63ea7c2c24da17fd2bc3b3c0e93506020019150610a9e9050565b60405180910390a15050565b60025473ffffffffffffffffffffffffffffffffffffffff163314610b2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f6e6c79207661756c7420636f6e74726163740000000000000000000000000060448201526064016107b8565b6000610b3982840184612e0a565b90506000610b4760016124b6565b90506000610b5560006124b6565b9050600081138015610b675750600082135b610bcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f41626e6f726d616c20707269636573000000000000000000000000000000000060448201526064016107b8565b600082610bdf64e8d4a5100084612f02565b610be99190612f3f565b6001546040517f5335dca200000000000000000000000000000000000000000000000000000000815291925060009173ffffffffffffffffffffffffffffffffffffffff90911690635335dca290610c47908a908a90600401612fc3565b60206040518083038186803b158015610c5f57600080fd5b505afa158015610c73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c979190612fd7565b90506000610cad620186a064e8d4a51000612f02565b60055484610cc560018a606001518b60c00151610fea565b610ccf903a612f02565b610cd99190612f02565b610ce39190612f02565b610ced9190612f3f565b610cf79083612ff0565b606087015173ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490915060ff16610da85764e8d4a5100083600654610d3f9190612f02565b610d499190612f3f565b610d539082612ff0565b606087015173ffffffffffffffffffffffffffffffffffffffff166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590505b60018660c001516002811115610dc057610dc0612a8c565b10610e145764e8d4a51000610dd58484612f02565b610ddf9190612f3f565b610df3600088606001518960c00151610fea565b610dfd903a612f02565b610e079190612ff0565b610e119082612ff0565b90505b80341015610e7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f496e73756666696369656e74206665650000000000000000000000000000000060448201526064016107b8565b600154865160208801516040517f9f3ce55a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90931692639f3ce55a928692610edf928e908e90600401613008565b6000604051808303818588803b158015610ef857600080fd5b505af1158015610f0c573d6000803e3d6000fd5b50505050606087015173ffffffffffffffffffffffffffffffffffffffff16600090815260096020908152604080832060808b0151845290915281208054909250610f609067ffffffffffffffff16613052565b91906101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080341115610fe057606086015173ffffffffffffffffffffffffffffffffffffffff166108fc610fb6833461307a565b6040518115909202916000818181858888f19350505050158015610fde573d6000803e3d6000fd5b505b5050505050505050565b6000600b600085600181111561100257611002612a8c565b600181111561101357611013612a8c565b8152602001908152602001600020600083600281111561103557611035612a8c565b600281111561104657611046612a8c565b8152602080820192909252604090810160009081205473ffffffffffffffffffffffffffffffffffffffff87168252600a909352205490915060ff161580156110a05750600184600181111561109e5761109e612a8c565b145b156110b5576004546110b29082612ff0565b90505b9392505050565b336110dc60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b60048190556040518181527f68344b3e424de23a591234ccb5c7a66f130d07fb4667166a787491c6c6d35d2d906020015b60405180910390a150565b336111b560005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b600081116112c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f7261636c65207570646174652074696d65206275666665722073686f756c6460448201527f203e20300000000000000000000000000000000000000000000000000000000060648201526084016107b8565b80600860008460018111156112d8576112d8612a8c565b60018111156112e9576112e9612a8c565b8152602001908152602001600020819055507fec08e4d9b7a54968774df31e701f84b786e3c2ea3dd744d46dbd98fb395cb1da8282604051610a9e9291906130a1565b3361134c60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f3f8223bcd8b3b875473e9f9e14e1ad075451a2b5ffd31591655da9a01516bf5e9060200161118a565b60015460009073ffffffffffffffffffffffffffffffffffffffff1633146114c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f63616c6c6572206973206e6f74206d657373616765206275730000000000000060448201526064016107b8565b979650505050505050565b336114eb60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b73ffffffffffffffffffffffffffffffffffffffff811661160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5661756c7420636f6e74726163742063616e2774206265207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107b8565b60025473ffffffffffffffffffffffffffffffffffffffff161561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f416c726561647920736574207661756c7420636f6e747261637400000000000060448201526064016107b8565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f161584aed96e7f34998117c9ad67e2d21ff46d2a42775c22b11ed282f3c7b2cd9060200161118a565b3361171d60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b73ffffffffffffffffffffffffffffffffffffffff811661183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f526563656976657220636f6e74726163742063616e2774206265207a65726f2060448201527f616464726573730000000000000000000000000000000000000000000000000060648201526084016107b8565b60035473ffffffffffffffffffffffffffffffffffffffff16156118bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416c72656164792073657420726563656976657220636f6e747261637400000060448201526064016107b8565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f75fd3aa5d9b6e2a8a9d8894008c9263200713f4b1fa9113665e09ceac00277469060200161118a565b3361195060005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146119cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b60008111611a5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f424e42206368616e676520666f72206e657720757365722073686f756c64206760448201527f726561746572207468616e207a65726f0000000000000000000000000000000060648201526084016107b8565b60068190556040518181527f9269ec925ce7322ee80f680dec63e4057a13ae6c6c58d893a3495e200013e6bd9060200161118a565b60015460009073ffffffffffffffffffffffffffffffffffffffff163314611b16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f63616c6c6572206973206e6f74206d657373616765206275730000000000000060448201526064016107b8565b7f000000000000000000000000000000000000000000000000000000000000003867ffffffffffffffff168567ffffffffffffffff16148015611b73575060035473ffffffffffffffffffffffffffffffffffffffff8781169116145b611bd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496e76616c696420726563656976657220636f6e74726163740000000000000060448201526064016107b8565b6000611be784860186612e0a565b905060018160c001516002811115611c0157611c01612a8c565b1415611cc3576002546060820151608083015160a084015160408086015190517faaa22c7f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff94851660048201526024810193909352604483019190915267ffffffffffffffff16606482015291169063aaa22c7f90608401600060405180830381600087803b158015611ca657600080fd5b505af1158015611cba573d6000803e3d6000fd5b50505050611d8c565b60028160c001516002811115611cdb57611cdb612a8c565b1415611d8c576002546060820151608083015160408085015190517f5ee85bca00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9384166004820152602481019290925267ffffffffffffffff166044820152911690635ee85bca90606401600060405180830381600087803b158015611d7357600080fd5b505af1158015611d87573d6000803e3d6000fd5b505050505b7fc4b29c72ac77bb0c23e225ea2aae4de3065ed9c51193759479c126a987bce5f5878783604001518460c00151856060015186608001518760a00151604051611ddb97969594939291906130b8565b60405180910390a15060019695505050505050565b33611e1060005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611e8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b611eae73ffffffffffffffffffffffffffffffffffffffff83163383612646565b5050565b33611ed260005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611f4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b60008111611fb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4761736c696d69742073686f756c64206265203e207a65726f0000000000000060448201526064016107b8565b80600b6000856001811115611fd057611fd0612a8c565b6001811115611fe157611fe1612a8c565b8152602001908152602001600020600084600281111561200357612003612a8c565b600281111561201457612014612a8c565b8152602001908152602001600020819055507fce03fe21469a965b26b8a8f8117824ff1f1011ef740e8d8b228da913b3fd6b918383836040516120599392919061311f565b60405180910390a1505050565b3361208660005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b61271081101580156121185750620f42408111155b61217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496e76616c696420636f6d70656e736174696f6e20726174650000000000000060448201526064016107b8565b60058190556040518181527f425a23ba9d1d72ebc7e7beec13260a276c80f1a430deb5da8fd6c331d25aaba59060200161118a565b336121d360005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b73ffffffffffffffffffffffffffffffffffffffff81166122f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107b8565b6122fc816126d8565b50565b3361231f60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461239c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b8565b6108fc81101561242e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f636c61696d466565206761736c696d69742073686f756c64206578636565642060448201527f323330302000000000000000000000000000000000000000000000000000000060648201526084016107b8565b604051479060009033908490849084818181858888f193505050503d8060008114612475576040519150601f19603f3d011682016040523d82523d6000602084013e61247a565b606091505b50506040805184815282151560208201529192507fd04d114f4c1b692d33ce8a2eafd40b884f2c3baeba47267503261a83563b65f79101612059565b6000806000600760008560018111156124d1576124d1612a8c565b60018111156124e2576124e2612a8c565b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b15801561255657600080fd5b505afa15801561256a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258e9190612dc6565b5093505092505042600860008660018111156125ac576125ac612a8c565b60018111156125bd576125bd612a8c565b815260200190815260200160002054826125d79190612ff0565b101561263f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f6f7574206f662064617465206f7261636c65206461746100000000000000000060448201526064016107b8565b5092915050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526126d390849061274d565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006127af826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166128599092919063ffffffff16565b8051909150156126d357808060200190518101906127cd9190613149565b6126d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016107b8565b60606110b284846000858573ffffffffffffffffffffffffffffffffffffffff85163b6128e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107b8565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161290b919061319b565b60006040518083038185875af1925050503d8060008114612948576040519150601f19603f3d011682016040523d82523d6000602084013e61294d565b606091505b50915091506114c0828286606083156129675750816110b5565b8251156129775782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b891906131b7565b803573ffffffffffffffffffffffffffffffffffffffff811681146129cf57600080fd5b919050565b60008083601f8401126129e657600080fd5b50813567ffffffffffffffff8111156129fe57600080fd5b602083019150836020828501011115612a1657600080fd5b9250929050565b600080600080600060808688031215612a3557600080fd5b612a3e866129ab565b945060208601359350604086013567ffffffffffffffff811115612a6157600080fd5b612a6d888289016129d4565b9094509250612a809050606087016129ab565b90509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106122fc576122fc612a8c565b60208101612ad883612abb565b91905290565b600281106122fc57600080fd5b60008060408385031215612afe57600080fd5b8235612b0981612ade565b9150612b17602084016129ab565b90509250929050565b60008060208385031215612b3357600080fd5b823567ffffffffffffffff811115612b4a57600080fd5b612b56858286016129d4565b90969095509350505050565b8035600381106129cf57600080fd5b600080600060608486031215612b8657600080fd5b8335612b9181612ade565b9250612b9f602085016129ab565b9150612bad60408501612b62565b90509250925092565b600060208284031215612bc857600080fd5b5035919050565b60008060408385031215612be257600080fd5b8235612bed81612ade565b946020939093013593505050565b60008060408385031215612c0e57600080fd5b612bed836129ab565b600060208284031215612c2957600080fd5b6110b5826129ab565b600060208284031215612c4457600080fd5b81356110b581612ade565b803567ffffffffffffffff811681146129cf57600080fd5b600080600080600080600060c0888a031215612c8257600080fd5b612c8b886129ab565b9650612c99602089016129ab565b955060408801359450612cae60608901612c4f565b9350608088013567ffffffffffffffff811115612cca57600080fd5b612cd68a828b016129d4565b9094509250612ce9905060a089016129ab565b905092959891949750929550565b600080600080600060808688031215612d0f57600080fd5b612d18866129ab565b9450612d2660208701612c4f565b9350604086013567ffffffffffffffff811115612a6157600080fd5b600080600060608486031215612d5757600080fd5b8335612d6281612ade565b9250612d7060208501612b62565b9150604084013590509250925092565b60008060408385031215612d9357600080fd5b8235612d9e81612ade565b9150612b1760208401612b62565b805169ffffffffffffffffffff811681146129cf57600080fd5b600080600080600060a08688031215612dde57600080fd5b612de786612dac565b9450602086015193506040860151925060608601519150612a8060808701612dac565b600060e08284031215612e1c57600080fd5b60405160e0810181811067ffffffffffffffff82111715612e66577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604052612e72836129ab565b8152612e8060208401612c4f565b6020820152612e9160408401612c4f565b6040820152612ea2606084016129ab565b60608201526080830135608082015260a083013560a0820152612ec760c08401612b62565b60c08201529392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f3a57612f3a612ed3565b500290565b600082612f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6020815260006110b2602083018486612f7a565b600060208284031215612fe957600080fd5b5051919050565b6000821982111561300357613003612ed3565b500190565b73ffffffffffffffffffffffffffffffffffffffff8516815267ffffffffffffffff84166020820152606060408201526000613048606083018486612f7a565b9695505050505050565b600067ffffffffffffffff8083168181141561307057613070612ed3565b6001019392505050565b60008282101561308c5761308c612ed3565b500390565b600281106122fc576122fc612a8c565b604081016130ae84613091565b9281526020015290565b73ffffffffffffffffffffffffffffffffffffffff888116825267ffffffffffffffff88811660208401528716604083015260e08201906130f887612abb565b8660608401528086166080840152508360a08301528260c083015298975050505050505050565b6060810161312c85613091565b84825261313884612abb565b602082019390935260400152919050565b60006020828403121561315b57600080fd5b815180151581146110b557600080fd5b60005b8381101561318657818101518382015260200161316e565b83811115613195576000848401525b50505050565b600082516131ad81846020870161316b565b9190910192915050565b60208152600082518060208401526131d681604085016020870161316b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea2646970667358221220cab5394da4459022ab4c970e98df9f49054b0b18c50f33a72f246b9d9152540d64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004066d196a423b2b3b8b054f4f40efb47a74e200c00000000000000000000000014e613ac84a31f709eadbdf89c6cc390fdc9540a0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419000000000000000000000000000000000000000000000000000000000001518000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000038
-----Decoded View---------------
Arg [0] : _messageBus (address): 0x4066D196A423b2b3B8B054f4F40efB47a74E200C
Arg [1] : _oracle_bnb (address): 0x14e613AC84a31f709eadbdF89C6CC390fDc9540A
Arg [2] : _oracle_eth (address): 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419
Arg [3] : _oracle_bnb_update_buffer (uint256): 86400
Arg [4] : _oracle_eth_update_buffer (uint256): 86400
Arg [5] : _chainId (uint64): 56
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000004066d196a423b2b3b8b054f4f40efb47a74e200c
Arg [1] : 00000000000000000000000014e613ac84a31f709eadbdf89c6cc390fdc9540a
Arg [2] : 0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419
Arg [3] : 0000000000000000000000000000000000000000000000000000000000015180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000015180
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000038
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.