Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 11 from a total of 11 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Sell | 3329742 | 3292 days ago | IN | 0 ETH | 0.00175328 | ||||
| Set Prices | 3329738 | 3292 days ago | IN | 0 ETH | 0.00071471 | ||||
| Sell | 3329732 | 3292 days ago | IN | 0.028 ETH | 0.00119273 | ||||
| Set Prices | 3329727 | 3292 days ago | IN | 0.028 ETH | 0.00119273 | ||||
| Buy | 3329709 | 3292 days ago | IN | 0.028 ETH | 0.0014286 | ||||
| Set Prices | 3329707 | 3292 days ago | IN | 0 ETH | 0.00134545 | ||||
| Set Prices | 3329697 | 3292 days ago | IN | 0 ETH | 0.0013402 | ||||
| Buy | 3329684 | 3292 days ago | IN | 0.3 ETH | 0.0014286 | ||||
| Transfer | 3329670 | 3292 days ago | IN | 0 ETH | 0.00151667 | ||||
| Buy | 3329659 | 3292 days ago | IN | 0.3 ETH | 0.00119273 | ||||
| Set Prices | 3329654 | 3292 days ago | IN | 0 ETH | 0.0025702 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 3329742 | 3292 days ago | 0.3275 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TSwap
Compiler Version
v0.4.6+commit.2dabbdf0
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2017-03-11
*/
pragma solidity ^0.4.6;
contract owned {
address public owner;
function owned() {
owner = msg.sender;
}
modifier onlyOwner {
if (msg.sender != owner) throw;
_;
}
function transferOwnership(address newOwner) onlyOwner {
owner = newOwner;
}
}
contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }
contract token {
/* Public variables of the token */
string public standard = 'Token 0.1';
string public name;
string public symbol;
uint8 public decimals;
uint256 public totalSupply;
/* This creates an array with all balances */
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
/* This generates a public event on the blockchain that will notify clients */
event Transfer(address indexed from, address indexed to, uint256 value);
/* Initializes contract with initial supply tokens to the creator of the contract */
function token(
uint256 initialSupply,
string tokenName,
uint8 decimalUnits,
string tokenSymbol
) {
balanceOf[msg.sender] = initialSupply; // Give the creator all initial tokens
totalSupply = initialSupply; // Update total supply
name = tokenName; // Set the name for display purposes
symbol = tokenSymbol; // Set the symbol for display purposes
decimals = decimalUnits; // Amount of decimals for display purposes
}
/* Send coins */
function transfer(address _to, uint256 _value) {
if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough
if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
balanceOf[msg.sender] -= _value; // Subtract from the sender
balanceOf[_to] += _value; // Add the same to the recipient
Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place
}
/* Allow another contract to spend some tokens in your behalf */
function approve(address _spender, uint256 _value)
returns (bool success) {
allowance[msg.sender][_spender] = _value;
tokenRecipient spender = tokenRecipient(_spender);
return true;
}
/* Approve and then comunicate the approved contract in a single tx */
function approveAndCall(address _spender, uint256 _value, bytes _extraData)
returns (bool success) {
tokenRecipient spender = tokenRecipient(_spender);
if (approve(_spender, _value)) {
spender.receiveApproval(msg.sender, _value, this, _extraData);
return true;
}
}
/* A contract attempts to get the coins */
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
if (balanceOf[_from] < _value) throw; // Check if the sender has enough
if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
if (_value > allowance[_from][msg.sender]) throw; // Check allowance
balanceOf[_from] -= _value; // Subtract from the sender
balanceOf[_to] += _value; // Add the same to the recipient
allowance[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
}
/* This unnamed function is called whenever someone tries to send ether to it */
function () {
throw; // Prevents accidental sending of ether
}
}
contract TSwap is owned, token {
uint256 public sellPrice;
uint256 public buyPrice;
uint256 public totalSupply;
mapping (address => bool) public frozenAccount;
/* This generates a public event on the blockchain that will notify clients */
event FrozenFunds(address target, bool frozen);
/* Initializes contract with initial supply tokens to the creator of the contract */
function TSwap(
uint256 initialSupply,
string tokenName,
uint8 decimalUnits,
string tokenSymbol,
address centralMinter
) token (initialSupply, tokenName, decimalUnits, tokenSymbol) {
if(centralMinter != 0 ) owner = centralMinter; // Sets the owner as specified (if centralMinter is not specified the owner is msg.sender)
balanceOf[owner] = initialSupply; // Give the owner all initial tokens
}
/* Send coins */
function transfer(address _to, uint256 _value) {
if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough
if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
if (frozenAccount[msg.sender]) throw; // Check if frozen
balanceOf[msg.sender] -= _value; // Subtract from the sender
balanceOf[_to] += _value; // Add the same to the recipient
Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place
}
/* A contract attempts to get the coins */
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
if (frozenAccount[_from]) throw; // Check if frozen
if (balanceOf[_from] < _value) throw; // Check if the sender has enough
if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
if (_value > allowance[_from][msg.sender]) throw; // Check allowance
balanceOf[_from] -= _value; // Subtract from the sender
balanceOf[_to] += _value; // Add the same to the recipient
allowance[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
}
function mintToken(address target, uint256 mintedAmount) onlyOwner {
balanceOf[target] += mintedAmount;
totalSupply += mintedAmount;
Transfer(0, this, mintedAmount);
Transfer(this, target, mintedAmount);
}
function freezeAccount(address target, bool freeze) onlyOwner {
frozenAccount[target] = freeze;
FrozenFunds(target, freeze);
}
function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner {
sellPrice = newSellPrice;
buyPrice = newBuyPrice;
}
function buy() payable {
uint amount = msg.value / buyPrice; // calculates the amount
if (balanceOf[this] < amount) throw; // checks if it has enough to sell
balanceOf[msg.sender] += amount; // adds the amount to buyer's balance
balanceOf[this] -= amount; // subtracts amount from seller's balance
Transfer(this, msg.sender, amount); // execute an event reflecting the change
}
function sell(uint256 amount) {
if (balanceOf[msg.sender] < amount ) throw; // checks if the sender has enough to sell
balanceOf[this] += amount; // adds the amount to owner's balance
balanceOf[msg.sender] -= amount; // subtracts the amount from seller's balance
if (!msg.sender.send(amount * sellPrice)) { // sends ether to the seller. It's important
throw; // to do this last to avoid recursion attacks
} else {
Transfer(msg.sender, this, amount); // executes an event reflecting on the change
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"},{"name":"centralMinter","type":"address"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"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"}]Contract Creation Code
60a0604052600960608190527f546f6b656e20302e31000000000000000000000000000000000000000000000060809081526001805460008290527f546f6b656e20302e310000000000000000000000000000000000000000000012825590927fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf66020600284871615610100026000190190941693909304601f0192909204820192909190620000da565b82800160010185558215620000da579182015b82811115620000da578251825591602001919060010190620000bd565b5b50620000fe9291505b80821115620000fa5760008155600101620000e4565b5090565b5050346200000057604051620010953803806200109583398101604090815281516020830151918301516060840151608085015192949384019391929101905b848484845b5b60008054600160a060020a0319166c01000000000000000000000000338102041790555b33600160a060020a031660009081526006602090815260408220869055600586905584516002805493819052927f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace60018216156101000260001901909116849004601f908101849004820193880190839010620001f157805160ff191683800117855562000221565b8280016001018555821562000221579182015b828111156200022157825182559160200191906001019062000204565b5b50620002459291505b80821115620000fa5760008155600101620000e4565b5090565b50508060039080519060200190828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200029557805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c5578251825591602001919060010190620002a8565b5b50620002e99291505b80821115620000fa5760008155600101620000e4565b5090565b50506004805460ff19167f0100000000000000000000000000000000000000000000000000000000000000848102041790555b50505050600160a060020a03811615620003545760008054600160a060020a0319166c01000000000000000000000000838102041790555b60008054600160a060020a031681526006602052604090208590555b50505050505b610d1080620003856000396000f3606060405236156100fb5760e060020a600035046305fefda7811461010d57806306fdde0314610122578063095ea7b31461019d57806318160ddd146101c457806323b872dd146101e3578063313ce5671461020d5780634b750334146102305780635a3b7e421461024f57806370a08231146102ca57806379c65068146102ec5780638620410b146103015780638da5cb5b1461032057806395d89b4114610349578063a6f2ae3a146103c4578063a9059cbb146103ce578063b414d4b6146103e3578063cae9ca5114610407578063dd62ed3e14610472578063e4849b3214610497578063e724529c146104a9578063f2fde38b146104be575b346100005761010b5b610000565b565b005b346100005761010b6004356024356104d0565b005b346100005761012f6104fb565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101b0600435602435610586565b604080519115158252519081900360200190f35b34610000576101d16105b9565b60408051918252519081900360200190f35b34610000576101b06004356024356044356105bf565b604080519115158252519081900360200190f35b346100005761021a6106df565b6040805160ff9092168252519081900360200190f35b34610000576101d16106e8565b60408051918252519081900360200190f35b346100005761012f6106ee565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101d160043561077b565b60408051918252519081900360200190f35b346100005761010b60043560243561078d565b005b34610000576101d1610836565b60408051918252519081900360200190f35b346100005761032d61083c565b60408051600160a060020a039092168252519081900360200190f35b346100005761012f61084b565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61010b6108d9565b005b346100005761010b60043560243561096c565b005b34610000576101b0600435610a39565b604080519115158252519081900360200190f35b3461000057604080516020600460443581810135601f81018490048402850184019095528484526101b0948235946024803595606494929391909201918190840183828082843750949650610a4e95505050505050565b604080519115158252519081900360200190f35b34610000576101d1600435602435610b39565b60408051918252519081900360200190f35b346100005761010b600435610b56565b005b346100005761010b600435602435610c19565b005b346100005761010b600435610ca0565b005b60005433600160a060020a039081169116146104eb57610000565b600882905560098190555b5b5050565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b600160a060020a0333811660009081526007602090815260408083209386168352929052208190556001825b5092915050565b600a5481565b600160a060020a0383166000908152600b602052604081205460ff16156105e557610000565b600160a060020a0384166000908152600660205260409020548290101561060b57610000565b600160a060020a038316600090815260066020526040902054828101101561063257610000565b600160a060020a038085166000908152600760209081526040808320339094168352929052205482111561066557610000565b600160a060020a0380851660008181526006602090815260408083208054889003905587851680845281842080548901905584845260078352818420339096168452948252918290208054879003905581518681529151600080516020610cf08339815191529281900390910190a35060015b9392505050565b60045460ff1681565b60085481565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b60066020526000908152604090205481565b60005433600160a060020a039081169116146107a857610000565b600160a060020a038083166000908152600660209081526040808320805486019055600a805486019055805185815290513090941693600080516020610cf0833981519152929181900390910190a381600160a060020a031630600160a060020a0316600080516020610cf0833981519152836040518082815260200191505060405180910390a35b5b5050565b60095481565b600054600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b600060095434811561000057049050806006600030600160a060020a0316815260200190815260200160002054101561091157610000565b600160a060020a0333811660008181526006602090815260408083208054870190553090941680835291849020805486900390558351858152935192939192600080516020610cf08339815191529281900390910190a35b50565b600160a060020a0333166000908152600660205260409020548190101561099257610000565b600160a060020a03821660009081526006602052604090205481810110156109b957610000565b600160a060020a0333166000908152600b602052604090205460ff16156109df57610000565b600160a060020a0333811660008181526006602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610cf0833981519152929081900390910190a35b5050565b600b6020526000908152604090205460ff1681565b600083610a5b8185610586565b15610b305780600160a060020a0316638f4ffcb1338630876040518560e060020a0281526004018085600160a060020a0316815260200184815260200183600160a060020a03168152602001806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f168015610b035780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b156100005760325a03f11561000057505050600191505b5b509392505050565b600760209081526000928352604080842090915290825290205481565b600160a060020a03331660009081526006602052604090205481901015610b7c57610000565b600160a060020a03308116600090815260066020526040808220805485019055339092168082528282208054859003905560085492519092840280156108fc0292909190818181858888f193505050501515610bdb5761000056610969565b30600160a060020a031633600160a060020a0316600080516020610cf0833981519152836040518082815260200191505060405180910390a35b5b50565b60005433600160a060020a03908116911614610c3457610000565b600160a060020a0382166000818152600b6020908152604091829020805460ff191660f860020a8681020417905581519283528315159083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b60005433600160a060020a03908116911614610cbb57610000565b6000805473ffffffffffffffffffffffffffffffffffffffff19166c01000000000000000000000000838102041790555b5b5056ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000002197f4e4554dac0ac7468089645959304ba16a95000000000000000000000000000000000000000000000000000000000000000c542d537761702d546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005542d532d54000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156100fb5760e060020a600035046305fefda7811461010d57806306fdde0314610122578063095ea7b31461019d57806318160ddd146101c457806323b872dd146101e3578063313ce5671461020d5780634b750334146102305780635a3b7e421461024f57806370a08231146102ca57806379c65068146102ec5780638620410b146103015780638da5cb5b1461032057806395d89b4114610349578063a6f2ae3a146103c4578063a9059cbb146103ce578063b414d4b6146103e3578063cae9ca5114610407578063dd62ed3e14610472578063e4849b3214610497578063e724529c146104a9578063f2fde38b146104be575b346100005761010b5b610000565b565b005b346100005761010b6004356024356104d0565b005b346100005761012f6104fb565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101b0600435602435610586565b604080519115158252519081900360200190f35b34610000576101d16105b9565b60408051918252519081900360200190f35b34610000576101b06004356024356044356105bf565b604080519115158252519081900360200190f35b346100005761021a6106df565b6040805160ff9092168252519081900360200190f35b34610000576101d16106e8565b60408051918252519081900360200190f35b346100005761012f6106ee565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101d160043561077b565b60408051918252519081900360200190f35b346100005761010b60043560243561078d565b005b34610000576101d1610836565b60408051918252519081900360200190f35b346100005761032d61083c565b60408051600160a060020a039092168252519081900360200190f35b346100005761012f61084b565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61010b6108d9565b005b346100005761010b60043560243561096c565b005b34610000576101b0600435610a39565b604080519115158252519081900360200190f35b3461000057604080516020600460443581810135601f81018490048402850184019095528484526101b0948235946024803595606494929391909201918190840183828082843750949650610a4e95505050505050565b604080519115158252519081900360200190f35b34610000576101d1600435602435610b39565b60408051918252519081900360200190f35b346100005761010b600435610b56565b005b346100005761010b600435602435610c19565b005b346100005761010b600435610ca0565b005b60005433600160a060020a039081169116146104eb57610000565b600882905560098190555b5b5050565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b600160a060020a0333811660009081526007602090815260408083209386168352929052208190556001825b5092915050565b600a5481565b600160a060020a0383166000908152600b602052604081205460ff16156105e557610000565b600160a060020a0384166000908152600660205260409020548290101561060b57610000565b600160a060020a038316600090815260066020526040902054828101101561063257610000565b600160a060020a038085166000908152600760209081526040808320339094168352929052205482111561066557610000565b600160a060020a0380851660008181526006602090815260408083208054889003905587851680845281842080548901905584845260078352818420339096168452948252918290208054879003905581518681529151600080516020610cf08339815191529281900390910190a35060015b9392505050565b60045460ff1681565b60085481565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b60066020526000908152604090205481565b60005433600160a060020a039081169116146107a857610000565b600160a060020a038083166000908152600660209081526040808320805486019055600a805486019055805185815290513090941693600080516020610cf0833981519152929181900390910190a381600160a060020a031630600160a060020a0316600080516020610cf0833981519152836040518082815260200191505060405180910390a35b5b5050565b60095481565b600054600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b600060095434811561000057049050806006600030600160a060020a0316815260200190815260200160002054101561091157610000565b600160a060020a0333811660008181526006602090815260408083208054870190553090941680835291849020805486900390558351858152935192939192600080516020610cf08339815191529281900390910190a35b50565b600160a060020a0333166000908152600660205260409020548190101561099257610000565b600160a060020a03821660009081526006602052604090205481810110156109b957610000565b600160a060020a0333166000908152600b602052604090205460ff16156109df57610000565b600160a060020a0333811660008181526006602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610cf0833981519152929081900390910190a35b5050565b600b6020526000908152604090205460ff1681565b600083610a5b8185610586565b15610b305780600160a060020a0316638f4ffcb1338630876040518560e060020a0281526004018085600160a060020a0316815260200184815260200183600160a060020a03168152602001806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f168015610b035780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b156100005760325a03f11561000057505050600191505b5b509392505050565b600760209081526000928352604080842090915290825290205481565b600160a060020a03331660009081526006602052604090205481901015610b7c57610000565b600160a060020a03308116600090815260066020526040808220805485019055339092168082528282208054859003905560085492519092840280156108fc0292909190818181858888f193505050501515610bdb5761000056610969565b30600160a060020a031633600160a060020a0316600080516020610cf0833981519152836040518082815260200191505060405180910390a35b5b50565b60005433600160a060020a03908116911614610c3457610000565b600160a060020a0382166000818152600b6020908152604091829020805460ff191660f860020a8681020417905581519283528315159083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b60005433600160a060020a03908116911614610cbb57610000565b6000805473ffffffffffffffffffffffffffffffffffffffff19166c01000000000000000000000000838102041790555b5b5056ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000002197f4e4554dac0ac7468089645959304ba16a95000000000000000000000000000000000000000000000000000000000000000c542d537761702d546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005542d532d54000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100
Arg [1] : tokenName (string): T-Swap-Token
Arg [2] : decimalUnits (uint8): 2
Arg [3] : tokenSymbol (string): T-S-T
Arg [4] : centralMinter (address): 0x2197f4e4554DaC0aC7468089645959304bA16a95
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000002197f4e4554dac0ac7468089645959304ba16a95
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 542d537761702d546f6b656e0000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 542d532d54000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$1.13
Net Worth in ETH
0.0005
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,253.4 | 0.0005 | $1.13 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.