Transaction Hash:
Block:
13611130 at Nov-14-2021 01:38:21 AM +UTC
Transaction Fee:
0.006125310198231257 ETH
$12.63
Gas Used:
51,491 Gas / 118.958851027 Gwei
Emitted Events:
| 39 |
ArdCoin.Transfer( from=[Sender] 0x36effd84dff5ea65ee8c7cbba4964b7e44c16ac6, to=0xA85d72BF9d5ba6F247574e1A66137272BdaCa32a, tokens=2000923 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x36Effd84...e44C16aC6 |
167.388162574811229426 Eth
Nonce: 2300
|
167.382037264612998169 Eth
Nonce: 2301
| 0.006125310198231257 | ||
|
0x7F101fE4...353f2B90c
Miner
| (Flexpool.io) | 4,064.991945926523949242 Eth | 4,064.992151890523949242 Eth | 0.000205964 | |
| 0xB8E2e210...d19910647 |
Execution Trace
ArdCoin.transfer( to=0xA85d72BF9d5ba6F247574e1A66137272BdaCa32a, tokens=2000923 ) => ( success=True )
transfer[ArdCoin (ln:118)]
sub[ArdCoin (ln:119)]add[ArdCoin (ln:120)]Transfer[ArdCoin (ln:121)]
pragma solidity ^0.5.11;
// ----------------------------------------------------------------------------
// ArdCoin contract
//
// Symbol : ARDX
// Name : ArdCoin
// Total supply: 5,158,308,000.00
// Decimals : 2
//
// Implementation of the basic ERC20 token.
// https://github.com/ethereum/EIPs/issues/20
// Based on code by BokkyPooBah: https://github.com/bokkypoobah/Tokens/blob/master/contracts/FixedSupplyToken.sol
// Copyright (c) 2017 BokkyPooBah / Bok Consulting Pty Ltd, The MIT License
// Copyright (c) 2016-2019 zOS Global Limited, The MIT License
// Copyright (c) 2019 DataScience Ltd, The MIT License
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Safe math lib
// ----------------------------------------------------------------------------
library SafeMath {
function add(uint a, uint b) internal pure returns (uint c) {
c = a + b;
require(c >= a);
}
function sub(uint a, uint b) internal pure returns (uint c) {
require(b <= a);
c = a - b;
}
function mul(uint a, uint b) internal pure returns (uint c) {
c = a * b;
require(a == 0 || c / a == b);
}
function div(uint a, uint b) internal 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.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
function totalSupply() public view returns (uint);
function balanceOf(address tokenOwner) public view returns (uint balance);
function allowance(address tokenOwner, address spender) public view 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);
}
// ----------------------------------------------------------------------------
// Ownable contract
// ----------------------------------------------------------------------------
contract Ownable {
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 a
// fixed supply that can be minted or burned later
// ----------------------------------------------------------------------------
contract ArdCoin is ERC20Interface, Ownable {
using SafeMath for uint;
string public symbol;
string public name;
uint8 public decimals;
uint totalSupply_;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
constructor(string memory _symbol, string memory _name, uint _supply, uint8 _decimals) public {
symbol = _symbol;
name = _name;
decimals = _decimals;
totalSupply_ = _supply * 10**uint(decimals);
balances[owner] = totalSupply_;
emit Transfer(address(0), owner, totalSupply_);
}
function totalSupply() public view returns (uint) {
return totalSupply_.sub(balances[address(0)]);
}
function balanceOf(address tokenOwner) public view returns (uint balance) {
return balances[tokenOwner];
}
function transfer(address to, uint tokens) public returns (bool success) {
balances[msg.sender] = balances[msg.sender].sub(tokens);
balances[to] = balances[to].add(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] = balances[from].sub(tokens);
allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens);
balances[to] = balances[to].add(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 view returns (uint remaining) {
return allowed[tokenOwner][spender];
}
// ------------------------------------------------------------------------
// Don't accept ETH
// ------------------------------------------------------------------------
function () external payable {
revert();
}
// ------------------------------------------------------------------------
// Burning & Minting
// ------------------------------------------------------------------------
event Mint(address indexed to, uint amount);
event MintFinished();
event MintOpened();
event Burn(address indexed burner, uint value);
bool public mintingFinished = false;
modifier canMint() {
require(!mintingFinished);
_;
}
// ------------------------------------------------------------------------
// Function to mint new tokens
// ------------------------------------------------------------------------
function mint(address _to, uint _amount) onlyOwner canMint public returns (bool) {
totalSupply_ = totalSupply_.add(_amount);
balances[_to] = balances[_to].add(_amount);
emit Mint(_to, _amount);
emit Transfer(address(0), _to, _amount);
return true;
}
// ------------------------------------------------------------------------
// Function to stop minting new tokens
// ------------------------------------------------------------------------
function finishMinting() onlyOwner canMint public returns (bool) {
mintingFinished = true;
emit MintFinished();
return true;
}
// ------------------------------------------------------------------------
// Function to continue minting new tokens
// ------------------------------------------------------------------------
function openMinting() onlyOwner public returns (bool) {
mintingFinished = false;
emit MintOpened();
return true;
}
// ------------------------------------------------------------------------
// Burns a specific amount of tokens
// ------------------------------------------------------------------------
function burn(uint _value) public {
_burn(msg.sender, _value);
}
function _burn(address _who, uint _value) internal {
require(_value <= balances[_who]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
balances[_who] = balances[_who].sub(_value);
totalSupply_ = totalSupply_.sub(_value);
emit Burn(_who, _value);
emit Transfer(_who, address(0), _value);
}
}