ETH Price: $3,154.17 (+1.12%)
Gas: 2 Gwei

Contract

0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

YFED.FINANCE (YFED) (@$0.0757)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve179524642023-08-20 0:43:59328 days ago1692492239IN
Yfed.Finance: YFED Token
0 ETH0.0003115412.91930782
Approve172200672023-05-09 2:56:35431 days ago1683600995IN
Yfed.Finance: YFED Token
0 ETH0.0019740181.85849298
Approve169692612023-04-03 15:03:59467 days ago1680534239IN
Yfed.Finance: YFED Token
0 ETH0.0010195142.27717165
Approve156768212022-10-04 19:21:23647 days ago1664911283IN
Yfed.Finance: YFED Token
0 ETH0.0004107617.03372143
Approve154791912022-09-05 17:44:07676 days ago1662399847IN
Yfed.Finance: YFED Token
0 ETH0.0002464410.21975206
Approve153321482022-08-13 7:38:57700 days ago1660376337IN
Yfed.Finance: YFED Token
0 ETH0.000401918.66209035
Approve152929332022-08-07 4:16:24706 days ago1659845784IN
Yfed.Finance: YFED Token
0 ETH0.000122985.09989908
Approve136546242021-11-20 22:54:04965 days ago1637448844IN
Yfed.Finance: YFED Token
0 ETH0.00477607102.93495587
Transfer136542552021-11-20 21:33:50965 days ago1637444030IN
Yfed.Finance: YFED Token
0 ETH0.0051073109
Transfer135831512021-11-09 16:17:06976 days ago1636474626IN
Yfed.Finance: YFED Token
0 ETH0.01043377222.6773891
Approve133492792021-10-03 23:49:201013 days ago1633304960IN
Yfed.Finance: YFED Token
0 ETH0.0032758370.60132035
Approve131198382021-08-29 10:29:501049 days ago1630232990IN
Yfed.Finance: YFED Token
0 ETH0.0028767362
Approve129735542021-08-06 20:31:311071 days ago1628281891IN
Yfed.Finance: YFED Token
0 ETH0.0024498652.8
Approve129254892021-07-30 6:53:071079 days ago1627627987IN
Yfed.Finance: YFED Token
0 ETH0.0013455729
Transfer129224772021-07-29 19:12:131079 days ago1627585933IN
Yfed.Finance: YFED Token
0 ETH0.0010996830
Transfer128872932021-07-24 5:59:341085 days ago1627106374IN
Yfed.Finance: YFED Token
0 ETH0.0002540713
Transfer128872862021-07-24 5:58:571085 days ago1627106337IN
Yfed.Finance: YFED Token
0 ETH0.0007230114
Transfer128872532021-07-24 5:50:541085 days ago1627105854IN
Yfed.Finance: YFED Token
0 ETH0.0005256712
Transfer128872472021-07-24 5:48:351085 days ago1627105715IN
Yfed.Finance: YFED Token
0 ETH0.0006132814
Approve128393652021-07-16 17:54:071092 days ago1626458047IN
Yfed.Finance: YFED Token
0 ETH0.0013919730
Approve127356712021-06-30 13:39:061109 days ago1625060346IN
Yfed.Finance: YFED Token
0 ETH0.0005103811
Approve126787252021-06-21 16:32:221117 days ago1624293142IN
Yfed.Finance: YFED Token
0 ETH0.0016870636.36000147
Approve126650452021-06-19 13:21:131120 days ago1624108873IN
Yfed.Finance: YFED Token
0 ETH0.0004639910
Approve126420162021-06-15 23:19:331123 days ago1623799173IN
Yfed.Finance: YFED Token
0 ETH0.0005103811
Approve126285102021-06-13 21:17:141125 days ago1623619034IN
Yfed.Finance: YFED Token
0 ETH0.0005246819.8
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
YFED

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-10-04
*/

pragma solidity ^0.4.24;

// ----------------------------------------------------------------------------
// 'YFED' token contract
//
// Deployed to : 0x376A93b6fE73E1a3CD53e07E283Bc83230fcB58e
// Symbol      : YFED
// Name        : YFED.FINANCE
// Total supply: 3500000000000
// Decimals    : 8
//
// Enjoy.
//
// ----------------------------------------------------------------------------


// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------
contract SafeMath {
    function safeAdd(uint a, uint b) public pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }
    function safeSub(uint a, uint b) public pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }
    function safeMul(uint a, uint b) public pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }
    function safeDiv(uint a, uint b) public pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }
}


// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
    function totalSupply() public constant returns (uint);
    function balanceOf(address tokenOwner) public constant returns (uint balance);
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


// ----------------------------------------------------------------------------
// Contract function to receive approval and execute function in one call
//
// Borrowed from MiniMeToken
// ----------------------------------------------------------------------------
contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes data) public;
}


// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

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

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}


// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ----------------------------------------------------------------------------
contract YFED is ERC20Interface, Owned, SafeMath {
    string public symbol;
    string public  name;
    uint8 public decimals;
    uint public _totalSupply;

    mapping(address => uint) balances;
    mapping(address => mapping(address => uint)) allowed;


    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor() public {
        symbol = "YFED";
        name = "YFED.FINANCE";
        decimals = 8;
        _totalSupply = 3500000000000;
        balances[0x376A93b6fE73E1a3CD53e07E283Bc83230fcB58e] = _totalSupply;
        emit Transfer(address(0), 0x376A93b6fE73E1a3CD53e07E283Bc83230fcB58e, _totalSupply);
    }


    // ------------------------------------------------------------------------
    // Total supply
    // ------------------------------------------------------------------------
    function totalSupply() public constant returns (uint) {
        return _totalSupply  - balances[address(0)];
    }


    // ------------------------------------------------------------------------
    // Get the token balance for account tokenOwner
    // ------------------------------------------------------------------------
    function balanceOf(address tokenOwner) public constant returns (uint balance) {
        return balances[tokenOwner];
    }


    // ------------------------------------------------------------------------
    // Transfer the balance from token owner's account to to account
    // - Owner's account must have sufficient balance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transfer(address to, uint tokens) public returns (bool success) {
        balances[msg.sender] = safeSub(balances[msg.sender], tokens);
        balances[to] = safeAdd(balances[to], tokens);
        emit Transfer(msg.sender, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for spender to transferFrom(...) tokens
    // from the token owner's account
    //
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
    // recommends that there are no checks for the approval double-spend attack
    // as this should be implemented in user interfaces 
    // ------------------------------------------------------------------------
    function approve(address spender, uint tokens) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Transfer tokens from the from account to the to account
    // 
    // The calling account must already have sufficient tokens approve(...)-d
    // for spending from the from account and
    // - From account must have sufficient balance to transfer
    // - Spender must have sufficient allowance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transferFrom(address from, address to, uint tokens) public returns (bool success) {
        balances[from] = safeSub(balances[from], tokens);
        allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens);
        balances[to] = safeAdd(balances[to], tokens);
        emit Transfer(from, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Returns the amount of tokens approved by the owner that can be
    // transferred to the spender's account
    // ------------------------------------------------------------------------
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining) {
        return allowed[tokenOwner][spender];
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for spender to transferFrom(...) tokens
    // from the token owner's account. The spender contract function
    // receiveApproval(...) is then executed
    // ------------------------------------------------------------------------
    function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data);
        return true;
    }


    // ------------------------------------------------------------------------
    // Don't accept ETH
    // ------------------------------------------------------------------------
    function () public payable {
        revert();
    }


    // ------------------------------------------------------------------------
    // Owner can transfer out any accidentally sent ERC20 tokens
    // ------------------------------------------------------------------------
    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20Interface(tokenAddress).transfer(owner, tokens);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeSub","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeDiv","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeMul","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeAdd","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b5060008054600160a060020a031916331790556040805180820190915260048082527f5946454400000000000000000000000000000000000000000000000000000000602090920191825261006791600291610146565b5060408051808201909152600c8082527f594645442e46494e414e4345000000000000000000000000000000000000000060209092019182526100ac91600391610146565b506004805460ff1916600817905565032ee841b800600581905573376a93b6fe73e1a3cd53e07e283bc83230fcb58e6000818152600660209081527fe09f222c601921bb8ce3cab28c8a3f8c9b8955e9dd784da7da64c48ded5f95638490556040805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36101e1565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061018757805160ff19168380011785556101b4565b828001600101855582156101b4579182015b828111156101b4578251825591602001919060010190610199565b506101c09291506101c4565b5090565b6101de91905b808211156101c057600081556001016101ca565b90565b610b71806101f06000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d857806323b872dd146101ff578063313ce567146102295780633eaaf86b1461025457806370a082311461026957806379ba50971461028a5780638da5cb5b146102a157806395d89b41146102d2578063a293d1e8146102e7578063a9059cbb14610302578063b5931f7c14610326578063cae9ca5114610341578063d05c78da146103aa578063d4ee1d90146103c5578063dc39d06d146103da578063dd62ed3e146103fe578063e6cb901314610425578063f2fde38b14610440575b600080fd5b34801561012257600080fd5b5061012b610461565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a03600435166024356104ef565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed610556565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c4600160a060020a0360043581169060243516604435610588565b34801561023557600080fd5b5061023e610681565b6040805160ff9092168252519081900360200190f35b34801561026057600080fd5b506101ed61068a565b34801561027557600080fd5b506101ed600160a060020a0360043516610690565b34801561029657600080fd5b5061029f6106ab565b005b3480156102ad57600080fd5b506102b6610733565b60408051600160a060020a039092168252519081900360200190f35b3480156102de57600080fd5b5061012b610742565b3480156102f357600080fd5b506101ed60043560243561079a565b34801561030e57600080fd5b506101c4600160a060020a03600435166024356107af565b34801561033257600080fd5b506101ed600435602435610853565b34801561034d57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101c4948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506108749650505050505050565b3480156103b657600080fd5b506101ed6004356024356109d5565b3480156103d157600080fd5b506102b66109fa565b3480156103e657600080fd5b506101c4600160a060020a0360043516602435610a09565b34801561040a57600080fd5b506101ed600160a060020a0360043581169060243516610ac4565b34801561043157600080fd5b506101ed600435602435610aef565b34801561044c57600080fd5b5061029f600160a060020a0360043516610aff565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104e75780601f106104bc576101008083540402835291602001916104e7565b820191906000526020600020905b8154815290600101906020018083116104ca57829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6000805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005540390565b600160a060020a0383166000908152600660205260408120546105ab908361079a565b600160a060020a03851660009081526006602090815260408083209390935560078152828220338352905220546105e2908361079a565b600160a060020a0380861660009081526007602090815260408083203384528252808320949094559186168152600690915220546106209083610aef565b600160a060020a0380851660008181526006602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60045460ff1681565b60055481565b600160a060020a031660009081526006602052604090205490565b600154600160a060020a031633146106c257600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104e75780601f106104bc576101008083540402835291602001916104e7565b6000828211156107a957600080fd5b50900390565b336000908152600660205260408120546107c9908361079a565b3360009081526006602052604080822092909255600160a060020a038516815220546107f59083610aef565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600080821161086157600080fd5b818381151561086c57fe5b049392505050565b336000818152600760209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b8381101561096457818101518382015260200161094c565b50505050905090810190601f1680156109915780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156109b357600080fd5b505af11580156109c7573d6000803e3d6000fd5b506001979650505050505050565b8181028215806109ef57508183828115156109ec57fe5b04145b151561055057600080fd5b600154600160a060020a031681565b60008054600160a060020a03163314610a2157600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610a9157600080fd5b505af1158015610aa5573d6000803e3d6000fd5b505050506040513d6020811015610abb57600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b8181018281101561055057600080fd5b600054600160a060020a03163314610b1657600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058209bf585525ca46a9e2316c8ab676f11f25dc6250463f6e5e6b788171ca8d724440029

