More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 118 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Bridge To Across | 21375818 | 48 days ago | IN | 0.01 ETH | 0.00140885 | ||||
0x12ecc099 | 21375789 | 48 days ago | IN | 0.01025881 ETH | 0.0071054 | ||||
Swap Router | 20659033 | 148 days ago | IN | 0 ETH | 0.0008433 | ||||
Emergency Withdr... | 20659025 | 148 days ago | IN | 0 ETH | 0.00014892 | ||||
Bridge To Xybrid... | 20490994 | 172 days ago | IN | 0.0059 ETH | 0.00034997 | ||||
0xf10854c1 | 20490148 | 172 days ago | IN | 0.039 ETH | 0.00127179 | ||||
Bridge To Xybrid... | 20469163 | 175 days ago | IN | 0.002 ETH | 0.00041422 | ||||
Swap And Bridge ... | 20442671 | 179 days ago | IN | 0.016 ETH | 0.00158734 | ||||
Bridge To Across | 20406642 | 184 days ago | IN | 0.0031 ETH | 0.0002679 | ||||
Bridge To Hyphen | 20282607 | 201 days ago | IN | 0.29 ETH | 0.00073472 | ||||
0xf10854c1 | 20227234 | 209 days ago | IN | 0.04 ETH | 0.00200964 | ||||
Bridge To Xybrid... | 20199364 | 213 days ago | IN | 0.11 ETH | 0.00014941 | ||||
Add Dex | 20172858 | 216 days ago | IN | 0 ETH | 0.00022707 | ||||
Diamond Cut | 20023293 | 237 days ago | IN | 0 ETH | 0.0023883 | ||||
Diamond Cut | 19984264 | 243 days ago | IN | 0 ETH | 0.00446109 | ||||
Swap And Bridge ... | 19983364 | 243 days ago | IN | 0.1 ETH | 0.00586275 | ||||
Init Stargate | 19973782 | 244 days ago | IN | 0 ETH | 0.00181073 | ||||
Bridge To Hyphen | 19969385 | 245 days ago | IN | 0 ETH | 0.00344132 | ||||
Bridge To Hyphen | 19965500 | 245 days ago | IN | 0 ETH | 0.00181525 | ||||
Set Domain Id | 19957204 | 247 days ago | IN | 0 ETH | 0.00031367 | ||||
Diamond Cut | 19956955 | 247 days ago | IN | 0 ETH | 0.0010928 | ||||
Diamond Cut | 19956811 | 247 days ago | IN | 0 ETH | 0.00092702 | ||||
Bridge To Xybrid... | 19948153 | 248 days ago | IN | 0.005 ETH | 0.00068743 | ||||
Set Chain Id | 19938007 | 249 days ago | IN | 0 ETH | 0.00032189 | ||||
Bridge To Allbri... | 19937893 | 249 days ago | IN | 0 ETH | 0.00354902 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21375818 | 48 days ago | 0.01 ETH | ||||
21375789 | 48 days ago | 0.01025881 ETH | ||||
20659033 | 148 days ago | 0.02077626 ETH | ||||
20659033 | 148 days ago | 0.02077626 ETH | ||||
20646766 | 150 days ago | 0.02245814 ETH | ||||
20490994 | 172 days ago | 0.0059 ETH | ||||
20490148 | 172 days ago | 0.039 ETH | ||||
20469163 | 175 days ago | 0.002 ETH | ||||
20442671 | 179 days ago | 0.19548113 ETH | ||||
20442671 | 179 days ago | 0.17948113 ETH | ||||
20406642 | 184 days ago | 0.0031 ETH | ||||
20282607 | 201 days ago | 0.29 ETH | ||||
20227234 | 209 days ago | 0.04 ETH | ||||
20199364 | 213 days ago | 0.11 ETH | ||||
19983364 | 243 days ago | 0.1 ETH | ||||
19948153 | 248 days ago | 0.005 ETH | ||||
19878205 | 258 days ago | 0.00330553 ETH | ||||
19877913 | 258 days ago | 0.035 ETH | ||||
19858554 | 260 days ago | 0.03182734 ETH | ||||
19858554 | 260 days ago | 0.03182734 ETH | ||||
19771539 | 272 days ago | 0.01177404 ETH | ||||
19753723 | 275 days ago | 0.40234093 ETH | ||||
19753326 | 275 days ago | 0.34029403 ETH | ||||
19740535 | 277 days ago | 1.5 ETH | ||||
19734575 | 278 days ago | 0.3 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
PlexusDiamond
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import {LibDiamond} from "./libraries/LibDiamond.sol"; import {IDiamondCut} from "./interfaces/IDiamondCut.sol"; contract PlexusDiamond { constructor(address _contractOwner, address _diamondCutFacet) payable { LibDiamond.setContractOwner(_contractOwner); // Add the diamondCut external function from the diamondCutFacet IDiamondCut.FacetCut[] memory cut = new IDiamondCut.FacetCut[](1); bytes4[] memory functionSelectors = new bytes4[](1); functionSelectors[0] = IDiamondCut.diamondCut.selector; cut[0] = IDiamondCut.FacetCut({facetAddress: _diamondCutFacet, action: IDiamondCut.FacetCutAction.Add, functionSelectors: functionSelectors}); LibDiamond.diamondCut(cut, address(0), ""); } // Find facet for function that is called and execute the // function if a facet is found and return any value. // solhint-disable-next-line no-complex-fallback fallback() external payable { LibDiamond.DiamondStorage storage ds; bytes32 position = LibDiamond.DIAMOND_STORAGE_POSITION; // get diamond storage // solhint-disable-next-line no-inline-assembly assembly { ds.slot := position } // get facet from function selector address facet = ds.selectorToFacetAndPosition[msg.sig].facetAddress; if (facet == address(0)) { revert LibDiamond.FunctionDoesNotExist(); } // Execute external function from facet using delegatecall and return any value. // solhint-disable-next-line no-inline-assembly assembly { // copy function selector and any arguments calldatacopy(0, 0, calldatasize()) // execute function call using the facet let result := delegatecall(gas(), facet, 0, calldatasize(), 0, 0) // get any return value returndatacopy(0, 0, returndatasize()) // return any return value or error back to the caller switch result case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } // Able to receive ether // solhint-disable-next-line no-empty-blocks receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; error SwapFailed(); error LengthNotMatch(); error TokenAddressIsZero(); error TokenNotSupported(); error CannotBridgeToSameNetwork(); error ZeroPostSwapBalance(); error NoSwapDataProvided(); error NativeValueWithERC(); error ContractCallNotAllowed(); error NullAddrIsNotAValidSpender(); error NullAddrIsNotAnERC20Token(); error NoTransferToNullAddress(); error NativeAssetTransferFailed(); error InvalidBridgeConfigLength(); error InvalidAmount(); error InvalidContract(); error InvalidConfig(); error UnsupportedChainId(uint256 chainId); error InvalidReceiver(); error InvalidDestinationChain(); error InvalidSendingToken(); error InvalidCaller(); error AlreadyInitialized(); error NotInitialized(); error OnlyContractOwner(); error CannotAuthoriseSelf(); error RecoveryAddressCannotBeZero(); error CannotDepositNativeToken(); error InvalidCallData(); error NativeAssetNotSupported(); error UnAuthorized(); error NoSwapFromZeroBalance(); error InvalidFallbackAddress(); error CumulativeSlippageTooHigh(uint256 minAmount, uint256 receivedAmount); error InsufficientBalance(uint256 required, uint256 balance); error ZeroAmount(); error InvalidFee(); error InformationMismatch(); error NotAContract(); error NotEnoughBalance(uint256 requested, uint256 available); error ReentrancyError(); error NoAccessFacet(); error MoreAmountThanFee(); error RegisterFirst(); error ReceiveMessageFailed();
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IDiamondCut { enum FacetCutAction { Add, Replace, Remove } // Add=0, Replace=1, Remove=2 struct FacetCut { address facetAddress; FacetCutAction action; bytes4[] functionSelectors; } /// @notice Add/replace/remove any number of functions and optionally execute /// a function with delegatecall /// @param _diamondCut Contains the facet addresses and function selectors /// @param _init The address of the contract or facet to execute _calldata /// @param _calldata A function call, including function selector and arguments /// _calldata is executed with delegatecall on _init function diamondCut(FacetCut[] calldata _diamondCut, address _init, bytes calldata _calldata) external; event DiamondCut(FacetCut[] _diamondCut, address _init, bytes _calldata); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; struct BridgeInfo { string bridge; address dstToken; uint64 chainId; uint256 amount; address user; } struct InputToken { address srcToken; uint256 amount; } struct OutputToken { address dstToken; } struct SwapData { address router; address user; InputToken[] input; OutputToken[] output; DupToken[] dup; bytes callData; address feeToken; bytes plexusData; } struct DupToken { address token; uint256 amount; } struct RelaySwapData { SwapData swapData; address feeTokenAddress; } struct Dex { mapping(address => bool) allowedDex; mapping(address => address) proxy; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "../interfaces/Structs.sol"; library LibData { bytes32 internal constant BRIDGE_NAMESPACE = keccak256("diamond.standard.data.bridge"); bytes32 internal constant STARGATE_NAMESPACE = keccak256("diamond.standard.data.stargate"); bytes32 internal constant CONNEXT_NAMESPACE = keccak256("diamond.standard.data.connext"); bytes32 internal constant HOP_NAMESPACE = keccak256("com.plexus.facets.hop"); event Bridge(address user, uint64 chainId, address srcToken, uint256 fromAmount, bytes plexusData, string bridge); event Swap(address user, InputToken[] input, OutputToken[] output, uint256[] returnAmount, bytes plexusData); event Relayswap(address receiver, OutputToken[] output, uint256[] returnAmount, DupToken[] dupToken, bytes plexusData); struct BridgeDesc { mapping(bytes32 => BridgeInfo) transferInfo; mapping(bytes32 => bool) transfers; } struct StargateData { mapping(address => uint16) poolId; mapping(address => mapping(uint256 => uint16)) dstPoolId; mapping(uint256 => uint16) layerZeroId; } struct HopBridgeData { mapping(address => address) bridge; mapping(address => address) relayer; mapping(address => bool) allowedRelayer; mapping(address => bool) allowedBridge; } struct ConnextBridgeData { mapping(uint64 => uint64) domainId; } function bridgeStorage() internal pure returns (BridgeDesc storage ds) { bytes32 position = BRIDGE_NAMESPACE; // solhint-disable-next-line no-inline-assembly assembly { ds.slot := position } } function stargateStorage() internal pure returns (StargateData storage s) { bytes32 position = STARGATE_NAMESPACE; assembly { s.slot := position } } function hopStorage() internal pure returns (HopBridgeData storage s) { bytes32 position = HOP_NAMESPACE; assembly { s.slot := position } } function connextStorage() internal pure returns (ConnextBridgeData storage s) { bytes32 position = CONNEXT_NAMESPACE; assembly { s.slot := position } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import {IDiamondCut} from "../interfaces/IDiamondCut.sol"; import {LibPlexusUtil} from "../libraries/LibPlexusUtil.sol"; import {OnlyContractOwner} from "../Errors/GenericErrors.sol"; /// Implementation of EIP-2535 Diamond Standard /// https://eips.ethereum.org/EIPS/eip-2535 library LibDiamond { bytes32 internal constant DIAMOND_STORAGE_POSITION = keccak256("diamond.standard.diamond.storage"); // Diamond specific errors error IncorrectFacetCutAction(); error NoSelectorsInFace(); error FunctionAlreadyExists(); error FacetAddressIsZero(); error FacetAddressIsNotZero(); error FacetContainsNoCode(); error FunctionDoesNotExist(); error FunctionIsImmutable(); error InitZeroButCalldataNotEmpty(); error CalldataEmptyButInitNotZero(); error InitReverted(); // ---------------- struct FacetAddressAndPosition { address facetAddress; uint96 functionSelectorPosition; // position in facetFunctionSelectors.functionSelectors array } struct FacetFunctionSelectors { bytes4[] functionSelectors; uint256 facetAddressPosition; // position of facetAddress in facetAddresses array } struct DiamondStorage { // maps function selector to the facet address and // the position of the selector in the facetFunctionSelectors.selectors array mapping(bytes4 => FacetAddressAndPosition) selectorToFacetAndPosition; // maps facet addresses to function selectors mapping(address => FacetFunctionSelectors) facetFunctionSelectors; // facet addresses address[] facetAddresses; // Used to query if a contract implements an interface. // Used to implement ERC-165. mapping(bytes4 => bool) supportedInterfaces; // owner of the contract address contractOwner; uint256 fee; address feeReceiver; } function diamondStorage() internal pure returns (DiamondStorage storage ds) { bytes32 position = DIAMOND_STORAGE_POSITION; // solhint-disable-next-line no-inline-assembly assembly { ds.slot := position } } event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event FeeReceiverTransferred(address indexed previousFeeReceiver, address indexed newFeeReceiver); function setFeePercent(uint256 percent) internal { DiamondStorage storage ds = diamondStorage(); ds.fee = percent; } function setContractOwner(address _newOwner) internal { DiamondStorage storage ds = diamondStorage(); address previousOwner = ds.contractOwner; ds.contractOwner = _newOwner; emit OwnershipTransferred(previousOwner, _newOwner); } function setFeeReceiver(address _receiver) internal { DiamondStorage storage ds = diamondStorage(); address previousFeeReceiver = ds.feeReceiver; ds.feeReceiver = _receiver; emit OwnershipTransferred(previousFeeReceiver, _receiver); } function contractOwner() internal view returns (address contractOwner_) { contractOwner_ = diamondStorage().contractOwner; } function feeReceiver() internal view returns (address receiver) { receiver = diamondStorage().feeReceiver; } function enforceIsContractOwner() internal view { if (msg.sender != diamondStorage().contractOwner) revert OnlyContractOwner(); } event DiamondCut(IDiamondCut.FacetCut[] _diamondCut, address _init, bytes _calldata); // Internal function version of diamondCut function diamondCut(IDiamondCut.FacetCut[] memory _diamondCut, address _init, bytes memory _calldata) internal { for (uint256 facetIndex; facetIndex < _diamondCut.length; ) { IDiamondCut.FacetCutAction action = _diamondCut[facetIndex].action; if (action == IDiamondCut.FacetCutAction.Add) { addFunctions(_diamondCut[facetIndex].facetAddress, _diamondCut[facetIndex].functionSelectors); } else if (action == IDiamondCut.FacetCutAction.Replace) { replaceFunctions(_diamondCut[facetIndex].facetAddress, _diamondCut[facetIndex].functionSelectors); } else if (action == IDiamondCut.FacetCutAction.Remove) { removeFunctions(_diamondCut[facetIndex].facetAddress, _diamondCut[facetIndex].functionSelectors); } else { revert IncorrectFacetCutAction(); } unchecked { ++facetIndex; } } emit DiamondCut(_diamondCut, _init, _calldata); initializeDiamondCut(_init, _calldata); } function addFunctions(address _facetAddress, bytes4[] memory _functionSelectors) internal { if (_functionSelectors.length == 0) { revert NoSelectorsInFace(); } DiamondStorage storage ds = diamondStorage(); if (LibPlexusUtil.isZeroAddress(_facetAddress)) { revert FacetAddressIsZero(); } uint96 selectorPosition = uint96(ds.facetFunctionSelectors[_facetAddress].functionSelectors.length); // add new facet address if it does not exist if (selectorPosition == 0) { addFacet(ds, _facetAddress); } for (uint256 selectorIndex; selectorIndex < _functionSelectors.length; ) { bytes4 selector = _functionSelectors[selectorIndex]; address oldFacetAddress = ds.selectorToFacetAndPosition[selector].facetAddress; if (!LibPlexusUtil.isZeroAddress(oldFacetAddress)) { revert FunctionAlreadyExists(); } addFunction(ds, selector, selectorPosition, _facetAddress); unchecked { ++selectorPosition; ++selectorIndex; } } } function replaceFunctions(address _facetAddress, bytes4[] memory _functionSelectors) internal { if (_functionSelectors.length == 0) { revert NoSelectorsInFace(); } DiamondStorage storage ds = diamondStorage(); if (LibPlexusUtil.isZeroAddress(_facetAddress)) { revert FacetAddressIsZero(); } uint96 selectorPosition = uint96(ds.facetFunctionSelectors[_facetAddress].functionSelectors.length); // add new facet address if it does not exist if (selectorPosition == 0) { addFacet(ds, _facetAddress); } for (uint256 selectorIndex; selectorIndex < _functionSelectors.length; ) { bytes4 selector = _functionSelectors[selectorIndex]; address oldFacetAddress = ds.selectorToFacetAndPosition[selector].facetAddress; if (oldFacetAddress == _facetAddress) { revert FunctionAlreadyExists(); } removeFunction(ds, oldFacetAddress, selector); addFunction(ds, selector, selectorPosition, _facetAddress); unchecked { ++selectorPosition; ++selectorIndex; } } } function removeFunctions(address _facetAddress, bytes4[] memory _functionSelectors) internal { if (_functionSelectors.length == 0) { revert NoSelectorsInFace(); } DiamondStorage storage ds = diamondStorage(); // if function does not exist then do nothing and return if (!LibPlexusUtil.isZeroAddress(_facetAddress)) { revert FacetAddressIsNotZero(); } for (uint256 selectorIndex; selectorIndex < _functionSelectors.length; ) { bytes4 selector = _functionSelectors[selectorIndex]; address oldFacetAddress = ds.selectorToFacetAndPosition[selector].facetAddress; removeFunction(ds, oldFacetAddress, selector); unchecked { ++selectorIndex; } } } function addFacet(DiamondStorage storage ds, address _facetAddress) internal { enforceHasContractCode(_facetAddress); ds.facetFunctionSelectors[_facetAddress].facetAddressPosition = ds.facetAddresses.length; ds.facetAddresses.push(_facetAddress); } function addFunction(DiamondStorage storage ds, bytes4 _selector, uint96 _selectorPosition, address _facetAddress) internal { ds.selectorToFacetAndPosition[_selector].functionSelectorPosition = _selectorPosition; ds.facetFunctionSelectors[_facetAddress].functionSelectors.push(_selector); ds.selectorToFacetAndPosition[_selector].facetAddress = _facetAddress; } function removeFunction(DiamondStorage storage ds, address _facetAddress, bytes4 _selector) internal { if (LibPlexusUtil.isZeroAddress(_facetAddress)) { revert FunctionDoesNotExist(); } // an immutable function is a function defined directly in a diamond if (_facetAddress == address(this)) { revert FunctionIsImmutable(); } // replace selector with last selector, then delete last selector uint256 selectorPosition = ds.selectorToFacetAndPosition[_selector].functionSelectorPosition; uint256 lastSelectorPosition = ds.facetFunctionSelectors[_facetAddress].functionSelectors.length - 1; // if not the same then replace _selector with lastSelector if (selectorPosition != lastSelectorPosition) { bytes4 lastSelector = ds.facetFunctionSelectors[_facetAddress].functionSelectors[lastSelectorPosition]; ds.facetFunctionSelectors[_facetAddress].functionSelectors[selectorPosition] = lastSelector; ds.selectorToFacetAndPosition[lastSelector].functionSelectorPosition = uint96(selectorPosition); } // delete the last selector ds.facetFunctionSelectors[_facetAddress].functionSelectors.pop(); delete ds.selectorToFacetAndPosition[_selector]; // if no more selectors for facet address then delete the facet address if (lastSelectorPosition == 0) { // replace facet address with last facet address and delete last facet address uint256 lastFacetAddressPosition = ds.facetAddresses.length - 1; uint256 facetAddressPosition = ds.facetFunctionSelectors[_facetAddress].facetAddressPosition; if (facetAddressPosition != lastFacetAddressPosition) { address lastFacetAddress = ds.facetAddresses[lastFacetAddressPosition]; ds.facetAddresses[facetAddressPosition] = lastFacetAddress; ds.facetFunctionSelectors[lastFacetAddress].facetAddressPosition = facetAddressPosition; } ds.facetAddresses.pop(); delete ds.facetFunctionSelectors[_facetAddress].facetAddressPosition; } } function initializeDiamondCut(address _init, bytes memory _calldata) internal { if (LibPlexusUtil.isZeroAddress(_init)) { if (_calldata.length != 0) { revert InitZeroButCalldataNotEmpty(); } } else { if (_calldata.length == 0) { revert CalldataEmptyButInitNotZero(); } if (_init != address(this)) { enforceHasContractCode(_init); } // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory error) = _init.delegatecall(_calldata); if (!success) { if (error.length > 0) { // bubble up the error revert(string(error)); } else { revert InitReverted(); } } } } function enforceHasContractCode(address _contract) internal view { uint256 contractSize; // solhint-disable-next-line no-inline-assembly assembly { contractSize := extcodesize(_contract) } if (contractSize == 0) { revert FacetContainsNoCode(); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import {SwapFailed} from "../Errors/GenericErrors.sol"; import "../libraries/SafeERC20.sol"; import "../interfaces/Structs.sol"; import "./LibDiamond.sol"; import "./LibData.sol"; library LibPlexusUtil { using SafeERC20 for IERC20; IERC20 private constant NATIVE_ADDRESS = IERC20(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE); bytes32 internal constant NAMESPACE = keccak256("com.plexus.facets.swap"); function getSwapStorage() internal pure returns (Dex storage s) { bytes32 namespace = NAMESPACE; assembly { s.slot := namespace } } function dexCheck(address dex) internal view returns (bool result) { Dex storage s = LibPlexusUtil.getSwapStorage(); return s.allowedDex[dex]; } function dexProxyCheck(address dex) internal view returns (address proxy) { Dex storage s = LibPlexusUtil.getSwapStorage(); return s.proxy[dex]; } /// @notice Determines whether the given address is the zero address /// @param addr The address to verify /// @return Boolean indicating if the address is the zero address function isZeroAddress(address addr) internal pure returns (bool) { return addr == address(0); } function getBalance(address token) internal view returns (uint256) { return token == address(NATIVE_ADDRESS) ? address(this).balance : IERC20(token).balanceOf(address(this)); } function userBalance(address user, address token) internal view returns (uint256) { return token == address(NATIVE_ADDRESS) ? user.balance : IERC20(token).balanceOf(user); } function _isNative(address _token) internal pure returns (bool) { return (IERC20(_token) == NATIVE_ADDRESS); } function _isTokenDeposit(address _token, uint256 _amount) internal returns (bool isNotNative) { isNotNative = !_isNative(_token); if (isNotNative) { IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount); } else { require(msg.value >= _amount, "msg.value is missing."); } } function _isSwapTokenDeposit(InputToken[] calldata input) internal { uint256 nativeAmount = 0; for (uint i; i < input.length; i++) { bool isNotNative = !_isNative(input[i].srcToken); if (isNotNative) { IERC20(input[i].srcToken).safeTransferFrom(msg.sender, address(this), input[i].amount); } else { nativeAmount = nativeAmount + input[i].amount; } } require(msg.value >= nativeAmount); } function _isTokenApprove(SwapData calldata swap) internal returns (uint256) { Dex storage s = getSwapStorage(); require(s.allowedDex[swap.router]); InputToken[] calldata input = swap.input; uint256 nativeAmount = 0; for (uint i; i < input.length; i++) { bool isNotNative = !_isNative(input[i].srcToken); if (isNotNative) { if (s.proxy[swap.router] != address(0)) { IERC20(input[i].srcToken).safeApprove(s.proxy[swap.router], 0); IERC20(input[i].srcToken).safeApprove(s.proxy[swap.router], input[i].amount); } else { IERC20(input[i].srcToken).safeApprove(swap.router, 0); IERC20(input[i].srcToken).safeApprove(swap.router, input[i].amount); } } else { nativeAmount = input[i].amount; } } require(msg.value >= nativeAmount); return nativeAmount; } function _tokenDepositAndSwap(SwapData calldata swap) internal returns (uint256[] memory) { _isSwapTokenDeposit(swap.input); uint256[] memory dstAmount = new uint256[](swap.output.length); dstAmount = _swapStart(swap); return dstAmount; } function _swapStart(SwapData calldata swap) internal returns (uint256[] memory) { _isTokenApprove(swap); uint256 length = swap.output.length; uint256[] memory initDstTokenBalance = new uint256[](length); uint256[] memory dstTokenBalance = new uint256[](length); for (uint i; i < length; i++) { initDstTokenBalance[i] = getBalance(swap.output[i].dstToken); } (bool succ, ) = swap.router.call{value: msg.value}(swap.callData); if (succ) { for (uint i; i < length; i++) { dstTokenBalance[i] = getBalance(swap.output[i].dstToken) - initDstTokenBalance[i]; } return dstTokenBalance; } else { revert("swap failed"); } } function _bridgeSwapStart(SwapData calldata swap) internal returns (uint256) { uint256 nativeAmount = _isTokenApprove(swap); require(swap.output.length == 1); uint256 initDstTokenBalance = getBalance(swap.output[0].dstToken); (bool succ, ) = swap.router.call{value: nativeAmount}(swap.callData); if (succ) { uint256 dstTokenBalance = getBalance(swap.output[0].dstToken) - initDstTokenBalance; return dstTokenBalance; } else { revert("swap failed"); } } function _safeNativeTransfer(address to_, uint256 amount_) internal { (bool sent, ) = to_.call{value: amount_}(""); require(sent, "Safe safeTransfer fail"); } function _fee(address dstToken, uint256 dstAmount) internal returns (uint256 returnAmount) { LibDiamond.DiamondStorage storage ds = LibDiamond.diamondStorage(); uint256 getFee = (dstAmount * ds.fee) / 10000; returnAmount = dstAmount - getFee; if (getFee > 0) { if (!_isNative(dstToken)) { IERC20(dstToken).safeTransfer(ds.feeReceiver, getFee); } else { _safeNativeTransfer(ds.feeReceiver, getFee); } } } function _relaySwapStart(SwapData calldata swap) internal returns (uint256[] memory) { uint256 nativeAmount = _isTokenApprove(swap); uint256 length = swap.output.length; uint256[] memory initDstTokenBalance = new uint256[](length); uint256[] memory dstTokenBalance = new uint256[](length); for (uint i; i < length; i++) { initDstTokenBalance[i] = getBalance(swap.output[i].dstToken); } (bool succ, ) = swap.router.call{value: nativeAmount}(swap.callData); if (succ) { for (uint i; i < length; i++) { dstTokenBalance[i] = getBalance(swap.output[i].dstToken) - initDstTokenBalance[i]; } return dstTokenBalance; } else { revert("swap failed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../interfaces/IERC20.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; 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)); } } /** * @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"); } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "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":"_contractOwner","type":"address"},{"internalType":"address","name":"_diamondCutFacet","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"CalldataEmptyButInitNotZero","type":"error"},{"inputs":[],"name":"FacetAddressIsNotZero","type":"error"},{"inputs":[],"name":"FacetAddressIsZero","type":"error"},{"inputs":[],"name":"FacetContainsNoCode","type":"error"},{"inputs":[],"name":"FunctionAlreadyExists","type":"error"},{"inputs":[],"name":"FunctionDoesNotExist","type":"error"},{"inputs":[],"name":"FunctionIsImmutable","type":"error"},{"inputs":[],"name":"IncorrectFacetCutAction","type":"error"},{"inputs":[],"name":"InitReverted","type":"error"},{"inputs":[],"name":"InitZeroButCalldataNotEmpty","type":"error"},{"inputs":[],"name":"NoSelectorsInFace","type":"error"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405162001d7b38038062001d7b833981016040819052620000269162000d95565b6200003c826200015660201b620000821760201c565b604080516001808252818301909252600091816020015b60408051606080820183526000808352602083015291810191909152815260200190600190039081620000535750506040805160018082528183019092529192506000919060208083019080368337019050509050631f931c1c60e01b81600081518110620000c657620000c662000dcd565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b038516815290810160008152602001828152508260008151811062000119576200011962000dcd565b60200260200101819052506200014c82600060405180602001604052806000815250620001da60201b620001051760201c565b5050505062000fcc565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c132080546001600160a01b031981166001600160a01b0384811691821790935560405160008051602062001d5b833981519152939092169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b60005b835181101562000396576000848281518110620001fe57620001fe62000dcd565b60200260200101516020015190506000600281111562000222576200022262000de3565b81600281111562000237576200023762000de3565b0362000295576200028f85838151811062000256576200025662000dcd565b60200260200101516000015186848151811062000277576200027762000dcd565b602002602001015160400151620003e560201b60201c565b6200038c565b6001816002811115620002ac57620002ac62000de3565b0362000304576200028f858381518110620002cb57620002cb62000dcd565b602002602001015160000151868481518110620002ec57620002ec62000dcd565b602002602001015160400151620005c160201b60201c565b60028160028111156200031b576200031b62000de3565b0362000373576200028f8583815181106200033a576200033a62000dcd565b6020026020010151600001518684815181106200035b576200035b62000dcd565b6020026020010151604001516200079560201b60201c565b60405163e548e6b560e01b815260040160405180910390fd5b50600101620001dd565b507f8faa70878671ccd212d20771b795c50af8fd3ff6cf27f4bde57e5d4de0aeb673838383604051620003cc9392919062000e4d565b60405180910390a1620003e0828262000874565b505050565b805160000362000408576040516307bc559560e41b815260040160405180910390fd5b600060008051602062001d5b83398151915290506200043283620009a460201b620002cd1760201c565b156200045157604051636347641d60e11b815260040160405180910390fd5b6001600160a01b0383166000908152600182016020526040812054906001600160601b03821690036200048a576200048a8285620009b1565b60005b8351811015620005ba576000848281518110620004ae57620004ae62000dcd565b6020908102919091018101516001600160e01b03198116600090815286835260409020549092506001600160a01b031690620004f5908290620002cd620009a4821b17901c565b620005135760405163a023275d60e01b815260040160405180910390fd5b6001600160e01b0319821660008181526020878152604080832080546001600160a01b03908116600160a01b6001600160601b038c16021782558c168085526001808c0185529285208054938401815585528385206008840401805463ffffffff60079095166004026101000a948502191660e08a901c94909402939093179092559390925287905281546001600160a01b0319161790555050600191820191016200048d565b5050505050565b8051600003620005e4576040516307bc559560e41b815260040160405180910390fd5b600060008051602062001d5b83398151915290506200060e83620009a460201b620002cd1760201c565b156200062d57604051636347641d60e11b815260040160405180910390fd5b6001600160a01b0383166000908152600182016020526040812054906001600160601b03821690036200066657620006668285620009b1565b60005b8351811015620005ba5760008482815181106200068a576200068a62000dcd565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b039081169087168103620006e15760405163a023275d60e01b815260040160405180910390fd5b620006ee85828462000a04565b6001600160e01b0319821660008181526020878152604080832080546001600160a01b03908116600160a01b6001600160601b038c16021782558c168085526001808c0185529285208054938401815585528385206008840401805463ffffffff60079095166004026101000a948502191660e08a901c94909402939093179092559390925287905281546001600160a01b03191617905550506001918201910162000669565b8051600003620007b8576040516307bc559560e41b815260040160405180910390fd5b600060008051602062001d5b8339815191529050620007e283620009a460201b620002cd1760201c565b6200080057604051633ce4ef9160e11b815260040160405180910390fd5b60005b82518110156200086e57600083828151811062000824576200082462000dcd565b6020908102919091018101516001600160e01b031981166000908152918590526040909120549091506001600160a01b03166200086384828462000a04565b505060010162000803565b50505050565b6200088a82620009a460201b620002cd1760201c565b15620008b557805115620008b1576040516304c08b4360e51b815260040160405180910390fd5b5050565b8051600003620008d85760405163211002b360e11b815260040160405180910390fd5b6001600160a01b0382163014620008f457620008f48262000d54565b600080836001600160a01b03168360405162000911919062000f54565b600060405180830381855af49150503d80600081146200094e576040519150601f19603f3d011682016040523d82523d6000602084013e62000953565b606091505b5091509150816200086e578051156200098b578060405162461bcd60e51b815260040162000982919062000f72565b60405180910390fd5b60405163c53ebed560e01b815260040160405180910390fd5b6001600160a01b03161590565b620009bc8162000d54565b6002820180546001600160a01b0390921660008181526001948501602090815260408220860185905594840183559182529290200180546001600160a01b0319169091179055565b62000a1a82620009a460201b620002cd1760201c565b1562000a3957604051631535ac5f60e31b815260040160405180910390fd5b306001600160a01b0383160362000a635760405163c3c5ec3760e01b815260040160405180910390fd5b6001600160e01b03198116600090815260208481526040808320546001600160a01b0386168452600180880190935290832054600160a01b9091046001600160601b0316929162000ab49162000f8e565b905080821462000bad576001600160a01b0384166000908152600186016020526040812080548390811062000aed5762000aed62000dcd565b600091825260208083206008830401546001600160a01b038916845260018a019091526040909220805460079092166004026101000a90920460e01b92508291908590811062000b415762000b4162000dcd565b600091825260208083206008830401805463ffffffff60079094166004026101000a938402191660e09590951c929092029390931790556001600160e01b03199290921682528690526040902080546001600160a01b0316600160a01b6001600160601b038516021790555b6001600160a01b0384166000908152600186016020526040902080548062000bd95762000bd962000fb6565b60008281526020808220600860001990940193840401805463ffffffff600460078716026101000a0219169055919092556001600160e01b03198516825286905260408120819055819003620005ba57600285015460009062000c3f9060019062000f8e565b6001600160a01b038616600090815260018089016020526040909120015490915080821462000cf557600087600201838154811062000c825762000c8262000dcd565b6000918252602090912001546002890180546001600160a01b03909216925082918490811062000cb65762000cb662000dcd565b600091825260208083209190910180546001600160a01b0319166001600160a01b03948516179055929091168152600189810190925260409020018190555b8660020180548062000d0b5762000d0b62000fb6565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0388168252600189810190915260408220015550505050505050565b803b6000819003620008b1576040516271a80360e91b815260040160405180910390fd5b80516001600160a01b038116811462000d9057600080fd5b919050565b6000806040838503121562000da957600080fd5b62000db48362000d78565b915062000dc46020840162000d78565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60005b8381101562000e1657818101518382015260200162000dfc565b50506000910152565b6000815180845262000e3981602086016020860162000df9565b601f01601f19169290920160200192915050565b60006060808301818452808751808352608092508286019150828160051b8701016020808b0160005b8481101562000f2257898403607f19018652815180516001600160a01b0316855283810151898601906003811062000ebe57634e487b7160e01b600052602160045260246000fd5b868601526040918201519186018a905281519081905290840190600090898701905b8083101562000f0c5783516001600160e01b031916825292860192600192909201919086019062000ee0565b5097850197955050509082019060010162000e76565b50506001600160a01b038a1690880152868103604088015262000f46818962000e1f565b9a9950505050505050505050565b6000825162000f6881846020870162000df9565b9190910192915050565b60208152600062000f87602083018462000e1f565b9392505050565b8181038181111562000fb057634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052603160045260246000fd5b610d7f8062000fdc6000396000f3fe60806040523661000b57005b600080356001600160e01b0319168152600080516020610d2a833981519152602081905260409091205481906001600160a01b03168061005e57604051631535ac5f60e31b815260040160405180910390fd5b3660008037600080366000845af43d6000803e80801561007d573d6000f35b3d6000fd5b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c132080546001600160a01b031981166001600160a01b03848116918217909355604051600080516020610d2a833981519152939092169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b60005b835181101561028257600084828151811061012557610125610b3a565b60200260200101516020015190506000600281111561014657610146610b50565b81600281111561015857610158610b50565b036101a6576101a185838151811061017257610172610b3a565b60200260200101516000015186848151811061019057610190610b3a565b6020026020010151604001516102da565b610279565b60018160028111156101ba576101ba610b50565b03610203576101a18583815181106101d4576101d4610b3a565b6020026020010151600001518684815181106101f2576101f2610b3a565b6020026020010151604001516103fa565b600281600281111561021757610217610b50565b03610260576101a185838151811061023157610231610b3a565b60200260200101516000015186848151811061024f5761024f610b3a565b602002602001015160400151610523565b60405163e548e6b560e01b815260040160405180910390fd5b50600101610108565b507f8faa70878671ccd212d20771b795c50af8fd3ff6cf27f4bde57e5d4de0aeb6738383836040516102b693929190610bb6565b60405180910390a16102c882826105e9565b505050565b6001600160a01b03161590565b80516000036102fc576040516307bc559560e41b815260040160405180910390fd5b600080516020610d2a8339815191526001600160a01b03831661033257604051636347641d60e11b815260040160405180910390fd5b6001600160a01b0383166000908152600182016020526040812054906001600160601b03821690036103685761036882856106fe565b60005b83518110156103f357600084828151811061038857610388610b3a565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b031680156103d95760405163a023275d60e01b815260040160405180910390fd5b6103e58583868a61074f565b50506001918201910161036b565b5050505050565b805160000361041c576040516307bc559560e41b815260040160405180910390fd5b600080516020610d2a8339815191526001600160a01b03831661045257604051636347641d60e11b815260040160405180910390fd5b6001600160a01b0383166000908152600182016020526040812054906001600160601b03821690036104885761048882856106fe565b60005b83518110156103f35760008482815181106104a8576104a8610b3a565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b0390811690871681036104fe5760405163a023275d60e01b815260040160405180910390fd5b6105098582846107ef565b6105158583868a61074f565b50506001918201910161048b565b8051600003610545576040516307bc559560e41b815260040160405180910390fd5b600080516020610d2a8339815191526001600160a01b0383161561057c57604051633ce4ef9160e11b815260040160405180910390fd5b60005b82518110156105e357600083828151811061059c5761059c610b3a565b6020908102919091018101516001600160e01b031981166000908152918590526040909120549091506001600160a01b03166105d98482846107ef565b505060010161057f565b50505050565b6001600160a01b03821661061b57805115610617576040516304c08b4360e51b815260040160405180910390fd5b5050565b805160000361063d5760405163211002b360e11b815260040160405180910390fd5b6001600160a01b03821630146106565761065682610b17565b600080836001600160a01b0316836040516106719190610cb6565b600060405180830381855af49150503d80600081146106ac576040519150601f19603f3d011682016040523d82523d6000602084013e6106b1565b606091505b5091509150816105e3578051156106e5578060405162461bcd60e51b81526004016106dc9190610cd2565b60405180910390fd5b60405163c53ebed560e01b815260040160405180910390fd5b61070781610b17565b6002820180546001600160a01b0390921660008181526001948501602090815260408220860185905594840183559182529290200180546001600160a01b0319169091179055565b6001600160e01b0319831660008181526020868152604080832080546001600160601b03909716600160a01b026001600160a01b0397881617815594909516808352600180890183529583208054968701815583528183206008870401805460e09890981c60046007909816979097026101000a96870263ffffffff9097021990971695909517909555529290915281546001600160a01b031916179055565b6001600160a01b03821661081657604051631535ac5f60e31b815260040160405180910390fd5b306001600160a01b0383160361083f5760405163c3c5ec3760e01b815260040160405180910390fd5b6001600160e01b03198116600090815260208481526040808320546001600160a01b0386168452600180880190935290832054600160a01b9091046001600160601b0316929161088e91610cec565b9050808214610980576001600160a01b038416600090815260018601602052604081208054839081106108c3576108c3610b3a565b600091825260208083206008830401546001600160a01b038916845260018a019091526040909220805460079092166004026101000a90920460e01b92508291908590811061091457610914610b3a565b600091825260208083206008830401805463ffffffff60079094166004026101000a938402191660e09590951c929092029390931790556001600160e01b03199290921682528690526040902080546001600160a01b0316600160a01b6001600160601b038516021790555b6001600160a01b038416600090815260018601602052604090208054806109a9576109a9610d13565b60008281526020808220600860001990940193840401805463ffffffff600460078716026101000a0219169055919092556001600160e01b031985168252869052604081208190558190036103f3576002850154600090610a0c90600190610cec565b6001600160a01b0386166000908152600180890160205260409091200154909150808214610abb576000876002018381548110610a4b57610a4b610b3a565b6000918252602090912001546002890180546001600160a01b039092169250829184908110610a7c57610a7c610b3a565b600091825260208083209190910180546001600160a01b0319166001600160a01b03948516179055929091168152600189810190925260409020018190555b86600201805480610ace57610ace610d13565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0388168252600189810190915260408220015550505050505050565b803b6000819003610617576040516271a80360e91b815260040160405180910390fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60005b83811015610b81578181015183820152602001610b69565b50506000910152565b60008151808452610ba2816020860160208601610b66565b601f01601f19169290920160200192915050565b60006060808301818452808751808352608092508286019150828160051b8701016020808b0160005b84811015610c8657898403607f19018652815180516001600160a01b03168552838101518986019060038110610c2557634e487b7160e01b600052602160045260246000fd5b868601526040918201519186018a905281519081905290840190600090898701905b80831015610c715783516001600160e01b0319168252928601926001929092019190860190610c47565b50978501979550505090820190600101610bdf565b50506001600160a01b038a16908801528681036040880152610ca88189610b8a565b9a9950505050505050505050565b60008251610cc8818460208701610b66565b9190910192915050565b602081526000610ce56020830184610b8a565b9392505050565b81810381811115610d0d57634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052603160045260246000fdfec8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131ca26469706673582212203493ee6c75fd3c0568179dad4f97112459d0084fc5e2992892161403471b986164736f6c63430008110033c8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131c000000000000000000000000b612cf824bff640b5f3e408eba5eaf2f46e1f09b00000000000000000000000073a7be285ddcc0e7f9e1eab827c4eabe3b3a55e5
Deployed Bytecode
0x60806040523661000b57005b600080356001600160e01b0319168152600080516020610d2a833981519152602081905260409091205481906001600160a01b03168061005e57604051631535ac5f60e31b815260040160405180910390fd5b3660008037600080366000845af43d6000803e80801561007d573d6000f35b3d6000fd5b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c132080546001600160a01b031981166001600160a01b03848116918217909355604051600080516020610d2a833981519152939092169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b60005b835181101561028257600084828151811061012557610125610b3a565b60200260200101516020015190506000600281111561014657610146610b50565b81600281111561015857610158610b50565b036101a6576101a185838151811061017257610172610b3a565b60200260200101516000015186848151811061019057610190610b3a565b6020026020010151604001516102da565b610279565b60018160028111156101ba576101ba610b50565b03610203576101a18583815181106101d4576101d4610b3a565b6020026020010151600001518684815181106101f2576101f2610b3a565b6020026020010151604001516103fa565b600281600281111561021757610217610b50565b03610260576101a185838151811061023157610231610b3a565b60200260200101516000015186848151811061024f5761024f610b3a565b602002602001015160400151610523565b60405163e548e6b560e01b815260040160405180910390fd5b50600101610108565b507f8faa70878671ccd212d20771b795c50af8fd3ff6cf27f4bde57e5d4de0aeb6738383836040516102b693929190610bb6565b60405180910390a16102c882826105e9565b505050565b6001600160a01b03161590565b80516000036102fc576040516307bc559560e41b815260040160405180910390fd5b600080516020610d2a8339815191526001600160a01b03831661033257604051636347641d60e11b815260040160405180910390fd5b6001600160a01b0383166000908152600182016020526040812054906001600160601b03821690036103685761036882856106fe565b60005b83518110156103f357600084828151811061038857610388610b3a565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b031680156103d95760405163a023275d60e01b815260040160405180910390fd5b6103e58583868a61074f565b50506001918201910161036b565b5050505050565b805160000361041c576040516307bc559560e41b815260040160405180910390fd5b600080516020610d2a8339815191526001600160a01b03831661045257604051636347641d60e11b815260040160405180910390fd5b6001600160a01b0383166000908152600182016020526040812054906001600160601b03821690036104885761048882856106fe565b60005b83518110156103f35760008482815181106104a8576104a8610b3a565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b0390811690871681036104fe5760405163a023275d60e01b815260040160405180910390fd5b6105098582846107ef565b6105158583868a61074f565b50506001918201910161048b565b8051600003610545576040516307bc559560e41b815260040160405180910390fd5b600080516020610d2a8339815191526001600160a01b0383161561057c57604051633ce4ef9160e11b815260040160405180910390fd5b60005b82518110156105e357600083828151811061059c5761059c610b3a565b6020908102919091018101516001600160e01b031981166000908152918590526040909120549091506001600160a01b03166105d98482846107ef565b505060010161057f565b50505050565b6001600160a01b03821661061b57805115610617576040516304c08b4360e51b815260040160405180910390fd5b5050565b805160000361063d5760405163211002b360e11b815260040160405180910390fd5b6001600160a01b03821630146106565761065682610b17565b600080836001600160a01b0316836040516106719190610cb6565b600060405180830381855af49150503d80600081146106ac576040519150601f19603f3d011682016040523d82523d6000602084013e6106b1565b606091505b5091509150816105e3578051156106e5578060405162461bcd60e51b81526004016106dc9190610cd2565b60405180910390fd5b60405163c53ebed560e01b815260040160405180910390fd5b61070781610b17565b6002820180546001600160a01b0390921660008181526001948501602090815260408220860185905594840183559182529290200180546001600160a01b0319169091179055565b6001600160e01b0319831660008181526020868152604080832080546001600160601b03909716600160a01b026001600160a01b0397881617815594909516808352600180890183529583208054968701815583528183206008870401805460e09890981c60046007909816979097026101000a96870263ffffffff9097021990971695909517909555529290915281546001600160a01b031916179055565b6001600160a01b03821661081657604051631535ac5f60e31b815260040160405180910390fd5b306001600160a01b0383160361083f5760405163c3c5ec3760e01b815260040160405180910390fd5b6001600160e01b03198116600090815260208481526040808320546001600160a01b0386168452600180880190935290832054600160a01b9091046001600160601b0316929161088e91610cec565b9050808214610980576001600160a01b038416600090815260018601602052604081208054839081106108c3576108c3610b3a565b600091825260208083206008830401546001600160a01b038916845260018a019091526040909220805460079092166004026101000a90920460e01b92508291908590811061091457610914610b3a565b600091825260208083206008830401805463ffffffff60079094166004026101000a938402191660e09590951c929092029390931790556001600160e01b03199290921682528690526040902080546001600160a01b0316600160a01b6001600160601b038516021790555b6001600160a01b038416600090815260018601602052604090208054806109a9576109a9610d13565b60008281526020808220600860001990940193840401805463ffffffff600460078716026101000a0219169055919092556001600160e01b031985168252869052604081208190558190036103f3576002850154600090610a0c90600190610cec565b6001600160a01b0386166000908152600180890160205260409091200154909150808214610abb576000876002018381548110610a4b57610a4b610b3a565b6000918252602090912001546002890180546001600160a01b039092169250829184908110610a7c57610a7c610b3a565b600091825260208083209190910180546001600160a01b0319166001600160a01b03948516179055929091168152600189810190925260409020018190555b86600201805480610ace57610ace610d13565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0388168252600189810190915260408220015550505050505050565b803b6000819003610617576040516271a80360e91b815260040160405180910390fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60005b83811015610b81578181015183820152602001610b69565b50506000910152565b60008151808452610ba2816020860160208601610b66565b601f01601f19169290920160200192915050565b60006060808301818452808751808352608092508286019150828160051b8701016020808b0160005b84811015610c8657898403607f19018652815180516001600160a01b03168552838101518986019060038110610c2557634e487b7160e01b600052602160045260246000fd5b868601526040918201519186018a905281519081905290840190600090898701905b80831015610c715783516001600160e01b0319168252928601926001929092019190860190610c47565b50978501979550505090820190600101610bdf565b50506001600160a01b038a16908801528681036040880152610ca88189610b8a565b9a9950505050505050505050565b60008251610cc8818460208701610b66565b9190910192915050565b602081526000610ce56020830184610b8a565b9392505050565b81810381811115610d0d57634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052603160045260246000fdfec8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131ca26469706673582212203493ee6c75fd3c0568179dad4f97112459d0084fc5e2992892161403471b986164736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b612cf824bff640b5f3e408eba5eaf2f46e1f09b00000000000000000000000073a7be285ddcc0e7f9e1eab827c4eabe3b3a55e5
-----Decoded View---------------
Arg [0] : _contractOwner (address): 0xb612cF824bFf640b5F3E408Eba5EAf2F46E1F09B
Arg [1] : _diamondCutFacet (address): 0x73a7BE285DdCC0e7F9e1eab827C4eABe3b3a55e5
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b612cf824bff640b5f3e408eba5eaf2f46e1f09b
Arg [1] : 00000000000000000000000073a7be285ddcc0e7f9e1eab827c4eabe3b3a55e5
Loading...
Loading
Loading...
Loading
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.