ETH Price: $2,677.10 (-0.74%)

Contract

0xa774FFB4AF6B0A91331C084E1aebAE6Ad535e6F3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

flexUSD (flexUSD) (@$0.0748)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer204108392024-07-29 7:51:23203 days ago1722239483IN
CoinFLEX: flexUSD Token
0 ETH0.000111631.6826913
Transfer204101892024-07-29 5:41:11203 days ago1722231671IN
CoinFLEX: flexUSD Token
0 ETH0.000117981.77839565
Approve196358172024-04-12 0:01:35311 days ago1712880095IN
CoinFLEX: flexUSD Token
0 ETH0.000447411.52185517
Transfer186428252023-11-24 16:42:11450 days ago1700844131IN
CoinFLEX: flexUSD Token
0 ETH0.0027570955.97260882
Transfer186310122023-11-23 0:59:23452 days ago1700701163IN
CoinFLEX: flexUSD Token
0 ETH0.0014773830
Transfer186310122023-11-23 0:59:23452 days ago1700701163IN
CoinFLEX: flexUSD Token
0 ETH0.0014777430
Transfer186310122023-11-23 0:59:23452 days ago1700701163IN
CoinFLEX: flexUSD Token
0 ETH0.0014777430
Transfer186310122023-11-23 0:59:23452 days ago1700701163IN
CoinFLEX: flexUSD Token
0 ETH0.0014777430
Transfer186308202023-11-23 0:20:59452 days ago1700698859IN
CoinFLEX: flexUSD Token
0 ETH0.0014777430
Transfer185268512023-11-08 11:10:11466 days ago1699441811IN
CoinFLEX: flexUSD Token
0 ETH0.0012140124.64614654
Transfer178193112023-08-01 9:39:47565 days ago1690882787IN
CoinFLEX: flexUSD Token
0 ETH0.001043221.1938526
Transfer178193112023-08-01 9:39:47565 days ago1690882787IN
CoinFLEX: flexUSD Token
0 ETH0.0014058721.1938526
Mint176735502023-07-11 23:11:59586 days ago1689117119IN
CoinFLEX: flexUSD Token
0 ETH0.0007941418
Transfer173746682023-05-30 22:19:23628 days ago1685485163IN
CoinFLEX: flexUSD Token
0 ETH0.002370235.73143792
Approve172797162023-05-17 13:42:47641 days ago1684330967IN
CoinFLEX: flexUSD Token
0 ETH0.0017244344.40881723
Transfer169634272023-04-02 19:19:11686 days ago1680463151IN
CoinFLEX: flexUSD Token
0 ETH0.0009782819.87011816
Transfer169469372023-03-31 11:37:59688 days ago1680262679IN
CoinFLEX: flexUSD Token
0 ETH0.001060421.52239606
Transfer169456202023-03-31 7:11:47689 days ago1680246707IN
CoinFLEX: flexUSD Token
0 ETH0.0015828623.86631894
Transfer168356852023-03-15 20:31:23704 days ago1678912283IN
CoinFLEX: flexUSD Token
0 ETH0.0010151220.61845267
Transfer164210452023-01-16 18:08:35762 days ago1673892515IN
CoinFLEX: flexUSD Token
0 ETH0.0024059536.26368463
Transfer161949002022-12-16 4:34:11794 days ago1671165251IN
CoinFLEX: flexUSD Token
0 ETH0.0007266414.76255043
Approve161842382022-12-14 16:50:23795 days ago1671036623IN
CoinFLEX: flexUSD Token
0 ETH0.0006527116.80905216
Transfer161446682022-12-09 4:08:23801 days ago1670558903IN
CoinFLEX: flexUSD Token
0 ETH0.0007418215.06727613
Transfer161446552022-12-09 4:05:47801 days ago1670558747IN
CoinFLEX: flexUSD Token
0 ETH0.0008317312.54080774
Transfer161235492022-12-06 5:05:47804 days ago1670303147IN
CoinFLEX: flexUSD Token
0 ETH0.0009207813.88360554
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x8B6327a3...E97BEE113
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Proxy

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-11-19
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

contract Proxy {
    // Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7"
    constructor(bytes memory constructData, address contractLogic) public {
        // save the code address
        assembly {
            // solium-disable-line
            sstore(
                0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7,
                contractLogic
            )
        }
        (bool success, bytes memory _) = contractLogic.delegatecall(
            constructData
        ); // solium-disable-line
        require(success, "Construction failed");
    }

    fallback() external payable {
        assembly { // solium-disable-line
            let contractLogic := sload(0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7)
            calldatacopy(0x0, 0x0, calldatasize())
            let success := delegatecall(sub(gas(), 10000), contractLogic, 0x0, calldatasize(), 0, 0)
            let retSz := returndatasize()
            returndatacopy(0, 0, retSz)
            switch success
            case 0 {
                revert(0, retSz)
            }
            default {
                return(0, retSz)
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes","name":"constructData","type":"bytes"},{"internalType":"address","name":"contractLogic","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7543660008037600080366000846127105a03f43d806000803e8160008114604b57816000f35b816000fdfea2646970667358221220d86deceb41c0987c614ef8eac3131c1fbd66967d3a806ab5b4e22deefd63b44264736f6c634300060c0033

Deployed Bytecode Sourcemap

62:1283:0:-:0;;;848:66;842:73;952:14;947:3;942;929:38;1067:1;1064;1048:14;1043:3;1028:13;1020:5;1013;1009:17;996:73;1096:16;1147:5;1144:1;1141;1126:27;1174:7;1200:1;1195:57;;;;1303:5;1300:1;1293:16;1195:57;1231:5;1228:1;1221:16

Swarm Source

ipfs://d86deceb41c0987c614ef8eac3131c1fbd66967d3a806ab5b4e22deefd63b442

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

CoinFLEX is developed to provide avenues for investors to hedge and trade cryptocurrency exposure.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block 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.