Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Latest 25 from a total of 583 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Purchase | 21459455 | 434 days ago | IN | 0.0065 ETH | 0.00284167 | ||||
| Purchase | 21295271 | 457 days ago | IN | 0.0065 ETH | 0.00443467 | ||||
| Purchase | 21295243 | 457 days ago | IN | 0.0065 ETH | 0.00420965 | ||||
| Purchase | 21294073 | 457 days ago | IN | 0.0065 ETH | 0.00642736 | ||||
| Purchase | 21294039 | 457 days ago | IN | 0.0065 ETH | 0.0063535 | ||||
| Purchase | 21294035 | 457 days ago | IN | 0.0065 ETH | 0.00607768 | ||||
| Purchase | 21294028 | 457 days ago | IN | 0.0065 ETH | 0.00596656 | ||||
| Purchase | 21294024 | 457 days ago | IN | 0.0065 ETH | 0.00522804 | ||||
| Purchase | 21204200 | 469 days ago | IN | 0.0065 ETH | 0.00269299 | ||||
| Purchase | 21180957 | 473 days ago | IN | 0.0065 ETH | 0.02015896 | ||||
| Purchase | 21180866 | 473 days ago | IN | 0.0065 ETH | 0.02237017 | ||||
| Purchase | 21143213 | 478 days ago | IN | 0.0065 ETH | 0.00603666 | ||||
| Purchase | 21136562 | 479 days ago | IN | 0.0065 ETH | 0.00706101 | ||||
| Purchase | 21097075 | 484 days ago | IN | 0.0065 ETH | 0.00138955 | ||||
| Purchase | 21016959 | 496 days ago | IN | 0.0065 ETH | 0.00219003 | ||||
| Purchase | 20988376 | 500 days ago | IN | 0.0065 ETH | 0.00296228 | ||||
| Purchase | 20934428 | 507 days ago | IN | 0.0065 ETH | 0.00309939 | ||||
| Purchase | 20930417 | 508 days ago | IN | 0.0065 ETH | 0.00148665 | ||||
| Purchase | 20927340 | 508 days ago | IN | 0.0065 ETH | 0.00400193 | ||||
| Purchase | 20911568 | 510 days ago | IN | 0.0065 ETH | 0.00252635 | ||||
| Purchase | 20830626 | 522 days ago | IN | 0.0065 ETH | 0.00374713 | ||||
| Purchase | 20732467 | 535 days ago | IN | 0.0065 ETH | 0.00115672 | ||||
| Purchase | 20609169 | 553 days ago | IN | 0.0065 ETH | 0.00088348 | ||||
| Purchase | 20595412 | 554 days ago | IN | 0.0065 ETH | 0.00097664 | ||||
| Withdraw | 20566072 | 559 days ago | IN | 0 ETH | 0.00002613 |
Latest 14 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 20566072 | 559 days ago | 0.1275 ETH | ||||
| Transfer | 19243095 | 744 days ago | 0.28 ETH | ||||
| Transfer | 18618518 | 831 days ago | 0.07 ETH | ||||
| Transfer | 18435715 | 857 days ago | 0.33 ETH | ||||
| Transfer | 17794399 | 947 days ago | 0.31 ETH | ||||
| Transfer | 17494390 | 989 days ago | 0.14 ETH | ||||
| Transfer | 17351047 | 1009 days ago | 0.3 ETH | ||||
| Transfer | 16968060 | 1063 days ago | 0.79 ETH | ||||
| Transfer | 16224097 | 1167 days ago | 0.51 ETH | ||||
| Transfer | 15929096 | 1209 days ago | 0.41 ETH | ||||
| Transfer | 15683049 | 1243 days ago | 1.56 ETH | ||||
| Transfer | 15645903 | 1248 days ago | 0.01515416 ETH | ||||
| Transfer | 15335150 | 1296 days ago | 0.77 ETH | ||||
| - | 14920582 | 1363 days ago | 1.18 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
UrbitexSpawnSale_v2
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 100000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
import "./interface/IAzimuth.sol";
import "./interface/IEcliptic.sol";
import "./interface/IERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
contract UrbitexSpawnSale_v2 is Context, Ownable
{
// This contract facilitates the sale of planets via spawning from a host star.
// The intent is to be used only by the exchange owner to supply greater inventory to the
// marketplace without having to first spawn dozens of planets.
// SpawnedPurchase: sale has occurred
//
event SpawnedPurchase(
uint32[] _points
);
// azimuth: points state data store
//
IAzimuth public azimuth;
// price: fixed price to be set across all planets
//
uint256 public price;
// constructor(): configure the points data store and planet price
//
constructor(IAzimuth _azimuth, uint256 _price)
{
azimuth = _azimuth;
setPrice(_price);
}
// purchase(): pay the price, acquire ownership of the planets
//
function purchase(uint32[] calldata _points)
external
payable
{
// amount transferred must match price set by exchange owner
require (msg.value == price*_points.length);
// omitting all checks here to save on gas fees (for example if transfer proxy is approved for the star)
// the transaction will just fail in that case regardless, which is intended.
//
IEcliptic ecliptic = IEcliptic(azimuth.owner());
// spawn the planets, then immediately transfer to the buyer
//
for (uint32 index; index < _points.length; index++) {
ecliptic.spawn(_points[index], address(this));
ecliptic.transferPoint(_points[index], _msgSender(), false);
}
emit SpawnedPurchase(_points);
}
// EXCHANGE OWNER OPERATIONS
function setPrice(uint256 _price) public onlyOwner {
require(0 < _price);
price = _price;
}
function withdraw(address payable _target) external onlyOwner {
require(address(0) != _target);
_target.transfer(address(this).balance);
}
function close(address payable _target) external onlyOwner {
require(address(0) != _target);
selfdestruct(_target);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
interface IAzimuth {
function owner() external returns (address);
function isSpawnProxy(uint32, address) external returns (bool);
function hasBeenLinked(uint32) external returns (bool);
function getPrefix(uint32) external returns (uint16);
function getOwner(uint32) view external returns (address);
function canTransfer(uint32, address) view external returns (bool);
function isOwner(uint32, address) view external returns (bool);
function getKeyRevisionNumber(uint32 _point) view external returns(uint32);
function getSpawnCount(uint32 _point) view external returns(uint32);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
interface IEcliptic {
function isApprovedForAll(address, address) external returns (bool);
function transferFrom(address, address, uint256) external;
function spawn(uint32, address) external;
function transferPoint(uint32, address, bool) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
interface IERC721Partial {
function transferFrom(address from, address to, uint256 tokenId) external;
}// 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": 100000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IAzimuth","name":"_azimuth","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"uint32[]","name":"_points","type":"uint32[]"}],"name":"SpawnedPurchase","type":"event"},{"inputs":[],"name":"azimuth","outputs":[{"internalType":"contract IAzimuth","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_target","type":"address"}],"name":"close","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32[]","name":"_points","type":"uint32[]"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_target","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50604051610ccd380380610ccd83398101604081905261002f91610123565b61003833610063565b600180546001600160a01b0319166001600160a01b03841617905561005c816100b3565b505061015d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031633146101115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8060001061011e57600080fd5b600255565b6000806040838503121561013657600080fd5b82516001600160a01b038116811461014d57600080fd5b6020939093015192949293505050565b610b618061016c6000396000f3fe6080604052600436106100965760003560e01c806391b7f5ed11610069578063c74073a11161004e578063c74073a11461017a578063d40ffacb1461019a578063f2fde38b146101c757600080fd5b806391b7f5ed14610136578063a035b1fe1461015657600080fd5b806351cff8d91461009b5780635b037e81146100bd578063715018a6146100d05780638da5cb5b146100e5575b600080fd5b3480156100a757600080fd5b506100bb6100b6366004610920565b6101e7565b005b6100bb6100cb366004610944565b6102d3565b3480156100dc57600080fd5b506100bb61057f565b3480156100f157600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561014257600080fd5b506100bb6101513660046109b9565b61060c565b34801561016257600080fd5b5061016c60025481565b60405190815260200161012d565b34801561018657600080fd5b506100bb610195366004610920565b61069f565b3480156101a657600080fd5b5060015461010c9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156101d357600080fd5b506100bb6101e2366004610920565b610759565b60005473ffffffffffffffffffffffffffffffffffffffff16331461026d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811661028d57600080fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f193505050501580156102cf573d6000803e3d6000fd5b5050565b6002546102e1908290610a01565b34146102ec57600080fd5b600154604080517f8da5cb5b000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691638da5cb5b916004808301926020929190829003018187875af115801561035d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103819190610a3e565b905060005b63ffffffff8116831115610540578173ffffffffffffffffffffffffffffffffffffffff1663a0d3253f85858463ffffffff168181106103c8576103c8610a5b565b90506020020160208101906103dd9190610aa3565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815263ffffffff919091166004820152306024820152604401600060405180830381600087803b15801561043a57600080fd5b505af115801561044e573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff16631e79a85b85858463ffffffff1681811061048657610486610a5b565b905060200201602081019061049b9190610aa3565b336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015273ffffffffffffffffffffffffffffffffffffffff16602482015260006044820152606401600060405180830381600087803b15801561051557600080fd5b505af1158015610529573d6000803e3d6000fd5b50505050808061053890610abe565b915050610386565b507f891d1a3127f173a60e6b722d1944f507e9866efca32dad9d1d2909a9f6b91e4d8383604051610572929190610ae2565b60405180910390a1505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610600576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610264565b61060a6000610889565b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610264565b8060001061069a57600080fd5b600255565b60005473ffffffffffffffffffffffffffffffffffffffff163314610720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610264565b73ffffffffffffffffffffffffffffffffffffffff811661074057600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16ff5b60005473ffffffffffffffffffffffffffffffffffffffff1633146107da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610264565b73ffffffffffffffffffffffffffffffffffffffff811661087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610264565b61088681610889565b50565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff8116811461088657600080fd5b60006020828403121561093257600080fd5b813561093d816108fe565b9392505050565b6000806020838503121561095757600080fd5b823567ffffffffffffffff8082111561096f57600080fd5b818501915085601f83011261098357600080fd5b81358181111561099257600080fd5b8660208260051b85010111156109a757600080fd5b60209290920196919550909350505050565b6000602082840312156109cb57600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610a3957610a396109d2565b500290565b600060208284031215610a5057600080fd5b815161093d816108fe565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b803563ffffffff81168114610a9e57600080fd5b919050565b600060208284031215610ab557600080fd5b61093d82610a8a565b600063ffffffff80831681811415610ad857610ad86109d2565b6001019392505050565b60208082528181018390526000908460408401835b86811015610b205763ffffffff610b0d84610a8a565b1682529183019190830190600101610af7565b50969550505050505056fea264697066735822122093e79ee77f847ad0559d399279374d25afb2422635ff5c9f84f1dffc8141b60564736f6c634300080c0033000000000000000000000000223c067f8cf28ae173ee5cafea60ca44c335fecb00000000000000000000000000000000000000000000000000354a6ba7a18000
Deployed Bytecode
0x6080604052600436106100965760003560e01c806391b7f5ed11610069578063c74073a11161004e578063c74073a11461017a578063d40ffacb1461019a578063f2fde38b146101c757600080fd5b806391b7f5ed14610136578063a035b1fe1461015657600080fd5b806351cff8d91461009b5780635b037e81146100bd578063715018a6146100d05780638da5cb5b146100e5575b600080fd5b3480156100a757600080fd5b506100bb6100b6366004610920565b6101e7565b005b6100bb6100cb366004610944565b6102d3565b3480156100dc57600080fd5b506100bb61057f565b3480156100f157600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561014257600080fd5b506100bb6101513660046109b9565b61060c565b34801561016257600080fd5b5061016c60025481565b60405190815260200161012d565b34801561018657600080fd5b506100bb610195366004610920565b61069f565b3480156101a657600080fd5b5060015461010c9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156101d357600080fd5b506100bb6101e2366004610920565b610759565b60005473ffffffffffffffffffffffffffffffffffffffff16331461026d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811661028d57600080fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f193505050501580156102cf573d6000803e3d6000fd5b5050565b6002546102e1908290610a01565b34146102ec57600080fd5b600154604080517f8da5cb5b000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691638da5cb5b916004808301926020929190829003018187875af115801561035d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103819190610a3e565b905060005b63ffffffff8116831115610540578173ffffffffffffffffffffffffffffffffffffffff1663a0d3253f85858463ffffffff168181106103c8576103c8610a5b565b90506020020160208101906103dd9190610aa3565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815263ffffffff919091166004820152306024820152604401600060405180830381600087803b15801561043a57600080fd5b505af115801561044e573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff16631e79a85b85858463ffffffff1681811061048657610486610a5b565b905060200201602081019061049b9190610aa3565b336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015273ffffffffffffffffffffffffffffffffffffffff16602482015260006044820152606401600060405180830381600087803b15801561051557600080fd5b505af1158015610529573d6000803e3d6000fd5b50505050808061053890610abe565b915050610386565b507f891d1a3127f173a60e6b722d1944f507e9866efca32dad9d1d2909a9f6b91e4d8383604051610572929190610ae2565b60405180910390a1505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610600576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610264565b61060a6000610889565b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610264565b8060001061069a57600080fd5b600255565b60005473ffffffffffffffffffffffffffffffffffffffff163314610720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610264565b73ffffffffffffffffffffffffffffffffffffffff811661074057600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16ff5b60005473ffffffffffffffffffffffffffffffffffffffff1633146107da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610264565b73ffffffffffffffffffffffffffffffffffffffff811661087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610264565b61088681610889565b50565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff8116811461088657600080fd5b60006020828403121561093257600080fd5b813561093d816108fe565b9392505050565b6000806020838503121561095757600080fd5b823567ffffffffffffffff8082111561096f57600080fd5b818501915085601f83011261098357600080fd5b81358181111561099257600080fd5b8660208260051b85010111156109a757600080fd5b60209290920196919550909350505050565b6000602082840312156109cb57600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610a3957610a396109d2565b500290565b600060208284031215610a5057600080fd5b815161093d816108fe565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b803563ffffffff81168114610a9e57600080fd5b919050565b600060208284031215610ab557600080fd5b61093d82610a8a565b600063ffffffff80831681811415610ad857610ad86109d2565b6001019392505050565b60208082528181018390526000908460408401835b86811015610b205763ffffffff610b0d84610a8a565b1682529183019190830190600101610af7565b50969550505050505056fea264697066735822122093e79ee77f847ad0559d399279374d25afb2422635ff5c9f84f1dffc8141b60564736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000223c067f8cf28ae173ee5cafea60ca44c335fecb00000000000000000000000000000000000000000000000000354a6ba7a18000
-----Decoded View---------------
Arg [0] : _azimuth (address): 0x223c067F8CF28ae173EE5CafEa60cA44C335fecB
Arg [1] : _price (uint256): 15000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000223c067f8cf28ae173ee5cafea60ca44c335fecb
Arg [1] : 00000000000000000000000000000000000000000000000000354a6ba7a18000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$141.39
Net Worth in ETH
0.0715
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,977.53 | 0.0715 | $141.39 |
Loading...
Loading
Loading...
Loading
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.