ETH Price: $3,065.93 (+1.93%)
Gas: 8 Gwei

Contract

0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Transaction Hash
Method
Block
From
To
Value
Transfer196822182024-04-18 12:03:2310 hrs ago1713441803IN
Flow: WFLOW Token
0 ETH0.0006581913.16752248
Approve196791762024-04-18 1:51:1120 hrs ago1713405071IN
Flow: WFLOW Token
0 ETH0.000425738.33524967
Approve196767072024-04-17 17:32:3528 hrs ago1713375155IN
Flow: WFLOW Token
0 ETH0.0010752421.05150522
Approve196745512024-04-17 10:19:1135 hrs ago1713349151IN
Flow: WFLOW Token
0 ETH0.0008582116.80243464
Approve196734512024-04-17 6:37:4739 hrs ago1713335867IN
Flow: WFLOW Token
0 ETH0.000470914.97155193
Approve196734512024-04-17 6:37:4739 hrs ago1713335867IN
Flow: WFLOW Token
0 ETH0.0007688314.97155193
Approve196688722024-04-16 15:15:232 days ago1713280523IN
Flow: WFLOW Token
0 ETH0.0005489817.45412871
Approve196688722024-04-16 15:15:232 days ago1713280523IN
Flow: WFLOW Token
0 ETH0.0008963217.45412871
Transfer196651572024-04-16 2:45:472 days ago1713235547IN
Flow: WFLOW Token
0 ETH0.0004367
Approve196617632024-04-15 15:20:233 days ago1713194423IN
Flow: WFLOW Token
0 ETH0.0008306926.73710875
Approve196617592024-04-15 15:19:353 days ago1713194375IN
Flow: WFLOW Token
0 ETH0.0007386225.40934331
Approve196602672024-04-15 10:18:593 days ago1713176339IN
Flow: WFLOW Token
0 ETH0.0012537324.5575389
Approve196599072024-04-15 9:05:353 days ago1713171935IN
Flow: WFLOW Token
0 ETH0.0003749611.92158728
Approve196599052024-04-15 9:05:113 days ago1713171911IN
Flow: WFLOW Token
0 ETH0.0006177412.02945863
Approve196550762024-04-14 16:50:474 days ago1713113447IN
Flow: WFLOW Token
0 ETH0.0006154711.98523079
Approve196401992024-04-12 14:43:116 days ago1712932991IN
Flow: WFLOW Token
0 ETH0.0014640928.66450933
Transfer196357352024-04-11 23:45:116 days ago1712879111IN
Flow: WFLOW Token
0 ETH0.0005892511.78848487
Approve196319182024-04-11 10:55:117 days ago1712832911IN
Flow: WFLOW Token
0 ETH0.0004873816.76632726
Approve196307592024-04-11 7:01:357 days ago1712818895IN
Flow: WFLOW Token
0 ETH0.0006910123.77157244
Transfer196228422024-04-10 4:27:358 days ago1712723255IN
Flow: WFLOW Token
0 ETH0.0006440814.25408846
Transfer196178522024-04-09 11:41:119 days ago1712662871IN
Flow: WFLOW Token
0 ETH0.0014994224.0686
Approve196102182024-04-08 10:00:2310 days ago1712570423IN
Flow: WFLOW Token
0 ETH0.0008682917.01962457
Transfer196101172024-04-08 9:39:4710 days ago1712569187IN
Flow: WFLOW Token
0 ETH0.0008798717.59811856
Approve196061142024-04-07 20:12:4711 days ago1712520767IN
Flow: WFLOW Token
0 ETH0.0008526816.60433252
Transfer196055632024-04-07 18:20:5911 days ago1712514059IN
Flow: WFLOW Token
0 ETH0.0013923122.35362677
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 0x5f6d994E...9527BDf3F
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 2021-11-10
*/

// File: contracts/Proxy.sol

pragma solidity 0.6.12;

contract Proxy {
    // Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7"
    uint256 constant PROXIABLE_MEM_SLOT = 0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7;
    // constructor(bytes memory constructData, address contractLogic) public {
    constructor(address contractLogic) public {
        // Verify a valid address was passed in
        require(contractLogic != address(0), "Contract Logic cannot be 0x0");

        // save the code address
        assembly { // solium-disable-line
            sstore(PROXIABLE_MEM_SLOT, contractLogic)
        }
    }

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

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf75460405136600082376000803683855af43d806000843e81600081146048578184f35b8184fdfea264697066735822122058e4247c8242205e2950c78510b35a7c7e85aaaa38c115e0254e305088e7da7264736f6c634300060c0033

Deployed Bytecode Sourcemap

59:1266:0:-:0;;;846:18;840:25;896:4;890:11;938:14;933:3;928;915:38;1041:1;1038;1022:14;1017:3;1002:13;995:5;982:61;1070:16;1123:5;1120:1;1115:3;1100:29;1150:7;1176:1;1171:59;;;;1283:5;1278:3;1271:18;1171:59;1209:5;1204:3;1197:18

Swarm Source

ipfs://58e4247c8242205e2950c78510b35a7c7e85aaaa38c115e0254e305088e7da72

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

Flow is a blockchain designed from the ground up for mainstream adoption and is the only blockchain that builds usability improvements into the protocol layer.

Validator Index Block Amount
View All Withdrawals

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