Deployed Bytecode

0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d857806323b872dd146101ff578063313ce567146102295780633eaaf86b1461025457806370a082311461026957806379ba50971461028a5780638da5cb5b146102a157806395d89b41146102d2578063a293d1e8146102e7578063a9059cbb14610302578063b5931f7c14610326578063cae9ca5114610341578063d05c78da146103aa578063d4ee1d90146103c5578063dc39d06d146103da578063dd62ed3e146103fe578063e6cb901314610425578063f2fde38b14610440575b600080fd5b34801561012257600080fd5b5061012b610461565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a03600435166024356104ef565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed610556565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c4600160a060020a0360043581169060243516604435610588565b34801561023557600080fd5b5061023e610681565b6040805160ff9092168252519081900360200190f35b34801561026057600080fd5b506101ed61068a565b34801561027557600080fd5b506101ed600160a060020a0360043516610690565b34801561029657600080fd5b5061029f6106ab565b005b3480156102ad57600080fd5b506102b6610733565b60408051600160a060020a039092168252519081900360200190f35b3480156102de57600080fd5b5061012b610742565b3480156102f357600080fd5b506101ed60043560243561079a565b34801561030e57600080fd5b506101c4600160a060020a03600435166024356107af565b34801561033257600080fd5b506101ed600435602435610853565b34801561034d57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101c4948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506108749650505050505050565b3480156103b657600080fd5b506101ed6004356024356109d5565b3480156103d157600080fd5b506102b66109fa565b3480156103e657600080fd5b506101c4600160a060020a0360043516602435610a09565b34801561040a57600080fd5b506101ed600160a060020a0360043581169060243516610ac4565b34801561043157600080fd5b506101ed600435602435610aef565b34801561044c57600080fd5b5061029f600160a060020a0360043516610aff565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104e75780601f106104bc576101008083540402835291602001916104e7565b820191906000526020600020905b8154815290600101906020018083116104ca57829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6000805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005540390565b600160a060020a0383166000908152600660205260408120546105ab908361079a565b600160a060020a03851660009081526006602090815260408083209390935560078152828220338352905220546105e2908361079a565b600160a060020a0380861660009081526007602090815260408083203384528252808320949094559186168152600690915220546106209083610aef565b600160a060020a0380851660008181526006602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60045460ff1681565b60055481565b600160a060020a031660009081526006602052604090205490565b600154600160a060020a031633146106c257600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104e75780601f106104bc576101008083540402835291602001916104e7565b6000828211156107a957600080fd5b50900390565b336000908152600660205260408120546107c9908361079a565b3360009081526006602052604080822092909255600160a060020a038516815220546107f59083610aef565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600080821161086157600080fd5b818381151561086c57fe5b049392505050565b336000818152600760209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b8381101561096457818101518382015260200161094c565b50505050905090810190601f1680156109915780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156109b357600080fd5b505af11580156109c7573d6000803e3d6000fd5b506001979650505050505050565b8181028215806109ef57508183828115156109ec57fe5b04145b151561055057600080fd5b600154600160a060020a031681565b60008054600160a060020a03163314610a2157600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610a9157600080fd5b505af1158015610aa5573d6000803e3d6000fd5b505050506040513d6020811015610abb57600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b8181018281101561055057600080fd5b600054600160a060020a03163314610b1657600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058209bf585525ca46a9e2316c8ab676f11f25dc6250463f6e5e6b788171ca8d724440029

