Source Code
Latest 11 from a total of 11 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Deploy Contract | 10544073 | 482 days ago | IN | 0 FRAX | 0.00005184 | ||||
| Deploy Contract | 10544073 | 482 days ago | IN | 0 FRAX | 0.00019457 | ||||
| Deploy Contract | 10544073 | 482 days ago | IN | 0 FRAX | 0.0001285 | ||||
| Deploy Contract | 10544073 | 482 days ago | IN | 0 FRAX | 0.00018967 | ||||
| Deploy Contract | 10544073 | 482 days ago | IN | 0 FRAX | 0.00017519 | ||||
| Deploy Contract | 10544073 | 482 days ago | IN | 0 FRAX | 0.00016823 | ||||
| Deploy Contract | 10544073 | 482 days ago | IN | 0 FRAX | 0.00017131 | ||||
| Deploy Contract | 10544073 | 482 days ago | IN | 0 FRAX | 0.00014386 | ||||
| Deploy Contract | 10544073 | 482 days ago | IN | 0 FRAX | 0.00006028 | ||||
| Set Authority | 10543834 | 482 days ago | IN | 0 FRAX | 0.00000257 | ||||
| Deploy Contract | 10543834 | 482 days ago | IN | 0 FRAX | 0.00006188 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Block | From | To | ||||
|---|---|---|---|---|---|---|---|
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | Contract Creation | 0 FRAX | ||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | Contract Creation | 0 FRAX | ||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | Contract Creation | 0 FRAX | ||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | Contract Creation | 0 FRAX | ||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | Contract Creation | 0 FRAX | ||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | Contract Creation | 0 FRAX | ||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | Contract Creation | 0 FRAX | ||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | Contract Creation | 0 FRAX | ||||
| 10544073 | 482 days ago | 0 FRAX | |||||
| 10544073 | 482 days ago | 0 FRAX |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Deployer
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import {Auth, Authority} from "@solmate/auth/Auth.sol";
import {CREATE3} from "@solmate/utils/CREATE3.sol";
contract Deployer is Auth {
mapping(address => bool) public isDeployer;
error Deployer__NotADeployer();
/**
* @notice Emitted on `deployContract` calls.
* @param name string name used to derive salt for deployment
* @param contractAddress the newly deployed contract address
* @param creationCodeHash keccak256 hash of the creation code
* - useful to determine creation code is the same across multiple chains
*/
event ContractDeployed(string name, address contractAddress, bytes32 creationCodeHash);
constructor(address _owner, Authority _auth) Auth(_owner, _auth) {}
/**
* @notice Deploy some contract to a deterministic address.
* @param name string used to derive salt for deployment
* @dev Should be of form:
* "ContractName Version 0.0"
* Where the numbers after version are VERSION . SUBVERSION
* @param creationCode the contract creation code to deploy
* - can be obtained by calling type(contractName).creationCode
* @param constructorArgs the contract constructor arguments if any
* - must be of form abi.encode(arg1, arg2, ...)
* @param value non zero if constructor needs to be payable
*/
function deployContract(
string calldata name,
bytes memory creationCode,
bytes calldata constructorArgs,
uint256 value
) external requiresAuth returns (address) {
bytes32 creationCodeHash = keccak256(creationCode);
if (constructorArgs.length > 0) {
// Append constructor args to end of creation code.
creationCode = abi.encodePacked(creationCode, constructorArgs);
}
bytes32 salt = convertNameToBytes32(name);
address contractAddress = CREATE3.deploy(salt, creationCode, value);
emit ContractDeployed(name, contractAddress, creationCodeHash);
return contractAddress;
}
function getAddress(string calldata name) external view returns (address) {
bytes32 salt = convertNameToBytes32(name);
return CREATE3.getDeployed(salt);
}
function convertNameToBytes32(string calldata name) public pure returns (bytes32) {
return keccak256(abi.encode(name));
}
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @notice Provides a flexible and updatable auth pattern which is completely separate from application logic.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Auth.sol)
/// @author Modified from Dappsys (https://github.com/dapphub/ds-auth/blob/master/src/auth.sol)
abstract contract Auth {
event OwnershipTransferred(address indexed user, address indexed newOwner);
event AuthorityUpdated(address indexed user, Authority indexed newAuthority);
address public owner;
Authority public authority;
constructor(address _owner, Authority _authority) {
owner = _owner;
authority = _authority;
emit OwnershipTransferred(msg.sender, _owner);
emit AuthorityUpdated(msg.sender, _authority);
}
modifier requiresAuth() virtual {
require(isAuthorized(msg.sender, msg.sig), "UNAUTHORIZED");
_;
}
function isAuthorized(address user, bytes4 functionSig) internal view virtual returns (bool) {
Authority auth = authority; // Memoizing authority saves us a warm SLOAD, around 100 gas.
// Checking if the caller is the owner only after calling the authority saves gas in most cases, but be
// aware that this makes protected functions uncallable even to the owner if the authority is out of order.
return (address(auth) != address(0) && auth.canCall(user, address(this), functionSig)) || user == owner;
}
function setAuthority(Authority newAuthority) public virtual {
// We check if the caller is the owner first because we want to ensure they can
// always swap out the authority even if it's reverting or using up a lot of gas.
require(msg.sender == owner || authority.canCall(msg.sender, address(this), msg.sig));
authority = newAuthority;
emit AuthorityUpdated(msg.sender, newAuthority);
}
function transferOwnership(address newOwner) public virtual requiresAuth {
owner = newOwner;
emit OwnershipTransferred(msg.sender, newOwner);
}
}
/// @notice A generic interface for a contract which provides authorization data to an Auth instance.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Auth.sol)
/// @author Modified from Dappsys (https://github.com/dapphub/ds-auth/blob/master/src/auth.sol)
interface Authority {
function canCall(
address user,
address target,
bytes4 functionSig
) external view returns (bool);
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
import {Bytes32AddressLib} from "./Bytes32AddressLib.sol";
/// @notice Deploy to deterministic addresses without an initcode factor.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/CREATE3.sol)
/// @author Modified from 0xSequence (https://github.com/0xSequence/create3/blob/master/contracts/Create3.sol)
library CREATE3 {
using Bytes32AddressLib for bytes32;
//--------------------------------------------------------------------------------//
// Opcode | Opcode + Arguments | Description | Stack View //
//--------------------------------------------------------------------------------//
// 0x36 | 0x36 | CALLDATASIZE | size //
// 0x3d | 0x3d | RETURNDATASIZE | 0 size //
// 0x3d | 0x3d | RETURNDATASIZE | 0 0 size //
// 0x37 | 0x37 | CALLDATACOPY | //
// 0x36 | 0x36 | CALLDATASIZE | size //
// 0x3d | 0x3d | RETURNDATASIZE | 0 size //
// 0x34 | 0x34 | CALLVALUE | value 0 size //
// 0xf0 | 0xf0 | CREATE | newContract //
//--------------------------------------------------------------------------------//
// Opcode | Opcode + Arguments | Description | Stack View //
//--------------------------------------------------------------------------------//
// 0x67 | 0x67XXXXXXXXXXXXXXXX | PUSH8 bytecode | bytecode //
// 0x3d | 0x3d | RETURNDATASIZE | 0 bytecode //
// 0x52 | 0x52 | MSTORE | //
// 0x60 | 0x6008 | PUSH1 08 | 8 //
// 0x60 | 0x6018 | PUSH1 18 | 24 8 //
// 0xf3 | 0xf3 | RETURN | //
//--------------------------------------------------------------------------------//
bytes internal constant PROXY_BYTECODE = hex"67_36_3d_3d_37_36_3d_34_f0_3d_52_60_08_60_18_f3";
bytes32 internal constant PROXY_BYTECODE_HASH = keccak256(PROXY_BYTECODE);
function deploy(
bytes32 salt,
bytes memory creationCode,
uint256 value
) internal returns (address deployed) {
bytes memory proxyChildBytecode = PROXY_BYTECODE;
address proxy;
/// @solidity memory-safe-assembly
assembly {
// Deploy a new contract with our pre-made bytecode via CREATE2.
// We start 32 bytes into the code to avoid copying the byte length.
proxy := create2(0, add(proxyChildBytecode, 32), mload(proxyChildBytecode), salt)
}
require(proxy != address(0), "DEPLOYMENT_FAILED");
deployed = getDeployed(salt);
(bool success, ) = proxy.call{value: value}(creationCode);
require(success && deployed.code.length != 0, "INITIALIZATION_FAILED");
}
function getDeployed(bytes32 salt) internal view returns (address) {
return getDeployed(salt, address(this));
}
function getDeployed(bytes32 salt, address creator) internal pure returns (address) {
address proxy = keccak256(
abi.encodePacked(
// Prefix:
bytes1(0xFF),
// Creator:
creator,
// Salt:
salt,
// Bytecode hash:
PROXY_BYTECODE_HASH
)
).fromLast20Bytes();
return
keccak256(
abi.encodePacked(
// 0xd6 = 0xc0 (short RLP prefix) + 0x16 (length of: 0x94 ++ proxy ++ 0x01)
// 0x94 = 0x80 + 0x14 (0x14 = the length of an address, 20 bytes, in hex)
hex"d6_94",
proxy,
hex"01" // Nonce of the proxy contract (1)
)
).fromLast20Bytes();
}
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @notice Library for converting between addresses and bytes32 values.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/Bytes32AddressLib.sol)
library Bytes32AddressLib {
function fromLast20Bytes(bytes32 bytesValue) internal pure returns (address) {
return address(uint160(uint256(bytesValue)));
}
function fillLast12Bytes(address addressValue) internal pure returns (bytes32) {
return bytes32(bytes20(addressValue));
}
}{
"remappings": [
"@solmate/=lib/solmate/src/",
"@forge-std/=lib/forge-std/src/",
"@ds-test/=lib/forge-std/lib/ds-test/src/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"@openzeppelin/=lib/openzeppelin-contracts/",
"@ccip/=lib/ccip/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"LayerZero-v2/=lib/LayerZero-v2/",
"ccip/=lib/ccip/contracts/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"solmate/=lib/solmate/src/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "london",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"contract Authority","name":"_auth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Deployer__NotADeployer","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"bytes32","name":"creationCodeHash","type":"bytes32"}],"name":"ContractDeployed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"authority","outputs":[{"internalType":"contract Authority","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"convertNameToBytes32","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"creationCode","type":"bytes"},{"internalType":"bytes","name":"constructorArgs","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"deployContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"getAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isDeployer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50604051610b99380380610b9983398101604081905261002f916100e1565b600080546001600160a01b03199081166001600160a01b0385811691821784556001805490931690851617909155604051849284929133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36040516001600160a01b0382169033907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b7638998019890600090a35050505061011b565b6001600160a01b03811681146100de57600080fd5b50565b600080604083850312156100f457600080fd5b82516100ff816100c9565b6020840151909250610110816100c9565b809150509250929050565b610a6f8061012a6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063bf7e214f1161005b578063bf7e214f14610118578063ef5de7e31461012b578063f2fde38b1461013e578063f74907a21461015157600080fd5b806350c358a41461008d5780637a9e5e4b146100c55780638da5cb5b146100da578063bf40fac114610105575b600080fd5b6100b061009b36600461074d565b60026020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b6100d86100d336600461074d565b610172565b005b6000546100ed906001600160a01b031681565b6040516001600160a01b0390911681526020016100bc565b6100ed6101133660046107ba565b61025c565b6001546100ed906001600160a01b031681565b6100ed610139366004610812565b61027c565b6100d861014c36600461074d565b61036f565b61016461015f3660046107ba565b61040b565b6040519081526020016100bc565b6000546001600160a01b0316331480610207575060015460405163b700961360e01b81526001600160a01b039091169063b7009613906101c690339030906001600160e01b03196000351690600401610921565b602060405180830381865afa1580156101e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610207919061094e565b61021057600080fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b7638998019890600090a350565b600080610269848461040b565b90506102748161043e565b949350505050565b6000610294336000356001600160e01b031916610450565b6102d45760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064015b60405180910390fd5b845160208601208315610308578585856040516020016102f6939291906109a0565b60405160208183030381529060405295505b6000610314898961040b565b905060006103238289876104fa565b90507fd928a3951eedba2f72a5eb8c15b591ead63c282f21b2f5e93506fb88cae27fec8a8a838660405161035a94939291906109e9565b60405180910390a19998505050505050505050565b610385336000356001600160e01b031916610450565b6103c05760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064016102cb565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60008282604051602001610420929190610a19565b60405160208183030381529060405280519060200120905092915050565b600061044a8230610650565b92915050565b6001546000906001600160a01b031680158015906104da575060405163b700961360e01b81526001600160a01b0382169063b70096139061049990879030908890600401610921565b602060405180830381865afa1580156104b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104da919061094e565b8061027457506000546001600160a01b0385811691161491505092915050565b6000806040518060400160405280601081526020016f67363d3d37363d34f03d5260086018f360801b81525090506000858251602084016000f590506001600160a01b0381166105805760405162461bcd60e51b81526020600482015260116024820152701111541313d65351539517d19052531151607a1b60448201526064016102cb565b6105898661043e565b92506000816001600160a01b031685876040516105a69190610a2d565b60006040518083038185875af1925050503d80600081146105e3576040519150601f19603f3d011682016040523d82523d6000602084013e6105e8565b606091505b5050905080801561060257506001600160a01b0384163b15155b6106465760405162461bcd60e51b815260206004820152601560248201527412539255125053125690551253d397d19052531151605a1b60448201526064016102cb565b5050509392505050565b604080518082018252601081526f67363d3d37363d34f03d5260086018f360801b60209182015290516001600160f81b0319918101919091526bffffffffffffffffffffffff19606083901b166021820152603581018390527f21c35dbe1b344a2488cf3321d6ce542f8e9f305544ff09e4993a62319a497c1f605582015260009081906106f5906075015b6040516020818303038152906040528051906020012090565b6040516135a560f21b60208201526bffffffffffffffffffffffff19606083901b166022820152600160f81b6036820152909150610274906037016106dc565b6001600160a01b038116811461074a57600080fd5b50565b60006020828403121561075f57600080fd5b813561076a81610735565b9392505050565b60008083601f84011261078357600080fd5b50813567ffffffffffffffff81111561079b57600080fd5b6020830191508360208285010111156107b357600080fd5b9250929050565b600080602083850312156107cd57600080fd5b823567ffffffffffffffff8111156107e457600080fd5b6107f085828601610771565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806000806080878903121561082b57600080fd5b863567ffffffffffffffff8082111561084357600080fd5b61084f8a838b01610771565b9098509650602089013591508082111561086857600080fd5b818901915089601f83011261087c57600080fd5b81358181111561088e5761088e6107fc565b604051601f8201601f19908116603f011681019083821181831017156108b6576108b66107fc565b816040528281528c60208487010111156108cf57600080fd5b8260208601602083013760006020848301015280985050505060408901359150808211156108fc57600080fd5b5061090989828a01610771565b979a9699509497949695606090950135949350505050565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b60006020828403121561096057600080fd5b8151801515811461076a57600080fd5b6000815160005b818110156109915760208185018101518683015201610977565b50600093019283525090919050565b60006109ac8286610970565b838582376000930192835250909392505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6060815260006109fd6060830186886109c0565b6001600160a01b03949094166020830152506040015292915050565b6020815260006102746020830184866109c0565b600061076a828461097056fea2646970667358221220e2caed873c0796d1f2b3a2d9153562f49b522960847391126927ba7f6699f5b564736f6c634300081500330000000000000000000000000463e60c7ce10e57911ab7bd1667eaa21de3e79b0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100885760003560e01c8063bf7e214f1161005b578063bf7e214f14610118578063ef5de7e31461012b578063f2fde38b1461013e578063f74907a21461015157600080fd5b806350c358a41461008d5780637a9e5e4b146100c55780638da5cb5b146100da578063bf40fac114610105575b600080fd5b6100b061009b36600461074d565b60026020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b6100d86100d336600461074d565b610172565b005b6000546100ed906001600160a01b031681565b6040516001600160a01b0390911681526020016100bc565b6100ed6101133660046107ba565b61025c565b6001546100ed906001600160a01b031681565b6100ed610139366004610812565b61027c565b6100d861014c36600461074d565b61036f565b61016461015f3660046107ba565b61040b565b6040519081526020016100bc565b6000546001600160a01b0316331480610207575060015460405163b700961360e01b81526001600160a01b039091169063b7009613906101c690339030906001600160e01b03196000351690600401610921565b602060405180830381865afa1580156101e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610207919061094e565b61021057600080fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b7638998019890600090a350565b600080610269848461040b565b90506102748161043e565b949350505050565b6000610294336000356001600160e01b031916610450565b6102d45760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064015b60405180910390fd5b845160208601208315610308578585856040516020016102f6939291906109a0565b60405160208183030381529060405295505b6000610314898961040b565b905060006103238289876104fa565b90507fd928a3951eedba2f72a5eb8c15b591ead63c282f21b2f5e93506fb88cae27fec8a8a838660405161035a94939291906109e9565b60405180910390a19998505050505050505050565b610385336000356001600160e01b031916610450565b6103c05760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064016102cb565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60008282604051602001610420929190610a19565b60405160208183030381529060405280519060200120905092915050565b600061044a8230610650565b92915050565b6001546000906001600160a01b031680158015906104da575060405163b700961360e01b81526001600160a01b0382169063b70096139061049990879030908890600401610921565b602060405180830381865afa1580156104b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104da919061094e565b8061027457506000546001600160a01b0385811691161491505092915050565b6000806040518060400160405280601081526020016f67363d3d37363d34f03d5260086018f360801b81525090506000858251602084016000f590506001600160a01b0381166105805760405162461bcd60e51b81526020600482015260116024820152701111541313d65351539517d19052531151607a1b60448201526064016102cb565b6105898661043e565b92506000816001600160a01b031685876040516105a69190610a2d565b60006040518083038185875af1925050503d80600081146105e3576040519150601f19603f3d011682016040523d82523d6000602084013e6105e8565b606091505b5050905080801561060257506001600160a01b0384163b15155b6106465760405162461bcd60e51b815260206004820152601560248201527412539255125053125690551253d397d19052531151605a1b60448201526064016102cb565b5050509392505050565b604080518082018252601081526f67363d3d37363d34f03d5260086018f360801b60209182015290516001600160f81b0319918101919091526bffffffffffffffffffffffff19606083901b166021820152603581018390527f21c35dbe1b344a2488cf3321d6ce542f8e9f305544ff09e4993a62319a497c1f605582015260009081906106f5906075015b6040516020818303038152906040528051906020012090565b6040516135a560f21b60208201526bffffffffffffffffffffffff19606083901b166022820152600160f81b6036820152909150610274906037016106dc565b6001600160a01b038116811461074a57600080fd5b50565b60006020828403121561075f57600080fd5b813561076a81610735565b9392505050565b60008083601f84011261078357600080fd5b50813567ffffffffffffffff81111561079b57600080fd5b6020830191508360208285010111156107b357600080fd5b9250929050565b600080602083850312156107cd57600080fd5b823567ffffffffffffffff8111156107e457600080fd5b6107f085828601610771565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806000806080878903121561082b57600080fd5b863567ffffffffffffffff8082111561084357600080fd5b61084f8a838b01610771565b9098509650602089013591508082111561086857600080fd5b818901915089601f83011261087c57600080fd5b81358181111561088e5761088e6107fc565b604051601f8201601f19908116603f011681019083821181831017156108b6576108b66107fc565b816040528281528c60208487010111156108cf57600080fd5b8260208601602083013760006020848301015280985050505060408901359150808211156108fc57600080fd5b5061090989828a01610771565b979a9699509497949695606090950135949350505050565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b60006020828403121561096057600080fd5b8151801515811461076a57600080fd5b6000815160005b818110156109915760208185018101518683015201610977565b50600093019283525090919050565b60006109ac8286610970565b838582376000930192835250909392505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6060815260006109fd6060830186886109c0565b6001600160a01b03949094166020830152506040015292915050565b6020815260006102746020830184866109c0565b600061076a828461097056fea2646970667358221220e2caed873c0796d1f2b3a2d9153562f49b522960847391126927ba7f6699f5b564736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000463e60c7ce10e57911ab7bd1667eaa21de3e79b0000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _owner (address): 0x0463E60C7cE10e57911AB7bD1667eaa21de3e79b
Arg [1] : _auth (address): 0x0000000000000000000000000000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000463e60c7ce10e57911ab7bd1667eaa21de3e79b
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in FRAX
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.