Contract

0xDbaC80C6e769c8c34bA8c3F3094f8E8dCbCBe000

Overview
0.0000 Trust Bitcoin
$0.0000
More Info
 
Contract Source Code (Solidity Standard Json-Input format)

File 1 of 8 : Address.sol

// SPDX-License-Identifier: MIT pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }

File 2 of 8 : Context.sol

// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }

File 3 of 8 : IERC20.sol

// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }

File 4 of 8 : Ownable.sol

// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }

File 5 of 8 : ReentrancyGuard.sol

// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }

File 6 of 8 : SafeERC20.sol

// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./draft-IERC20Permit.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }

File 7 of 8 : TBCUSDTBridge.sol

// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "./IERC20.sol"; import "./SafeERC20.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; contract TBCUSDTBridge is Ownable, ReentrancyGuard { using SafeERC20 for IERC20; /// @notice Immutable source chain ID at deploy time uint256 public immutable SRC_CHAIN_ID; /// @notice Token and wallet variables IERC20 public USDT; address public fundWallet; /// @notice Mapping to ensure each release is processed only once mapping(bytes32 => bool) public processedReleaseId; /// @notice Emitted when the fund wallet is updated event FundWalletUpdated(address indexed oldWallet, address indexed newWallet); /// @notice Emitted when the USDT token address is updated event USDTTokenUpdated(address indexed oldUSDT, address indexed newUSDT); /// @notice Emitted when tokens are released event TokensReleased(address indexed recipient, uint256 amount, uint256 dstChainId, bytes32 indexed transferId); constructor() { SRC_CHAIN_ID = block.chainid; fundWallet = address(0x437bF37D460E2Dec81ad6fDcD953867302073aC7); USDT = IERC20(0xC30E0C6def1E76dB3984a4c282a687c4Fe482BEe); } /** * @notice Releases USDT to a recipient from the configured fund wallet. * The fund wallet must have approved this contract to spend at least `amount`. * @param amount Amount of USDT to release. * @param recipient Address to receive the tokens. * @param dstChainId Destination chain ID. * @param dstUSDT Address of USDT token on the destination chain (used in the transferId). * @param sender Original sender on the source chain (used in the transferId). * @param nonce Unique per-transfer nonce to avoid collisions. * @param dstTransferId Unique per-transfer to avoid collisions. */ function release(uint256 amount, address sender, address recipient, uint256 dstChainId, address dstUSDT, uint256 nonce, bytes32 dstTransferId) external nonReentrant onlyOwner { require(recipient != address(0), "Invalid recipient"); require(sender != address(0), "Invalid sender"); require(amount > 0, "Amount must be greater than zero"); require(dstChainId != SRC_CHAIN_ID, "Destination cannot be source"); require(fundWallet != address(0), "Fund wallet not set"); uint256 normalizedAmount = _normalizeAmount(amount, dstChainId); bytes32 transferId = keccak256( abi.encodePacked( dstChainId, SRC_CHAIN_ID, dstUSDT, address(USDT), sender, recipient, amount, nonce ) ); require(dstTransferId == transferId, "Transfer-ID mismatch"); require(!processedReleaseId[transferId], "Transfer already processed"); processedReleaseId[transferId] = true; USDT.safeTransferFrom(fundWallet, recipient, normalizedAmount); emit TokensReleased(recipient, normalizedAmount, dstChainId, transferId); } function _normalizeAmount(uint256 amount, uint256 dstChainId) internal pure returns (uint256) { if (dstChainId == 1) { return amount * 1e12; } return amount; } /** * @notice Update the fund wallet address (source of USDT for releases). * @param newWallet The new wallet address. */ function setFundWallet(address newWallet) external onlyOwner { require(newWallet != address(0), "Invalid address"); address oldWallet = fundWallet; fundWallet = newWallet; emit FundWalletUpdated(oldWallet, newWallet); } /** * @notice Update the USDT token address. * @param newUSDT The new USDT token address. */ function setUSDT(address newUSDT) external onlyOwner { require(newUSDT != address(0), "Zero address"); require(newUSDT != address(USDT), "USDT unchanged"); address oldUSDT = address(USDT); USDT = IERC20(newUSDT); emit USDTTokenUpdated(oldUSDT, newUSDT); } /** * @notice Rescue any ERC20 tokens mistakenly sent to this contract, * except the configured USDT token to avoid draining bridge liquidity. * @param token The token address to rescue. * @param to The recipient address. * @param amount The amount to transfer. */ function rescueERC20(address token, address to, uint256 amount) external onlyOwner { require(token != address(0), "Token is zero address"); require(to != address(0), "Recipient is zero address"); require(amount > 0, "Amount must be greater than zero"); require(token != address(USDT), "Cannot rescue USDT"); IERC20(token).safeTransfer(to, amount); } }

