More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 101,028 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 20453378 | 191 days ago | IN | 0.0006 ETH | 0.00002541 | ||||
Transfer | 20452883 | 191 days ago | IN | 0.0001 ETH | 0.000021 | ||||
Transfer | 20415652 | 196 days ago | IN | 0.0003 ETH | 0.00002541 | ||||
Transfer | 20251268 | 219 days ago | IN | 0.003 ETH | 0.00005629 | ||||
Transfer | 20251267 | 219 days ago | IN | 0.004 ETH | 0.00002719 | ||||
Transfer | 20145634 | 234 days ago | IN | 0.0005 ETH | 0.00004828 | ||||
Transfer | 20145015 | 234 days ago | IN | 0.0092 ETH | 0.00005083 | ||||
Transfer | 19955558 | 261 days ago | IN | 0.01 ETH | 0.00020581 | ||||
Transfer | 19308285 | 351 days ago | IN | 0.0055 ETH | 0.00060192 | ||||
Transfer | 19200326 | 367 days ago | IN | 0.0945 ETH | 0.00077202 | ||||
Transfer | 18633269 | 446 days ago | IN | 0.0005 ETH | 0.00071236 | ||||
Transfer | 18633269 | 446 days ago | IN | 0.0005 ETH | 0.00071236 | ||||
Transfer | 18630149 | 447 days ago | IN | 0.01 ETH | 0.00127417 | ||||
Transfer | 18630149 | 447 days ago | IN | 0.01 ETH | 0.00127417 | ||||
Transfer | 18354763 | 485 days ago | IN | 0.0001 ETH | 0.00017688 | ||||
Transfer | 17668679 | 581 days ago | IN | 0.001 ETH | 0.00038588 | ||||
Transfer | 17252086 | 640 days ago | IN | 0.004 ETH | 0.00104807 | ||||
Transfer | 17142776 | 655 days ago | IN | 0.0005 ETH | 0.00094035 | ||||
Transfer | 17142745 | 655 days ago | IN | 0.009 ETH | 0.00094035 | ||||
Transfer | 17142735 | 655 days ago | IN | 0.004 ETH | 0.00094035 | ||||
Transfer | 17142724 | 655 days ago | IN | 0.004 ETH | 0.000756 | ||||
Transfer | 16938081 | 684 days ago | IN | 0.49 ETH | 0.00063855 | ||||
Transfer | 16932858 | 685 days ago | IN | 0.01083996 ETH | 0.00067379 | ||||
Transfer | 16923270 | 686 days ago | IN | 0.0005 ETH | 0.0004666 | ||||
Transfer | 16923270 | 686 days ago | IN | 0.001 ETH | 0.0004666 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15933001 | 825 days ago | 1.01109448 ETH | ||||
15921137 | 827 days ago | 1.04262145 ETH | ||||
15732565 | 853 days ago | 32.25719646 ETH | ||||
15707491 | 856 days ago | 68.85555441 ETH | ||||
15682434 | 860 days ago | 122.90511835 ETH | ||||
15657407 | 863 days ago | 109.41909141 ETH | ||||
15647579 | 865 days ago | 0.01 ETH | ||||
15632370 | 867 days ago | 70.68881317 ETH | ||||
15607340 | 870 days ago | 106.04715126 ETH | ||||
15582289 | 874 days ago | 64.75736875 ETH | ||||
15557400 | 877 days ago | 47.62884634 ETH | ||||
15533366 | 881 days ago | 36.9825543 ETH | ||||
15512262 | 884 days ago | 45.02618705 ETH | ||||
15490779 | 888 days ago | 39.94131452 ETH | ||||
15468987 | 891 days ago | 46.60417552 ETH | ||||
15451102 | 894 days ago | 0.3 ETH | ||||
15447086 | 895 days ago | 45.43426942 ETH | ||||
15425178 | 898 days ago | 44.87591471 ETH | ||||
15417149 | 900 days ago | 0.03 ETH | ||||
15403392 | 902 days ago | 53.34719892 ETH | ||||
15400455 | 902 days ago | 0.3 ETH | ||||
15381282 | 905 days ago | 49.84511203 ETH | ||||
15359212 | 909 days ago | 84.83547669 ETH | ||||
15329623 | 914 days ago | 167.280903 ETH | ||||
15294324 | 919 days ago | 0.02 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TeleportrDeposit
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; /** * @title TeleportrDeposit * * Shout out to 0xclem for providing the inspiration for this contract: * https://github.com/0xclem/teleportr/blob/main/contracts/BridgeDeposit.sol */ contract TeleportrDeposit is Ownable { /// The minimum amount that be deposited in a receive. uint256 public minDepositAmount; /// The maximum amount that be deposited in a receive. uint256 public maxDepositAmount; /// The maximum balance the contract can hold after a receive. uint256 public maxBalance; /// The total number of successful deposits received. uint256 public totalDeposits; /** * @notice Emitted any time the minimum deposit amount is set. * @param previousAmount The previous minimum deposit amount. * @param newAmount The new minimum deposit amount. */ event MinDepositAmountSet(uint256 previousAmount, uint256 newAmount); /** * @notice Emitted any time the maximum deposit amount is set. * @param previousAmount The previous maximum deposit amount. * @param newAmount The new maximum deposit amount. */ event MaxDepositAmountSet(uint256 previousAmount, uint256 newAmount); /** * @notice Emitted any time the contract maximum balance is set. * @param previousBalance The previous maximum contract balance. * @param newBalance The new maximum contract balance. */ event MaxBalanceSet(uint256 previousBalance, uint256 newBalance); /** * @notice Emitted any time the balance is withdrawn by the owner. * @param owner The current owner and recipient of the funds. * @param balance The current contract balance paid to the owner. */ event BalanceWithdrawn(address indexed owner, uint256 balance); /** * @notice Emitted any time a successful deposit is received. * @param depositId A unique sequencer number identifying the deposit. * @param emitter The sending address of the payer. * @param amount The amount deposited by the payer. */ event EtherReceived(uint256 indexed depositId, address indexed emitter, uint256 indexed amount); /** * @notice Initializes a new TeleportrDeposit contract. * @param _minDepositAmount The initial minimum deposit amount. * @param _maxDepositAmount The initial maximum deposit amount. * @param _maxBalance The initial maximum contract balance. */ constructor( uint256 _minDepositAmount, uint256 _maxDepositAmount, uint256 _maxBalance ) { minDepositAmount = _minDepositAmount; maxDepositAmount = _maxDepositAmount; maxBalance = _maxBalance; totalDeposits = 0; emit MinDepositAmountSet(0, _minDepositAmount); emit MaxDepositAmountSet(0, _maxDepositAmount); emit MaxBalanceSet(0, _maxBalance); } /** * @notice Accepts deposits that will be disbursed to the sender's address on L2. * The method reverts if the amount is less than the current * minDepositAmount, the amount is greater than the current * maxDepositAmount, or the amount causes the contract to exceed its maximum * allowed balance. */ receive() external payable { require(msg.value >= minDepositAmount, "Deposit amount is too small"); require(msg.value <= maxDepositAmount, "Deposit amount is too big"); require(address(this).balance <= maxBalance, "Contract max balance exceeded"); emit EtherReceived(totalDeposits, msg.sender, msg.value); unchecked { totalDeposits += 1; } } /** * @notice Sends the contract's current balance to the owner. */ function withdrawBalance() external onlyOwner { address _owner = owner(); uint256 _balance = address(this).balance; emit BalanceWithdrawn(_owner, _balance); payable(_owner).transfer(_balance); } /** * @notice Sets the minimum amount that can be deposited in a receive. * @param _minDepositAmount The new minimum deposit amount. */ function setMinAmount(uint256 _minDepositAmount) external onlyOwner { emit MinDepositAmountSet(minDepositAmount, _minDepositAmount); minDepositAmount = _minDepositAmount; } /** * @notice Sets the maximum amount that can be deposited in a receive. * @param _maxDepositAmount The new maximum deposit amount. */ function setMaxAmount(uint256 _maxDepositAmount) external onlyOwner { emit MaxDepositAmountSet(maxDepositAmount, _maxDepositAmount); maxDepositAmount = _maxDepositAmount; } /** * @notice Sets the maximum balance the contract can hold after a receive. * @param _maxBalance The new maximum contract balance. */ function setMaxBalance(uint256 _maxBalance) external onlyOwner { emit MaxBalanceSet(maxBalance, _maxBalance); maxBalance = _maxBalance; } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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; } }
{ "optimizer": { "enabled": true, "runs": 10000 }, "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":"uint256","name":"_minDepositAmount","type":"uint256"},{"internalType":"uint256","name":"_maxDepositAmount","type":"uint256"},{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"BalanceWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"depositId","type":"uint256"},{"indexed":true,"internalType":"address","name":"emitter","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EtherReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"MaxBalanceSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"MaxDepositAmountSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"MinDepositAmountSet","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":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDepositAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDepositAmount","outputs":[{"internalType":"uint256","name":"","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":"uint256","name":"_maxDepositAmount","type":"uint256"}],"name":"setMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minDepositAmount","type":"uint256"}],"name":"setMinAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalDeposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610b4a380380610b4a83398101604081905261002f91610153565b61003833610103565b6001839055600282905560038190556000600481905560408051918252602082018590527f65779d3ca560e9bdec52d08ed75431a84df87cb7796f0e51965f6efc0f556c0f910160405180910390a16040805160008152602081018490527fb1e6cc560df1786578fd4d1fe6e046f089a0c3be401e999b51a5112437911797910160405180910390a16040805160008152602081018390527f185c6391e7218e85de8a9346fc72024a0f88e1f04c186e6351230b93976ad50b910160405180910390a1505050610181565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060006060848603121561016857600080fd5b8351925060208401519150604084015190509250925092565b6109ba806101906000396000f3fe6080604052600436106100c05760003560e01c80637d882097116100745780638ed832711161004e5780638ed83271146103445780639d51d9b71461035a578063f2fde38b1461037a57600080fd5b80637d882097146102d9578063897b0637146102ef5780638da5cb5b1461030f57600080fd5b8063645006ca116100a5578063645006ca14610285578063715018a6146102ae57806373ad468a146102c357600080fd5b80634fe47f701461024e5780635fd8c7101461027057600080fd5b3661024957600154341015610136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4465706f73697420616d6f756e7420697320746f6f20736d616c6c000000000060448201526064015b60405180910390fd5b6002543411156101a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4465706f73697420616d6f756e7420697320746f6f2062696700000000000000604482015260640161012d565b60035447111561020e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f436f6e7472616374206d61782062616c616e6365206578636565646564000000604482015260640161012d565b600454604051349133917f2d27851832fcac28a0d4af1344f01fed7ffcfd15171c14c564a0c42aa57ae5c090600090a4600480546001019055005b600080fd5b34801561025a57600080fd5b5061026e61026936600461092e565b61039a565b005b34801561027c57600080fd5b5061026e61045c565b34801561029157600080fd5b5061029b60015481565b6040519081526020015b60405180910390f35b3480156102ba57600080fd5b5061026e610578565b3480156102cf57600080fd5b5061029b60035481565b3480156102e557600080fd5b5061029b60045481565b3480156102fb57600080fd5b5061026e61030a36600461092e565b610605565b34801561031b57600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102a5565b34801561035057600080fd5b5061029b60025481565b34801561036657600080fd5b5061026e61037536600461092e565b6106c7565b34801561038657600080fd5b5061026e610395366004610947565b610789565b60005473ffffffffffffffffffffffffffffffffffffffff16331461041b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b60025460408051918252602082018390527fb1e6cc560df1786578fd4d1fe6e046f089a0c3be401e999b51a5112437911797910160405180910390a1600255565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b6000546040805147808252915173ffffffffffffffffffffffffffffffffffffffff9093169283917fddc398b321237a8d40ac914388309c2f52a08c134e4dc4ce61e32f57cb7d80f1919081900360200190a260405173ffffffffffffffffffffffffffffffffffffffff83169082156108fc029083906000818181858888f19350505050158015610573573d6000803e3d6000fd5b505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b61060360006108b9565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b60015460408051918252602082018390527f65779d3ca560e9bdec52d08ed75431a84df87cb7796f0e51965f6efc0f556c0f910160405180910390a1600155565b60005473ffffffffffffffffffffffffffffffffffffffff163314610748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b60035460408051918252602082018390527f185c6391e7218e85de8a9346fc72024a0f88e1f04c186e6351230b93976ad50b910160405180910390a1600355565b60005473ffffffffffffffffffffffffffffffffffffffff16331461080a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b73ffffffffffffffffffffffffffffffffffffffff81166108ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161012d565b6108b6816108b9565b50565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561094057600080fd5b5035919050565b60006020828403121561095957600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461097d57600080fd5b939250505056fea2646970667358221220b610d8106720e33f96db31f8c5c4f9cecb50144a2cf1e4049ac0216cd47d0eff64736f6c6343000809003300000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000003635c9adc5dea00000
Deployed Bytecode
0x6080604052600436106100c05760003560e01c80637d882097116100745780638ed832711161004e5780638ed83271146103445780639d51d9b71461035a578063f2fde38b1461037a57600080fd5b80637d882097146102d9578063897b0637146102ef5780638da5cb5b1461030f57600080fd5b8063645006ca116100a5578063645006ca14610285578063715018a6146102ae57806373ad468a146102c357600080fd5b80634fe47f701461024e5780635fd8c7101461027057600080fd5b3661024957600154341015610136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4465706f73697420616d6f756e7420697320746f6f20736d616c6c000000000060448201526064015b60405180910390fd5b6002543411156101a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4465706f73697420616d6f756e7420697320746f6f2062696700000000000000604482015260640161012d565b60035447111561020e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f436f6e7472616374206d61782062616c616e6365206578636565646564000000604482015260640161012d565b600454604051349133917f2d27851832fcac28a0d4af1344f01fed7ffcfd15171c14c564a0c42aa57ae5c090600090a4600480546001019055005b600080fd5b34801561025a57600080fd5b5061026e61026936600461092e565b61039a565b005b34801561027c57600080fd5b5061026e61045c565b34801561029157600080fd5b5061029b60015481565b6040519081526020015b60405180910390f35b3480156102ba57600080fd5b5061026e610578565b3480156102cf57600080fd5b5061029b60035481565b3480156102e557600080fd5b5061029b60045481565b3480156102fb57600080fd5b5061026e61030a36600461092e565b610605565b34801561031b57600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102a5565b34801561035057600080fd5b5061029b60025481565b34801561036657600080fd5b5061026e61037536600461092e565b6106c7565b34801561038657600080fd5b5061026e610395366004610947565b610789565b60005473ffffffffffffffffffffffffffffffffffffffff16331461041b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b60025460408051918252602082018390527fb1e6cc560df1786578fd4d1fe6e046f089a0c3be401e999b51a5112437911797910160405180910390a1600255565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b6000546040805147808252915173ffffffffffffffffffffffffffffffffffffffff9093169283917fddc398b321237a8d40ac914388309c2f52a08c134e4dc4ce61e32f57cb7d80f1919081900360200190a260405173ffffffffffffffffffffffffffffffffffffffff83169082156108fc029083906000818181858888f19350505050158015610573573d6000803e3d6000fd5b505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b61060360006108b9565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b60015460408051918252602082018390527f65779d3ca560e9bdec52d08ed75431a84df87cb7796f0e51965f6efc0f556c0f910160405180910390a1600155565b60005473ffffffffffffffffffffffffffffffffffffffff163314610748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b60035460408051918252602082018390527f185c6391e7218e85de8a9346fc72024a0f88e1f04c186e6351230b93976ad50b910160405180910390a1600355565b60005473ffffffffffffffffffffffffffffffffffffffff16331461080a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161012d565b73ffffffffffffffffffffffffffffffffffffffff81166108ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161012d565b6108b6816108b9565b50565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561094057600080fd5b5035919050565b60006020828403121561095957600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461097d57600080fd5b939250505056fea2646970667358221220b610d8106720e33f96db31f8c5c4f9cecb50144a2cf1e4049ac0216cd47d0eff64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000003635c9adc5dea00000
-----Decoded View---------------
Arg [0] : _minDepositAmount (uint256): 100000000000000
Arg [1] : _maxDepositAmount (uint256): 1000000000000000000
Arg [2] : _maxBalance (uint256): 1000000000000000000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000005af3107a4000
Arg [1] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [2] : 00000000000000000000000000000000000000000000003635c9adc5dea00000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 72.52% | $2,599.71 | 1.5905 | $4,134.76 | |
ETH | 17.74% | $2,599.71 | 0.389 | $1,011.27 | |
ETH | 3.95% | $0.999838 | 225 | $224.96 | |
ETH | 0.89% | $0.999946 | 51 | $51 | |
ARB | 4.56% | $2,600.43 | 0.0999 | $259.73 | |
AVAX | 0.21% | $25.21 | 0.4768 | $12.02 | |
POL | 0.13% | $2,613.99 | 0.00288737 | $7.55 | |
POL | <0.01% | $0.307536 | 0.00829669 | $0.002552 | |
FTM | <0.01% | $0.452428 | 0.3812 | $0.172454 | |
BSC | <0.01% | $640.67 | 0.0001 | $0.064067 | |
CRONOS | <0.01% | $0.092692 | 0.04 | $0.003708 | |
GLMR | <0.01% | $0.132486 | 0.003 | $0.000397 |
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.