ETH Price: $2,647.66 (+5.95%)

Token

Wrapped Flow (WFLOW)
 

Overview

Max Total Supply

2,673,910.705624 WFLOW

Holders

999 (0.00%)

Market

Price

$0.53 @ 0.000202 ETH (+5.77%)

Onchain Market Cap

$1,428,309.36

Circulating Supply Market Cap

$822,836,507.23

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
MEV Bot: 0x48...b35
Balance
1.866365300081923812 WFLOW

Value
$1.00 ( ~0.0003776917855723 Eth) [0.0001%]
0x48802e0ce5045beb5f00e19dab7174384c7e5b35
Loading...
Loading
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.

Market

Volume (24H):$21,677,921.61
Market Capitalization:$822,836,507.23
Circulating Supply:1,540,416,528.00 WFLOW
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Trado
0X7F27352D5F83DB87A5A3E00F4B07CC2138D8EE52-0XD3BF53DAC106A0290B0483ECBC89D40FCC961F3E$0.5365
0.0002027 Eth
$17,108.18
16,577.154 0X7F27352D5F83DB87A5A3E00F4B07CC2138D8EE52
8.1435%
2
PunchSwap
0X7F27352D5F83DB87A5A3E00F4B07CC2138D8EE52-0XD3BF53DAC106A0290B0483ECBC89D40FCC961F3E$0.5366
0.0002028 Eth
$16,340.54
15,846.033 0X7F27352D5F83DB87A5A3E00F4B07CC2138D8EE52
7.7843%
3
Trado
0X1B97100EA1D7126C4D60027E231EA4CB25314BDB-0XD3BF53DAC106A0290B0483ECBC89D40FCC961F3E$0.5365
0.0002027 Eth
$11,375.64
21,504.576 0X1B97100EA1D7126C4D60027E231EA4CB25314BDB
10.5640%
4
Sushiswap
0X5C147E74D63B1D31AA3FD78EB229B65161983B2B-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.6595
0.0002487 Eth
$1,952.24
2,938.938 0X5C147E74D63B1D31AA3FD78EB229B65161983B2B
1.4437%
5
Uniswap V3 (Ethereum)
0X5C147E74D63B1D31AA3FD78EB229B65161983B2B-0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48$0.6414
0.0002575 Eth
$442.07
689.197 0X5C147E74D63B1D31AA3FD78EB229B65161983B2B
0.3386%
6
PunchSwap
0X1B97100EA1D7126C4D60027E231EA4CB25314BDB-0XD3BF53DAC106A0290B0483ECBC89D40FCC961F3E$0.5365
0.0002027 Eth
$365.52
692.881 0X1B97100EA1D7126C4D60027E231EA4CB25314BDB
0.3404%
7
Uniswap V3 (Ethereum)
0X557B933A7C2C45672B610F8954A3DEB39A51A8CA-0X5C147E74D63B1D31AA3FD78EB229B65161983B2B$0.6412
0.0002575 Eth
$146.13
145,315.292 0X557B933A7C2C45672B610F8954A3DEB39A51A8CA
71.3855%

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"}]

608060405234801561001057600080fd5b5060405161019b38038061019b8339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e7472616374204c6f6769632063616e6e6f74206265203078300000000081525060200191505060405180910390fd5b807fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf755506082806101196000396000f3fe60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf75460405136600082376000803683855af43d806000843e81600081146048578184f35b8184fdfea264697066735822122058e4247c8242205e2950c78510b35a7c7e85aaaa38c115e0254e305088e7da7264736f6c634300060c00330000000000000000000000007aac67b8cb7f39e080672ca6a32f5a6a964c26a4

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
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.