Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
8885275 | 218 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xd2164fc4...C2B629eDE The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
DeBridgeValidator
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.23; import { BridgeValidator } from "src/crosschain-liquidity/BridgeValidator.sol"; import { Error } from "src/libraries/Error.sol"; import { DeBridgeError } from "src/crosschain-liquidity/debridge/libraries/DeBridgeError.sol"; import { IDlnSource } from "src/vendor/deBridge/IDlnSource.sol"; import { DlnOrderLib } from "src/vendor/deBridge/DlnOrderLib.sol"; /// @title DeBridgeValidator /// @dev Asserts if De-Bridge input txData is valid /// @author Zeropoint Labs contract DeBridgeValidator is BridgeValidator { ////////////////////////////////////////////////////////////// // CONSTANTS // ////////////////////////////////////////////////////////////// bytes private constant NATIVE_IN_BYTES = abi.encodePacked(NATIVE); ////////////////////////////////////////////////////////////// // CONSTRUCTOR // ////////////////////////////////////////////////////////////// constructor(address superRegistry_) BridgeValidator(superRegistry_) { } ////////////////////////////////////////////////////////////// // EXTERNAL VIEW FUNCTIONS // ////////////////////////////////////////////////////////////// /// @inheritdoc BridgeValidator function validateReceiver(bytes calldata txData_, address receiver) external pure override returns (bool) { DlnOrderLib.OrderCreation memory deBridgeQuote = _decodeTxData(txData_); return (receiver == _castToAddress(deBridgeQuote.receiverDst)); } /// @inheritdoc BridgeValidator /// @dev make sure the OrderCreation.allowedCancelBeneficiarySrc and OrderCreation.givePatchAuthoritySrc is the user /// address on source function validateTxData(ValidateTxDataArgs calldata args_) external view override returns (bool hasDstSwap) { DlnOrderLib.OrderCreation memory deBridgeQuote = _decodeTxData(args_.txData); /// sanity check for allowed parameters of tx data if (deBridgeQuote.externalCall.length > 0) revert DeBridgeError.INVALID_EXTRA_CALL_DATA(); if (deBridgeQuote.allowedTakerDst.length > 0) revert DeBridgeError.INVALID_TAKER_DST(); /// @dev mandates the refund receiver to be args_.receiver if (_castToAddress(deBridgeQuote.allowedCancelBeneficiarySrc) != args_.receiverAddress) { revert DeBridgeError.INVALID_REFUND_ADDRESS(); } /// @dev mandates the give patch authority src to be args_.receiver if (deBridgeQuote.givePatchAuthoritySrc != args_.receiverAddress) { revert DeBridgeError.INVALID_PATCH_ADDRESS(); } if ( superRegistry.getAddressByChainId(keccak256("CORE_STATE_REGISTRY_RESCUER_ROLE"), args_.liqDstChainId) != _castToAddress(deBridgeQuote.orderAuthorityAddressDst) ) revert DeBridgeError.INVALID_DEBRIDGE_AUTHORITY(); /// @dev 1. chain id validation if ( uint64(deBridgeQuote.takeChainId) != args_.liqDstChainId || args_.liqDataToken != deBridgeQuote.giveTokenAddress ) revert Error.INVALID_TXDATA_CHAIN_ID(); /// @dev 2. receiver address validation /// @dev allows dst swaps by coupling debridge with other bridges address receiver = _castToAddress(deBridgeQuote.receiverDst); if (args_.deposit) { if (args_.srcChainId == args_.dstChainId || args_.dstChainId != args_.liqDstChainId) { revert Error.INVALID_ACTION(); } hasDstSwap = receiver == superRegistry.getAddressByChainId(keccak256("DST_SWAPPER"), args_.dstChainId); /// @dev if cross chain deposits, then receiver address must be CoreStateRegistry (or) Dst Swapper if ( !( receiver == superRegistry.getAddressByChainId(keccak256("CORE_STATE_REGISTRY"), args_.dstChainId) || hasDstSwap ) ) { revert Error.INVALID_TXDATA_RECEIVER(); } /// @dev if there is a dst swap then the interim token should be the quote of debridge if (hasDstSwap && (args_.liqDataInterimToken != _castToAddress(deBridgeQuote.takeTokenAddress))) { revert Error.INVALID_INTERIM_TOKEN(); } } else { /// @dev if withdrawal, then receiver address must be the receiverAddress if (receiver != args_.receiverAddress) revert Error.INVALID_TXDATA_RECEIVER(); } } /// @inheritdoc BridgeValidator function decodeAmountIn( bytes calldata txData_, bool /*genericSwapDisallowed_*/ ) external pure override returns (uint256 amount_) { DlnOrderLib.OrderCreation memory deBridgeQuote = _decodeTxData(txData_); amount_ = deBridgeQuote.giveAmount; } /// @inheritdoc BridgeValidator function decodeDstSwap(bytes calldata /*txData_*/ ) external pure override returns (address, /*token_*/ uint256 /*amount_*/ ) { /// @dev debridge cannot be used for just swaps revert Error.CANNOT_DECODE_FINAL_SWAP_OUTPUT_TOKEN(); } /// @inheritdoc BridgeValidator function decodeSwapOutputToken(bytes calldata /*txData_*/ ) external pure override returns (address /*token_*/ ) { /// @dev debridge cannot be used for same chain swaps revert Error.CANNOT_DECODE_FINAL_SWAP_OUTPUT_TOKEN(); } ////////////////////////////////////////////////////////////// // INTERNAL FUNCTIONS // ////////////////////////////////////////////////////////////// /// @notice supports both `createOrder` and `createSaltedOrder` functions for bridging using dln source function _decodeTxData(bytes calldata txData_) internal pure returns (DlnOrderLib.OrderCreation memory deBridgeQuote) { /// @dev supports both the allowed order types by debridge bytes4 selector = bytes4(txData_[:4]); /// @dev we don't support permit envelope bytes memory permitEnvelope; if (selector == IDlnSource.createOrder.selector) { (deBridgeQuote,,, permitEnvelope) = abi.decode(_parseCallData(txData_), (DlnOrderLib.OrderCreation, bytes, uint32, bytes)); } else if (selector == IDlnSource.createSaltedOrder.selector) { (deBridgeQuote,,,, permitEnvelope,) = abi.decode(_parseCallData(txData_), (DlnOrderLib.OrderCreation, uint64, bytes, uint32, bytes, bytes)); } else { revert Error.BLACKLISTED_ROUTE_ID(); } if (permitEnvelope.length > 0) { revert DeBridgeError.INVALID_PERMIT_ENVELOP(); } /// @dev casting native tokens if (deBridgeQuote.giveTokenAddress == address(0)) deBridgeQuote.giveTokenAddress = NATIVE; if (_castToAddress(deBridgeQuote.takeTokenAddress) == address(0)) { deBridgeQuote.takeTokenAddress = NATIVE_IN_BYTES; } } /// @dev helps parsing debridge calldata and return the input parameters function _parseCallData(bytes calldata callData) internal pure returns (bytes calldata) { return callData[4:]; } /// @dev helps cast bytes to address function _castToAddress(bytes memory address_) internal pure returns (address) { return address(uint160(bytes20(address_))); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.23; import { ISuperRegistry } from "src/interfaces/ISuperRegistry.sol"; import { IBridgeValidator } from "src/interfaces/IBridgeValidator.sol"; import { Error } from "src/libraries/Error.sol"; /// @title BridgeValidator /// @dev Inherited by specific bridge handlers to verify the calldata being sent /// @author Zeropoint Labs abstract contract BridgeValidator is IBridgeValidator { ////////////////////////////////////////////////////////////// // CONSTANTS // ////////////////////////////////////////////////////////////// ISuperRegistry public immutable superRegistry; address constant NATIVE = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; ////////////////////////////////////////////////////////////// // CONSTRUCTOR // ////////////////////////////////////////////////////////////// constructor(address superRegistry_) { if (superRegistry_ == address(0)) { revert Error.ZERO_ADDRESS(); } superRegistry = ISuperRegistry(superRegistry_); } ////////////////////////////////////////////////////////////// // EXTERNAL VIEW FUNCTIONS // ////////////////////////////////////////////////////////////// /// @inheritdoc IBridgeValidator function validateReceiver( bytes calldata txData_, address receiver_ ) external view virtual override returns (bool valid_); /// @inheritdoc IBridgeValidator function validateTxData(ValidateTxDataArgs calldata args_) external view virtual override returns (bool hasDstSwap); /// @inheritdoc IBridgeValidator function decodeAmountIn( bytes calldata txData_, bool genericSwapDisallowed_ ) external view virtual override returns (uint256 amount_); /// @inheritdoc IBridgeValidator function decodeDstSwap(bytes calldata txData_) external pure virtual override returns (address token_, uint256 amount_); /// @inheritdoc IBridgeValidator function decodeSwapOutputToken(bytes calldata txData_) external pure virtual override returns (address outputToken_); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.23; library Error { ////////////////////////////////////////////////////////////// // CONFIGURATION ERRORS // ////////////////////////////////////////////////////////////// ///@notice errors thrown in protocol setup /// @dev thrown if chain id exceeds max(uint64) error BLOCK_CHAIN_ID_OUT_OF_BOUNDS(); /// @dev thrown if not possible to revoke a role in broadcasting error CANNOT_REVOKE_NON_BROADCASTABLE_ROLES(); /// @dev thrown if not possible to revoke last admin error CANNOT_REVOKE_LAST_ADMIN(); /// @dev thrown if trying to set again pseudo immutables in super registry error DISABLED(); /// @dev thrown if rescue delay is not yet set for a chain error DELAY_NOT_SET(); /// @dev thrown if get native token price estimate in paymentHelper is 0 error INVALID_NATIVE_TOKEN_PRICE(); /// @dev thrown if wormhole refund chain id is not set error REFUND_CHAIN_ID_NOT_SET(); /// @dev thrown if wormhole relayer is not set error RELAYER_NOT_SET(); /// @dev thrown if a role to be revoked is not assigned error ROLE_NOT_ASSIGNED(); ////////////////////////////////////////////////////////////// // AUTHORIZATION ERRORS // ////////////////////////////////////////////////////////////// ///@notice errors thrown if functions cannot be called /// COMMON AUTHORIZATION ERRORS /// --------------------------------------------------------- /// @dev thrown if caller is not address(this), internal call error INVALID_INTERNAL_CALL(); /// @dev thrown if msg.sender is not a valid amb implementation error NOT_AMB_IMPLEMENTATION(); /// @dev thrown if msg.sender is not an allowed broadcaster error NOT_ALLOWED_BROADCASTER(); /// @dev thrown if msg.sender is not broadcast amb implementation error NOT_BROADCAST_AMB_IMPLEMENTATION(); /// @dev thrown if msg.sender is not broadcast state registry error NOT_BROADCAST_REGISTRY(); /// @dev thrown if msg.sender is not core state registry error NOT_CORE_STATE_REGISTRY(); /// @dev thrown if msg.sender is not emergency admin error NOT_EMERGENCY_ADMIN(); /// @dev thrown if msg.sender is not emergency queue error NOT_EMERGENCY_QUEUE(); /// @dev thrown if msg.sender is not minter error NOT_MINTER(); /// @dev thrown if msg.sender is not minter state registry error NOT_MINTER_STATE_REGISTRY_ROLE(); /// @dev thrown if msg.sender is not paymaster error NOT_PAYMASTER(); /// @dev thrown if msg.sender is not payment admin error NOT_PAYMENT_ADMIN(); /// @dev thrown if msg.sender is not protocol admin error NOT_PROTOCOL_ADMIN(); /// @dev thrown if msg.sender is not state registry error NOT_STATE_REGISTRY(); /// @dev thrown if msg.sender is not super registry error NOT_SUPER_REGISTRY(); /// @dev thrown if msg.sender is not superform router error NOT_SUPERFORM_ROUTER(); /// @dev thrown if msg.sender is not a superform error NOT_SUPERFORM(); /// @dev thrown if msg.sender is not superform factory error NOT_SUPERFORM_FACTORY(); /// @dev thrown if msg.sender is not timelock form error NOT_TIMELOCK_SUPERFORM(); /// @dev thrown if msg.sender is not timelock state registry error NOT_TIMELOCK_STATE_REGISTRY(); /// @dev thrown if msg.sender is not user or disputer error NOT_VALID_DISPUTER(); /// @dev thrown if the msg.sender is not privileged caller error NOT_PRIVILEGED_CALLER(bytes32 role); /// STATE REGISTRY AUTHORIZATION ERRORS /// --------------------------------------------------------- /// @dev layerzero adapter specific error, thrown if caller not layerzero endpoint error CALLER_NOT_ENDPOINT(); /// @dev hyperlane adapter specific error, thrown if caller not hyperlane mailbox error CALLER_NOT_MAILBOX(); /// @dev wormhole relayer specific error, thrown if caller not wormhole relayer error CALLER_NOT_RELAYER(); /// @dev thrown if src chain sender is not valid error INVALID_SRC_SENDER(); ////////////////////////////////////////////////////////////// // INPUT VALIDATION ERRORS // ////////////////////////////////////////////////////////////// ///@notice errors thrown if input variables are not valid /// COMMON INPUT VALIDATION ERRORS /// --------------------------------------------------------- /// @dev thrown if there is an array length mismatch error ARRAY_LENGTH_MISMATCH(); /// @dev thrown if payload id does not exist error INVALID_PAYLOAD_ID(); /// @dev error thrown when msg value should be zero in certain payable functions error MSG_VALUE_NOT_ZERO(); /// @dev thrown if amb ids length is 0 error ZERO_AMB_ID_LENGTH(); /// @dev thrown if address input is address 0 error ZERO_ADDRESS(); /// @dev thrown if amount input is 0 error ZERO_AMOUNT(); /// @dev thrown if final token is address 0 error ZERO_FINAL_TOKEN(); /// @dev thrown if value input is 0 error ZERO_INPUT_VALUE(); /// SUPERFORM ROUTER INPUT VALIDATION ERRORS /// --------------------------------------------------------- /// @dev thrown if the vaults data is invalid error INVALID_SUPERFORMS_DATA(); /// @dev thrown if receiver address is not set error RECEIVER_ADDRESS_NOT_SET(); /// SUPERFORM FACTORY INPUT VALIDATION ERRORS /// --------------------------------------------------------- /// @dev thrown if a form is not ERC165 compatible error ERC165_UNSUPPORTED(); /// @dev thrown if a form is not form interface compatible error FORM_INTERFACE_UNSUPPORTED(); /// @dev error thrown if form implementation address already exists error FORM_IMPLEMENTATION_ALREADY_EXISTS(); /// @dev error thrown if form implementation id already exists error FORM_IMPLEMENTATION_ID_ALREADY_EXISTS(); /// @dev thrown if a form does not exist error FORM_DOES_NOT_EXIST(); /// @dev thrown if form id is larger than max uint16 error INVALID_FORM_ID(); /// @dev thrown if superform not on factory error SUPERFORM_ID_NONEXISTENT(); /// @dev thrown if same vault and form implementation is used to create new superform error VAULT_FORM_IMPLEMENTATION_COMBINATION_EXISTS(); /// FORM INPUT VALIDATION ERRORS /// --------------------------------------------------------- /// @dev thrown if in case of no txData, if liqData.token != vault.asset() /// in case of txData, if token output of swap != vault.asset() error DIFFERENT_TOKENS(); /// @dev thrown if the amount in direct withdraw is not correct error DIRECT_WITHDRAW_INVALID_LIQ_REQUEST(); /// @dev thrown if the amount in xchain withdraw is not correct error XCHAIN_WITHDRAW_INVALID_LIQ_REQUEST(); /// LIQUIDITY BRIDGE INPUT VALIDATION ERRORS /// --------------------------------------------------------- /// @dev thrown if route id is blacklisted in socket error BLACKLISTED_ROUTE_ID(); /// @dev thrown if route id is not blacklisted in socket error NOT_BLACKLISTED_ROUTE_ID(); /// @dev error thrown when txData selector of lifi bridge is a blacklisted selector error BLACKLISTED_SELECTOR(); /// @dev error thrown when txData selector of lifi bridge is not a blacklisted selector error NOT_BLACKLISTED_SELECTOR(); /// @dev thrown if a certain action of the user is not allowed given the txData provided error INVALID_ACTION(); /// @dev thrown if in deposits, the liqDstChainId doesn't match the stateReq dstChainId error INVALID_DEPOSIT_LIQ_DST_CHAIN_ID(); /// @dev thrown if index is invalid error INVALID_INDEX(); /// @dev thrown if the chain id in the txdata is invalid error INVALID_TXDATA_CHAIN_ID(); /// @dev thrown if the validation of bridge txData fails due to a destination call present error INVALID_TXDATA_NO_DESTINATIONCALL_ALLOWED(); /// @dev thrown if the validation of bridge txData fails due to wrong receiver error INVALID_TXDATA_RECEIVER(); /// @dev thrown if the validation of bridge txData fails due to wrong token error INVALID_TXDATA_TOKEN(); /// @dev thrown if txData is not present (in case of xChain actions) error NO_TXDATA_PRESENT(); /// STATE REGISTRY INPUT VALIDATION ERRORS /// --------------------------------------------------------- /// @dev thrown if payload is being updated with final amounts length different than amounts length error DIFFERENT_PAYLOAD_UPDATE_AMOUNTS_LENGTH(); /// @dev thrown if payload is being updated with tx data length different than liq data length error DIFFERENT_PAYLOAD_UPDATE_TX_DATA_LENGTH(); /// @dev thrown if keeper update final token is different than the vault underlying error INVALID_UPDATE_FINAL_TOKEN(); /// @dev thrown if broadcast finality for wormhole is invalid error INVALID_BROADCAST_FINALITY(); /// @dev thrown if amb id is not valid leading to an address 0 of the implementation error INVALID_BRIDGE_ID(); /// @dev thrown if chain id involved in xchain message is invalid error INVALID_CHAIN_ID(); /// @dev thrown if payload update amount isn't equal to dst swapper amount error INVALID_DST_SWAP_AMOUNT(); /// @dev thrown if message amb and proof amb are the same error INVALID_PROOF_BRIDGE_ID(); /// @dev thrown if order of proof AMBs is incorrect, either duplicated or not incrementing error INVALID_PROOF_BRIDGE_IDS(); /// @dev thrown if rescue data lengths are invalid error INVALID_RESCUE_DATA(); /// @dev thrown if delay is invalid error INVALID_TIMELOCK_DELAY(); /// @dev thrown if amounts being sent in update payload mean a negative slippage error NEGATIVE_SLIPPAGE(); /// @dev thrown if slippage is outside of bounds error SLIPPAGE_OUT_OF_BOUNDS(); /// SUPERPOSITION INPUT VALIDATION ERRORS /// --------------------------------------------------------- /// @dev thrown if src senders mismatch in state sync error SRC_SENDER_MISMATCH(); /// @dev thrown if src tx types mismatch in state sync error SRC_TX_TYPE_MISMATCH(); ////////////////////////////////////////////////////////////// // EXECUTION ERRORS // ////////////////////////////////////////////////////////////// ///@notice errors thrown due to function execution logic /// COMMON EXECUTION ERRORS /// --------------------------------------------------------- /// @dev thrown if the swap in a direct deposit resulted in insufficient tokens error DIRECT_DEPOSIT_SWAP_FAILED(); /// @dev thrown if payload is not unique error DUPLICATE_PAYLOAD(); /// @dev thrown if native tokens fail to be sent to superform contracts error FAILED_TO_SEND_NATIVE(); /// @dev thrown if allowance is not correct to deposit error INSUFFICIENT_ALLOWANCE_FOR_DEPOSIT(); /// @dev thrown if contract has insufficient balance for operations error INSUFFICIENT_BALANCE(); /// @dev thrown if native amount is not at least equal to the amount in the request error INSUFFICIENT_NATIVE_AMOUNT(); /// @dev thrown if payload cannot be decoded error INVALID_PAYLOAD(); /// @dev thrown if payload status is invalid error INVALID_PAYLOAD_STATUS(); /// @dev thrown if payload type is invalid error INVALID_PAYLOAD_TYPE(); /// LIQUIDITY BRIDGE EXECUTION ERRORS /// --------------------------------------------------------- /// @dev thrown if we try to decode the final swap output token in a xChain liquidity bridging action error CANNOT_DECODE_FINAL_SWAP_OUTPUT_TOKEN(); /// @dev thrown if liquidity bridge fails for erc20 or native tokens error FAILED_TO_EXECUTE_TXDATA(address token); /// @dev thrown if asset being used for deposit mismatches in multivault deposits error INVALID_DEPOSIT_TOKEN(); /// STATE REGISTRY EXECUTION ERRORS /// --------------------------------------------------------- /// @dev thrown if bridge tokens haven't arrived to destination error BRIDGE_TOKENS_PENDING(); /// @dev thrown if withdrawal tx data cannot be updated error CANNOT_UPDATE_WITHDRAW_TX_DATA(); /// @dev thrown if rescue passed dispute deadline error DISPUTE_TIME_ELAPSED(); /// @dev thrown if message failed to reach the specified level of quorum needed error INSUFFICIENT_QUORUM(); /// @dev thrown if broadcast payload is invalid error INVALID_BROADCAST_PAYLOAD(); /// @dev thrown if broadcast fee is invalid error INVALID_BROADCAST_FEE(); /// @dev thrown if retry fees is less than required error INVALID_RETRY_FEE(); /// @dev thrown if broadcast message type is wrong error INVALID_MESSAGE_TYPE(); /// @dev thrown if payload hash is invalid during `retryMessage` on Layezero implementation error INVALID_PAYLOAD_HASH(); /// @dev thrown if update payload function was called on a wrong payload error INVALID_PAYLOAD_UPDATE_REQUEST(); /// @dev thrown if a state registry id is 0 error INVALID_REGISTRY_ID(); /// @dev thrown if a form state registry id is 0 error INVALID_FORM_REGISTRY_ID(); /// @dev thrown if trying to finalize the payload but the withdraw is still locked error LOCKED(); /// @dev thrown if payload is already updated (during xChain deposits) error PAYLOAD_ALREADY_UPDATED(); /// @dev thrown if payload is already processed error PAYLOAD_ALREADY_PROCESSED(); /// @dev thrown if payload is not in UPDATED state error PAYLOAD_NOT_UPDATED(); /// @dev thrown if rescue is still in timelocked state error RESCUE_LOCKED(); /// @dev thrown if rescue is already proposed error RESCUE_ALREADY_PROPOSED(); /// @dev thrown if payload hash is zero during `retryMessage` on Layezero implementation error ZERO_PAYLOAD_HASH(); /// DST SWAPPER EXECUTION ERRORS /// --------------------------------------------------------- /// @dev thrown if process dst swap is tried for processed payload id error DST_SWAP_ALREADY_PROCESSED(); /// @dev thrown if indices have duplicates error DUPLICATE_INDEX(); /// @dev thrown if failed dst swap is already updated error FAILED_DST_SWAP_ALREADY_UPDATED(); /// @dev thrown if indices are out of bounds error INDEX_OUT_OF_BOUNDS(); /// @dev thrown if failed swap token amount is 0 error INVALID_DST_SWAPPER_FAILED_SWAP(); /// @dev thrown if failed swap token amount is not 0 and if token balance is less than amount (non zero) error INVALID_DST_SWAPPER_FAILED_SWAP_NO_TOKEN_BALANCE(); /// @dev thrown if failed swap token amount is not 0 and if native amount is less than amount (non zero) error INVALID_DST_SWAPPER_FAILED_SWAP_NO_NATIVE_BALANCE(); /// @dev forbid xChain deposits with destination swaps without interim token set (for user protection) error INVALID_INTERIM_TOKEN(); /// @dev thrown if dst swap output is less than minimum expected error INVALID_SWAP_OUTPUT(); /// FORM EXECUTION ERRORS /// --------------------------------------------------------- /// @dev thrown if try to forward 4626 share from the superform error CANNOT_FORWARD_4646_TOKEN(); /// @dev thrown in KYCDAO form if no KYC token is present error NO_VALID_KYC_TOKEN(); /// @dev thrown in forms where a certain functionality is not allowed or implemented error NOT_IMPLEMENTED(); /// @dev thrown if form implementation is PAUSED, users cannot perform any action error PAUSED(); /// @dev thrown if shares != deposit output or assets != redeem output when minting SuperPositions error VAULT_IMPLEMENTATION_FAILED(); /// @dev thrown if withdrawal tx data is not updated error WITHDRAW_TOKEN_NOT_UPDATED(); /// @dev thrown if withdrawal tx data is not updated error WITHDRAW_TX_DATA_NOT_UPDATED(); /// @dev thrown when redeeming from vault yields zero collateral error WITHDRAW_ZERO_COLLATERAL(); /// PAYMENT HELPER EXECUTION ERRORS /// --------------------------------------------------------- /// @dev thrown if chainlink is reporting an improper price error CHAINLINK_MALFUNCTION(); /// @dev thrown if chainlink is reporting an incomplete round error CHAINLINK_INCOMPLETE_ROUND(); /// @dev thrown if feed decimals is not 8 error CHAINLINK_UNSUPPORTED_DECIMAL(); /// EMERGENCY QUEUE EXECUTION ERRORS /// --------------------------------------------------------- /// @dev thrown if emergency withdraw is not queued error EMERGENCY_WITHDRAW_NOT_QUEUED(); /// @dev thrown if emergency withdraw is already processed error EMERGENCY_WITHDRAW_PROCESSED_ALREADY(); /// SUPERPOSITION EXECUTION ERRORS /// --------------------------------------------------------- /// @dev thrown if uri cannot be updated error DYNAMIC_URI_FROZEN(); /// @dev thrown if tx history is not found while state sync error TX_HISTORY_NOT_FOUND(); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.23; library DeBridgeError { /// @dev if permit envelop length is greater than zero error INVALID_PERMIT_ENVELOP(); /// @dev if dst authority address is not CORE_STATE_REGISTRY_RESCUER_ROLE /// only the CORE_STATE_REGISTRY_RESCUER_ROLE is allowed to cancel a debridge order on destination chain error INVALID_DEBRIDGE_AUTHORITY(); /// @dev if external call is allowed error INVALID_EXTRA_CALL_DATA(); /// @dev if bridge data is invalid error INVALID_BRIDGE_DATA(); /// @dev if swap token and bridge token mismatch error INVALID_BRIDGE_TOKEN(); /// @dev debridge don't allow same chain swaps error ONLY_SWAPS_DISALLOWED(); /// @dev if dst taker is restricted error INVALID_TAKER_DST(); /// @dev if cancel beneficiary is invalid error INVALID_REFUND_ADDRESS(); /// @dev if swap permit envelope is invalid error INVALID_SWAP_PERMIT_ENVELOP(); /// @dev if the patch authority is not valid error INVALID_PATCH_ADDRESS(); /// @dev if the swap router is invalid error INVALID_SWAP_ROUTER(); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./DlnOrderLib.sol"; interface IDlnSource { /** * @notice This function returns the global fixed fee in the native asset of the protocol. * @dev This fee is denominated in the native asset (like Ether in Ethereum). * @return uint88 This return value represents the global fixed fee in the native asset. */ function globalFixedNativeFee() external returns (uint88); /** * @notice This function provides the global transfer fee, expressed in Basis Points (BPS). * @dev It retrieves a global fee which is applied to order.giveAmount. The fee is represented in Basis Points * (BPS), where 1 BPS equals 0.01%. * @return uint16 The return value represents the global transfer fee in BPS. */ function globalTransferFeeBps() external returns (uint16); /** * @dev Places a new order with pseudo-random orderId onto the DLN * @notice deprecated * @param _orderCreation a structured parameter from the DlnOrderLib.OrderCreation library, containing all the * necessary information required for creating a new order. * @param _affiliateFee a bytes parameter specifying the affiliate fee that will be rewarded to the beneficiary. It * includes the beneficiary's details and the affiliate amount. * @param _referralCode a 32-bit unsigned integer containing the referral code. This code is traced back to the * referral source or person that facilitated this order. This code is also emitted in an event for tracking * purposes. * @param _permitEnvelope a bytes parameter that is used to approve the spender through a signature. It contains the * amount, the deadline, and the signature. * @return bytes32 identifier (orderId) of a newly placed order */ function createOrder( DlnOrderLib.OrderCreation calldata _orderCreation, bytes calldata _affiliateFee, uint32 _referralCode, bytes calldata _permitEnvelope ) external payable returns (bytes32); /** * @dev Places a new order with deterministic orderId onto the DLN * @param _orderCreation a structured parameter from the DlnOrderLib.OrderCreation library, containing all the * necessary information required for creating a new order. * @param _salt an input source of randomness for getting a deterministic identifier of an order (orderId) * @param _affiliateFee a bytes parameter specifying the affiliate fee that will be rewarded to the beneficiary. It * includes the beneficiary's details and the affiliate amount. * @param _referralCode a 32-bit unsigned integer containing the referral code. This code is traced back to the * referral source or person that facilitated this order. This code is also emitted in an event for tracking * purposes. * @param _permitEnvelope a bytes parameter that is used to approve the spender through a signature. It contains the * amount, the deadline, and the signature. * @param _metadata an arbitrary data to be tied together with the order for future off-chain analysis * @return bytes32 identifier (orderId) of a newly placed order */ function createSaltedOrder( DlnOrderLib.OrderCreation calldata _orderCreation, uint64 _salt, bytes calldata _affiliateFee, uint32 _referralCode, bytes calldata _permitEnvelope, bytes calldata _metadata ) external payable returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; library DlnOrderLib { /* ========== ENUMS ========== */ /** * @dev Enum defining the supported blockchain engines. * - `UNDEFINED`: Represents an undefined or unknown blockchain engine (0). * - `EVM`: Represents the Ethereum Virtual Machine (EVM) blockchain engine (1). * - `SOLANA`: Represents the Solana blockchain engine (2). */ enum ChainEngine { UNDEFINED, // 0 EVM, // 1 SOLANA // 2 } /* ========== STRUCTS ========== */ /// @dev Struct representing the creation parameters for creating an order on the (EVM) chain. struct OrderCreation { /// Address of the ERC-20 token that the maker is offering as part of this order. /// Use the zero address to indicate that the maker is offering a native blockchain token (such as Ether, Matic, /// etc.). address giveTokenAddress; /// Amount of tokens the maker is offering. uint256 giveAmount; /// Address of the ERC-20 token that the maker is willing to accept on the destination chain. bytes takeTokenAddress; /// Amount of tokens the maker is willing to accept on the destination chain. uint256 takeAmount; // the ID of the chain where an order should be fulfilled. uint256 takeChainId; /// Address on the destination chain where funds should be sent upon order fulfillment. bytes receiverDst; /// Address on the source (current) chain authorized to patch the order by adding more input tokens, making it /// more attractive to takers. address givePatchAuthoritySrc; /// Address on the destination chain authorized to patch the order by reducing the take amount, making it more /// attractive to takers, /// and can also cancel the order in the take chain. bytes orderAuthorityAddressDst; // An optional address restricting anyone in the open market from fulfilling // this order but the given address. This can be useful if you are creating a order // for a specific taker. By default, set to empty bytes array (0x) bytes allowedTakerDst; /// An optional external call data payload. bytes externalCall; // An optional address on the source (current) chain where the given input tokens // would be transferred to in case order cancellation is initiated by the orderAuthorityAddressDst // on the destination chain. This property can be safely set to an empty bytes array (0x): // in this case, tokens would be transferred to the arbitrary address specified // by the orderAuthorityAddressDst upon order cancellation bytes allowedCancelBeneficiarySrc; } /// @dev Struct representing an order. struct Order { /// Nonce for each maker. uint64 makerOrderNonce; /// Order maker address (EOA signer for EVM) in the source chain. bytes makerSrc; /// Chain ID where the order's was created. uint256 giveChainId; /// Address of the ERC-20 token that the maker is offering as part of this order. /// Use the zero address to indicate that the maker is offering a native blockchain token (such as Ether, Matic, /// etc.). bytes giveTokenAddress; /// Amount of tokens the maker is offering. uint256 giveAmount; // the ID of the chain where an order should be fulfilled. uint256 takeChainId; /// Address of the ERC-20 token that the maker is willing to accept on the destination chain. bytes takeTokenAddress; /// Amount of tokens the maker is willing to accept on the destination chain. uint256 takeAmount; /// Address on the destination chain where funds should be sent upon order fulfillment. bytes receiverDst; /// Address on the source (current) chain authorized to patch the order by adding more input tokens, making it /// more attractive to takers. bytes givePatchAuthoritySrc; /// Address on the destination chain authorized to patch the order by reducing the take amount, making it more /// attractive to takers, /// and can also cancel the order in the take chain. bytes orderAuthorityAddressDst; // An optional address restricting anyone in the open market from fulfilling // this order but the given address. This can be useful if you are creating a order // for a specific taker. By default, set to empty bytes array (0x) bytes allowedTakerDst; // An optional address on the source (current) chain where the given input tokens // would be transferred to in case order cancellation is initiated by the orderAuthorityAddressDst // on the destination chain. This property can be safely set to an empty bytes array (0x): // in this case, tokens would be transferred to the arbitrary address specified // by the orderAuthorityAddressDst upon order cancellation bytes allowedCancelBeneficiarySrc; /// An optional external call data payload. bytes externalCall; } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.23; /// @title ISuperRegistry /// @dev Interface for SuperRegistry /// @author Zeropoint Labs interface ISuperRegistry { ////////////////////////////////////////////////////////////// // EVENTS // ////////////////////////////////////////////////////////////// /// @dev emitted when permit2 is set. event SetPermit2(address indexed permit2); /// @dev is emitted when an address is set. event AddressUpdated( bytes32 indexed protocolAddressId, uint64 indexed chainId, address indexed oldAddress, address newAddress ); /// @dev is emitted when a new token bridge is configured. event SetBridgeAddress(uint256 indexed bridgeId, address indexed bridgeAddress); /// @dev is emitted when a new bridge validator is configured. event SetBridgeValidator(uint256 indexed bridgeId, address indexed bridgeValidator); /// @dev is emitted when a new amb is configured. event SetAmbAddress(uint8 indexed ambId_, address indexed ambAddress_, bool indexed isBroadcastAMB_); /// @dev is emitted when a new state registry is configured. event SetStateRegistryAddress(uint8 indexed registryId_, address indexed registryAddress_); /// @dev is emitted when a new delay is configured. event SetDelay(uint256 indexed oldDelay_, uint256 indexed newDelay_); /// @dev is emitted when a new vault limit is configured event SetVaultLimitPerDestination(uint64 indexed chainId_, uint256 indexed vaultLimit_); ////////////////////////////////////////////////////////////// // EXTERNAL VIEW FUNCTIONS // ////////////////////////////////////////////////////////////// /// @dev gets the deposit rescue delay function delay() external view returns (uint256); /// @dev returns the permit2 address function PERMIT2() external view returns (address); /// @dev returns the id of the superform router module function SUPERFORM_ROUTER() external view returns (bytes32); /// @dev returns the id of the superform factory module function SUPERFORM_FACTORY() external view returns (bytes32); /// @dev returns the id of the superform paymaster contract function PAYMASTER() external view returns (bytes32); /// @dev returns the id of the superform payload helper contract function PAYMENT_HELPER() external view returns (bytes32); /// @dev returns the id of the core state registry module function CORE_STATE_REGISTRY() external view returns (bytes32); /// @dev returns the id of the timelock form state registry module function TIMELOCK_STATE_REGISTRY() external view returns (bytes32); /// @dev returns the id of the broadcast state registry module function BROADCAST_REGISTRY() external view returns (bytes32); /// @dev returns the id of the super positions module function SUPER_POSITIONS() external view returns (bytes32); /// @dev returns the id of the super rbac module function SUPER_RBAC() external view returns (bytes32); /// @dev returns the id of the payload helper module function PAYLOAD_HELPER() external view returns (bytes32); /// @dev returns the id of the dst swapper keeper function DST_SWAPPER() external view returns (bytes32); /// @dev returns the id of the emergency queue function EMERGENCY_QUEUE() external view returns (bytes32); /// @dev returns the id of the superform receiver function SUPERFORM_RECEIVER() external view returns (bytes32); /// @dev returns the id of the payment admin keeper function PAYMENT_ADMIN() external view returns (bytes32); /// @dev returns the id of the core state registry processor keeper function CORE_REGISTRY_PROCESSOR() external view returns (bytes32); /// @dev returns the id of the broadcast registry processor keeper function BROADCAST_REGISTRY_PROCESSOR() external view returns (bytes32); /// @dev returns the id of the timelock form state registry processor keeper function TIMELOCK_REGISTRY_PROCESSOR() external view returns (bytes32); /// @dev returns the id of the core state registry updater keeper function CORE_REGISTRY_UPDATER() external view returns (bytes32); /// @dev returns the id of the core state registry updater keeper function CORE_REGISTRY_RESCUER() external view returns (bytes32); /// @dev returns the id of the core state registry updater keeper function CORE_REGISTRY_DISPUTER() external view returns (bytes32); /// @dev returns the id of the core state registry updater keeper function DST_SWAPPER_PROCESSOR() external view returns (bytes32); /// @dev gets the address of a contract on current chain /// @param id_ is the id of the contract function getAddress(bytes32 id_) external view returns (address); /// @dev gets the address of a contract on a target chain /// @param id_ is the id of the contract /// @param chainId_ is the chain id of that chain function getAddressByChainId(bytes32 id_, uint64 chainId_) external view returns (address); /// @dev gets the address of a bridge /// @param bridgeId_ is the id of a bridge /// @return bridgeAddress_ is the address of the form function getBridgeAddress(uint8 bridgeId_) external view returns (address bridgeAddress_); /// @dev gets the address of a bridge validator /// @param bridgeId_ is the id of a bridge /// @return bridgeValidator_ is the address of the form function getBridgeValidator(uint8 bridgeId_) external view returns (address bridgeValidator_); /// @dev gets the address of a amb /// @param ambId_ is the id of a bridge /// @return ambAddress_ is the address of the form function getAmbAddress(uint8 ambId_) external view returns (address ambAddress_); /// @dev gets the id of the amb /// @param ambAddress_ is the address of an amb /// @return ambId_ is the identifier of an amb function getAmbId(address ambAddress_) external view returns (uint8 ambId_); /// @dev gets the address of the registry /// @param registryId_ is the id of the state registry /// @return registryAddress_ is the address of the state registry function getStateRegistry(uint8 registryId_) external view returns (address registryAddress_); /// @dev gets the id of the registry /// @notice reverts if the id is not found /// @param registryAddress_ is the address of the state registry /// @return registryId_ is the id of the state registry function getStateRegistryId(address registryAddress_) external view returns (uint8 registryId_); /// @dev gets the safe vault limit /// @param chainId_ is the id of the remote chain /// @return vaultLimitPerDestination_ is the safe number of vaults to deposit /// without hitting out of gas error function getVaultLimitPerDestination(uint64 chainId_) external view returns (uint256 vaultLimitPerDestination_); /// @dev helps validate if an address is a valid state registry /// @param registryAddress_ is the address of the state registry /// @return valid_ a flag indicating if its valid. function isValidStateRegistry(address registryAddress_) external view returns (bool valid_); /// @dev helps validate if an address is a valid amb implementation /// @param ambAddress_ is the address of the amb implementation /// @return valid_ a flag indicating if its valid. function isValidAmbImpl(address ambAddress_) external view returns (bool valid_); /// @dev helps validate if an address is a valid broadcast amb implementation /// @param ambAddress_ is the address of the broadcast amb implementation /// @return valid_ a flag indicating if its valid. function isValidBroadcastAmbImpl(address ambAddress_) external view returns (bool valid_); ////////////////////////////////////////////////////////////// // EXTERNAL WRITE FUNCTIONS // ////////////////////////////////////////////////////////////// /// @dev sets the deposit rescue delay /// @param delay_ the delay in seconds before the deposit rescue can be finalized function setDelay(uint256 delay_) external; /// @dev sets the permit2 address /// @param permit2_ the address of the permit2 contract function setPermit2(address permit2_) external; /// @dev sets the safe vault limit /// @param chainId_ is the remote chain identifier /// @param vaultLimit_ is the max limit of vaults per transaction function setVaultLimitPerDestination(uint64 chainId_, uint256 vaultLimit_) external; /// @dev sets new addresses on specific chains. /// @param ids_ are the identifiers of the address on that chain /// @param newAddresses_ are the new addresses on that chain /// @param chainIds_ are the chain ids of that chain function batchSetAddress( bytes32[] calldata ids_, address[] calldata newAddresses_, uint64[] calldata chainIds_ ) external; /// @dev sets a new address on a specific chain. /// @param id_ the identifier of the address on that chain /// @param newAddress_ the new address on that chain /// @param chainId_ the chain id of that chain function setAddress(bytes32 id_, address newAddress_, uint64 chainId_) external; /// @dev allows admin to set the bridge address for an bridge id. /// @notice this function operates in an APPEND-ONLY fashion. /// @param bridgeId_ represents the bridge unique identifier. /// @param bridgeAddress_ represents the bridge address. /// @param bridgeValidator_ represents the bridge validator address. function setBridgeAddresses( uint8[] memory bridgeId_, address[] memory bridgeAddress_, address[] memory bridgeValidator_ ) external; /// @dev allows admin to set the amb address for an amb id. /// @notice this function operates in an APPEND-ONLY fashion. /// @param ambId_ represents the bridge unique identifier. /// @param ambAddress_ represents the bridge address. /// @param isBroadcastAMB_ represents whether the amb implementation supports broadcasting function setAmbAddress( uint8[] memory ambId_, address[] memory ambAddress_, bool[] memory isBroadcastAMB_ ) external; /// @dev allows admin to set the state registry address for an state registry id. /// @notice this function operates in an APPEND-ONLY fashion. /// @param registryId_ represents the state registry's unique identifier. /// @param registryAddress_ represents the state registry's address. function setStateRegistryAddress(uint8[] memory registryId_, address[] memory registryAddress_) external; }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.23; /// @title Bridge Validator Interface /// @dev Interface all Bridge Validators must follow /// @author Zeropoint Labs interface IBridgeValidator { ////////////////////////////////////////////////////////////// // STRUCTS // ////////////////////////////////////////////////////////////// struct ValidateTxDataArgs { bytes txData; uint64 srcChainId; uint64 dstChainId; uint64 liqDstChainId; bool deposit; address superform; address receiverAddress; address liqDataToken; address liqDataInterimToken; } ////////////////////////////////////////////////////////////// // EXTERNAL VIEW FUNCTIONS // ////////////////////////////////////////////////////////////// /// @dev validates the receiver of the liquidity request /// @param txData_ is the txData of the cross chain deposit /// @param receiver_ is the address of the receiver to validate /// @return valid_ if the address is valid function validateReceiver(bytes calldata txData_, address receiver_) external view returns (bool valid_); /// @dev validates the txData of a cross chain deposit /// @param args_ the txData arguments to validate in txData /// @return hasDstSwap if the txData contains a destination swap function validateTxData(ValidateTxDataArgs calldata args_) external view returns (bool hasDstSwap); /// @dev decodes the txData and returns the amount of input token on source /// @param txData_ is the txData of the cross chain deposit /// @param genericSwapDisallowed_ true if generic swaps are disallowed /// @return amount_ the amount expected function decodeAmountIn( bytes calldata txData_, bool genericSwapDisallowed_ ) external view returns (uint256 amount_); /// @dev decodes neccesary information for processing swaps on the destination chain /// @param txData_ is the txData to be decoded /// @return token_ is the address of the token /// @return amount_ the amount expected function decodeDstSwap(bytes calldata txData_) external pure returns (address token_, uint256 amount_); /// @dev decodes the final output token address (for only direct chain actions!) /// @param txData_ is the txData to be decoded /// @return token_ the address of the token function decodeSwapOutputToken(bytes calldata txData_) external pure returns (address token_); }
{ "remappings": [ "solmate/=lib/ERC1155A/lib/solmate/src/", "ERC1155A/=lib/ERC1155A/src/", "@openzeppelin/contracts/=lib/ERC1155A/lib/openzeppelin-contracts/contracts/", "ds-test/=lib/ds-test/src/", "erc4626-tests/=lib/ERC1155A/lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/ERC1155A/lib/openzeppelin-contracts/", "pigeon/=lib/pigeon/src/", "solady/=lib/pigeon/lib/solady/", "super-vaults/=lib/super-vaults/src/", "v2-core/=lib/super-vaults/lib/v2-core/contracts/", "v2-periphery/=lib/super-vaults/lib/v2-periphery/contracts/", "v3-core/=lib/super-vaults/lib/v3-core/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"superRegistry_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BLACKLISTED_ROUTE_ID","type":"error"},{"inputs":[],"name":"CANNOT_DECODE_FINAL_SWAP_OUTPUT_TOKEN","type":"error"},{"inputs":[],"name":"INVALID_ACTION","type":"error"},{"inputs":[],"name":"INVALID_DEBRIDGE_AUTHORITY","type":"error"},{"inputs":[],"name":"INVALID_EXTRA_CALL_DATA","type":"error"},{"inputs":[],"name":"INVALID_INTERIM_TOKEN","type":"error"},{"inputs":[],"name":"INVALID_PATCH_ADDRESS","type":"error"},{"inputs":[],"name":"INVALID_PERMIT_ENVELOP","type":"error"},{"inputs":[],"name":"INVALID_REFUND_ADDRESS","type":"error"},{"inputs":[],"name":"INVALID_TAKER_DST","type":"error"},{"inputs":[],"name":"INVALID_TXDATA_CHAIN_ID","type":"error"},{"inputs":[],"name":"INVALID_TXDATA_RECEIVER","type":"error"},{"inputs":[],"name":"ZERO_ADDRESS","type":"error"},{"inputs":[{"internalType":"bytes","name":"txData_","type":"bytes"},{"internalType":"bool","name":"","type":"bool"}],"name":"decodeAmountIn","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"decodeDstSwap","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"decodeSwapOutputToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"superRegistry","outputs":[{"internalType":"contract ISuperRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"txData_","type":"bytes"},{"internalType":"address","name":"receiver","type":"address"}],"name":"validateReceiver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"txData","type":"bytes"},{"internalType":"uint64","name":"srcChainId","type":"uint64"},{"internalType":"uint64","name":"dstChainId","type":"uint64"},{"internalType":"uint64","name":"liqDstChainId","type":"uint64"},{"internalType":"bool","name":"deposit","type":"bool"},{"internalType":"address","name":"superform","type":"address"},{"internalType":"address","name":"receiverAddress","type":"address"},{"internalType":"address","name":"liqDataToken","type":"address"},{"internalType":"address","name":"liqDataInterimToken","type":"address"}],"internalType":"struct IBridgeValidator.ValidateTxDataArgs","name":"args_","type":"tuple"}],"name":"validateTxData","outputs":[{"internalType":"bool","name":"hasDstSwap","type":"bool"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631d51a3d71461006757806324c73dda1461008f5780632db88323146100ce5780633d898b1e146100e15780639bbbb5c814610113578063c87439eb14610134575b600080fd5b61007a6100753660046109ee565b610147565b60405190151581526020015b60405180910390f35b6100b67f00000000000000000000000017a332dc7b40ae701485023b219e9d6f493a251481565b6040516001600160a01b039091168152602001610086565b6100b66100dc366004610a44565b610181565b6100f46100ef366004610a44565b61019c565b604080516001600160a01b039093168352602083019190915201610086565b610126610121366004610a95565b6101b8565b604051908152602001610086565b61007a610142366004610ae8565b6101d2565b6000806101548585610789565b90506101638160a00151610955565b6001600160a01b0316836001600160a01b0316149150509392505050565b6000604051632b0dcb6760e11b815260040160405180910390fd5b600080604051632b0dcb6760e11b815260040160405180910390fd5b6000806101c58585610789565b6020015195945050505050565b6000806101e76101e28480610b2a565b610789565b610120810151519091501561020f57604051635010cfa160e01b815260040160405180910390fd5b6101008101515115610234576040516325224d0960e01b815260040160405180910390fd5b61024460e0840160c08501610b70565b6001600160a01b031661025b826101400151610955565b6001600160a01b0316146102825760405163b2cae0e160e01b815260040160405180910390fd5b61029260e0840160c08501610b70565b6001600160a01b03168160c001516001600160a01b0316146102c757604051632918352160e11b815260040160405180910390fd5b6102d48160e00151610955565b6001600160a01b03908116907f00000000000000000000000017a332dc7b40ae701485023b219e9d6f493a25141663dfcf829b7ff98729ec1ce0343ca1d11c51d1d2d3aa1a7b3f4f6876d0611e0a6fa86520a0cb6103386080880160608901610ba4565b6040516001600160e01b031960e085901b16815260048101929092526001600160401b03166024820152604401602060405180830381865afa158015610382573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a69190610bbf565b6001600160a01b0316146103cd5760405163445ef6ed60e11b815260040160405180910390fd5b6103dd6080840160608501610ba4565b6001600160401b031681608001516001600160401b0316141580610424575080516001600160a01b0316610418610100850160e08601610b70565b6001600160a01b031614155b156104425760405163111beafb60e01b815260040160405180910390fd5b60006104518260a00151610955565b905061046360a0850160808601610bdc565b15610741576104786060850160408601610ba4565b6001600160401b03166104916040860160208701610ba4565b6001600160401b031614806104d657506104b16080850160608601610ba4565b6001600160401b03166104ca6060860160408701610ba4565b6001600160401b031614155b156104f45760405163f33d056960e01b815260040160405180910390fd5b6001600160a01b037f00000000000000000000000017a332dc7b40ae701485023b219e9d6f493a25141663dfcf829b7f494dfdc880823954ed6700117eb435b9bca3643417437b5781c1a89fba6e8b976105546060880160408901610ba4565b6040516001600160e01b031960e085901b16815260048101929092526001600160401b03166024820152604401602060405180830381865afa15801561059e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c29190610bbf565b6001600160a01b0316816001600160a01b03161492507f00000000000000000000000017a332dc7b40ae701485023b219e9d6f493a25146001600160a01b031663dfcf829b7f55b101fc856aff484166c46ad33bc74831c135693c159b0092bb3b72254ffb6b86604001602081019061063b9190610ba4565b6040516001600160e01b031960e085901b16815260048101929092526001600160401b03166024820152604401602060405180830381865afa158015610685573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a99190610bbf565b6001600160a01b0316816001600160a01b031614806106c55750825b6106e257604051632c1dacbf60e21b815260040160405180910390fd5b82801561071e57506106f78260400151610955565b6001600160a01b031661071261012086016101008701610b70565b6001600160a01b031614155b1561073c5760405163d849d6a160e01b815260040160405180910390fd5b610782565b61075160e0850160c08601610b70565b6001600160a01b0316816001600160a01b03161461078257604051632c1dacbf60e21b815260040160405180910390fd5b5050919050565b6107f860405180610160016040528060006001600160a01b03168152602001600081526020016060815260200160008152602001600081526020016060815260200160006001600160a01b03168152602001606081526020016060815260200160608152602001606081525090565b60006108076004828587610bf7565b61081091610c21565b9050606063041e935960e01b6001600160e01b0319831601610851576108368585610969565b8101906108439190610e77565b9295509192506108a9915050565b6346cfc8ff60e01b6001600160e01b0319831601610890576108738585610969565b8101906108809190610f0f565b509396509293506108a992505050565b6040516326a35ca760e01b815260040160405180910390fd5b8051156108c9576040516301faf60d60e71b815260040160405180910390fd5b82516001600160a01b03166108f05773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee83525b60006001600160a01b03166109088460400151610955565b6001600160a01b03160361094d5760405173777777777777777777777777777777777777777760611b602082015260340160408051601f198184030181529181528401525b505092915050565b600061096082610fdb565b60601c92915050565b3660006109798360048187610bf7565b915091505b9250929050565b60008083601f84011261099757600080fd5b5081356001600160401b038111156109ae57600080fd5b60208301915083602082850101111561097e57600080fd5b6001600160a01b03811681146109db57600080fd5b50565b80356109e9816109c6565b919050565b600080600060408486031215610a0357600080fd5b83356001600160401b03811115610a1957600080fd5b610a2586828701610985565b9094509250506020840135610a39816109c6565b809150509250925092565b60008060208385031215610a5757600080fd5b82356001600160401b03811115610a6d57600080fd5b610a7985828601610985565b90969095509350505050565b803580151581146109e957600080fd5b600080600060408486031215610aaa57600080fd5b83356001600160401b03811115610ac057600080fd5b610acc86828701610985565b9094509250610adf905060208501610a85565b90509250925092565b600060208284031215610afa57600080fd5b81356001600160401b03811115610b1057600080fd5b82016101208185031215610b2357600080fd5b9392505050565b6000808335601e19843603018112610b4157600080fd5b8301803591506001600160401b03821115610b5b57600080fd5b60200191503681900382131561097e57600080fd5b600060208284031215610b8257600080fd5b8135610b23816109c6565b80356001600160401b03811681146109e957600080fd5b600060208284031215610bb657600080fd5b610b2382610b8d565b600060208284031215610bd157600080fd5b8151610b23816109c6565b600060208284031215610bee57600080fd5b610b2382610a85565b60008085851115610c0757600080fd5b83861115610c1457600080fd5b5050820193919092039150565b6001600160e01b0319813581811691600485101561094d5760049490940360031b84901b1690921692915050565b634e487b7160e01b600052604160045260246000fd5b60405161016081016001600160401b0381118282101715610c8857610c88610c4f565b60405290565b600082601f830112610c9f57600080fd5b81356001600160401b0380821115610cb957610cb9610c4f565b604051601f8301601f19908116603f01168101908282118183101715610ce157610ce1610c4f565b81604052838152866020858801011115610cfa57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006101608284031215610d2d57600080fd5b610d35610c65565b9050610d40826109de565b81526020820135602082015260408201356001600160401b0380821115610d6657600080fd5b610d7285838601610c8e565b6040840152606084013560608401526080840135608084015260a0840135915080821115610d9f57600080fd5b610dab85838601610c8e565b60a0840152610dbc60c085016109de565b60c084015260e0840135915080821115610dd557600080fd5b610de185838601610c8e565b60e084015261010091508184013581811115610dfc57600080fd5b610e0886828701610c8e565b838501525061012091508184013581811115610e2357600080fd5b610e2f86828701610c8e565b838501525061014091508184013581811115610e4a57600080fd5b610e5686828701610c8e565b8385015250505092915050565b803563ffffffff811681146109e957600080fd5b60008060008060808587031215610e8d57600080fd5b84356001600160401b0380821115610ea457600080fd5b610eb088838901610d1a565b95506020870135915080821115610ec657600080fd5b610ed288838901610c8e565b9450610ee060408801610e63565b93506060870135915080821115610ef657600080fd5b50610f0387828801610c8e565b91505092959194509250565b60008060008060008060c08789031215610f2857600080fd5b86356001600160401b0380821115610f3f57600080fd5b610f4b8a838b01610d1a565b9750610f5960208a01610b8d565b96506040890135915080821115610f6f57600080fd5b610f7b8a838b01610c8e565b9550610f8960608a01610e63565b94506080890135915080821115610f9f57600080fd5b610fab8a838b01610c8e565b935060a0890135915080821115610fc157600080fd5b50610fce89828a01610c8e565b9150509295509295509295565b805160208201516bffffffffffffffffffffffff19808216929190601483101561100f5780818460140360031b1b83161693505b50505091905056fea2646970667358221220ba4697d3fd07d5cefdf0ad9925001cae0d7c828eac2bb323412f8c8c8f1e45af64736f6c63430008170033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.