Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 70 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Create Native To... | 21271938 | 71 days ago | IN | 0.017 ETH | 0.00838888 | ||||
Create Native To... | 20961630 | 114 days ago | IN | 0.01 ETH | 0.0053102 | ||||
Create Receipt | 20749367 | 144 days ago | IN | 0 ETH | 0.00121921 | ||||
Create Native To... | 20747850 | 144 days ago | IN | 0.001 ETH | 0.00087432 | ||||
Create Native To... | 20747808 | 144 days ago | IN | 0.001 ETH | 0.0009235 | ||||
Create Receipt | 20747021 | 144 days ago | IN | 0 ETH | 0.00066506 | ||||
Create Receipt | 20689650 | 152 days ago | IN | 0 ETH | 0.00071269 | ||||
Pause | 20681840 | 153 days ago | IN | 0 ETH | 0.00029287 | ||||
Create Receipt | 20582031 | 167 days ago | IN | 0 ETH | 0.00211066 | ||||
Create Receipt | 20531347 | 174 days ago | IN | 0 ETH | 0.00152691 | ||||
Create Receipt | 20441360 | 187 days ago | IN | 0 ETH | 0.00573809 | ||||
Create Receipt | 20423971 | 189 days ago | IN | 0 ETH | 0.00231298 | ||||
Create Receipt | 20038501 | 243 days ago | IN | 0 ETH | 0.00801962 | ||||
Create Receipt | 19824412 | 273 days ago | IN | 0 ETH | 0.00371048 | ||||
Create Receipt | 19824134 | 273 days ago | IN | 0 ETH | 0.00429743 | ||||
Create Receipt | 19824118 | 273 days ago | IN | 0 ETH | 0.00429719 | ||||
Create Receipt | 19819685 | 273 days ago | IN | 0 ETH | 0.00568316 | ||||
Create Native To... | 19660144 | 296 days ago | IN | 0.01 ETH | 0.00815211 | ||||
Create Receipt | 19466545 | 323 days ago | IN | 0 ETH | 0.0140045 | ||||
Create Receipt | 19466445 | 323 days ago | IN | 0 ETH | 0.01357102 | ||||
Create Receipt | 19466381 | 323 days ago | IN | 0 ETH | 0.01416997 | ||||
Create Receipt | 19466320 | 323 days ago | IN | 0 ETH | 0.01641048 | ||||
Create Receipt | 19466234 | 323 days ago | IN | 0 ETH | 0.01552082 | ||||
Create Receipt | 19466036 | 323 days ago | IN | 0 ETH | 0.02013345 | ||||
Create Receipt | 19154022 | 367 days ago | IN | 0 ETH | 0.01098006 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BridgeIn
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
import "./Proxy.sol"; pragma solidity 0.8.9; contract BridgeIn is Proxy { constructor( address _multiSigWallet, address _tokenAddress, address _pauseController, address _implementation ) Proxy(_implementation) { require( _multiSigWallet != address(0) && _tokenAddress != address(0) && _pauseController != address(0), "invalid input" ); delegateTo( _implementation, abi.encodeWithSignature( "initialize(address,address,address)", _multiSigWallet, _tokenAddress, _pauseController ) ); } function delegateTo( address callee, bytes memory data ) internal returns (bytes memory) { (bool success, bytes memory returnData) = callee.delegatecall(data); assembly { if eq(success, 0) { revert(add(returnData, 0x20), returndatasize()) } } return returnData; } receive() external payable {} fallback() external payable { // delegate all other functions to current implementation (bool success, ) = _implementation.delegatecall(msg.data); assembly { let free_mem_ptr := mload(0x40) returndatacopy(free_mem_ptr, 0, returndatasize()) switch success case 0 { revert(free_mem_ptr, returndatasize()) } default { return(free_mem_ptr, returndatasize()) } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 // 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; } }
import "@openzeppelin/contracts/access/Ownable.sol"; pragma solidity 0.8.9; contract ProxyStorage is Ownable { address internal _implementation; } contract Proxy is ProxyStorage { event ProxyUpdated(address indexed _new, address indexed _old); event OwnerUpdate(address _prevOwner, address _newOwner); constructor(address _proxyTo) { updateImplementation(_proxyTo); } function updateImplementation(address _newImplementation) public onlyOwner { require(_newImplementation != address(0x0), "INVALID_PROXY_ADDRESS"); require( isContract(_newImplementation), "DESTINATION_ADDRESS_IS_NOT_A_CONTRACT" ); emit ProxyUpdated(_newImplementation, _implementation); _implementation = _newImplementation; } function implementation() external view returns (address) { return _implementation; } function isContract(address _target) internal view returns (bool) { if (_target == address(0)) { return false; } uint256 size; assembly { size := extcodesize(_target) } return size > 0; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_multiSigWallet","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_pauseController","type":"address"},{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_prevOwner","type":"address"},{"indexed":false,"internalType":"address","name":"_newOwner","type":"address"}],"name":"OwnerUpdate","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":"_new","type":"address"},{"indexed":true,"internalType":"address","name":"_old","type":"address"}],"name":"ProxyUpdated","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newImplementation","type":"address"}],"name":"updateImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620012ee380380620012ee83398181016040528101906200003791906200066a565b80620000586200004c6200020160201b60201c565b6200020960201b60201c565b6200006981620002cd60201b60201c565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015620000d55750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200010f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b62000151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000148906200073d565b60405180910390fd5b620001f6818585856040516024016200016d9392919062000770565b6040516020818303038152906040527fc0c53b8b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506200046360201b60201c565b5050505050620009c5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002dd620004f260201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000350576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034790620007fd565b60405180910390fd5b62000361816200058360201b60201c565b620003a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039a9062000895565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd32d24edea94f55e932d9a008afc425a8561462d1b1f57bc6e508e9a6b9509e160405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000808473ffffffffffffffffffffffffffffffffffffffff16846040516200048f91906200093a565b600060405180830381855af49150503d8060008114620004cc576040519150601f19603f3d011682016040523d82523d6000602084013e620004d1565b606091505b50915091506000821415620004e7573d60208201fd5b809250505092915050565b620005026200020160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000528620005d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200057890620009a3565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005c45760009050620005d2565b6000823b9050600081119150505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006328262000605565b9050919050565b620006448162000625565b81146200065057600080fd5b50565b600081519050620006648162000639565b92915050565b6000806000806080858703121562000687576200068662000600565b5b6000620006978782880162000653565b9450506020620006aa8782880162000653565b9350506040620006bd8782880162000653565b9250506060620006d08782880162000653565b91505092959194509250565b600082825260208201905092915050565b7f696e76616c696420696e70757400000000000000000000000000000000000000600082015250565b600062000725600d83620006dc565b91506200073282620006ed565b602082019050919050565b60006020820190508181036000830152620007588162000716565b9050919050565b6200076a8162000625565b82525050565b60006060820190506200078760008301866200075f565b6200079660208301856200075f565b620007a560408301846200075f565b949350505050565b7f494e56414c49445f50524f58595f414444524553530000000000000000000000600082015250565b6000620007e5601583620006dc565b9150620007f282620007ad565b602082019050919050565b600060208201905081810360008301526200081881620007d6565b9050919050565b7f44455354494e4154494f4e5f414444524553535f49535f4e4f545f415f434f4e60008201527f5452414354000000000000000000000000000000000000000000000000000000602082015250565b60006200087d602583620006dc565b91506200088a826200081f565b604082019050919050565b60006020820190508181036000830152620008b0816200086e565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015620008ed578082015181840152602081019050620008d0565b83811115620008fd576000848401525b50505050565b60006200091082620008b7565b6200091c8185620008c2565b93506200092e818560208601620008cd565b80840191505092915050565b600062000948828462000903565b915081905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200098b602083620006dc565b9150620009988262000953565b602082019050919050565b60006020820190508181036000830152620009be816200097c565b9050919050565b61091980620009d56000396000f3fe60806040526004361061004e5760003560e01c8063025b22bc146100fe5780635c60da1b14610127578063715018a6146101525780638da5cb5b14610169578063f2fde38b1461019457610055565b3661005557005b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166000366040516100a1929190610603565b600060405180830381855af49150503d80600081146100dc576040519150601f19603f3d011682016040523d82523d6000602084013e6100e1565b606091505b505090506040513d6000823e81600081146100fa573d82f35b3d82fd5b34801561010a57600080fd5b506101256004803603810190610120919061067f565b6101bd565b005b34801561013357600080fd5b5061013c61033d565b60405161014991906106bb565b60405180910390f35b34801561015e57600080fd5b50610167610367565b005b34801561017557600080fd5b5061017e61037b565b60405161018b91906106bb565b60405180910390f35b3480156101a057600080fd5b506101bb60048036038101906101b6919061067f565b6103a4565b005b6101c5610428565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022c90610733565b60405180910390fd5b61023e816104a6565b61027d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610274906107c5565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd32d24edea94f55e932d9a008afc425a8561462d1b1f57bc6e508e9a6b9509e160405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61036f610428565b61037960006104f8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6103ac610428565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561041c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041390610857565b60405180910390fd5b610425816104f8565b50565b6104306105bc565b73ffffffffffffffffffffffffffffffffffffffff1661044e61037b565b73ffffffffffffffffffffffffffffffffffffffff16146104a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049b906108c3565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156104e557600090506104f3565b6000823b9050600081119150505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600081905092915050565b82818337600083830152505050565b60006105ea83856105c4565b93506105f78385846105cf565b82840190509392505050565b60006106108284866105de565b91508190509392505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061064c82610621565b9050919050565b61065c81610641565b811461066757600080fd5b50565b60008135905061067981610653565b92915050565b6000602082840312156106955761069461061c565b5b60006106a38482850161066a565b91505092915050565b6106b581610641565b82525050565b60006020820190506106d060008301846106ac565b92915050565b600082825260208201905092915050565b7f494e56414c49445f50524f58595f414444524553530000000000000000000000600082015250565b600061071d6015836106d6565b9150610728826106e7565b602082019050919050565b6000602082019050818103600083015261074c81610710565b9050919050565b7f44455354494e4154494f4e5f414444524553535f49535f4e4f545f415f434f4e60008201527f5452414354000000000000000000000000000000000000000000000000000000602082015250565b60006107af6025836106d6565b91506107ba82610753565b604082019050919050565b600060208201905081810360008301526107de816107a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006108416026836106d6565b915061084c826107e5565b604082019050919050565b6000602082019050818103600083015261087081610834565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006108ad6020836106d6565b91506108b882610877565b602082019050919050565b600060208201905081810360008301526108dc816108a0565b905091905056fea2646970667358221220d867c52bc7d98056435b82888f14c11374cbc3f4fc4aa51a0f820b0b648fd13164736f6c63430008090033000000000000000000000000bd7f26fd545692863b208a4db5728cfeb7ccd3f0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006268f912f190e00503815b212a11c762ca5ba6f5000000000000000000000000baf5d0ca1e63cd10e479f227d2dc88e066f63872
Deployed Bytecode
0x60806040526004361061004e5760003560e01c8063025b22bc146100fe5780635c60da1b14610127578063715018a6146101525780638da5cb5b14610169578063f2fde38b1461019457610055565b3661005557005b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166000366040516100a1929190610603565b600060405180830381855af49150503d80600081146100dc576040519150601f19603f3d011682016040523d82523d6000602084013e6100e1565b606091505b505090506040513d6000823e81600081146100fa573d82f35b3d82fd5b34801561010a57600080fd5b506101256004803603810190610120919061067f565b6101bd565b005b34801561013357600080fd5b5061013c61033d565b60405161014991906106bb565b60405180910390f35b34801561015e57600080fd5b50610167610367565b005b34801561017557600080fd5b5061017e61037b565b60405161018b91906106bb565b60405180910390f35b3480156101a057600080fd5b506101bb60048036038101906101b6919061067f565b6103a4565b005b6101c5610428565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022c90610733565b60405180910390fd5b61023e816104a6565b61027d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610274906107c5565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd32d24edea94f55e932d9a008afc425a8561462d1b1f57bc6e508e9a6b9509e160405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61036f610428565b61037960006104f8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6103ac610428565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561041c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041390610857565b60405180910390fd5b610425816104f8565b50565b6104306105bc565b73ffffffffffffffffffffffffffffffffffffffff1661044e61037b565b73ffffffffffffffffffffffffffffffffffffffff16146104a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049b906108c3565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156104e557600090506104f3565b6000823b9050600081119150505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600081905092915050565b82818337600083830152505050565b60006105ea83856105c4565b93506105f78385846105cf565b82840190509392505050565b60006106108284866105de565b91508190509392505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061064c82610621565b9050919050565b61065c81610641565b811461066757600080fd5b50565b60008135905061067981610653565b92915050565b6000602082840312156106955761069461061c565b5b60006106a38482850161066a565b91505092915050565b6106b581610641565b82525050565b60006020820190506106d060008301846106ac565b92915050565b600082825260208201905092915050565b7f494e56414c49445f50524f58595f414444524553530000000000000000000000600082015250565b600061071d6015836106d6565b9150610728826106e7565b602082019050919050565b6000602082019050818103600083015261074c81610710565b9050919050565b7f44455354494e4154494f4e5f414444524553535f49535f4e4f545f415f434f4e60008201527f5452414354000000000000000000000000000000000000000000000000000000602082015250565b60006107af6025836106d6565b91506107ba82610753565b604082019050919050565b600060208201905081810360008301526107de816107a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006108416026836106d6565b915061084c826107e5565b604082019050919050565b6000602082019050818103600083015261087081610834565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006108ad6020836106d6565b91506108b882610877565b602082019050919050565b600060208201905081810360008301526108dc816108a0565b905091905056fea2646970667358221220d867c52bc7d98056435b82888f14c11374cbc3f4fc4aa51a0f820b0b648fd13164736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000bd7f26fd545692863b208a4db5728cfeb7ccd3f0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006268f912f190e00503815b212a11c762ca5ba6f5000000000000000000000000baf5d0ca1e63cd10e479f227d2dc88e066f63872
-----Decoded View---------------
Arg [0] : _multiSigWallet (address): 0xBd7F26Fd545692863B208a4db5728CFEB7ccD3F0
Arg [1] : _tokenAddress (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [2] : _pauseController (address): 0x6268f912f190E00503815B212a11C762CA5bA6f5
Arg [3] : _implementation (address): 0xbAf5D0cA1e63CD10E479F227d2dc88E066F63872
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000bd7f26fd545692863b208a4db5728cfeb7ccd3f0
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [2] : 0000000000000000000000006268f912f190e00503815b212a11c762ca5ba6f5
Arg [3] : 000000000000000000000000baf5d0ca1e63cd10e479f227d2dc88e066f63872
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.