Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 2,532 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Multi Call | 15094841 | 1359 days ago | IN | 0 ETH | 0.00203682 | ||||
| Bridge ERC20 | 15083449 | 1360 days ago | IN | 0 ETH | 0.00161112 | ||||
| Bridge ERC20 | 15080424 | 1361 days ago | IN | 0 ETH | 0.00063138 | ||||
| Bridge ERC20 | 15079818 | 1361 days ago | IN | 0 ETH | 0.0010756 | ||||
| Bridge ERC20 | 15079666 | 1361 days ago | IN | 0 ETH | 0.00161241 | ||||
| Bridge ERC20 | 15075951 | 1362 days ago | IN | 0 ETH | 0.001889 | ||||
| Bridge ERC20 | 15069895 | 1362 days ago | IN | 0 ETH | 0.00091421 | ||||
| Bridge ERC20 | 15069360 | 1363 days ago | IN | 0 ETH | 0.00192628 | ||||
| Bridge ERC20 | 15069313 | 1363 days ago | IN | 0 ETH | 0.00035596 | ||||
| Bridge ERC20 | 15069213 | 1363 days ago | IN | 0 ETH | 0.00046605 | ||||
| Bridge ERC20 | 15069059 | 1363 days ago | IN | 0 ETH | 0.00058241 | ||||
| Bridge ERC20 | 15069000 | 1363 days ago | IN | 0 ETH | 0.00053928 | ||||
| Bridge ERC20 | 15064779 | 1363 days ago | IN | 0 ETH | 0.00089421 | ||||
| Bridge ERC20 | 15054820 | 1365 days ago | IN | 0 ETH | 0.00125416 | ||||
| Multi Call | 15054622 | 1365 days ago | IN | 0 ETH | 0.00126448 | ||||
| Bridge ERC20 | 15054063 | 1365 days ago | IN | 0 ETH | 0.00137513 | ||||
| Bridge ERC20 | 15053861 | 1365 days ago | IN | 0 ETH | 0.0012528 | ||||
| Bridge ERC20 | 15053756 | 1365 days ago | IN | 0 ETH | 0.00133564 | ||||
| Bridge ERC20 | 15053738 | 1365 days ago | IN | 0 ETH | 0.00132587 | ||||
| Bridge ERC20 | 15053734 | 1365 days ago | IN | 0 ETH | 0.00142293 | ||||
| Bridge ERC20 | 15053716 | 1365 days ago | IN | 0 ETH | 0.00227963 | ||||
| Bridge ERC20 | 15053470 | 1365 days ago | IN | 0 ETH | 0.00207874 | ||||
| Bridge ERC20 | 15053450 | 1365 days ago | IN | 0 ETH | 0.00130811 | ||||
| Bridge ERC20 | 15053402 | 1365 days ago | IN | 0 ETH | 0.00369433 | ||||
| Bridge ERC20 | 15053386 | 1365 days ago | IN | 0 ETH | 0.00394408 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Bridge
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./interfaces/IBridge.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Receiver.sol";
contract Bridge is IBridge, ERC1155Receiver {
using SafeERC20 for IERC20;
struct CallData {
address target;
bytes data;
}
address public override committee;
address public withdrawTo;
modifier onlyCommittee() {
require(msg.sender == committee, "Bridge: FORBIDDEN");
_;
}
constructor(address _committee, address _withdrawTo) {
committee = _committee;
withdrawTo = _withdrawTo;
}
function setCommittee(address _committee) external onlyCommittee {
committee = _committee;
}
function setWithdrawTo(address _withdrawTo) external onlyCommittee {
withdrawTo = _withdrawTo;
}
function bridge() external payable override {
require(!_isContract(msg.sender), "Bridge: IS_CONTRACT");
emit Bridge(msg.sender, msg.value);
}
function bridgeERC20(address token, uint256 amount) external override {
require(!_isContract(msg.sender), "Bridge: IS_CONTRACT");
IERC20(token).safeTransferFrom(msg.sender, address(this), amount);
emit BridgeERC20(msg.sender, token, amount);
}
function bridgeERC721(address token, uint256 tokenId) external override {
require(!_isContract(msg.sender), "Bridge: IS_CONTRACT");
IERC721(token).transferFrom(msg.sender, address(this), tokenId);
emit BridgeERC721(msg.sender, token, tokenId);
}
function bridgeERC1155(
address token,
uint256[] calldata tokenIds,
uint256[] calldata amounts
) external override {
require(!_isContract(msg.sender), "Bridge: IS_CONTRACT");
IERC1155(token).safeBatchTransferFrom(msg.sender, address(this), tokenIds, amounts, "");
emit BridgeERC1155(msg.sender, token, tokenIds, amounts);
}
function withdraw(uint256 amount) external override onlyCommittee {
require(address(this).balance >= amount, "Bridge: BALANCE_EXCEED");
payable(withdrawTo).transfer(amount);
}
function withdrawERC20(address token, uint256 amount) external override onlyCommittee {
IERC20(token).transfer(withdrawTo, amount);
}
function withdrawERC721(address token, uint256 tokenId) external override onlyCommittee {
IERC721(token).transferFrom(address(this), withdrawTo, tokenId);
}
function withdrawERC1155(
address token,
uint256[] calldata tokenIds,
uint256[] calldata amounts
) external override onlyCommittee {
IERC1155(token).safeBatchTransferFrom(address(this), withdrawTo, tokenIds, amounts, "");
}
function multiCall(CallData[] calldata callDatas) external onlyCommittee {
for (uint256 i = 0; i < callDatas.length; i++) {
(bool success, ) = callDatas[i].target.call(callDatas[i].data);
require(success, "Bridge: Transaction call failed");
}
}
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external pure override returns (bytes4) {
return this.onERC1155Received.selector;
}
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external pure override returns (bytes4) {
return this.onERC1155BatchReceived.selector;
}
function _isContract(address account) private view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IBridge {
event Bridge(address indexed from, uint256 amount);
event BridgeERC20(address indexed from, address indexed token, uint256 amount);
event BridgeERC721(address indexed from, address indexed token, uint256 indexed tokenId);
event BridgeERC1155(address indexed from, address indexed token, uint256[] tokenId, uint256[] amount);
function committee() external view returns (address);
function withdraw(uint256 amount) external;
function withdrawERC20(address token, uint256 amount) external;
function withdrawERC721(address token, uint256 tokenId) external;
function withdrawERC1155(
address token,
uint256[] calldata tokenIds,
uint256[] calldata amounts
) external;
function bridge() external payable;
function bridgeERC20(address token, uint256 amount) external;
function bridgeERC721(address token, uint256 tokenId) external;
function bridgeERC1155(
address token,
uint256[] calldata tokenIds,
uint256[] calldata amounts
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155 is IERC165 {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
external
view
returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes calldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC1155Receiver.sol";
import "../../../utils/introspection/ERC165.sol";
/**
* @dev _Available since v3.1._
*/
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {
/**
@dev Handles the receipt of a single ERC1155 token type. This function is
called at the end of a `safeTransferFrom` after the balance has been updated.
To accept the transfer, this must return
`bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
(i.e. 0xf23a6e61, or its own function selector).
@param operator The address which initiated the transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param id The ID of the token being transferred
@param value The amount of tokens being transferred
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
@dev Handles the receipt of a multiple ERC1155 token types. This function
is called at the end of a `safeBatchTransferFrom` after the balances have
been updated. To accept the transfer(s), this must return
`bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
(i.e. 0xbc197c81, or its own function selector).
@param operator The address which initiated the batch transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param ids An array containing ids of each token being transferred (order and length must match values array)
@param values An array containing amounts of each token being transferred (order and length must match ids array)
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}{
"optimizer": {
"enabled": true,
"runs": 1000000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_committee","type":"address"},{"internalType":"address","name":"_withdrawTo","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Bridge","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"BridgeERC1155","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BridgeERC20","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BridgeERC721","type":"event"},{"inputs":[],"name":"bridge","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"bridgeERC1155","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bridgeERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"bridgeERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"committee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Bridge.CallData[]","name":"callDatas","type":"tuple[]"}],"name":"multiCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_committee","type":"address"}],"name":"setCommittee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawTo","type":"address"}],"name":"setWithdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"withdrawERC1155","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdrawERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162001aa538038062001aa5833981016040819052620000349162000083565b600080546001600160a01b039384166001600160a01b03199182161790915560018054929093169116179055620000ba565b80516001600160a01b03811681146200007e57600080fd5b919050565b6000806040838503121562000096578182fd5b620000a18362000066565b9150620000b16020840162000066565b90509250929050565b6119db80620000ca6000396000f3fe6080604052600436106100f35760003560e01c8063b9d9791f1161008a578063d864e74011610059578063d864e7401461029f578063e78cea92146102b4578063f23a6e61146102bc578063f3e414f8146102dc576100f3565b8063b9d9791f14610212578063bc197c8114610232578063bddae40e1461025f578063bdedd7051461027f576100f3565b80636b33e45d116100c65780636b33e45d146101905780638bcd3e93146101b0578063a1db9782146101d2578063a5ceac99146101f2576100f3565b806301ffc9a7146100f85780631dd31ef31461012e5780632e1a7d4d146101505780634d38822714610170575b600080fd5b34801561010457600080fd5b5061011861011336600461144d565b6102fc565b6040516101259190611626565b60405180910390f35b34801561013a57600080fd5b5061014e6101493660046113c4565b61035a565b005b34801561015c57600080fd5b5061014e61016b36600461148d565b61042e565b34801561017c57600080fd5b5061014e61018b3660046113c4565b610504565b34801561019c57600080fd5b5061014e6101ab3660046111ff565b610615565b3480156101bc57600080fd5b506101c56106ad565b604051610125919061151e565b3480156101de57600080fd5b5061014e6101ed3660046113c4565b6106c9565b3480156101fe57600080fd5b5061014e61020d366004611346565b6107cb565b34801561021e57600080fd5b5061014e61022d366004611346565b6108b5565b34801561023e57600080fd5b5061025261024d366004611219565b6109f5565b6040516101259190611631565b34801561026b57600080fd5b5061014e61027a3660046111ff565b610a22565b34801561028b57600080fd5b5061014e61029a3660046113ed565b610aba565b3480156102ab57600080fd5b506101c5610c7e565b61014e610c9a565b3480156102c857600080fd5b506102526102d73660046112d0565b610d2a565b3480156102e857600080fd5b5061014e6102f73660046113c4565b610d55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f4e2312e0000000000000000000000000000000000000000000000000000000001480610352575061035282610e36565b90505b919050565b61036333610e80565b156103a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061171d565b60405180910390fd5b6103c573ffffffffffffffffffffffffffffffffffffffff8316333084610e86565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f141caa5d5bee05ad70d29b2d1e11cd60e95fb4d0a1c73578b82ab454d4ac8e9483604051610422919061187c565b60405180910390a35050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461047f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b804710156104b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906117b1565b60015460405173ffffffffffffffffffffffffffffffffffffffff9091169082156108fc029083906000818181858888f19350505050158015610500573d6000803e3d6000fd5b5050565b61050d33610e80565b15610544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061171d565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8316906323b872dd9061059a903390309086906004016115a8565b600060405180830381600087803b1580156105b457600080fd5b505af11580156105c8573d6000803e3d6000fd5b505060405183925073ffffffffffffffffffffffffffffffffffffffff8516915033907f9b1093327f8bdfa8b76192a2af76af3e0ccac307faeca87289232d092775bdfb90600090a45050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff16331461071a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b6001546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481169263a9059cbb92610774929091169085906004016115d9565b602060405180830381600087803b15801561078e57600080fd5b505af11580156107a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c6919061142d565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b6001546040517f2eb2c2d600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff80881692632eb2c2d69261087c9230921690899089908990899060040161153f565b600060405180830381600087803b15801561089657600080fd5b505af11580156108aa573d6000803e3d6000fd5b505050505050505050565b6108be33610e80565b156108f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061171d565b6040517f2eb2c2d600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff861690632eb2c2d6906109519033903090899089908990899060040161153f565b600060405180830381600087803b15801561096b57600080fd5b505af115801561097f573d6000803e3d6000fd5b505050508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f550da4f00a81b59b60c49e02fcdb06b53160c32d2bc0c1b0911be327680e51c6868686866040516109e694939291906115ff565b60405180910390a35050505050565b7fbc197c810000000000000000000000000000000000000000000000000000000098975050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b60005b818110156107c6576000838383818110610b51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610b6391906118e8565b610b719060208101906111ff565b73ffffffffffffffffffffffffffffffffffffffff16848484818110610bc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610bd291906118e8565b610be0906020810190611885565b604051610bee9291906114f2565b6000604051808303816000865af19150503d8060008114610c2b576040519150601f19603f3d011682016040523d82523d6000602084013e610c30565b606091505b5050905080610c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116af565b5080610c7681611947565b915050610b0e565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b610ca333610e80565b15610cda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061171d565b3373ffffffffffffffffffffffffffffffffffffffff167f22e3f162fca16dc0fcfb65eddf406531a0c555a2c24c58cf5d10fc2d202a882e34604051610d20919061187c565b60405180910390a2565b7ff23a6e61000000000000000000000000000000000000000000000000000000009695505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610da6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b6001546040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808516926323b872dd92610e00923092169086906004016115a8565b600060405180830381600087803b158015610e1a57600080fd5b505af1158015610e2e573d6000803e3d6000fd5b505050505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3b151590565b610f29846323b872dd60e01b858585604051602401610ea7939291906115a8565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610f2f565b50505050565b6000610f91826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610fe59092919063ffffffff16565b8051909150156107c65780806020019051810190610faf919061142d565b6107c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061181f565b6060610ff48484600085610ffe565b90505b9392505050565b60608247101561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a90611754565b61104385610e80565b611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906117e8565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516110a29190611502565b60006040518083038185875af1925050503d80600081146110df576040519150601f19603f3d011682016040523d82523d6000602084013e6110e4565b606091505b50915091506110f48282866110ff565b979650505050505050565b6060831561110e575081610ff7565b82511561111e5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a919061165e565b803573ffffffffffffffffffffffffffffffffffffffff8116811461035557600080fd5b60008083601f840112611187578182fd5b50813567ffffffffffffffff81111561119e578182fd5b60208301915083602080830285010111156111b857600080fd5b9250929050565b60008083601f8401126111d0578182fd5b50813567ffffffffffffffff8111156111e7578182fd5b6020830191508360208285010111156111b857600080fd5b600060208284031215611210578081fd5b610ff782611152565b60008060008060008060008060a0898b031215611234578384fd5b61123d89611152565b975061124b60208a01611152565b9650604089013567ffffffffffffffff80821115611267578586fd5b6112738c838d01611176565b909850965060608b013591508082111561128b578586fd5b6112978c838d01611176565b909650945060808b01359150808211156112af578384fd5b506112bc8b828c016111bf565b999c989b5096995094979396929594505050565b60008060008060008060a087890312156112e8578182fd5b6112f187611152565b95506112ff60208801611152565b94506040870135935060608701359250608087013567ffffffffffffffff811115611328578283fd5b61133489828a016111bf565b979a9699509497509295939492505050565b60008060008060006060868803121561135d578081fd5b61136686611152565b9450602086013567ffffffffffffffff80821115611382578283fd5b61138e89838a01611176565b909650945060408801359150808211156113a6578283fd5b506113b388828901611176565b969995985093965092949392505050565b600080604083850312156113d6578182fd5b6113df83611152565b946020939093013593505050565b600080602083850312156113ff578182fd5b823567ffffffffffffffff811115611415578283fd5b61142185828601611176565b90969095509350505050565b60006020828403121561143e578081fd5b81518015158114610ff7578182fd5b60006020828403121561145e578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610ff7578182fd5b60006020828403121561149e578081fd5b5035919050565b60008284527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156114d6578081fd5b6020830280836020870137939093016020019283525090919050565b6000828483379101908152919050565b6000825161151481846020870161191b565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b600073ffffffffffffffffffffffffffffffffffffffff808916835280881660208401525060a0604083015261157960a0830186886114a5565b828103606084015261158c8185876114a5565b8381036080909401939093525081526020019695505050505050565b73ffffffffffffffffffffffffffffffffffffffff9384168152919092166020820152604081019190915260600190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b6000604082526116136040830186886114a5565b82810360208401526110f48185876114a5565b901515815260200190565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116815260200190565b600060208252825180602084015261167d81604085016020870161191b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6020808252601f908201527f4272696467653a205472616e73616374696f6e2063616c6c206661696c656400604082015260600190565b60208082526011908201527f4272696467653a20464f5242494444454e000000000000000000000000000000604082015260600190565b60208082526013908201527f4272696467653a2049535f434f4e545241435400000000000000000000000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60408201527f722063616c6c0000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f4272696467653a2042414c414e43455f45584345454400000000000000000000604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60408201527f6f74207375636365656400000000000000000000000000000000000000000000606082015260800190565b90815260200190565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126118b9578283fd5b83018035915067ffffffffffffffff8211156118d3578283fd5b6020019150368190038213156111b857600080fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1833603018112611514578182fd5b60005b8381101561193657818101518382015260200161191e565b83811115610f295750506000910152565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561199e577f4e487b710000000000000000000000000000000000000000000000000000000081526011600452602481fd5b506001019056fea2646970667358221220df9aef47d40317a5388b0ef4b4143838433c8329554ead4a177451c744cce81564736f6c6343000800003300000000000000000000000065c80b978ff1983c3c81614d7e9fe6ef8857980c000000000000000000000000da847adca47fe75fffeee6d5b2627c44c673f67a
Deployed Bytecode
0x6080604052600436106100f35760003560e01c8063b9d9791f1161008a578063d864e74011610059578063d864e7401461029f578063e78cea92146102b4578063f23a6e61146102bc578063f3e414f8146102dc576100f3565b8063b9d9791f14610212578063bc197c8114610232578063bddae40e1461025f578063bdedd7051461027f576100f3565b80636b33e45d116100c65780636b33e45d146101905780638bcd3e93146101b0578063a1db9782146101d2578063a5ceac99146101f2576100f3565b806301ffc9a7146100f85780631dd31ef31461012e5780632e1a7d4d146101505780634d38822714610170575b600080fd5b34801561010457600080fd5b5061011861011336600461144d565b6102fc565b6040516101259190611626565b60405180910390f35b34801561013a57600080fd5b5061014e6101493660046113c4565b61035a565b005b34801561015c57600080fd5b5061014e61016b36600461148d565b61042e565b34801561017c57600080fd5b5061014e61018b3660046113c4565b610504565b34801561019c57600080fd5b5061014e6101ab3660046111ff565b610615565b3480156101bc57600080fd5b506101c56106ad565b604051610125919061151e565b3480156101de57600080fd5b5061014e6101ed3660046113c4565b6106c9565b3480156101fe57600080fd5b5061014e61020d366004611346565b6107cb565b34801561021e57600080fd5b5061014e61022d366004611346565b6108b5565b34801561023e57600080fd5b5061025261024d366004611219565b6109f5565b6040516101259190611631565b34801561026b57600080fd5b5061014e61027a3660046111ff565b610a22565b34801561028b57600080fd5b5061014e61029a3660046113ed565b610aba565b3480156102ab57600080fd5b506101c5610c7e565b61014e610c9a565b3480156102c857600080fd5b506102526102d73660046112d0565b610d2a565b3480156102e857600080fd5b5061014e6102f73660046113c4565b610d55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f4e2312e0000000000000000000000000000000000000000000000000000000001480610352575061035282610e36565b90505b919050565b61036333610e80565b156103a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061171d565b60405180910390fd5b6103c573ffffffffffffffffffffffffffffffffffffffff8316333084610e86565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f141caa5d5bee05ad70d29b2d1e11cd60e95fb4d0a1c73578b82ab454d4ac8e9483604051610422919061187c565b60405180910390a35050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461047f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b804710156104b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906117b1565b60015460405173ffffffffffffffffffffffffffffffffffffffff9091169082156108fc029083906000818181858888f19350505050158015610500573d6000803e3d6000fd5b5050565b61050d33610e80565b15610544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061171d565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8316906323b872dd9061059a903390309086906004016115a8565b600060405180830381600087803b1580156105b457600080fd5b505af11580156105c8573d6000803e3d6000fd5b505060405183925073ffffffffffffffffffffffffffffffffffffffff8516915033907f9b1093327f8bdfa8b76192a2af76af3e0ccac307faeca87289232d092775bdfb90600090a45050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff16331461071a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b6001546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481169263a9059cbb92610774929091169085906004016115d9565b602060405180830381600087803b15801561078e57600080fd5b505af11580156107a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c6919061142d565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b6001546040517f2eb2c2d600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff80881692632eb2c2d69261087c9230921690899089908990899060040161153f565b600060405180830381600087803b15801561089657600080fd5b505af11580156108aa573d6000803e3d6000fd5b505050505050505050565b6108be33610e80565b156108f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061171d565b6040517f2eb2c2d600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff861690632eb2c2d6906109519033903090899089908990899060040161153f565b600060405180830381600087803b15801561096b57600080fd5b505af115801561097f573d6000803e3d6000fd5b505050508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f550da4f00a81b59b60c49e02fcdb06b53160c32d2bc0c1b0911be327680e51c6868686866040516109e694939291906115ff565b60405180910390a35050505050565b7fbc197c810000000000000000000000000000000000000000000000000000000098975050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b60005b818110156107c6576000838383818110610b51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610b6391906118e8565b610b719060208101906111ff565b73ffffffffffffffffffffffffffffffffffffffff16848484818110610bc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610bd291906118e8565b610be0906020810190611885565b604051610bee9291906114f2565b6000604051808303816000865af19150503d8060008114610c2b576040519150601f19603f3d011682016040523d82523d6000602084013e610c30565b606091505b5050905080610c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116af565b5080610c7681611947565b915050610b0e565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b610ca333610e80565b15610cda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061171d565b3373ffffffffffffffffffffffffffffffffffffffff167f22e3f162fca16dc0fcfb65eddf406531a0c555a2c24c58cf5d10fc2d202a882e34604051610d20919061187c565b60405180910390a2565b7ff23a6e61000000000000000000000000000000000000000000000000000000009695505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610da6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906116e6565b6001546040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808516926323b872dd92610e00923092169086906004016115a8565b600060405180830381600087803b158015610e1a57600080fd5b505af1158015610e2e573d6000803e3d6000fd5b505050505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3b151590565b610f29846323b872dd60e01b858585604051602401610ea7939291906115a8565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610f2f565b50505050565b6000610f91826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610fe59092919063ffffffff16565b8051909150156107c65780806020019051810190610faf919061142d565b6107c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a9061181f565b6060610ff48484600085610ffe565b90505b9392505050565b60608247101561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a90611754565b61104385610e80565b611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a906117e8565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516110a29190611502565b60006040518083038185875af1925050503d80600081146110df576040519150601f19603f3d011682016040523d82523d6000602084013e6110e4565b606091505b50915091506110f48282866110ff565b979650505050505050565b6060831561110e575081610ff7565b82511561111e5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a919061165e565b803573ffffffffffffffffffffffffffffffffffffffff8116811461035557600080fd5b60008083601f840112611187578182fd5b50813567ffffffffffffffff81111561119e578182fd5b60208301915083602080830285010111156111b857600080fd5b9250929050565b60008083601f8401126111d0578182fd5b50813567ffffffffffffffff8111156111e7578182fd5b6020830191508360208285010111156111b857600080fd5b600060208284031215611210578081fd5b610ff782611152565b60008060008060008060008060a0898b031215611234578384fd5b61123d89611152565b975061124b60208a01611152565b9650604089013567ffffffffffffffff80821115611267578586fd5b6112738c838d01611176565b909850965060608b013591508082111561128b578586fd5b6112978c838d01611176565b909650945060808b01359150808211156112af578384fd5b506112bc8b828c016111bf565b999c989b5096995094979396929594505050565b60008060008060008060a087890312156112e8578182fd5b6112f187611152565b95506112ff60208801611152565b94506040870135935060608701359250608087013567ffffffffffffffff811115611328578283fd5b61133489828a016111bf565b979a9699509497509295939492505050565b60008060008060006060868803121561135d578081fd5b61136686611152565b9450602086013567ffffffffffffffff80821115611382578283fd5b61138e89838a01611176565b909650945060408801359150808211156113a6578283fd5b506113b388828901611176565b969995985093965092949392505050565b600080604083850312156113d6578182fd5b6113df83611152565b946020939093013593505050565b600080602083850312156113ff578182fd5b823567ffffffffffffffff811115611415578283fd5b61142185828601611176565b90969095509350505050565b60006020828403121561143e578081fd5b81518015158114610ff7578182fd5b60006020828403121561145e578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610ff7578182fd5b60006020828403121561149e578081fd5b5035919050565b60008284527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156114d6578081fd5b6020830280836020870137939093016020019283525090919050565b6000828483379101908152919050565b6000825161151481846020870161191b565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b600073ffffffffffffffffffffffffffffffffffffffff808916835280881660208401525060a0604083015261157960a0830186886114a5565b828103606084015261158c8185876114a5565b8381036080909401939093525081526020019695505050505050565b73ffffffffffffffffffffffffffffffffffffffff9384168152919092166020820152604081019190915260600190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b6000604082526116136040830186886114a5565b82810360208401526110f48185876114a5565b901515815260200190565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116815260200190565b600060208252825180602084015261167d81604085016020870161191b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6020808252601f908201527f4272696467653a205472616e73616374696f6e2063616c6c206661696c656400604082015260600190565b60208082526011908201527f4272696467653a20464f5242494444454e000000000000000000000000000000604082015260600190565b60208082526013908201527f4272696467653a2049535f434f4e545241435400000000000000000000000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60408201527f722063616c6c0000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f4272696467653a2042414c414e43455f45584345454400000000000000000000604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60408201527f6f74207375636365656400000000000000000000000000000000000000000000606082015260800190565b90815260200190565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126118b9578283fd5b83018035915067ffffffffffffffff8211156118d3578283fd5b6020019150368190038213156111b857600080fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1833603018112611514578182fd5b60005b8381101561193657818101518382015260200161191e565b83811115610f295750506000910152565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561199e577f4e487b710000000000000000000000000000000000000000000000000000000081526011600452602481fd5b506001019056fea2646970667358221220df9aef47d40317a5388b0ef4b4143838433c8329554ead4a177451c744cce81564736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000065c80b978ff1983c3c81614d7e9fe6ef8857980c000000000000000000000000da847adca47fe75fffeee6d5b2627c44c673f67a
-----Decoded View---------------
Arg [0] : _committee (address): 0x65C80B978Ff1983c3C81614d7E9Fe6ef8857980c
Arg [1] : _withdrawTo (address): 0xDA847aDCa47FE75FffeeE6D5B2627C44C673f67A
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000065c80b978ff1983c3c81614d7e9fe6ef8857980c
Arg [1] : 000000000000000000000000da847adca47fe75fffeee6d5b2627c44c673f67a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.