Deployed Bytecode Sourcemap

3572:5467:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8598:8;;;3655:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3655:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3655:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6145:208;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6145:208:0;-1:-1:-1;;;;;6145:208:0;;;;;;;;;;;;;;;;;;;;;;;;;4541:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4541:116:0;;;;;;;;;;;;;;;;;;;;6889:358;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6889:358:0;-1:-1:-1;;;;;6889:358:0;;;;;;;;;;;;3681:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3681:21:0;;;;;;;;;;;;;;;;;;;;;;;3709:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3709:24:0;;;;4882:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4882:124:0;-1:-1:-1;;;;;4882:124:0;;;;;3108:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3108:196:0;;;;;;2710:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2710:20:0;;;;;;;;-1:-1:-1;;;;;2710:20:0;;;;;;;;;;;;;;3628;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3628:20:0;;;;734:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;734:116:0;;;;;;;5355:277;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5355:277:0;-1:-1:-1;;;;;5355:277:0;;;;;;;992:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;992:115:0;;;;;;;8046:317;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8046:317:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8046:317:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8046:317:0;;-1:-1:-1;8046:317:0;;-1:-1:-1;;;;;;;8046:317:0;856:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;856:130:0;;;;;;;2737:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2737:23:0;;;;8852:184;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8852:184:0;-1:-1:-1;;;;;8852:184:0;;;;;;;7535:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7535:151:0;-1:-1:-1;;;;;7535:151:0;;;;;;;;;;612:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;612:116:0;;;;;;;3000:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3000:102:0;-1:-1:-1;;;;;3000:102:0;;;;;3655:19;;;;;;;;;;;;;;;-1:-1:-1;;3655:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6145:208::-;6241:10;6208:12;6233:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6233:28:0;;;;;;;;;;;:37;;;6286;;;;;;;6208:12;;6233:28;;6241:10;;6286:37;;;;;;;;-1:-1:-1;6341:4:0;6145:208;;;;;:::o;4541:116::-;4589:4;4629:20;;:8;:20;;;;4613:12;;:36;4541:116;:::o;6889:358::-;-1:-1:-1;;;;;7016:14:0;;6966:12;7016:14;;;:8;:14;;;;;;7008:31;;7032:6;7008:7;:31::i;:::-;-1:-1:-1;;;;;6991:14:0;;;;;;:8;:14;;;;;;;;:48;;;;7086:7;:13;;;;;7100:10;7086:25;;;;;;7078:42;;7113:6;7078:7;:42::i;:::-;-1:-1:-1;;;;;7050:13:0;;;;;;;:7;:13;;;;;;;;7064:10;7050:25;;;;;;;:70;;;;7154:12;;;;;:8;:12;;;;;7146:29;;7168:6;7146:7;:29::i;:::-;-1:-1:-1;;;;;7131:12:0;;;;;;;:8;:12;;;;;;;;;:44;;;;7191:26;;;;;;;7131:12;;7191:26;;;;;;;;;;;;;-1:-1:-1;7235:4:0;6889:358;;;;;:::o;3681:21::-;;;;;;:::o;3709:24::-;;;;:::o;4882:124::-;-1:-1:-1;;;;;4978:20:0;4946:12;4978:20;;;:8;:20;;;;;;;4882:124::o;3108:196::-;3175:8;;-1:-1:-1;;;;;3175:8:0;3161:10;:22;3153:31;;;;;;3228:8;;;3221:5;;3200:37;;-1:-1:-1;;;;;3228:8:0;;;;3221:5;;;;3200:37;;;3256:8;;;;3248:16;;-1:-1:-1;;3248:16:0;;;-1:-1:-1;;;;;3256:8:0;;3248:16;;;;3275:21;;;3108:196::o;2710:20::-;;;-1:-1:-1;;;;;2710:20:0;;:::o;3628:::-;;;;;;;;;;;;;;-1:-1:-1;;3628:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734:116;788:6;815;;;;807:15;;;;;;-1:-1:-1;837:5:0;;;734:116::o;5355:277::-;5479:10;5414:12;5470:20;;;:8;:20;;;;;;5462:37;;5492:6;5462:7;:37::i;:::-;5448:10;5439:20;;;;:8;:20;;;;;;:60;;;;-1:-1:-1;;;;;5533:12:0;;;;;;5525:29;;5547:6;5525:7;:29::i;:::-;-1:-1:-1;;;;;5510:12:0;;;;;;:8;:12;;;;;;;;;:44;;;;5570:32;;;;;;;5510:12;;5579:10;;5570:32;;;;;;;;;;-1:-1:-1;5620:4:0;5355:277;;;;:::o;992:115::-;1046:6;1073:5;;;1065:14;;;;;;1098:1;1094;:5;;;;;;;;;992:115;-1:-1:-1;;;992:115:0:o;8046:317::-;8161:10;8128:12;8153:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8153:28:0;;;;;;;;;;;:37;;;8206;;;;;;;8128:12;;8153:28;;8161:10;;8206:37;;;;;;;;8254:79;;;;;8302:10;8254:79;;;;;;;;;;;;8322:4;8254:79;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8254:47:0;;;;;8302:10;8314:6;;8322:4;8328;;8254:79;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8254:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8254:79:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;8351:4:0;;8046:317;-1:-1:-1;;;;;;;8046:317:0:o;856:130::-;933:5;;;957:6;;;:20;;;976:1;971;967;:5;;;;;;;;:10;957:20;949:29;;;;;;;2737:23;;;-1:-1:-1;;;;;2737:23:0;;:::o;8852:184::-;8944:12;2966:5;;-1:-1:-1;;;;;2966:5:0;2952:10;:19;2944:28;;;;;;9014:5;;;8976:52;;;;;;-1:-1:-1;;;;;9014:5:0;;;8976:52;;;;;;;;;;;;:37;;;;;;:52;;;;;;;;;;;;;;;;;:37;:52;;;5:2:-1;;;;30:1;27;20:12;5:2;8976:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8976:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8976:52:0;;8852:184;-1:-1:-1;;;8852:184:0:o;7535:151::-;-1:-1:-1;;;;;7650:19:0;;;7616:14;7650:19;;;:7;:19;;;;;;;;:28;;;;;;;;;;;;;7535:151::o;612:116::-;689:5;;;713:6;;;;705:15;;;;;3000:102;2966:5;;-1:-1:-1;;;;;2966:5:0;2952:10;:19;2944:28;;;;;;3074:8;:20;;-1:-1:-1;;3074:20:0;-1:-1:-1;;;;;3074:20:0;;;;;;;;;;3000:102::o

Swarm Source

bzzr://9bf585525ca46a9e2316c8ab676f11f25dc6250463f6e5e6b788171ca8d72444

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

Yfed platform aims to feature two types of staking - regular staking and fixed deposit staking. YFED will serve as governance token.

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.