ERC-20
Protocol
Overview
Max Total Supply
52,839,425.67105698669337335 TLN
Holders
648 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
191.536496462790843339 TLNValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TrustlinesNetworkToken
Compiler Version
v0.5.8+commit.23d335f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-11-14 */ pragma solidity ^0.5.8; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /* This file incorporates code covered by the following terms: The MIT License (MIT) Copyright (c) 2016-2019 zOS Global Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */ contract TrustlinesNetworkToken { using SafeMath for uint256; // We use MAX_UINT value for an approval of infinite value uint constant MAX_UINT = 2 ** 256 - 1; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value ); constructor( string memory name, string memory symbol, uint8 decimals, address preMintAddress, uint256 preMintAmount ) public { _name = name; _symbol = symbol; _decimals = decimals; _mint(preMintAddress, preMintAmount); } /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } /** * @dev Returns the amount of tokens in existence. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * Approve with a value of `MAX_UINT = 2 ** 256 - 1` will symbolize * an approval of infinite value. * * IMPORTANT:to prevent the risk that someone may use both the old and * the new allowance by unfortunate transaction ordering, * the approval must be set to 0 before it can be changed to any * different desired value. * * see: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) public returns (bool) { require( value == 0 || _allowances[msg.sender][spender] == 0, "ERC20: approve only to or from 0 value" ); _approve(msg.sender, spender, value); return true; } /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance unless the allowance is `MAX_UINT = 2 ** 256 - 1`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); uint _allowance = _allowances[sender][msg.sender]; if (_allowance < MAX_UINT) { uint updatedAllowance = _allowance.sub(amount); _approve(sender, msg.sender, updatedAllowance); } return true; } function burn(uint256 amount) public { _burn(msg.sender, amount); } function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } } /* This file incorporates code covered by the following terms: The MIT License (MIT) Copyright (c) 2016-2019 zOS Global Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","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":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"preMintAddress","type":"address"},{"name":"preMintAmount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000f0b38038062000f0b833981018060405260a08110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b50506020808301516040840151606090940151875193965090945091620000f99160009190880190620002d8565b5083516200010f906001906020870190620002d8565b506002805460ff191660ff85161790556200013282826200013d602090811b901c565b50505050506200037d565b6001600160a01b038216620001b357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001cf816003546200025c60201b62000a021790919060201c565b6003556001600160a01b0382166000908152600460209081526040909120546200020491839062000a026200025c821b17901c565b6001600160a01b03831660008181526004602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620002d157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200031b57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034b5782518255916020019190600101906200032e565b50620003599291506200035d565b5090565b6200037a91905b8082111562000359576000815560010162000364565b90565b610b7e806200038d6000396000f3fe608060405234801561001057600080fd5b50600436106100be5760003560e01c806342966c681161007657806395d89b411161005b57806395d89b411461025a578063a9059cbb14610262578063dd62ed3e1461029b576100be565b806342966c681461020857806370a0823114610227576100be565b806318160ddd116100a757806318160ddd1461018d57806323b872dd146101a7578063313ce567146101ea576100be565b806306fdde03146100c3578063095ea7b314610140575b600080fd5b6100cb6102d6565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101055781810151838201526020016100ed565b50505050905090810190601f1680156101325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101796004803603604081101561015657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561036c565b604080519115158252519081900360200190f35b610195610412565b60408051918252519081900360200190f35b610179600480360360608110156101bd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610418565b6101f261048c565b6040805160ff9092168252519081900360200190f35b6102256004803603602081101561021e57600080fd5b5035610495565b005b6101956004803603602081101561023d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166104a2565b6100cb6104ca565b6101796004803603604081101561027857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561052a565b610195600480360360408110156102b157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610537565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103625780601f1061033757610100808354040283529160200191610362565b820191906000526020600020905b81548152906001019060200180831161034557829003601f168201915b5050505050905090565b60008115806103a9575033600090815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152902054155b6103fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180610ac36026913960400191505060405180910390fd5b61040933848461056f565b50600192915050565b60035490565b60006104258484846106b6565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600560209081526040808320338452909152902054600019811015610481576000610472828563ffffffff61086f16565b905061047f86338361056f565b505b506001949350505050565b60025460ff1690565b61049f33826108e6565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156103625780601f1061033757610100808354040283529160200191610362565b60006104093384846106b6565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff83166105db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180610b2f6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610647576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610aa16022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180610b0a6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661078e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610a7e6023913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260409020546107c4908263ffffffff61086f16565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600460205260408082209390935590841681522054610806908263ffffffff610a0216565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156108e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b73ffffffffffffffffffffffffffffffffffffffff8216610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610ae96021913960400191505060405180910390fd5b600354610965908263ffffffff61086f16565b60035573ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205461099e908263ffffffff61086f16565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600460209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600082820183811015610a7657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a20617070726f7665206f6e6c7920746f206f722066726f6d20302076616c756545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820f56f74b3f386b29bcbfa5f1114da3d3e3d43f988c13ac77d86c83a829067047a002900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000f7f816687911f61f25bccf431cfc754c186ae382000000000000000000000000000000000000000000422ca8b0a00a4250000000000000000000000000000000000000000000000000000000000000000000001854727573746c696e6573204e6574776f726b20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000003544c4e0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100be5760003560e01c806342966c681161007657806395d89b411161005b57806395d89b411461025a578063a9059cbb14610262578063dd62ed3e1461029b576100be565b806342966c681461020857806370a0823114610227576100be565b806318160ddd116100a757806318160ddd1461018d57806323b872dd146101a7578063313ce567146101ea576100be565b806306fdde03146100c3578063095ea7b314610140575b600080fd5b6100cb6102d6565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101055781810151838201526020016100ed565b50505050905090810190601f1680156101325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101796004803603604081101561015657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561036c565b604080519115158252519081900360200190f35b610195610412565b60408051918252519081900360200190f35b610179600480360360608110156101bd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610418565b6101f261048c565b6040805160ff9092168252519081900360200190f35b6102256004803603602081101561021e57600080fd5b5035610495565b005b6101956004803603602081101561023d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166104a2565b6100cb6104ca565b6101796004803603604081101561027857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561052a565b610195600480360360408110156102b157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610537565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103625780601f1061033757610100808354040283529160200191610362565b820191906000526020600020905b81548152906001019060200180831161034557829003601f168201915b5050505050905090565b60008115806103a9575033600090815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152902054155b6103fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180610ac36026913960400191505060405180910390fd5b61040933848461056f565b50600192915050565b60035490565b60006104258484846106b6565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600560209081526040808320338452909152902054600019811015610481576000610472828563ffffffff61086f16565b905061047f86338361056f565b505b506001949350505050565b60025460ff1690565b61049f33826108e6565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156103625780601f1061033757610100808354040283529160200191610362565b60006104093384846106b6565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff83166105db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180610b2f6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610647576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610aa16022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180610b0a6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661078e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610a7e6023913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260409020546107c4908263ffffffff61086f16565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600460205260408082209390935590841681522054610806908263ffffffff610a0216565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156108e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b73ffffffffffffffffffffffffffffffffffffffff8216610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610ae96021913960400191505060405180910390fd5b600354610965908263ffffffff61086f16565b60035573ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205461099e908263ffffffff61086f16565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600460209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600082820183811015610a7657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a20617070726f7665206f6e6c7920746f206f722066726f6d20302076616c756545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820f56f74b3f386b29bcbfa5f1114da3d3e3d43f988c13ac77d86c83a829067047a0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000f7f816687911f61f25bccf431cfc754c186ae382000000000000000000000000000000000000000000422ca8b0a00a4250000000000000000000000000000000000000000000000000000000000000000000001854727573746c696e6573204e6574776f726b20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000003544c4e0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Trustlines Network Token
Arg [1] : symbol (string): TLN
Arg [2] : decimals (uint8): 18
Arg [3] : preMintAddress (address): 0xF7F816687911f61f25BCCf431cfC754C186ae382
Arg [4] : preMintAmount (uint256): 80000000000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000f7f816687911f61f25bccf431cfc754c186ae382
Arg [4] : 000000000000000000000000000000000000000000422ca8b0a00a4250000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [6] : 54727573746c696e6573204e6574776f726b20546f6b656e0000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 544c4e0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
4352:5691:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4352:5691:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5945:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;5945:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7441:298;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7441:298:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6294:91;;;:::i;:::-;;;;;;;;;;;;;;;;8099:428;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8099:428:0;;;;;;;;;;;;;;;;;;:::i;6131:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8535:81;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8535:81:0;;:::i;:::-;;5383:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5383:110:0;;;;:::i;6036:87::-;;;:::i;6608:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6608:156:0;;;;;;;;;:::i;5771:166::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5771:166:0;;;;;;;;;;;:::i;5945:83::-;6015:5;6008:12;;;;;;;;-1:-1:-1;;6008:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5982:13;;6008:12;;6015:5;;6008:12;;6015:5;6008:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5945:83;:::o;7441:298::-;7506:4;7545:10;;;:51;;-1:-1:-1;7571:10:0;7559:23;;;;:11;:23;;;;;;;;;:32;;;;;;;;;;:37;7545:51;7523:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7673:36;7682:10;7694:7;7703:5;7673:8;:36::i;:::-;-1:-1:-1;7727:4:0;7441:298;;;;:::o;6294:91::-;6365:12;;6294:91;:::o;8099:428::-;8206:4;8228:36;8238:6;8246:9;8257:6;8228:9;:36::i;:::-;8295:19;;;8277:15;8295:19;;;:11;:19;;;;;;;;8315:10;8295:31;;;;;;;;-1:-1:-1;;8341:21:0;;8337:161;;;8379:21;8403:22;:10;8418:6;8403:22;:14;:22;:::i;:::-;8379:46;;8440;8449:6;8457:10;8469:16;8440:8;:46::i;:::-;8337:161;;-1:-1:-1;8515:4:0;;8099:428;-1:-1:-1;;;;8099:428:0:o;6131:83::-;6197:9;;;;6131:83;:::o;8535:81::-;8583:25;8589:10;8601:6;8583:5;:25::i;:::-;8535:81;:::o;5383:110::-;5467:18;;5440:7;5467:18;;;:9;:18;;;;;;;5383:110::o;6036:87::-;6108:7;6101:14;;;;;;;;-1:-1:-1;;6101:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6075:13;;6101:14;;6108:7;;6101:14;;6108:7;6101:14;;;;;;;;;;;;;;;;;;;;;;;;6608:156;6677:4;6694:40;6704:10;6716:9;6727:6;6694:9;:40::i;5771:166::-;5902:18;;;;5870:7;5902:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5771:166::o;9391:335::-;9484:19;;;9476:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9563:21;;;9555:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9636:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;9687:31;;;;;;;;;;;;;;;;;9391:335;;;:::o;8940:443::-;9052:20;;;9044:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9133:23;;;9125:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9229:17;;;;;;;:9;:17;;;;;;:29;;9251:6;9229:29;:21;:29;:::i;:::-;9209:17;;;;;;;;:9;:17;;;;;;:49;;;;9292:20;;;;;;;:32;;9317:6;9292:32;:24;:32;:::i;:::-;9269:20;;;;;;;;:9;:20;;;;;;;;;:55;;;;9340:35;;;;;;;9269:20;;9340:35;;;;;;;;;;;;;8940:443;;;:::o;1315:184::-;1373:7;1406:1;1401;:6;;1393:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1465:5:0;;;1315:184::o;9734:306::-;9809:21;;;9801:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9896:12;;:23;;9913:5;9896:23;:16;:23;:::i;:::-;9881:12;:38;9951:18;;;;;;;:9;:18;;;;;;:29;;9974:5;9951:29;:22;:29;:::i;:::-;9930:18;;;;;;;:9;:18;;;;;;;;:50;;;;9996:36;;;;;;;9930:18;;9996:36;;;;;;;;;;;9734:306;;:::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:1;859:181;-1:-1:-1;;;859:181:0:o
Swarm Source
bzzr://f56f74b3f386b29bcbfa5f1114da3d3e3d43f988c13ac77d86c83a829067047a
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.