ETH Price: $2,207.16 (-1.31%)

Contract

0x642b5C154E1c457F6D49948CeAA70752DABb073C
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
Age
From
To
Set Approval For...187522802023-12-10 0:37:11447 days ago1702168631IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0007672326.2788371
Set Approval For...169625232023-04-02 16:15:11699 days ago1680452111IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0010472420.49077463
Set Approval For...169452552023-03-31 5:58:35701 days ago1680242315IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0011389822.28575847
Set Approval For...168049992023-03-11 12:59:47721 days ago1678539587IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0027137253.0106455
Set Approval For...167574102023-03-04 20:20:23728 days ago1677961223IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0014738628.79086735
Set Approval For...167263872023-02-28 11:33:47732 days ago1677584027IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0009309518.20690033
Set Approval For...167085672023-02-25 23:31:11735 days ago1677367871IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0009740619.05002036
Set Approval For...167025762023-02-25 3:16:23735 days ago1677294983IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0011216921.937284
Transfer From166980732023-02-24 12:03:59736 days ago1677240239IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0019419926.73518777
Set Approval For...166772582023-02-21 13:45:23739 days ago1676987123IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0016543132.35374224
Set Approval For...166609372023-02-19 6:44:11741 days ago1676789051IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0009863119.28967521
Set Approval For...166585492023-02-18 22:41:59742 days ago1676760119IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0009888919.34907029
Set Approval For...166552042023-02-18 11:24:35742 days ago1676719475IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0011452922.39886449
Set Approval For...166545332023-02-18 9:08:23742 days ago1676711303IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0011879423.23281058
Set Approval For...166541672023-02-18 7:54:11742 days ago1676706851IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.001381727.02238439
Set Approval For...166529522023-02-18 3:47:59742 days ago1676692079IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.001302625.47526887
Set Approval For...166519502023-02-18 0:24:47742 days ago1676679887IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0019846538.8142654
Set Approval For...166515212023-02-17 22:57:11743 days ago1676674631IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0017643834.52263303
Set Approval For...166505412023-02-17 19:37:11743 days ago1676662631IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0019228637.60588522
Set Approval For...166503832023-02-17 19:04:59743 days ago1676660699IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0021676542.39327592
Set Approval For...166501702023-02-17 18:21:47743 days ago1676658107IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0023165945.32739876
Set Approval For...166490352023-02-17 14:31:35743 days ago1676644295IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0023279545.47504892
Set Approval For...166489342023-02-17 14:10:11743 days ago1676643011IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0015572630.47006879
Set Approval For...166489122023-02-17 14:05:35743 days ago1676642735IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0013918227.23300759
Set Approval For...166489082023-02-17 14:04:47743 days ago1676642687IN
Fluid - Ordinals | Ticket: FLD Token
0 ETH0.0013917127.23086296
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FLD

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 300 runs

Other Settings:
default evmVersion
File 1 of 5 : FLD.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title: Fluid - Ordinals | Ticket
/// @author: manifold.xyz
import "./manifold/ERC721Creator.sol";
///////////////
// //
// //
// FLD //
// //
// //
///////////////
contract FLD is ERC721Creator {
constructor() ERC721Creator("Fluid - Ordinals | Ticket", "FLD") {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 5 : ERC721Creator.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @author: manifold.xyz
import "@openzeppelin/contracts/proxy/Proxy.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/StorageSlot.sol";
contract ERC721Creator is Proxy {
constructor(string memory name, string memory symbol) {
assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = 0x2d3fC875de7Fe7Da43AD0afa0E7023c9B91D06b1;
(bool success, ) = 0x2d3fC875de7Fe7Da43AD0afa0E7023c9B91D06b1.delegatecall(abi.encodeWithSignature("initialize(string,string)", name, symbol
            ));
require(success, "Initialization failed");
}
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 5 : Proxy.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)
pragma solidity ^0.8.0;
/**
* @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
* instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
* be specified by overriding the virtual {_implementation} function.
*
* Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
* different contract through the {_delegate} function.
*
* The success and return data of the delegated call will be returned back to the caller of the proxy.
*/
abstract contract Proxy {
/**
* @dev Delegates the current call to `implementation`.
*
* This function does not return to its internal call site, it will return directly to the external caller.
*/
function _delegate(address implementation) internal virtual {
assembly {
// Copy msg.data. We take full control of memory in this inline assembly
// block because it will not return to Solidity code. We overwrite the
// Solidity scratch pad at memory position 0.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 5 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 5 : StorageSlot.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)
pragma solidity ^0.8.0;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"remappings": [
"@openzeppelin/=node_modules/@openzeppelin/"
],
"optimizer": {
"enabled": true,
"runs": 300
},
"metadata": {
"bytecodeHash": "ipfs"
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "london",
"libraries": {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b50604080518082018252601981527f466c756964202d204f7264696e616c73207c205469636b6574000000000000006020808301919091528251808401909352600383526211931160ea1b908301529061008b60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd6101ff565b60008051602061040f833981519152146100a7576100a7610226565b732d3fc875de7fe7da43ad0afa0e7023c9b91d06b16100e060008051602061040f83398151915260001b6101fc60201b6100ce1760201c565b80546001600160a01b0319166001600160a01b0392909216919091179055604051600090732d3fc875de7fe7da43ad0afa0e7023c9b91d06b19061012a908590859060240161028c565b60408051601f198184030181529181526020820180516001600160e01b031663266c45bb60e11b1790525161015f91906102ba565b600060405180830381855af49150503d806000811461019a576040519150601f19603f3d011682016040523d82523d6000602084013e61019f565b606091505b50509050806101f45760405162461bcd60e51b815260206004820152601560248201527f496e697469616c697a6174696f6e206661696c65640000000000000000000000604482015260640160405180910390fd5b5050506102d6565b90565b8181038181111561022057634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052600160045260246000fd5b60005b8381101561025757818101518382015260200161023f565b50506000910152565b6000815180845261027881602086016020860161023c565b601f01601f19169290920160200192915050565b60408152600061029f6040830185610260565b82810360208401526102b18185610260565b95945050505050565b600082516102cc81846020870161023c565b9190910192915050565b61012a806102e56000396000f3fe608060405260043610601f5760003560e01c80635c60da1b14603157602b565b36602b576029605f565b005b6029605f565b348015603c57600080fd5b5060436097565b6040516001600160a01b03909116815260200160405180910390f35b609560917f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b60d1565b565b600060c97f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b90565b3660008037600080366000845af43d6000803e80801560ef573d6000f35b3d6000fdfea26469706673582212201f953411f4485718af2b57b55926e3cab8b6621667e240d6db1e7bc8b39412e764736f6c63430008110033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc

Deployed Bytecode

0x608060405260043610601f5760003560e01c80635c60da1b14603157602b565b36602b576029605f565b005b6029605f565b348015603c57600080fd5b5060436097565b6040516001600160a01b03909116815260200160405180910390f35b609560917f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b60d1565b565b600060c97f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b90565b3660008037600080366000845af43d6000803e80801560ef573d6000f35b3d6000fdfea26469706673582212201f953411f4485718af2b57b55926e3cab8b6621667e240d6db1e7bc8b39412e764736f6c63430008110033

Block Age Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Age Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

1 Pass -> 1 Fluid - Ordinals on ETH -> 1 Fluid - Ordinals on BTC Ordinals

Validator Index Block Age Amount
View All Withdrawals

Transaction Hash Block Age Value Eth2 PubKey Valid
View All Deposits
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.