ETH Price: $2,286.63 (+0.99%)

Token

Current CRNC (CRNC)
 

Overview

Max Total Supply

242,162,458.95 CRNC

Holders

499 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
27,083 CRNC

Value
$0.00
0x73832d05eb390993ce38f8bb7c9abc501284dda0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Current’s is a deflationary cryptocurrency that rewards attention & usage within their products. Current is the first platform to reward users for their music consumption across 100,000+ global stations and aims to be the highest paying rewards engine.

# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

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

Contract Name:
Proxy

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, BSD-2-Clause license
/**
 *Submitted for verification at Etherscan.io on 2019-08-27
*/

pragma solidity ^0.4.21;

contract Proxy {
  address public owner;
  address public target;

  event ProxyTargetSet(address target);
  event ProxyOwnerChanged(address _owner);

  constructor () public{
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  function setTarget(address _target) public onlyOwner {
    target = _target;
    emit ProxyTargetSet(_target);
  }

  function setOwner(address _owner) public onlyOwner {
    owner = _owner;
    emit ProxyOwnerChanged(_owner);
  }

  function () payable public {
    address _impl = target;
    require(_impl != address(0));

    assembly {
      let ptr := mload(0x40)
      calldatacopy(ptr, 0, calldatasize)
      let result := delegatecall(gas, _impl, ptr, calldatasize, 0, 0)
      let size := returndatasize
      returndatacopy(ptr, 0, size)

      switch result
      case 0 { revert(ptr, size) }
      default { return(ptr, size) }
    }
  }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"}],"name":"setTarget","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"target","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"}],"name":"ProxyTargetSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_owner","type":"address"}],"name":"ProxyOwnerChanged","type":"event"}]

608060405234801561001057600080fd5b5060008054600160a060020a03191633179055610262806100326000396000f3006080604052600436106100615763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166313af4035811461009e578063776d1a01146100c15780638da5cb5b146100e2578063d4b8399214610113575b600154600160a060020a031680151561007957600080fd5b60405136600082376000803683855af43d806000843e81801561009a578184f35b8184fd5b3480156100aa57600080fd5b506100bf600160a060020a0360043516610128565b005b3480156100cd57600080fd5b506100bf600160a060020a03600435166101a0565b3480156100ee57600080fd5b506100f7610218565b60408051600160a060020a039092168252519081900360200190f35b34801561011f57600080fd5b506100f7610227565b600054600160a060020a0316331461013f57600080fd5b60008054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517fe543d3a077035cec99b732bad2c4cf1c0fdee02ddf561ae543106ccc31cf35a39181900360200190a150565b600054600160a060020a031633146101b757600080fd5b60018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517ff1b1e874978309afba903baec19abf568b0337fcedc05dde58cfea25ec25b94d9181900360200190a150565b600054600160a060020a031681565b600154600160a060020a0316815600a165627a7a7230582039020aa15281e28124580d6271272fa5c7a1377c66d06dd34cfbff95799917750029

Deployed Bytecode

0x6080604052600436106100615763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166313af4035811461009e578063776d1a01146100c15780638da5cb5b146100e2578063d4b8399214610113575b600154600160a060020a031680151561007957600080fd5b60405136600082376000803683855af43d806000843e81801561009a578184f35b8184fd5b3480156100aa57600080fd5b506100bf600160a060020a0360043516610128565b005b3480156100cd57600080fd5b506100bf600160a060020a03600435166101a0565b3480156100ee57600080fd5b506100f7610218565b60408051600160a060020a039092168252519081900360200190f35b34801561011f57600080fd5b506100f7610227565b600054600160a060020a0316331461013f57600080fd5b60008054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517fe543d3a077035cec99b732bad2c4cf1c0fdee02ddf561ae543106ccc31cf35a39181900360200190a150565b600054600160a060020a031633146101b757600080fd5b60018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517ff1b1e874978309afba903baec19abf568b0337fcedc05dde58cfea25ec25b94d9181900360200190a150565b600054600160a060020a031681565b600154600160a060020a0316815600a165627a7a7230582039020aa15281e28124580d6271272fa5c7a1377c66d06dd34cfbff95799917750029

Deployed Bytecode Sourcemap

28:1051:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695:6;;-1:-1:-1;;;;;695:6:0;716:19;;;708:28;;;;;;780:4;774:11;814:12;811:1;806:3;793:34;896:1;893;879:12;874:3;867:5;862:3;849:49;918:14;963:4;960:1;955:3;940:28;985:6;999:28;;;;1057:4;1052:3;1045:17;999:28;1020:4;1015:3;1008:17;524:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;524:115:0;-1:-1:-1;;;;;524:115:0;;;;;;;401:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;401:117:0;-1:-1:-1;;;;;401:117:0;;;;;48:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48:20:0;;;;;;;;-1:-1:-1;;;;;48:20:0;;;;;;;;;;;;;;73:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;73:21:0;;;;524:115;375:5;;-1:-1:-1;;;;;375:5:0;361:10;:19;353:28;;;;;;582:5;:14;;-1:-1:-1;;;;;582:14:0;;-1:-1:-1;;582:14:0;;;;;;;;608:25;;;;;;;;;;;;;;;;524:115;:::o;401:117::-;375:5;;-1:-1:-1;;;;;375:5:0;361:10;:19;353:28;;;;;;461:6;:16;;-1:-1:-1;;;;;461:16:0;;-1:-1:-1;;461:16:0;;;;;;;;489:23;;;;;;;;;;;;;;;;401:117;:::o;48:20::-;;;-1:-1:-1;;;;;48:20:0;;:::o;73:21::-;;;-1:-1:-1;;;;;73:21:0;;:::o

Swarm Source

bzzr://39020aa15281e28124580d6271272fa5c7a1377c66d06dd34cfbff9579991775
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.