Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 97 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Send From | 21653303 | 12 days ago | IN | 0.00346999 ETH | 0.00166171 | ||||
Send From | 20472436 | 177 days ago | IN | 0.00326296 ETH | 0.00197054 | ||||
Send From | 19776895 | 274 days ago | IN | 0.00348536 ETH | 0.00454831 | ||||
Send From | 19669715 | 289 days ago | IN | 0.00348396 ETH | 0.00556795 | ||||
Send From | 19632483 | 294 days ago | IN | 0.00315188 ETH | 0.01349308 | ||||
Send From | 19609102 | 298 days ago | IN | 0.00345513 ETH | 0.00444566 | ||||
Send From | 19609098 | 298 days ago | IN | 0.00345513 ETH | 0.00099627 | ||||
Send From | 19609094 | 298 days ago | IN | 0.00345513 ETH | 0.00101468 | ||||
Send From | 19570375 | 303 days ago | IN | 0.00350249 ETH | 0.02444325 | ||||
Send From | 19497610 | 313 days ago | IN | 0.00345583 ETH | 0.00083613 | ||||
Send From | 19497574 | 313 days ago | IN | 0.00345583 ETH | 0.00906014 | ||||
Send From | 19467316 | 317 days ago | IN | 0.00365292 ETH | 0.01400892 | ||||
Send From | 19434828 | 322 days ago | IN | 0.00345068 ETH | 0.00195215 | ||||
Send From | 19419369 | 324 days ago | IN | 0.00407886 ETH | 0.00566203 | ||||
Send From | 19416344 | 325 days ago | IN | 0.00388541 ETH | 0.02481868 | ||||
Send From | 19404920 | 326 days ago | IN | 0.00411391 ETH | 0.00415909 | ||||
Send From | 19404902 | 326 days ago | IN | 0.00411391 ETH | 0.00459902 | ||||
Send From | 19403624 | 326 days ago | IN | 0.00405618 ETH | 0.02552662 | ||||
Send From | 19326404 | 337 days ago | IN | 0.00388407 ETH | 0.03120769 | ||||
Send From | 19304789 | 340 days ago | IN | 0.0039005 ETH | 0.01108342 | ||||
Send From | 19304700 | 340 days ago | IN | 0.0039005 ETH | 0.00218535 | ||||
Send From | 19297754 | 341 days ago | IN | 0.00384434 ETH | 0.01149473 | ||||
Send From | 19247838 | 348 days ago | IN | 0.00353066 ETH | 0.00702685 | ||||
Send From | 19245515 | 349 days ago | IN | 0.00345939 ETH | 0.00868733 | ||||
Send From | 19233724 | 350 days ago | IN | 0.00381295 ETH | 0.01829257 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20472436 | 177 days ago | 0.00066296 ETH | ||||
20472436 | 177 days ago | 0.0026 ETH | ||||
19776895 | 274 days ago | 0.00088536 ETH | ||||
19776895 | 274 days ago | 0.0026 ETH | ||||
19669715 | 289 days ago | 0.00088396 ETH | ||||
19669715 | 289 days ago | 0.0026 ETH | ||||
19632483 | 294 days ago | 0.00055188 ETH | ||||
19632483 | 294 days ago | 0.0026 ETH | ||||
19609102 | 298 days ago | 0.00085513 ETH | ||||
19609102 | 298 days ago | 0.0026 ETH | ||||
19570375 | 303 days ago | 0.00090249 ETH | ||||
19570375 | 303 days ago | 0.0026 ETH | ||||
19497574 | 313 days ago | 0.00085583 ETH | ||||
19497574 | 313 days ago | 0.0026 ETH | ||||
19467316 | 317 days ago | 0.00105292 ETH | ||||
19467316 | 317 days ago | 0.0026 ETH | ||||
19416344 | 325 days ago | 0.00128541 ETH | ||||
19416344 | 325 days ago | 0.0026 ETH | ||||
19403624 | 326 days ago | 0.00145618 ETH | ||||
19403624 | 326 days ago | 0.0026 ETH | ||||
19326404 | 337 days ago | 0.00128407 ETH | ||||
19326404 | 337 days ago | 0.0026 ETH | ||||
19304789 | 340 days ago | 0.0013005 ETH | ||||
19304789 | 340 days ago | 0.0026 ETH | ||||
19297754 | 341 days ago | 0.00124434 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ZooDAOProxyEth
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import './interfaces/IOFT.sol'; // Proxy contract to correctly interac with ProxtOFT contract ZooDAOProxyEth is Ownable { address private _commissionReceiver; uint256 private _commissionAmountInNative; address public token; IOFT private proxyOft; event CommissionAmountUpdated(uint256 oldCommissionAmount, uint256 newCommissionAmount); event CommissionReceiverUpdated(address oldCommissionReceiver, address newCommissionReceiver); event BridgeWithCommission(uint256 amount, uint256 amountWithoutCommission, uint256 commission); constructor( address token_, address proxyOft_, address commisionReceiver_, uint256 commissionAmountInNative_ ) { _commissionReceiver = commisionReceiver_; _commissionAmountInNative = commissionAmountInNative_; token = token_; proxyOft = IOFT(proxyOft_); } function estimateSendFee( uint16 _dstChainId, bytes calldata _toAddress, uint256 _amount, bool _useZro, bytes calldata _adapterParams ) public view returns (uint256 nativeFee, uint256 zroFee) { (nativeFee, zroFee) = proxyOft.estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams); nativeFee += _commissionAmountInNative; } function sendFrom( address, uint16 _dstChainId, bytes calldata _toAddress, uint256 _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams ) public payable { require(IERC20(token).transferFrom(msg.sender, address(this), _amount)); require(IERC20(token).approve(address(proxyOft), _amount)); uint256 newValue = deductCommissionInNative(); proxyOft.sendFrom{value: newValue}( address(this), _dstChainId, _toAddress, _amount, _refundAddress, _zroPaymentAddress, _adapterParams ); } function deductCommissionInNative() internal returns (uint256 newFeeAmount) { (bool success, ) = _commissionReceiver.call{value: _commissionAmountInNative}(''); require(success, 'Fee is too low. Get fee amount from estimateSendFee()'); emit BridgeWithCommission(msg.value, msg.value - _commissionAmountInNative, _commissionAmountInNative); return msg.value - _commissionAmountInNative; } function updateCommissionAmount(uint256 commissionAmountInNative_) external onlyOwner { uint256 oldCommissionAmountInNative = _commissionAmountInNative; _commissionAmountInNative = commissionAmountInNative_; emit CommissionAmountUpdated(oldCommissionAmountInNative, _commissionAmountInNative); } function updateCommissionReceiver(address commisionReceiver_) external onlyOwner { address oldCommissionReceiver = _commissionReceiver; _commissionReceiver = commisionReceiver_; emit CommissionReceiverUpdated(oldCommissionReceiver, _commissionReceiver); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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); } }
// SPDX-License-Identifier: MIT interface IOFT { function estimateSendFee( uint16 _dstChainId, bytes calldata _toAddress, uint256 _amount, bool _useZro, bytes calldata _adapterParams ) external view returns (uint256 nativeFee, uint256 zroFee); function sendFrom( address _from, uint16 _dstChainId, bytes calldata _toAddress, uint256 _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams ) external payable; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"address","name":"proxyOft_","type":"address"},{"internalType":"address","name":"commisionReceiver_","type":"address"},{"internalType":"uint256","name":"commissionAmountInNative_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountWithoutCommission","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"commission","type":"uint256"}],"name":"BridgeWithCommission","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldCommissionAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCommissionAmount","type":"uint256"}],"name":"CommissionAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldCommissionReceiver","type":"address"},{"indexed":false,"internalType":"address","name":"newCommissionReceiver","type":"address"}],"name":"CommissionReceiverUpdated","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"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"commissionAmountInNative_","type":"uint256"}],"name":"updateCommissionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"commisionReceiver_","type":"address"}],"name":"updateCommissionReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610be2380380610be283398101604081905261002f916100ea565b6100383361007e565b600180546001600160a01b03199081166001600160a01b039485161790915560029190915560038054821694831694909417909355600480549093169116179055610135565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146100e557600080fd5b919050565b6000806000806080858703121561010057600080fd5b610109856100ce565b9350610117602086016100ce565b9250610125604086016100ce565b6060959095015193969295505050565b610a9e806101446000396000f3fe60806040526004361061007b5760003560e01c80638da5cb5b1161004e5780638da5cb5b14610104578063cda0b1d914610136578063f2fde38b14610156578063fc0c546a1461017657600080fd5b80632a205e3d1461008057806351905636146100ba578063715018a6146100cf57806376d7e8fb146100e4575b600080fd5b34801561008c57600080fd5b506100a061009b36600461074c565b610196565b604080519283526020830191909152015b60405180910390f35b6100cd6100c8366004610800565b610234565b005b3480156100db57600080fd5b506100cd6103c8565b3480156100f057600080fd5b506100cd6100ff3660046108c8565b6103dc565b34801561011057600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016100b1565b34801561014257600080fd5b506100cd6101513660046108e1565b61042a565b34801561016257600080fd5b506100cd6101713660046108e1565b61048c565b34801561018257600080fd5b5060035461011e906001600160a01b031681565b60048054604051632a205e3d60e01b815260009283926001600160a01b031691632a205e3d916101d4918d918d918d918d918d918d918d910161092e565b6040805180830381865afa1580156101f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610214919061097b565b600254919350915061022690836109b5565b915097509795505050505050565b6003546040516323b872dd60e01b8152336004820152306024820152604481018790526001600160a01b03909116906323b872dd906064016020604051808303816000875af115801561028b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102af91906109cd565b6102b857600080fd5b6003546004805460405163095ea7b360e01b81526001600160a01b0391821692810192909252602482018890529091169063095ea7b3906044016020604051808303816000875af1158015610311573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061033591906109cd565b61033e57600080fd5b600061034861050a565b600480546040516328c82b1b60e11b81529293506001600160a01b031691635190563691849161038a9130918f918f918f918f918f918f918f918f91016109ea565b6000604051808303818588803b1580156103a357600080fd5b505af11580156103b7573d6000803e3d6000fd5b505050505050505050505050505050565b6103d0610634565b6103da600061068e565b565b6103e4610634565b600280549082905560408051828152602081018490527f1e44780073d138634875a98bb4c6bb90d41fb7b89babe36684a41ba5515bdf0091015b60405180910390a15050565b610432610634565b600180546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fa23be524900d3a79c731ac29beb6d0bf5341a844f2483389d68ef869ce15f918910161041e565b610494610634565b6001600160a01b0381166104fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6105078161068e565b50565b60015460025460405160009283926001600160a01b03909116918381818185875af1925050503d806000811461055c576040519150601f19603f3d011682016040523d82523d6000602084013e610561565b606091505b50509050806105d05760405162461bcd60e51b815260206004820152603560248201527f46656520697320746f6f206c6f772e204765742066656520616d6f756e742066604482015274726f6d20657374696d61746553656e64466565282960581b60648201526084016104f5565b7f20b51137a6d9348ad7ac8ebe3e0eaefe1240c2723fb9252a6888c7cc850f807e34600254346106009190610a51565b6002546040805193845260208401929092529082015260600160405180910390a160025461062e9034610a51565b91505090565b6000546001600160a01b031633146103da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104f5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803561ffff811681146106f057600080fd5b919050565b60008083601f84011261070757600080fd5b50813567ffffffffffffffff81111561071f57600080fd5b60208301915083602082850101111561073757600080fd5b9250929050565b801515811461050757600080fd5b600080600080600080600060a0888a03121561076757600080fd5b610770886106de565b9650602088013567ffffffffffffffff8082111561078d57600080fd5b6107998b838c016106f5565b909850965060408a0135955060608a013591506107b58261073e565b909350608089013590808211156107cb57600080fd5b506107d88a828b016106f5565b989b979a50959850939692959293505050565b6001600160a01b038116811461050757600080fd5b600080600080600080600080600060e08a8c03121561081e57600080fd5b8935610829816107eb565b985061083760208b016106de565b975060408a013567ffffffffffffffff8082111561085457600080fd5b6108608d838e016106f5565b909950975060608c0135965060808c0135915061087c826107eb565b90945060a08b01359061088e826107eb565b90935060c08b013590808211156108a457600080fd5b506108b18c828d016106f5565b915080935050809150509295985092959850929598565b6000602082840312156108da57600080fd5b5035919050565b6000602082840312156108f357600080fd5b81356108fe816107eb565b9392505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff8816815260a06020820152600061094c60a08301888a610905565b8660408401528515156060840152828103608084015261096d818587610905565b9a9950505050505050505050565b6000806040838503121561098e57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052601160045260246000fd5b600082198211156109c8576109c861099f565b500190565b6000602082840312156109df57600080fd5b81516108fe8161073e565b600060018060a01b03808c16835261ffff8b16602084015260e06040840152610a1760e084018a8c610905565b886060850152818816608085015281871660a085015283810360c0850152610a40818688610905565b9d9c50505050505050505050505050565b600082821015610a6357610a6361099f565b50039056fea264697066735822122069a185f047cb92f66023f62efb44c7e2ee74cd731d90a406f0f794b073ceba7d64736f6c634300080d003300000000000000000000000009f098b155d561fc9f7bccc97038b7e3d20baf740000000000000000000000008bbcce0a963a7ccca5f3b3be1a268e9f97c682ab000000000000000000000000084eaef922d6976f412df50fba8b23b49f07398500000000000000000000000000000000000000000000000000093cafac6a8000
Deployed Bytecode
0x60806040526004361061007b5760003560e01c80638da5cb5b1161004e5780638da5cb5b14610104578063cda0b1d914610136578063f2fde38b14610156578063fc0c546a1461017657600080fd5b80632a205e3d1461008057806351905636146100ba578063715018a6146100cf57806376d7e8fb146100e4575b600080fd5b34801561008c57600080fd5b506100a061009b36600461074c565b610196565b604080519283526020830191909152015b60405180910390f35b6100cd6100c8366004610800565b610234565b005b3480156100db57600080fd5b506100cd6103c8565b3480156100f057600080fd5b506100cd6100ff3660046108c8565b6103dc565b34801561011057600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016100b1565b34801561014257600080fd5b506100cd6101513660046108e1565b61042a565b34801561016257600080fd5b506100cd6101713660046108e1565b61048c565b34801561018257600080fd5b5060035461011e906001600160a01b031681565b60048054604051632a205e3d60e01b815260009283926001600160a01b031691632a205e3d916101d4918d918d918d918d918d918d918d910161092e565b6040805180830381865afa1580156101f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610214919061097b565b600254919350915061022690836109b5565b915097509795505050505050565b6003546040516323b872dd60e01b8152336004820152306024820152604481018790526001600160a01b03909116906323b872dd906064016020604051808303816000875af115801561028b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102af91906109cd565b6102b857600080fd5b6003546004805460405163095ea7b360e01b81526001600160a01b0391821692810192909252602482018890529091169063095ea7b3906044016020604051808303816000875af1158015610311573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061033591906109cd565b61033e57600080fd5b600061034861050a565b600480546040516328c82b1b60e11b81529293506001600160a01b031691635190563691849161038a9130918f918f918f918f918f918f918f918f91016109ea565b6000604051808303818588803b1580156103a357600080fd5b505af11580156103b7573d6000803e3d6000fd5b505050505050505050505050505050565b6103d0610634565b6103da600061068e565b565b6103e4610634565b600280549082905560408051828152602081018490527f1e44780073d138634875a98bb4c6bb90d41fb7b89babe36684a41ba5515bdf0091015b60405180910390a15050565b610432610634565b600180546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fa23be524900d3a79c731ac29beb6d0bf5341a844f2483389d68ef869ce15f918910161041e565b610494610634565b6001600160a01b0381166104fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6105078161068e565b50565b60015460025460405160009283926001600160a01b03909116918381818185875af1925050503d806000811461055c576040519150601f19603f3d011682016040523d82523d6000602084013e610561565b606091505b50509050806105d05760405162461bcd60e51b815260206004820152603560248201527f46656520697320746f6f206c6f772e204765742066656520616d6f756e742066604482015274726f6d20657374696d61746553656e64466565282960581b60648201526084016104f5565b7f20b51137a6d9348ad7ac8ebe3e0eaefe1240c2723fb9252a6888c7cc850f807e34600254346106009190610a51565b6002546040805193845260208401929092529082015260600160405180910390a160025461062e9034610a51565b91505090565b6000546001600160a01b031633146103da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104f5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803561ffff811681146106f057600080fd5b919050565b60008083601f84011261070757600080fd5b50813567ffffffffffffffff81111561071f57600080fd5b60208301915083602082850101111561073757600080fd5b9250929050565b801515811461050757600080fd5b600080600080600080600060a0888a03121561076757600080fd5b610770886106de565b9650602088013567ffffffffffffffff8082111561078d57600080fd5b6107998b838c016106f5565b909850965060408a0135955060608a013591506107b58261073e565b909350608089013590808211156107cb57600080fd5b506107d88a828b016106f5565b989b979a50959850939692959293505050565b6001600160a01b038116811461050757600080fd5b600080600080600080600080600060e08a8c03121561081e57600080fd5b8935610829816107eb565b985061083760208b016106de565b975060408a013567ffffffffffffffff8082111561085457600080fd5b6108608d838e016106f5565b909950975060608c0135965060808c0135915061087c826107eb565b90945060a08b01359061088e826107eb565b90935060c08b013590808211156108a457600080fd5b506108b18c828d016106f5565b915080935050809150509295985092959850929598565b6000602082840312156108da57600080fd5b5035919050565b6000602082840312156108f357600080fd5b81356108fe816107eb565b9392505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff8816815260a06020820152600061094c60a08301888a610905565b8660408401528515156060840152828103608084015261096d818587610905565b9a9950505050505050505050565b6000806040838503121561098e57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052601160045260246000fd5b600082198211156109c8576109c861099f565b500190565b6000602082840312156109df57600080fd5b81516108fe8161073e565b600060018060a01b03808c16835261ffff8b16602084015260e06040840152610a1760e084018a8c610905565b886060850152818816608085015281871660a085015283810360c0850152610a40818688610905565b9d9c50505050505050505050505050565b600082821015610a6357610a6361099f565b50039056fea264697066735822122069a185f047cb92f66023f62efb44c7e2ee74cd731d90a406f0f794b073ceba7d64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000009f098b155d561fc9f7bccc97038b7e3d20baf740000000000000000000000008bbcce0a963a7ccca5f3b3be1a268e9f97c682ab000000000000000000000000084eaef922d6976f412df50fba8b23b49f07398500000000000000000000000000000000000000000000000000093cafac6a8000
-----Decoded View---------------
Arg [0] : token_ (address): 0x09F098B155D561Fc9F7BcCc97038b7e3d20bAF74
Arg [1] : proxyOft_ (address): 0x8BbCCe0a963a7cCcA5f3B3Be1a268e9f97C682Ab
Arg [2] : commisionReceiver_ (address): 0x084eaEF922d6976F412DF50FBA8b23b49f073985
Arg [3] : commissionAmountInNative_ (uint256): 2600000000000000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000009f098b155d561fc9f7bccc97038b7e3d20baf74
Arg [1] : 0000000000000000000000008bbcce0a963a7ccca5f3b3be1a268e9f97c682ab
Arg [2] : 000000000000000000000000084eaef922d6976f412df50fba8b23b49f073985
Arg [3] : 00000000000000000000000000000000000000000000000000093cafac6a8000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.