ETH Price: $1,841.32 (-1.90%)
Gas: 19 Gwei
 

Overview

Max Total Supply

2,673,910.705624 WFLOW

Holders

746 (0.00%)

Total Transfers

-

Market

Chart

Price

$0.63 @ 0.000343 ETH (-6.13%)

Fully Diluted Market Cap

$1,690,523.89

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

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.

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V3 (Ethereum)
0X5C147E74D63B1D31AA3FD78EB229B65161983B2B-0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48$0.6324
0.0003440 Eth
$55,718.00
88,058.665 0X5C147E74D63B1D31AA3FD78EB229B65161983B2B
56.3047%
2
Sushiswap
0X5C147E74D63B1D31AA3FD78EB229B65161983B2B-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.6344
0.0003450 Eth
$20,556.00
30,362.029 0X5C147E74D63B1D31AA3FD78EB229B65161983B2B
19.4135%
3
Uniswap V3 (Ethereum)
0X557B933A7C2C45672B610F8954A3DEB39A51A8CA-0X5C147E74D63B1D31AA3FD78EB229B65161983B2B$0.6325
0.0003440 Eth
$322.08
37,975.835 0X557B933A7C2C45672B610F8954A3DEB39A51A8CA
24.2818%

Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x5f6d994e6ba25a0a23efae15e46a6e79527bdf3f

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

Contract Creation Code

608060405234801561001057600080fd5b5060405161019b38038061019b8339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e7472616374204c6f6769632063616e6e6f74206265203078300000000081525060200191505060405180910390fd5b807fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf755506082806101196000396000f3fe60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf75460405136600082376000803683855af43d806000843e81600081146048578184f35b8184fdfea264697066735822122058e4247c8242205e2950c78510b35a7c7e85aaaa38c115e0254e305088e7da7264736f6c634300060c00330000000000000000000000007aac67b8cb7f39e080672ca6a32f5a6a964c26a4

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
[ 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.