Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21590468 | 50 mins ago | 0.00020573 ETH | ||||
21590468 | 50 mins ago | 0.00020573 ETH | ||||
21588656 | 6 hrs ago | 0.00063841 ETH | ||||
21588656 | 6 hrs ago | 0.00063841 ETH | ||||
21588274 | 8 hrs ago | 0.00107882 ETH | ||||
21588274 | 8 hrs ago | 0.00107882 ETH | ||||
21587205 | 11 hrs ago | 0.00028044 ETH | ||||
21587205 | 11 hrs ago | 0.00028044 ETH | ||||
21586572 | 13 hrs ago | 0.00028044 ETH | ||||
21586572 | 13 hrs ago | 0.00028044 ETH | ||||
21585759 | 16 hrs ago | 0.00028034 ETH | ||||
21585759 | 16 hrs ago | 0.00028034 ETH | ||||
21585320 | 18 hrs ago | 0.0002082 ETH | ||||
21585320 | 18 hrs ago | 0.0002082 ETH | ||||
21584605 | 20 hrs ago | 0.00033457 ETH | ||||
21584605 | 20 hrs ago | 0.00033457 ETH | ||||
21583289 | 24 hrs ago | 0.00037625 ETH | ||||
21583289 | 24 hrs ago | 0.00037625 ETH | ||||
21582528 | 27 hrs ago | 0.00064011 ETH | ||||
21582528 | 27 hrs ago | 0.00064011 ETH | ||||
21577348 | 44 hrs ago | 0.00046451 ETH | ||||
21577348 | 44 hrs ago | 0.00046451 ETH | ||||
21576831 | 46 hrs ago | 0.00046451 ETH | ||||
21576831 | 46 hrs ago | 0.00046451 ETH | ||||
21575874 | 2 days ago | 0.00046451 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xf71A92D4...29790e880 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ConnectorPlug
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity 0.8.13; import "../common/Ownable.sol"; import {ISocket} from "../interfaces/ISocket.sol"; import {IPlug} from "../interfaces/IPlug.sol"; import {RescueFundsLib} from "../libraries/RescueFundsLib.sol"; interface IHub { function receiveInbound(bytes memory payload_) external; } interface IConnector { function outbound( uint256 msgGasLimit_, bytes memory payload_ ) external payable; function siblingChainSlug() external view returns (uint32); function getMinFees( uint256 msgGasLimit_ ) external view returns (uint256 totalFees); } contract ConnectorPlug is IConnector, IPlug, Ownable { IHub public immutable hub__; ISocket public immutable socket__; uint32 public immutable siblingChainSlug; error NotHub(); error NotSocket(); event ConnectorPlugDisconnected(); constructor( address hub_, address socket_, uint32 siblingChainSlug_ ) Ownable(msg.sender) { hub__ = IHub(hub_); socket__ = ISocket(socket_); siblingChainSlug = siblingChainSlug_; } function outbound( uint256 msgGasLimit_, bytes memory payload_ ) external payable override { if (msg.sender != address(hub__)) revert NotHub(); socket__.outbound{value: msg.value}( siblingChainSlug, msgGasLimit_, bytes32(0), bytes32(0), payload_ ); } function inbound( uint32 /* siblingChainSlug_ */, // cannot be connected for any other slug, immutable variable bytes calldata payload_ ) external payable override { if (msg.sender != address(socket__)) revert NotSocket(); hub__.receiveInbound(payload_); } function getMinFees( uint256 msgGasLimit_ ) external view override returns (uint256 totalFees) { return socket__.getMinFees( msgGasLimit_, 64, bytes32(0), bytes32(0), siblingChainSlug, address(this) ); } function connect( address siblingPlug_, address switchboard_ ) external onlyOwner { socket__.connect( siblingChainSlug, siblingPlug_, switchboard_, switchboard_ ); } function disconnect() external onlyOwner { ( , address inboundSwitchboard, address outboundSwitchboard, , ) = socket__.getPlugConfig(address(this), siblingChainSlug); socket__.connect( siblingChainSlug, address(0), inboundSwitchboard, outboundSwitchboard ); emit ConnectorPlugDisconnected(); } /** * @notice Rescues funds from the contract if they are locked by mistake. * @param token_ The address of the token contract. * @param rescueTo_ The address where rescued tokens need to be sent. * @param amount_ The amount of tokens to be rescued. */ function rescueFunds( address token_, address rescueTo_, uint256 amount_ ) external onlyOwner { RescueFundsLib.rescueFunds(token_, rescueTo_, amount_); } }
pragma solidity 0.8.13; abstract contract Gauge { struct LimitParams { uint256 lastUpdateTimestamp; uint256 ratePerSecond; uint256 maxLimit; uint256 lastUpdateLimit; } error AmountOutsideLimit(); function _getCurrentLimit( LimitParams storage _params ) internal view returns (uint256 _limit) { uint256 timeElapsed = block.timestamp - _params.lastUpdateTimestamp; uint256 limitIncrease = timeElapsed * _params.ratePerSecond; if (limitIncrease + _params.lastUpdateLimit > _params.maxLimit) { _limit = _params.maxLimit; } else { _limit = limitIncrease + _params.lastUpdateLimit; } } function _consumePartLimit( uint256 amount_, LimitParams storage _params ) internal returns (uint256 consumedAmount, uint256 pendingAmount) { uint256 currentLimit = _getCurrentLimit(_params); _params.lastUpdateTimestamp = block.timestamp; if (currentLimit >= amount_) { _params.lastUpdateLimit = currentLimit - amount_; consumedAmount = amount_; pendingAmount = 0; } else { _params.lastUpdateLimit = 0; consumedAmount = currentLimit; pendingAmount = amount_ - currentLimit; } } function _consumeFullLimit( uint256 amount_, LimitParams storage _params ) internal { uint256 currentLimit = _getCurrentLimit(_params); if (currentLimit >= amount_) { _params.lastUpdateTimestamp = block.timestamp; _params.lastUpdateLimit = currentLimit - amount_; } else { revert AmountOutsideLimit(); } } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.13; /** * @title Ownable * @dev The Ownable contract provides a simple way to manage ownership of a contract * and allows for ownership to be transferred to a nominated address. */ abstract contract Ownable { address private _owner; address private _nominee; event OwnerNominated(address indexed nominee); event OwnerClaimed(address indexed claimer); error OnlyOwner(); error OnlyNominee(); /** * @dev Sets the contract's owner to the address that is passed to the constructor. */ constructor(address owner_) { _claimOwner(owner_); } /** * @dev Modifier that restricts access to only the contract's owner. * Throws an error if the caller is not the owner. */ modifier onlyOwner() { if (msg.sender != _owner) revert OnlyOwner(); _; } /** * @dev Returns the current owner of the contract. */ function owner() external view returns (address) { return _owner; } /** * @dev Returns the current nominee for ownership of the contract. */ function nominee() external view returns (address) { return _nominee; } /** * @dev Allows the current owner to nominate a new owner for the contract. * Throws an error if the caller is not the owner. * Emits an `OwnerNominated` event with the address of the nominee. */ function nominateOwner(address nominee_) external { if (msg.sender != _owner) revert OnlyOwner(); _nominee = nominee_; emit OwnerNominated(_nominee); } /** * @dev Allows the nominated owner to claim ownership of the contract. * Throws an error if the caller is not the nominee. * Sets the nominated owner as the new owner of the contract. * Emits an `OwnerClaimed` event with the address of the new owner. */ function claimOwner() external { if (msg.sender != _nominee) revert OnlyNominee(); _claimOwner(msg.sender); } /** * @dev Internal function that sets the owner of the contract to the specified address * and sets the nominee to address(0). */ function _claimOwner(address claimer_) internal { _owner = claimer_; _nominee = address(0); emit OwnerClaimed(claimer_); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.13; /** * @title IPlug * @notice Interface for a plug contract that executes the message received from a source chain. */ interface IPlug { /** * @dev this should be only executable by socket * @notice executes the message received from source chain * @notice It is expected to have original sender checks in the destination plugs using payload * @param srcChainSlug_ chain slug of source * @param payload_ the data which is needed by plug at inbound call on remote */ function inbound( uint32 srcChainSlug_, bytes calldata payload_ ) external payable; }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.13; /** * @title ISocket * @notice An interface for a cross-chain communication contract * @dev This interface provides methods for transmitting and executing messages between chains, * connecting a plug to a remote chain and setting up switchboards for the message transmission * This interface also emits events for important operations such as message transmission, execution status, * and plug connection */ interface ISocket { /** * @notice A struct containing fees required for message transmission and execution * @param transmissionFees fees needed for transmission * @param switchboardFees fees needed by switchboard * @param executionFee fees needed for execution */ struct Fees { uint128 transmissionFees; uint128 executionFee; uint128 switchboardFees; } /** * @title MessageDetails * @dev This struct defines the details of a message to be executed in a Decapacitor contract. */ struct MessageDetails { // A unique identifier for the message. bytes32 msgId; // The fee to be paid for executing the message. uint256 executionFee; // The maximum amount of gas that can be used to execute the message. uint256 minMsgGasLimit; // The extra params which provides msg value and additional info needed for message exec bytes32 executionParams; // The payload data to be executed in the message. bytes payload; } /** * @title ExecutionDetails * @dev This struct defines the execution details */ struct ExecutionDetails { // packet id bytes32 packetId; // proposal count uint256 proposalCount; // gas limit needed to execute inbound uint256 executionGasLimit; // proof data required by the Decapacitor contract to verify the message's authenticity bytes decapacitorProof; // signature of executor bytes signature; } /** * @notice emits the message details when a new message arrives at outbound * @param localChainSlug local chain slug * @param localPlug local plug address * @param dstChainSlug remote chain slug * @param dstPlug remote plug address * @param msgId message id packed with remoteChainSlug and nonce * @param minMsgGasLimit gas limit needed to execute the inbound at remote * @param payload the data which will be used by inbound at remote */ event MessageOutbound( uint32 localChainSlug, address localPlug, uint32 dstChainSlug, address dstPlug, bytes32 msgId, uint256 minMsgGasLimit, bytes32 executionParams, bytes32 transmissionParams, bytes payload, Fees fees ); /** * @notice emits the status of message after inbound call * @param msgId msg id which is executed */ event ExecutionSuccess(bytes32 msgId); /** * @notice emits the config set by a plug for a remoteChainSlug * @param plug address of plug on current chain * @param siblingChainSlug sibling chain slug * @param siblingPlug address of plug on sibling chain * @param inboundSwitchboard inbound switchboard (select from registered options) * @param outboundSwitchboard outbound switchboard (select from registered options) * @param capacitor capacitor selected based on outbound switchboard * @param decapacitor decapacitor selected based on inbound switchboard */ event PlugConnected( address plug, uint32 siblingChainSlug, address siblingPlug, address inboundSwitchboard, address outboundSwitchboard, address capacitor, address decapacitor ); /** * @notice registers a message * @dev Packs the message and includes it in a packet with capacitor * @param remoteChainSlug_ the remote chain slug * @param minMsgGasLimit_ the gas limit needed to execute the payload on remote * @param payload_ the data which is needed by plug at inbound call on remote */ function outbound( uint32 remoteChainSlug_, uint256 minMsgGasLimit_, bytes32 executionParams_, bytes32 transmissionParams_, bytes memory payload_ ) external payable returns (bytes32 msgId); /** * @notice executes a message * @param executionDetails_ the packet details, proof and signature needed for message execution * @param messageDetails_ the message details */ function execute( ISocket.ExecutionDetails calldata executionDetails_, ISocket.MessageDetails calldata messageDetails_ ) external payable; /** * @notice sets the config specific to the plug * @param siblingChainSlug_ the sibling chain slug * @param siblingPlug_ address of plug present at sibling chain to call inbound * @param inboundSwitchboard_ the address of switchboard to use for receiving messages * @param outboundSwitchboard_ the address of switchboard to use for sending messages */ function connect( uint32 siblingChainSlug_, address siblingPlug_, address inboundSwitchboard_, address outboundSwitchboard_ ) external; /** * @notice Retrieves the minimum fees required for a message with a specified gas limit and destination chain. * @param minMsgGasLimit_ The gas limit of the message. * @param remoteChainSlug_ The slug of the destination chain for the message. * @param plug_ The address of the plug through which the message is sent. * @return totalFees The minimum fees required for the specified message. */ function getMinFees( uint256 minMsgGasLimit_, uint256 payloadSize_, bytes32 executionParams_, bytes32 transmissionParams_, uint32 remoteChainSlug_, address plug_ ) external view returns (uint256 totalFees); /** * @notice returns chain slug * @return chainSlug current chain slug */ function chainSlug() external view returns (uint32 chainSlug); function globalMessageCount() external view returns (uint64); /** * @notice returns the config for given `plugAddress_` and `siblingChainSlug_` * @param siblingChainSlug_ the sibling chain slug * @param plugAddress_ address of plug present at current chain */ function getPlugConfig( address plugAddress_, uint32 siblingChainSlug_ ) external view returns ( address siblingPlug, address inboundSwitchboard__, address outboundSwitchboard__, address capacitor__, address decapacitor__ ); }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.13; import "lib/solmate/src/utils/SafeTransferLib.sol"; error ZeroAddress(); /** * @title RescueFundsLib * @dev A library that provides a function to rescue funds from a contract. */ library RescueFundsLib { /** * @dev The address used to identify ETH. */ address public constant ETH_ADDRESS = address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE); /** * @dev thrown when the given token address don't have any code */ error InvalidTokenAddress(); /** * @dev Rescues funds from a contract. * @param token_ The address of the token contract. * @param rescueTo_ The address of the user. * @param amount_ The amount of tokens to be rescued. */ function rescueFunds( address token_, address rescueTo_, uint256 amount_ ) internal { if (rescueTo_ == address(0)) revert ZeroAddress(); if (token_ == ETH_ADDRESS) { SafeTransferLib.safeTransferETH(rescueTo_, amount_); } else { if (token_.code.length == 0) revert InvalidTokenAddress(); SafeTransferLib.safeTransfer(ERC20(token_), rescueTo_, amount_); } } }
pragma solidity 0.8.13; import {IExchangeRate} from "./ExchangeRate.sol"; import {Ownable} from "../common/Ownable.sol"; import {Gauge} from "../common/Gauge.sol"; import {IConnector, IHub} from "./ConnectorPlug.sol"; import {IMintableERC20} from "./IMintableERC20.sol"; import {RescueFundsLib} from "../libraries/RescueFundsLib.sol"; contract Controller is IHub, Gauge, Ownable(msg.sender) { IMintableERC20 public immutable token__; IExchangeRate public exchangeRate__; struct UpdateLimitParams { bool isMint; address connector; uint256 maxLimit; uint256 ratePerSecond; } // connectorPoolId => totalLockedAmount mapping(uint256 => uint256) public poolLockedAmounts; // connector => connectorPoolId mapping(address => uint256) public connectorPoolIds; // connector => mintLimitParams mapping(address => LimitParams) _mintLimitParams; // connector => burnLimitParams mapping(address => LimitParams) _burnLimitParams; // connector => receiver => amount mapping(address => mapping(address => uint256)) public pendingMints; // connector => amount mapping(address => uint256) public connectorPendingMints; uint256 public totalMinted; error ConnectorUnavailable(); error InvalidPoolId(); error ZeroAmount(); event ExchangeRateUpdated(address exchangeRate); event ConnectorPoolIdUpdated(address connector, uint256 poolId); event LimitParamsUpdated(UpdateLimitParams[] updates); event TokensWithdrawn( address connector, address withdrawer, address receiver, uint256 burnAmount ); event PendingTokensMinted( address connector, address receiver, uint256 mintAmount, uint256 pendingAmount ); event TokensPending( address connecter, address receiver, uint256 pendingAmount, uint256 totalPendingAmount ); event TokensMinted(address connecter, address receiver, uint256 mintAmount); constructor(address token_, address exchangeRate_) { token__ = IMintableERC20(token_); exchangeRate__ = IExchangeRate(exchangeRate_); } function updateExchangeRate(address exchangeRate_) external onlyOwner { exchangeRate__ = IExchangeRate(exchangeRate_); emit ExchangeRateUpdated(exchangeRate_); } function updateConnectorPoolId( address[] calldata connectors, uint256[] calldata poolIds ) external onlyOwner { uint256 length = connectors.length; for (uint256 i; i < length; i++) { if (poolIds[i] == 0) revert InvalidPoolId(); connectorPoolIds[connectors[i]] = poolIds[i]; emit ConnectorPoolIdUpdated(connectors[i], poolIds[i]); } } function updateLimitParams( UpdateLimitParams[] calldata updates_ ) external onlyOwner { for (uint256 i; i < updates_.length; i++) { if (updates_[i].isMint) { _consumePartLimit(0, _mintLimitParams[updates_[i].connector]); // to keep current limit in sync _mintLimitParams[updates_[i].connector].maxLimit = updates_[i] .maxLimit; _mintLimitParams[updates_[i].connector] .ratePerSecond = updates_[i].ratePerSecond; } else { _consumePartLimit(0, _burnLimitParams[updates_[i].connector]); // to keep current limit in sync _burnLimitParams[updates_[i].connector].maxLimit = updates_[i] .maxLimit; _burnLimitParams[updates_[i].connector] .ratePerSecond = updates_[i].ratePerSecond; } } emit LimitParamsUpdated(updates_); } // do we throttle burn amount or unlock amount? burn for now function withdrawFromAppChain( address receiver_, uint256 burnAmount_, uint256 msgGasLimit_, address connector_ ) external payable { if (burnAmount_ == 0) revert ZeroAmount(); if (_burnLimitParams[connector_].maxLimit == 0) revert ConnectorUnavailable(); _consumeFullLimit(burnAmount_, _burnLimitParams[connector_]); // reverts on limit hit totalMinted -= burnAmount_; _burn(msg.sender, burnAmount_); uint256 connectorPoolId = connectorPoolIds[connector_]; if (connectorPoolId == 0) revert InvalidPoolId(); uint256 unlockAmount = exchangeRate__.getUnlockAmount( burnAmount_, poolLockedAmounts[connectorPoolId] ); poolLockedAmounts[connectorPoolId] -= unlockAmount; // underflow revert expected IConnector(connector_).outbound{value: msg.value}( msgGasLimit_, abi.encode(receiver_, unlockAmount) ); emit TokensWithdrawn(connector_, msg.sender, receiver_, burnAmount_); } function _burn(address user_, uint256 burnAmount_) internal virtual { token__.burn(user_, burnAmount_); } function mintPendingFor(address receiver_, address connector_) external { if (_mintLimitParams[connector_].maxLimit == 0) revert ConnectorUnavailable(); uint256 pendingMint = pendingMints[connector_][receiver_]; (uint256 consumedAmount, uint256 pendingAmount) = _consumePartLimit( pendingMint, _mintLimitParams[connector_] ); pendingMints[connector_][receiver_] = pendingAmount; connectorPendingMints[connector_] -= consumedAmount; totalMinted += consumedAmount; token__.mint(receiver_, consumedAmount); emit PendingTokensMinted( connector_, receiver_, consumedAmount, pendingAmount ); } // receive inbound assuming connector called function receiveInbound(bytes memory payload_) external override { if (_mintLimitParams[msg.sender].maxLimit == 0) revert ConnectorUnavailable(); (address receiver, uint256 lockAmount) = abi.decode( payload_, (address, uint256) ); uint256 connectorPoolId = connectorPoolIds[msg.sender]; if (connectorPoolId == 0) revert InvalidPoolId(); poolLockedAmounts[connectorPoolId] += lockAmount; uint256 mintAmount = exchangeRate__.getMintAmount( lockAmount, poolLockedAmounts[connectorPoolId] ); (uint256 consumedAmount, uint256 pendingAmount) = _consumePartLimit( mintAmount, _mintLimitParams[msg.sender] ); if (pendingAmount > 0) { // add instead of overwrite to handle case where already pending amount is left pendingMints[msg.sender][receiver] += pendingAmount; connectorPendingMints[msg.sender] += pendingAmount; emit TokensPending( msg.sender, receiver, pendingAmount, pendingMints[msg.sender][receiver] ); } totalMinted += consumedAmount; token__.mint(receiver, consumedAmount); emit TokensMinted(msg.sender, receiver, consumedAmount); } function getMinFees( address connector_, uint256 msgGasLimit_ ) external view returns (uint256 totalFees) { return IConnector(connector_).getMinFees(msgGasLimit_); } function getCurrentMintLimit( address connector_ ) external view returns (uint256) { return _getCurrentLimit(_mintLimitParams[connector_]); } function getCurrentBurnLimit( address connector_ ) external view returns (uint256) { return _getCurrentLimit(_burnLimitParams[connector_]); } function getMintLimitParams( address connector_ ) external view returns (LimitParams memory) { return _mintLimitParams[connector_]; } function getBurnLimitParams( address connector_ ) external view returns (LimitParams memory) { return _burnLimitParams[connector_]; } /** * @notice Rescues funds from the contract if they are locked by mistake. * @param token_ The address of the token contract. * @param rescueTo_ The address where rescued tokens need to be sent. * @param amount_ The amount of tokens to be rescued. */ function rescueFunds( address token_, address rescueTo_, uint256 amount_ ) external onlyOwner { RescueFundsLib.rescueFunds(token_, rescueTo_, amount_); } }
pragma solidity 0.8.13; import "../common/Ownable.sol"; import {RescueFundsLib} from "../libraries/RescueFundsLib.sol"; interface IExchangeRate { // not marked pure, may involve state interactions in future function getMintAmount( uint256 lockAmount, uint256 totalLockedAmount ) external returns (uint256 mintAmount); // not marked pure, may involve state interactions in future function getUnlockAmount( uint256 burnAmount, uint256 totalLockedAmount ) external returns (uint256 unlockAmount); } contract ExchangeRate is IExchangeRate, Ownable(msg.sender) { // chainId input needed? what else? slippage? function getMintAmount( uint256 lockAmount, uint256 /* totalLockedAmount */ ) external pure returns (uint256 mintAmount) { return lockAmount; } function getUnlockAmount( uint256 burnAmount, uint256 /* totalLockedAmount */ ) external pure returns (uint256 unlockAmount) { return burnAmount; } /** * @notice Rescues funds from the contract if they are locked by mistake. * @param token_ The address of the token contract. * @param rescueTo_ The address where rescued tokens need to be sent. * @param amount_ The amount of tokens to be rescued. */ function rescueFunds( address token_, address rescueTo_, uint256 amount_ ) external onlyOwner { RescueFundsLib.rescueFunds(token_, rescueTo_, amount_); } }
pragma solidity 0.8.13; import "lib/solmate/src/utils/SafeTransferLib.sol"; import {Controller} from "../Controller.sol"; import {IMintableERC20} from "../IMintableERC20.sol"; import {IFiatTokenV2_1_Mintable} from "./IFiatTokenV2_1_Mintable.sol"; contract FiatTokenV2_1_Controller is Controller { using SafeTransferLib for IMintableERC20; constructor( address token_, address exchangeRate_ ) Controller(token_, exchangeRate_) {} function _burn(address user_, uint256 burnAmount_) internal override { token__.safeTransferFrom(user_, address(this), burnAmount_); IFiatTokenV2_1_Mintable(address(token__)).burn(burnAmount_); } }
pragma solidity 0.8.13; import "lib/solmate/src/tokens/ERC20.sol"; // USDC's standard token abstract contract IFiatTokenV2_1_Mintable is ERC20 { function mint(address receiver_, uint256 amount_) external virtual; function burn(uint256 _amount) external virtual; }
pragma solidity 0.8.13; import "lib/solmate/src/tokens/ERC20.sol"; abstract contract IMintableERC20 is ERC20 { function mint(address receiver_, uint256 amount_) external virtual; function burn(address burner_, uint256 amount_) external virtual; }
pragma solidity 0.8.13; import "lib/solmate/src/utils/SafeTransferLib.sol"; import "../common/Ownable.sol"; import {Gauge} from "../common/Gauge.sol"; import {IConnector, IHub} from "./ConnectorPlug.sol"; import {RescueFundsLib} from "../libraries/RescueFundsLib.sol"; // @todo: separate our connecter plugs contract Vault is Gauge, IHub, Ownable(msg.sender) { using SafeTransferLib for ERC20; ERC20 public immutable token__; struct UpdateLimitParams { bool isLock; address connector; uint256 maxLimit; uint256 ratePerSecond; } // connector => receiver => pendingUnlock mapping(address => mapping(address => uint256)) public pendingUnlocks; // connector => amount mapping(address => uint256) public connectorPendingUnlocks; // connector => lockLimitParams mapping(address => LimitParams) _lockLimitParams; // connector => unlockLimitParams mapping(address => LimitParams) _unlockLimitParams; error ConnectorUnavailable(); error ZeroAmount(); event LimitParamsUpdated(UpdateLimitParams[] updates); event TokensDeposited( address connector, address depositor, address receiver, uint256 depositAmount ); event PendingTokensTransferred( address connector, address receiver, uint256 unlockedAmount, uint256 pendingAmount ); event TokensPending( address connector, address receiver, uint256 pendingAmount, uint256 totalPendingAmount ); event TokensUnlocked( address connector, address receiver, uint256 unlockedAmount ); constructor(address token_) { token__ = ERC20(token_); } function updateLimitParams( UpdateLimitParams[] calldata updates_ ) external onlyOwner { for (uint256 i; i < updates_.length; i++) { if (updates_[i].isLock) { _consumePartLimit(0, _lockLimitParams[updates_[i].connector]); // to keep current limit in sync _lockLimitParams[updates_[i].connector].maxLimit = updates_[i] .maxLimit; _lockLimitParams[updates_[i].connector] .ratePerSecond = updates_[i].ratePerSecond; } else { _consumePartLimit(0, _unlockLimitParams[updates_[i].connector]); // to keep current limit in sync _unlockLimitParams[updates_[i].connector].maxLimit = updates_[i] .maxLimit; _unlockLimitParams[updates_[i].connector] .ratePerSecond = updates_[i].ratePerSecond; } } emit LimitParamsUpdated(updates_); } function depositToAppChain( address receiver_, uint256 amount_, uint256 msgGasLimit_, address connector_ ) external payable { if (amount_ == 0) revert ZeroAmount(); if (_lockLimitParams[connector_].maxLimit == 0) revert ConnectorUnavailable(); _consumeFullLimit(amount_, _lockLimitParams[connector_]); // reverts on limit hit token__.safeTransferFrom(msg.sender, address(this), amount_); IConnector(connector_).outbound{value: msg.value}( msgGasLimit_, abi.encode(receiver_, amount_) ); emit TokensDeposited(connector_, msg.sender, receiver_, amount_); } function unlockPendingFor(address receiver_, address connector_) external { if (_unlockLimitParams[connector_].maxLimit == 0) revert ConnectorUnavailable(); uint256 pendingUnlock = pendingUnlocks[connector_][receiver_]; (uint256 consumedAmount, uint256 pendingAmount) = _consumePartLimit( pendingUnlock, _unlockLimitParams[connector_] ); pendingUnlocks[connector_][receiver_] = pendingAmount; connectorPendingUnlocks[connector_] -= consumedAmount; token__.safeTransfer(receiver_, consumedAmount); emit PendingTokensTransferred( connector_, receiver_, consumedAmount, pendingAmount ); } // receive inbound assuming connector called function receiveInbound(bytes memory payload_) external override { if (_unlockLimitParams[msg.sender].maxLimit == 0) revert ConnectorUnavailable(); (address receiver, uint256 unlockAmount) = abi.decode( payload_, (address, uint256) ); (uint256 consumedAmount, uint256 pendingAmount) = _consumePartLimit( unlockAmount, _unlockLimitParams[msg.sender] ); if (pendingAmount > 0) { // add instead of overwrite to handle case where already pending amount is left pendingUnlocks[msg.sender][receiver] += pendingAmount; connectorPendingUnlocks[msg.sender] += pendingAmount; emit TokensPending( msg.sender, receiver, pendingAmount, pendingUnlocks[msg.sender][receiver] ); } token__.safeTransfer(receiver, consumedAmount); emit TokensUnlocked(msg.sender, receiver, consumedAmount); } function getMinFees( address connector_, uint256 msgGasLimit_ ) external view returns (uint256 totalFees) { return IConnector(connector_).getMinFees(msgGasLimit_); } function getCurrentLockLimit( address connector_ ) external view returns (uint256) { return _getCurrentLimit(_lockLimitParams[connector_]); } function getCurrentUnlockLimit( address connector_ ) external view returns (uint256) { return _getCurrentLimit(_unlockLimitParams[connector_]); } function getLockLimitParams( address connector_ ) external view returns (LimitParams memory) { return _lockLimitParams[connector_]; } function getUnlockLimitParams( address connector_ ) external view returns (LimitParams memory) { return _unlockLimitParams[connector_]; } /** * @notice Rescues funds from the contract if they are locked by mistake. * @param token_ The address of the token contract. * @param rescueTo_ The address where rescued tokens need to be sent. * @param amount_ The amount of tokens to be rescued. */ function rescueFunds( address token_, address rescueTo_, uint256 amount_ ) external onlyOwner { RescueFundsLib.rescueFunds(token_, rescueTo_, amount_); } }
pragma solidity 0.8.13; import {ISocket} from "../interfaces/ISocket.sol"; import {IPlug} from "../interfaces/IPlug.sol"; import {Ownable} from "../common/Ownable.sol"; import {RescueFundsLib} from "../libraries/RescueFundsLib.sol"; abstract contract SuperPlug is IPlug, Ownable { ISocket public socket__; event SuperPlugDisconnected(uint32 siblingChainSlug); event SocketUpdated(); error NotSocket(); constructor(address socket_, address owner_) Ownable(owner_) { socket__ = ISocket(socket_); } function _outbound( uint32 siblingChainSlug_, uint256 msgGasLimit_, bytes memory payload_ ) internal returns (bytes32 messageId_) { return socket__.outbound{value: msg.value}( siblingChainSlug_, msgGasLimit_, bytes32(0), bytes32(0), payload_ ); } function getMinFees( uint32 siblingChainSlug_, uint256 msgGasLimit_ ) external view returns (uint256 totalFees) { return socket__.getMinFees( msgGasLimit_, 96, bytes32(0), bytes32(0), siblingChainSlug_, address(this) ); } function updateSocket(address socket_) external onlyOwner { socket__ = ISocket(socket_); emit SocketUpdated(); } function connect( uint32 siblingChainSlug_, address siblingPlug_, address inboundSwitchboard_, address outboundSwitchboard_ ) external onlyOwner { socket__.connect( siblingChainSlug_, siblingPlug_, inboundSwitchboard_, outboundSwitchboard_ ); } function disconnect(uint32 siblingChainSlug_) external onlyOwner { ( , address inboundSwitchboard, address outboundSwitchboard, , ) = socket__.getPlugConfig(address(this), siblingChainSlug_); socket__.connect( siblingChainSlug_, address(0), inboundSwitchboard, outboundSwitchboard ); emit SuperPlugDisconnected(siblingChainSlug_); } function getMessageId( uint32 siblingChainSlug_ ) public view returns (bytes32) { return bytes32( (uint256(siblingChainSlug_) << 224) | (uint256(uint160(address(this))) << 64) | (ISocket(socket__).globalMessageCount() + 1) ); } }
pragma solidity 0.8.13; import "lib/solmate/src/tokens/ERC20.sol"; import "./SuperPlug.sol"; import "../common/Gauge.sol"; contract SuperToken is ERC20, Gauge, SuperPlug { struct UpdateLimitParams { bool isMint; uint32 siblingChainSlug; uint256 maxLimit; uint256 ratePerSecond; } // siblingChainSlug => mintLimitParams mapping(uint32 => LimitParams) _receivingLimitParams; // siblingChainSlug => burnLimitParams mapping(uint32 => LimitParams) _sendingLimitParams; // siblingChainSlug => receiver => identifier => amount mapping(uint32 => mapping(address => mapping(bytes32 => uint256))) public pendingMints; // siblingChainSlug => amount mapping(uint32 => uint256) public siblingPendingMints; error SiblingNotSupported(); error MessageIdMisMatched(); error ZeroAmount(); event LimitParamsUpdated(UpdateLimitParams[] updates); event BridgeTokens( uint32 siblingChainSlug, address withdrawer, address receiver, uint256 bridgedAmount, bytes32 identifier ); event PendingTokensBridged( uint32 siblingChainSlug, address receiver, uint256 mintAmount, uint256 pendingAmount, bytes32 identifier ); event TokensPending( uint32 siblingChainSlug, address receiver, uint256 pendingAmount, uint256 totalPendingAmount, bytes32 identifier ); event TokensBridged( uint32 siblingChainSlug, address receiver, uint256 mintAmount, uint256 totalAmount, bytes32 identifier ); constructor( string memory name_, string memory symbol_, uint8 decimals_, address user_, address owner_, uint256 initialSupply_, address socket_ ) ERC20(name_, symbol_, decimals_) SuperPlug(socket_, owner_) { _mint(user_, initialSupply_); } function updateLimitParams( UpdateLimitParams[] calldata updates_ ) external onlyOwner { for (uint256 i; i < updates_.length; i++) { if (updates_[i].isMint) { _consumePartLimit( 0, _receivingLimitParams[updates_[i].siblingChainSlug] ); // to keep current limit in sync _receivingLimitParams[updates_[i].siblingChainSlug] .maxLimit = updates_[i].maxLimit; _receivingLimitParams[updates_[i].siblingChainSlug] .ratePerSecond = updates_[i].ratePerSecond; } else { _consumePartLimit( 0, _sendingLimitParams[updates_[i].siblingChainSlug] ); // to keep current limit in sync _sendingLimitParams[updates_[i].siblingChainSlug] .maxLimit = updates_[i].maxLimit; _sendingLimitParams[updates_[i].siblingChainSlug] .ratePerSecond = updates_[i].ratePerSecond; } } emit LimitParamsUpdated(updates_); } function bridge( address receiver_, uint32 siblingChainSlug_, uint256 sendingAmount_, uint256 msgGasLimit_ ) external payable { if (_sendingLimitParams[siblingChainSlug_].maxLimit == 0) revert SiblingNotSupported(); if (sendingAmount_ == 0) revert ZeroAmount(); _consumeFullLimit( sendingAmount_, _sendingLimitParams[siblingChainSlug_] ); // reverts on limit hit _burn(msg.sender, sendingAmount_); bytes32 messageId = getMessageId(siblingChainSlug_); bytes32 returnedMessageId = _outbound( siblingChainSlug_, msgGasLimit_, abi.encode(receiver_, sendingAmount_, messageId) ); if (returnedMessageId != messageId) revert MessageIdMisMatched(); emit BridgeTokens( siblingChainSlug_, msg.sender, receiver_, sendingAmount_, messageId ); } function mintPendingFor( address receiver_, uint32 siblingChainSlug_, bytes32 identifier ) external { if (_receivingLimitParams[siblingChainSlug_].maxLimit == 0) revert SiblingNotSupported(); uint256 pendingMint = pendingMints[siblingChainSlug_][receiver_][ identifier ]; (uint256 consumedAmount, uint256 pendingAmount) = _consumePartLimit( pendingMint, _receivingLimitParams[siblingChainSlug_] ); pendingMints[siblingChainSlug_][receiver_][identifier] = pendingAmount; siblingPendingMints[siblingChainSlug_] -= consumedAmount; _mint(receiver_, consumedAmount); emit PendingTokensBridged( siblingChainSlug_, receiver_, consumedAmount, pendingAmount, identifier ); } function inbound( uint32 siblingChainSlug_, bytes memory payload_ ) external payable override { if (msg.sender != address(socket__)) revert NotSocket(); if (_receivingLimitParams[siblingChainSlug_].maxLimit == 0) revert SiblingNotSupported(); (address receiver, uint256 mintAmount, bytes32 identifier) = abi.decode( payload_, (address, uint256, bytes32) ); (uint256 consumedAmount, uint256 pendingAmount) = _consumePartLimit( mintAmount, _receivingLimitParams[siblingChainSlug_] ); if (pendingAmount > 0) { pendingMints[siblingChainSlug_][receiver][ identifier ] = pendingAmount; siblingPendingMints[siblingChainSlug_] += pendingAmount; emit TokensPending( siblingChainSlug_, receiver, pendingAmount, pendingMints[siblingChainSlug_][receiver][identifier], identifier ); } _mint(receiver, consumedAmount); emit TokensBridged( siblingChainSlug_, receiver, consumedAmount, mintAmount, identifier ); } function getCurrentReceivingLimit( uint32 siblingChainSlug_ ) external view returns (uint256) { return _getCurrentLimit(_receivingLimitParams[siblingChainSlug_]); } function getCurrentSendingLimit( uint32 siblingChainSlug_ ) external view returns (uint256) { return _getCurrentLimit(_sendingLimitParams[siblingChainSlug_]); } function getReceivingLimitParams( uint32 siblingChainSlug_ ) external view returns (LimitParams memory) { return _receivingLimitParams[siblingChainSlug_]; } function getSendingLimitParams( uint32 siblingChainSlug_ ) external view returns (LimitParams memory) { return _sendingLimitParams[siblingChainSlug_]; } /** * @notice Rescues funds from the contract if they are locked by mistake. * @param token_ The address of the token contract. * @param rescueTo_ The address where rescued tokens need to be sent. * @param amount_ The amount of tokens to be rescued. */ function rescueFunds( address token_, address rescueTo_, uint256 amount_ ) external onlyOwner { RescueFundsLib.rescueFunds(token_, rescueTo_, amount_); } }
pragma solidity 0.8.13; import "lib/solmate/src/utils/SafeTransferLib.sol"; import "./SuperPlug.sol"; import {Gauge} from "../common/Gauge.sol"; contract SuperTokenLocker is Gauge, SuperPlug { using SafeTransferLib for ERC20; ERC20 public immutable token__; struct UpdateLimitParams { bool isLock; uint32 siblingChainSlug; uint256 maxLimit; uint256 ratePerSecond; } // siblingChainSlug => receiver => pendingUnlock mapping(uint32 => mapping(address => uint256)) public pendingUnlocks; // siblingChainSlug => amount mapping(uint32 => uint256) public siblingPendingUnlocks; // siblingChainSlug => lockLimitParams mapping(uint32 => LimitParams) _lockLimitParams; // siblingChainSlug => unlockLimitParams mapping(uint32 => LimitParams) _unlockLimitParams; error SiblingChainSlugUnavailable(); error ZeroAmount(); event LimitParamsUpdated(UpdateLimitParams[] updates); event TokensDeposited( uint32 siblingChainSlug, address depositor, address receiver, uint256 depositAmount ); event PendingTokensTransferred( uint32 siblingChainSlug, address receiver, uint256 unlockedAmount, uint256 pendingAmount ); event TokensPending( uint32 siblingChainSlug, address receiver, uint256 pendingAmount, uint256 totalPendingAmount ); event TokensUnlocked( uint32 siblingChainSlug, address receiver, uint256 unlockedAmount ); constructor( address token_, address socket_, address owner_ ) SuperPlug(socket_, owner_) { token__ = ERC20(token_); } function updateLimitParams( UpdateLimitParams[] calldata updates_ ) external onlyOwner { for (uint256 i; i < updates_.length; i++) { if (updates_[i].isLock) { _consumePartLimit( 0, _lockLimitParams[updates_[i].siblingChainSlug] ); // to keep current limit in sync _lockLimitParams[updates_[i].siblingChainSlug] .maxLimit = updates_[i].maxLimit; _lockLimitParams[updates_[i].siblingChainSlug] .ratePerSecond = updates_[i].ratePerSecond; } else { _consumePartLimit( 0, _unlockLimitParams[updates_[i].siblingChainSlug] ); // to keep current limit in sync _unlockLimitParams[updates_[i].siblingChainSlug] .maxLimit = updates_[i].maxLimit; _unlockLimitParams[updates_[i].siblingChainSlug] .ratePerSecond = updates_[i].ratePerSecond; } } emit LimitParamsUpdated(updates_); } function bridge( address receiver_, uint32 siblingChainSlug_, uint256 amount_, uint256 msgGasLimit_ ) external payable { if (amount_ == 0) revert ZeroAmount(); if (_lockLimitParams[siblingChainSlug_].maxLimit == 0) revert SiblingChainSlugUnavailable(); _consumeFullLimit(amount_, _lockLimitParams[siblingChainSlug_]); // reverts on limit hit token__.safeTransferFrom(msg.sender, address(this), amount_); bytes32 messageId = getMessageId(siblingChainSlug_); _outbound( siblingChainSlug_, msgGasLimit_, abi.encode(receiver_, amount_, messageId) ); emit TokensDeposited(siblingChainSlug_, msg.sender, receiver_, amount_); } function unlockPendingFor( address receiver_, uint32 siblingChainSlug_ ) external { if (_unlockLimitParams[siblingChainSlug_].maxLimit == 0) revert SiblingChainSlugUnavailable(); uint256 pendingUnlock = pendingUnlocks[siblingChainSlug_][receiver_]; (uint256 consumedAmount, uint256 pendingAmount) = _consumePartLimit( pendingUnlock, _unlockLimitParams[siblingChainSlug_] ); pendingUnlocks[siblingChainSlug_][receiver_] = pendingAmount; siblingPendingUnlocks[siblingChainSlug_] -= consumedAmount; token__.safeTransfer(receiver_, consumedAmount); emit PendingTokensTransferred( siblingChainSlug_, receiver_, consumedAmount, pendingAmount ); } function inbound( uint32 siblingChainSlug_, bytes memory payload_ ) external payable override { if (msg.sender != address(socket__)) revert NotSocket(); if (_unlockLimitParams[siblingChainSlug_].maxLimit == 0) revert SiblingChainSlugUnavailable(); (address receiver, uint256 unlockAmount) = abi.decode( payload_, (address, uint256) ); (uint256 consumedAmount, uint256 pendingAmount) = _consumePartLimit( unlockAmount, _unlockLimitParams[siblingChainSlug_] ); if (pendingAmount > 0) { // add instead of overwrite to handle case where already pending amount is left pendingUnlocks[siblingChainSlug_][receiver] += pendingAmount; siblingPendingUnlocks[siblingChainSlug_] += pendingAmount; emit TokensPending( siblingChainSlug_, receiver, pendingAmount, pendingUnlocks[siblingChainSlug_][receiver] ); } token__.safeTransfer(receiver, consumedAmount); emit TokensUnlocked(siblingChainSlug_, receiver, consumedAmount); } function getCurrentLockLimit( uint32 siblingChainSlug_ ) external view returns (uint256) { return _getCurrentLimit(_lockLimitParams[siblingChainSlug_]); } function getCurrentUnlockLimit( uint32 siblingChainSlug_ ) external view returns (uint256) { return _getCurrentLimit(_unlockLimitParams[siblingChainSlug_]); } function getLockLimitParams( uint32 siblingChainSlug_ ) external view returns (LimitParams memory) { return _lockLimitParams[siblingChainSlug_]; } function getUnlockLimitParams( uint32 siblingChainSlug_ ) external view returns (LimitParams memory) { return _unlockLimitParams[siblingChainSlug_]; } /** * @notice Rescues funds from the contract if they are locked by mistake. * @param token_ The address of the token contract. * @param rescueTo_ The address where rescued tokens need to be sent. * @param amount_ The amount of tokens to be rescued. */ function rescueFunds( address token_, address rescueTo_, uint256 amount_ ) external onlyOwner { RescueFundsLib.rescueFunds(token_, rescueTo_, amount_); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol) /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it. abstract contract ERC20 { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); /*////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public name; string public symbol; uint8 public immutable decimals; /*////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal immutable INITIAL_CHAIN_ID; bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor( string memory _name, string memory _symbol, uint8 _decimals ) { name = _name; symbol = _symbol; decimals = _decimals; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); } /*////////////////////////////////////////////////////////////// ERC20 LOGIC //////////////////////////////////////////////////////////////*/ function approve(address spender, uint256 amount) public virtual returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer(address to, uint256 amount) public virtual returns (bool) { balanceOf[msg.sender] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount; balanceOf[from] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } /*////////////////////////////////////////////////////////////// EIP-2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED"); // Unchecked because the only math done is incrementing // the owner's nonce which cannot realistically overflow. unchecked { address recoveredAddress = ecrecover( keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR(), keccak256( abi.encode( keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ), owner, spender, value, nonces[owner]++, deadline ) ) ) ), v, r, s ); require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER"); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator(); } function computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name)), keccak256("1"), block.chainid, address(this) ) ); } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 amount) internal virtual { totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal virtual { balanceOf[from] -= amount; // Cannot underflow because a user's balance // will never be larger than the total supply. unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; import {ERC20} from "../tokens/ERC20.sol"; /// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol) /// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer. /// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller. library SafeTransferLib { /*////////////////////////////////////////////////////////////// ETH OPERATIONS //////////////////////////////////////////////////////////////*/ function safeTransferETH(address to, uint256 amount) internal { bool success; /// @solidity memory-safe-assembly assembly { // Transfer the ETH and store if it succeeded or not. success := call(gas(), to, amount, 0, 0, 0, 0) } require(success, "ETH_TRANSFER_FAILED"); } /*////////////////////////////////////////////////////////////// ERC20 OPERATIONS //////////////////////////////////////////////////////////////*/ function safeTransferFrom( ERC20 token, address from, address to, uint256 amount ) internal { bool success; /// @solidity memory-safe-assembly assembly { // Get a pointer to some free memory. let freeMemoryPointer := mload(0x40) // Write the abi-encoded calldata into memory, beginning with the function selector. mstore(freeMemoryPointer, 0x23b872dd00000000000000000000000000000000000000000000000000000000) mstore(add(freeMemoryPointer, 4), and(from, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "from" argument. mstore(add(freeMemoryPointer, 36), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument. mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type. success := and( // Set success to whether the call reverted, if not we check it either // returned exactly 1 (can't just be non-zero data), or had no return data. or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())), // We use 100 because the length of our calldata totals up like so: 4 + 32 * 3. // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space. // Counterintuitively, this call must be positioned second to the or() call in the // surrounding and() call or else returndatasize() will be zero during the computation. call(gas(), token, 0, freeMemoryPointer, 100, 0, 32) ) } require(success, "TRANSFER_FROM_FAILED"); } function safeTransfer( ERC20 token, address to, uint256 amount ) internal { bool success; /// @solidity memory-safe-assembly assembly { // Get a pointer to some free memory. let freeMemoryPointer := mload(0x40) // Write the abi-encoded calldata into memory, beginning with the function selector. mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000) mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument. mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type. success := and( // Set success to whether the call reverted, if not we check it either // returned exactly 1 (can't just be non-zero data), or had no return data. or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())), // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2. // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space. // Counterintuitively, this call must be positioned second to the or() call in the // surrounding and() call or else returndatasize() will be zero during the computation. call(gas(), token, 0, freeMemoryPointer, 68, 0, 32) ) } require(success, "TRANSFER_FAILED"); } function safeApprove( ERC20 token, address to, uint256 amount ) internal { bool success; /// @solidity memory-safe-assembly assembly { // Get a pointer to some free memory. let freeMemoryPointer := mload(0x40) // Write the abi-encoded calldata into memory, beginning with the function selector. mstore(freeMemoryPointer, 0x095ea7b300000000000000000000000000000000000000000000000000000000) mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument. mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type. success := and( // Set success to whether the call reverted, if not we check it either // returned exactly 1 (can't just be non-zero data), or had no return data. or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())), // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2. // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space. // Counterintuitively, this call must be positioned second to the or() call in the // surrounding and() call or else returndatasize() will be zero during the computation. call(gas(), token, 0, freeMemoryPointer, 68, 0, 32) ) } require(success, "APPROVE_FAILED"); } }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"hub_","type":"address"},{"internalType":"address","name":"socket_","type":"address"},{"internalType":"uint32","name":"siblingChainSlug_","type":"uint32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidTokenAddress","type":"error"},{"inputs":[],"name":"NotHub","type":"error"},{"inputs":[],"name":"NotSocket","type":"error"},{"inputs":[],"name":"OnlyNominee","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[],"name":"ConnectorPlugDisconnected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"claimer","type":"address"}],"name":"OwnerClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nominee","type":"address"}],"name":"OwnerNominated","type":"event"},{"inputs":[],"name":"claimOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"siblingPlug_","type":"address"},{"internalType":"address","name":"switchboard_","type":"address"}],"name":"connect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disconnect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"msgGasLimit_","type":"uint256"}],"name":"getMinFees","outputs":[{"internalType":"uint256","name":"totalFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hub__","outputs":[{"internalType":"contract IHub","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"},{"internalType":"bytes","name":"payload_","type":"bytes"}],"name":"inbound","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"nominee_","type":"address"}],"name":"nominateOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nominee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"msgGasLimit_","type":"uint256"},{"internalType":"bytes","name":"payload_","type":"bytes"}],"name":"outbound","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"address","name":"rescueTo_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"rescueFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"siblingChainSlug","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"socket__","outputs":[{"internalType":"contract ISocket","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x6080604052600436106100d25760003560e01c806377e031d91161007f578063bf965e5211610059578063bf965e521461023f578063c41f1f6c14610288578063c6a261d21461029b578063d9374bff146102cf57600080fd5b806377e031d9146101b257806389c1cf9a146101e65780638da5cb5b1461021457600080fd5b80633bd1adec116100b05780633bd1adec1461015d5780635b94db27146101725780636ccae0541461019257600080fd5b80631cbdf12b146100d757806320f99c0a146100ec578063295058ef1461013d575b600080fd5b6100ea6100e5366004610e26565b6102e4565b005b3480156100f857600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561014957600080fd5b506100ea610158366004610f24565b610438565b34801561016957600080fd5b506100ea610569565b34801561017e57600080fd5b506100ea61018d366004610f5d565b6105c5565b34801561019e57600080fd5b506100ea6101ad366004610f81565b610685565b3480156101be57600080fd5b506101137f000000000000000000000000d4efe33c66b8cde33b8896a2126e41e5db571b7e81565b3480156101f257600080fd5b50610206610201366004610fc2565b6106e1565b604051908152602001610134565b34801561022057600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610113565b34801561024b57600080fd5b506102737f00000000000000000000000000000000000000000000000000000000000003bd81565b60405163ffffffff9091168152602001610134565b6100ea610296366004610fdb565b6107e2565b3480156102a757600080fd5b506101137f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f981565b3480156102db57600080fd5b506100ea6108fc565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000d4efe33c66b8cde33b8896a2126e41e5db571b7e1614610353576040517f9de9741800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f3386774f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f91690633386774f9034906103f0907f00000000000000000000000000000000000000000000000000000000000003bd90879060009081908990600401611069565b60206040518083038185885af115801561040e573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061043391906110ff565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610489576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f3b1be67800000000000000000000000000000000000000000000000000000000815263ffffffff7f00000000000000000000000000000000000000000000000000000000000003bd16600482015273ffffffffffffffffffffffffffffffffffffffff83811660248301528281166044830181905260648301527f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f91690633b1be67890608401600060405180830381600087803b15801561054d57600080fd5b505af1158015610561573d6000803e3d6000fd5b505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff1633146105ba576040517f7c91ccdd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105c333610b40565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610616576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290600090a250565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106d6576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610433838383610bb8565b604080517f9ae3f05a0000000000000000000000000000000000000000000000000000000081526004810183905260248101919091526000604482018190526064820181905263ffffffff7f00000000000000000000000000000000000000000000000000000000000003bd1660848301523060a4830152907f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f973ffffffffffffffffffffffffffffffffffffffff1690639ae3f05a9060c401602060405180830381865afa1580156107b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107dc91906110ff565b92915050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f91614610851576040517fc59f8f7c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f10c56ed900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000d4efe33c66b8cde33b8896a2126e41e5db571b7e16906310c56ed9906108c59085908590600401611118565b600060405180830381600087803b1580156108df57600080fd5b505af11580156108f3573d6000803e3d6000fd5b50505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461094d576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f6f38f87000000000000000000000000000000000000000000000000000000000815230600482015263ffffffff7f00000000000000000000000000000000000000000000000000000000000003bd166024820152600090819073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f91690636f38f8709060440160a060405180830381865afa158015610a08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2c9190611165565b50506040517f3b1be67800000000000000000000000000000000000000000000000000000000815263ffffffff7f00000000000000000000000000000000000000000000000000000000000003bd1660048201526000602482015273ffffffffffffffffffffffffffffffffffffffff808416604483015280831660648301529295509093507f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f99091169150633b1be67890608401600060405180830381600087803b158015610afb57600080fd5b505af1158015610b0f573d6000803e3d6000fd5b50506040517fc2af098c82dba3c4b00be8bda596d62d13b98a87b42626fefa67e0bb0e198fdd925060009150a15050565b6000805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff0000000000000000000000000000000000000000918216811783556001805490921690915560405190917ffbe19c9b601f5ee90b44c7390f3fa2319eba01762d34ee372aeafd59b25c7f8791a250565b73ffffffffffffffffffffffffffffffffffffffff8216610c05576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fffffffffffffffffffffffff111111111111111111111111111111111111111273ffffffffffffffffffffffffffffffffffffffff841601610c4c576104338282610ca8565b8273ffffffffffffffffffffffffffffffffffffffff163b600003610c9d576040517f1eb00b0600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610433838383610d22565b600080600080600085875af1905080610433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4554485f5452414e534645525f4641494c45440000000000000000000000000060448201526064015b60405180910390fd5b60006040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152826024820152602060006044836000895af13d15601f3d1160016000511416171691505080610df1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152606401610d19565b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060408385031215610e3957600080fd5b82359150602083013567ffffffffffffffff80821115610e5857600080fd5b818501915085601f830112610e6c57600080fd5b813581811115610e7e57610e7e610df7565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715610ec457610ec4610df7565b81604052828152886020848701011115610edd57600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b73ffffffffffffffffffffffffffffffffffffffff81168114610f2157600080fd5b50565b60008060408385031215610f3757600080fd5b8235610f4281610eff565b91506020830135610f5281610eff565b809150509250929050565b600060208284031215610f6f57600080fd5b8135610f7a81610eff565b9392505050565b600080600060608486031215610f9657600080fd5b8335610fa181610eff565b92506020840135610fb181610eff565b929592945050506040919091013590565b600060208284031215610fd457600080fd5b5035919050565b600080600060408486031215610ff057600080fd5b833563ffffffff8116811461100457600080fd5b9250602084013567ffffffffffffffff8082111561102157600080fd5b818601915086601f83011261103557600080fd5b81358181111561104457600080fd5b87602082850101111561105657600080fd5b6020830194508093505050509250925092565b63ffffffff8616815260006020868184015285604084015284606084015260a0608084015283518060a085015260005b818110156110b55785810183015185820160c001528201611099565b818111156110c757600060c083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160c001979650505050505050565b60006020828403121561111157600080fd5b5051919050565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b600080600080600060a0868803121561117d57600080fd5b855161118881610eff565b602087015190955061119981610eff565b60408701519094506111aa81610eff565b60608701519093506111bb81610eff565b60808701519092506111cc81610eff565b80915050929550929590935056fea26469706673582212205d46efb0856be6b1c964530ef6de3c0bd48f1d2b8be4c50ad04a524282b1b09e64736f6c634300080d0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.