File 8 of 8 : draft-IERC20Permit.sol

// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
ABI Code (Solidity Standard Json-Input format)

File 1 of 1 : ABI.json

[ { "inputs": [], "stateMutability": "nonpayable", "type": "constructor" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "oldWallet", "type": "address" }, { "indexed": true, "internalType": "address", "name": "newWallet", "type": "address" } ], "name": "FundWalletUpdated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" }, { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" } ], "name": "OwnershipTransferred", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "recipient", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "amount", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "dstChainId", "type": "uint256" }, { "indexed": true, "internalType": "bytes32", "name": "transferId", "type": "bytes32" } ], "name": "TokensReleased", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "oldUSDT", "type": "address" }, { "indexed": true, "internalType": "address", "name": "newUSDT", "type": "address" } ], "name": "USDTTokenUpdated", "type": "event" }, { "inputs": [], "name": "SRC_CHAIN_ID", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "USDT", "outputs": [ { "internalType": "contract IERC20", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "fundWallet", "outputs": [ { "internalType": "address", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "owner", "outputs": [ { "internalType": "address", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "bytes32", "name": "", "type": "bytes32" } ], "name": "processedReleaseId", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "amount", "type": "uint256" }, { "internalType": "address", "name": "sender", "type": "address" }, { "internalType": "address", "name": "recipient", "type": "address" }, { "internalType": "uint256", "name": "dstChainId", "type": "uint256" }, { "internalType": "address", "name": "dstUSDT", "type": "address" }, { "internalType": "uint256", "name": "nonce", "type": "uint256" }, { "internalType": "bytes32", "name": "dstTransferId", "type": "bytes32" } ], "name": "release", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "renounceOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "token", "type": "address" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "rescueERC20", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "newWallet", "type": "address" } ], "name": "setFundWallet", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "newUSDT", "type": "address" } ], "name": "setUSDT", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "newOwner", "type": "address" } ], "name": "transferOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" } ]
Contract Creation Code
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c8063715018a611610071578063715018a61461016e5780638da5cb5b14610176578063b2118a8d14610187578063c54e44eb1461019a578063f2fde38b146101ad578063ff4291d8146101c057600080fd5b80631459dda2146100ae57806319f17945146100e857806350c1b9231461011b57806355ce3b9a14610130578063664a1ad614610143575b600080fd5b6100d57f0000000000000000000000000000000000000000000000000000000000002a2781565b6040519081526020015b60405180910390f35b61010b6100f6366004610cf9565b60046020526000908152604090205460ff1681565b60405190151581526020016100df565b61012e610129366004610d2e565b6101d3565b005b61012e61013e366004610d2e565b6102c6565b600354610156906001600160a01b031681565b6040516001600160a01b0390911681526020016100df565b61012e610368565b6000546001600160a01b0316610156565b61012e610195366004610d49565b61037c565b600254610156906001600160a01b031681565b61012e6101bb366004610d2e565b6104e4565b61012e6101ce366004610d85565b61055d565b6101db61092f565b6001600160a01b0381166102255760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064015b60405180910390fd5b6002546001600160a01b03828116911614156102745760405162461bcd60e51b815260206004820152600e60248201526d1554d115081d5b98da185b99d95960921b604482015260640161021c565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f92852dbadca7e6fa4e0d5dd87891e6dd13f50a304561a86ea9d5a710b972e44990600090a35050565b6102ce61092f565b6001600160a01b0381166103165760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161021c565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fe36ddb6034b180af46efdc6e96b3fe6b918ff6e3761aabcff2e3299823e797e590600090a35050565b61037061092f565b61037a6000610989565b565b61038461092f565b6001600160a01b0383166103d25760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973207a65726f206164647265737360581b604482015260640161021c565b6001600160a01b0382166104285760405162461bcd60e51b815260206004820152601960248201527f526563697069656e74206973207a65726f206164647265737300000000000000604482015260640161021c565b600081116104785760405162461bcd60e51b815260206004820181905260248201527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604482015260640161021c565b6002546001600160a01b03848116911614156104cb5760405162461bcd60e51b815260206004820152601260248201527110d85b9b9bdd081c995cd8dd59481554d11560721b604482015260640161021c565b6104df6001600160a01b03841683836109d9565b505050565b6104ec61092f565b6001600160a01b0381166105515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161021c565b61055a81610989565b50565b600260015414156105b05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161021c565b60026001556105bd61092f565b6001600160a01b0385166106075760405162461bcd60e51b8152602060048201526011602482015270125b9d985b1a59081c9958da5c1a595b9d607a1b604482015260640161021c565b6001600160a01b03861661064e5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b2b73232b960911b604482015260640161021c565b6000871161069e5760405162461bcd60e51b815260206004820181905260248201527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604482015260640161021c565b7f0000000000000000000000000000000000000000000000000000000000002a2784141561070e5760405162461bcd60e51b815260206004820152601c60248201527f44657374696e6174696f6e2063616e6e6f7420626520736f7572636500000000604482015260640161021c565b6003546001600160a01b031661075c5760405162461bcd60e51b8152602060048201526013602482015272119d5b99081dd85b1b195d081b9bdd081cd95d606a1b604482015260640161021c565b60006107688886610a3c565b6002546040805160208082018a90527f0000000000000000000000000000000000000000000000000000000000002a2782840152606089811b6bffffffffffffffffffffffff199081168285015294811b851660748401528c811b851660888401528b901b909316609c82015260b081018c905260d08082018890528251808303909101815260f090910190915280519101209091508281146108445760405162461bcd60e51b81526020600482015260146024820152730a8e4c2dce6cccae45a928840dad2e6dac2e8c6d60631b604482015260640161021c565b60008181526004602052604090205460ff16156108a35760405162461bcd60e51b815260206004820152601a60248201527f5472616e7366657220616c72656164792070726f636573736564000000000000604482015260640161021c565b6000818152600460205260409020805460ff191660011790556003546002546108da916001600160a01b0391821691168985610a66565b604080518381526020810188905282916001600160a01b038a16917f145a07f52e815d648124929077da0e3edaa284c7475f75fd9c7839f616fb5e0f910160405180910390a350506001805550505050505050565b6000546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161021c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b0383166024820152604481018290526104df90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610aa4565b60008160011415610a5d57610a568364e8d4a51000610def565b9050610a60565b50815b92915050565b6040516001600160a01b0380851660248301528316604482015260648101829052610a9e9085906323b872dd60e01b90608401610a05565b50505050565b6000610af9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b769092919063ffffffff16565b8051909150156104df5780806020019051810190610b179190610e1c565b6104df5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161021c565b6060610b858484600085610b8f565b90505b9392505050565b606082471015610bf05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161021c565b6001600160a01b0385163b610c475760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161021c565b600080866001600160a01b03168587604051610c639190610e6a565b60006040518083038185875af1925050503d8060008114610ca0576040519150601f19603f3d011682016040523d82523d6000602084013e610ca5565b606091505b5091509150610cb5828286610cc0565b979650505050505050565b60608315610ccf575081610b88565b825115610cdf5782518084602001fd5b8160405162461bcd60e51b815260040161021c9190610e86565b600060208284031215610d0b57600080fd5b5035919050565b80356001600160a01b0381168114610d2957600080fd5b919050565b600060208284031215610d4057600080fd5b610b8882610d12565b600080600060608486031215610d5e57600080fd5b610d6784610d12565b9250610d7560208501610d12565b9150604084013590509250925092565b600080600080600080600060e0888a031215610da057600080fd5b87359650610db060208901610d12565b9550610dbe60408901610d12565b945060608801359350610dd360808901610d12565b925060a0880135915060c0880135905092959891949750929550565b6000816000190483118215151615610e1757634e487b7160e01b600052601160045260246000fd5b500290565b600060208284031215610e2e57600080fd5b81518015158114610b8857600080fd5b60005b83811015610e59578181015183820152602001610e41565b83811115610a9e5750506000910152565b60008251610e7c818460208701610e3e565b9190910192915050565b6020815260008251806020840152610ea5816040850160208701610e3e565b601f01601f1916919091016040019291505056fea2646970667358221220c7826efde7f94f0180cde7f0afe8b9d9ef4156f0878fad580e1fc4843a3ad50164736f6c634300080a0033
1. SRC_CHAIN_ID

2. USDT

3. fundWallet

4. owner

5. processedReleaseId

1. release
2. renounceOwnership
3. rescueERC20
4. setFundWallet
5. setUSDT
6. transferOwnership

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met.