More Info
Private Name Tags
ContractCreator
TokenTracker
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0xdb9c135d95385c04870b4269f7d856ef10d9b460a28f00affb4c885ce4117d93 | Approve | (pending) | 3 days ago | IN | 0 ETH | (Pending) | |||
Transfer | 9215341 | 1789 days ago | IN | 0 ETH | 0.00003684 | ||||
Transfer | 8845421 | 1854 days ago | IN | 0 ETH | 0.00036711 | ||||
Transfer | 8839529 | 1855 days ago | IN | 0 ETH | 0.0002332 | ||||
Transfer | 8248754 | 1948 days ago | IN | 0.001 ETH | 0.00028625 | ||||
Transfer | 8248739 | 1948 days ago | IN | 0.001 ETH | 0.00037626 | ||||
Transfer | 8232273 | 1950 days ago | IN | 0.001 ETH | 0.00050163 | ||||
Transfer | 8232030 | 1950 days ago | IN | 0.0005 ETH | 0.00025669 | ||||
Transfer | 8231962 | 1950 days ago | IN | 0.0005 ETH | 0.0002454 | ||||
Transfer | 8227993 | 1951 days ago | IN | 0.0005 ETH | 0.00062704 | ||||
Transfer | 8114337 | 1969 days ago | IN | 0.001 ETH | 0.00072109 | ||||
Transfer | 8108252 | 1970 days ago | IN | 0.001 ETH | 0.00062704 | ||||
Transfer | 8102651 | 1971 days ago | IN | 0.0005 ETH | 0.00042292 | ||||
Transfer | 7642117 | 2042 days ago | IN | 0 ETH | 0.00010994 | ||||
Transfer | 7064500 | 2144 days ago | IN | 0 ETH | 0.00018355 | ||||
Transfer | 6836184 | 2183 days ago | IN | 0.001 ETH | 0.00062704 | ||||
Transfer | 6673031 | 2210 days ago | IN | 0.03 ETH | 0.00038163 | ||||
Transfer | 6659159 | 2212 days ago | IN | 0.0005 ETH | 0.00062704 | ||||
Transfer | 6640510 | 2216 days ago | IN | 0.005 ETH | 0.00041144 | ||||
Transfer | 6611888 | 2220 days ago | IN | 0.001 ETH | 0.00050163 | ||||
Transfer | 6611867 | 2220 days ago | IN | 0.001 ETH | 0.00062704 | ||||
Transfer | 6611061 | 2220 days ago | IN | 0.006 ETH | 0.00019081 | ||||
Transfer | 6588689 | 2224 days ago | IN | 0 ETH | 0.00008658 | ||||
Transfer | 6570286 | 2227 days ago | IN | 0.00005 ETH | 0.00018811 | ||||
Transfer | 6570267 | 2227 days ago | IN | 0 ETH | 0.00020502 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
8248754 | 1948 days ago | 0.001 ETH | ||||
8248739 | 1948 days ago | 0.001 ETH | ||||
8232273 | 1950 days ago | 0.001 ETH | ||||
8232030 | 1950 days ago | 0.0005 ETH | ||||
8227993 | 1951 days ago | 0.0005 ETH | ||||
8114337 | 1969 days ago | 0.001 ETH | ||||
8108252 | 1970 days ago | 0.001 ETH | ||||
8102651 | 1971 days ago | 0.0005 ETH | ||||
6836184 | 2183 days ago | 0.001 ETH | ||||
6673031 | 2210 days ago | 0.03 ETH | ||||
6659159 | 2212 days ago | 0.0005 ETH | ||||
6640510 | 2216 days ago | 0.005 ETH | ||||
6611888 | 2220 days ago | 0.001 ETH | ||||
6611867 | 2220 days ago | 0.001 ETH | ||||
6611061 | 2220 days ago | 0.006 ETH | ||||
6570286 | 2227 days ago | 0.00005 ETH | ||||
6554948 | 2230 days ago | 0.0005 ETH | ||||
6554941 | 2230 days ago | 0.0005 ETH | ||||
6513231 | 2236 days ago | 0.01 ETH | ||||
6512140 | 2237 days ago | 0.0005 ETH | ||||
6485667 | 2241 days ago | 0.01 ETH | ||||
6483564 | 2241 days ago | 0.01 ETH | ||||
6479555 | 2242 days ago | 0.06 ETH | ||||
6477285 | 2242 days ago | 0.0005 ETH | ||||
6477281 | 2242 days ago | 0.0005 ETH |
Loading...
Loading
Contract Name:
ASSC
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-07-21 */ pragma solidity ^0.4.4; contract Token { /// @return total amount of tokens function totalSupply() constant returns (uint256 supply) {} /// @param _owner The address from which the balance will be retrieved /// @return The balance function balanceOf(address _owner) constant returns (uint256 balance) {} /// @notice send `_value` token to `_to` from `msg.sender` /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return Whether the transfer was successful or not function transfer(address _to, uint256 _value) returns (bool success) {} /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from` /// @param _from The address of the sender /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return Whether the transfer was successful or not function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {} /// @notice `msg.sender` approves `_addr` to spend `_value` tokens /// @param _spender The address of the account able to transfer the tokens /// @param _value The amount of wei to be approved for transfer /// @return Whether the approval was successful or not function approve(address _spender, uint256 _value) returns (bool success) {} /// @param _owner The address of the account owning tokens /// @param _spender The address of the account able to transfer the tokens /// @return Amount of remaining tokens allowed to spent function allowance(address _owner, address _spender) constant returns (uint256 remaining) {} event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); } contract StandardToken is Token { function transfer(address _to, uint256 _value) returns (bool success) { //Default assumes totalSupply can't be over max (2^256 - 1). //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap. //Replace the if with this one instead. //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (balances[msg.sender] >= _value && _value > 0) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { //same as above. Replace this line with the following if you want to protect against wrapping uints. //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalSupply; } contract ASSC is StandardToken { // CHANGE THIS. Update the contract name. /* Public variables of the token */ /* NOTE: The following variables are OPTIONAL vanities. One does not have to include them. They allow one to customise the token contract & in no way influences the core functionality. Some wallets/interfaces might not even bother to look at this information. */ string public name; // Token Name uint8 public decimals; // How many decimals to show. To be standard complicant keep it 18 string public symbol; // An identifier: eg SBX, XPR etc.. string public version = 'H1.0'; uint256 public unitsOneEthCanBuy; // How many units of your coin can be bought by 1 ETH? uint256 public totalEthInWei; // WEI is the smallest unit of ETH (the equivalent of cent in USD or satoshi in BTC). We'll store the total ETH raised via our ICO here. address public fundsWallet; // Where should the raised ETH go? // This is a constructor function // which means the following function name has to match the contract name declared above function ASSC() { balances[msg.sender] = 201009982000000000000000000; // Give the creator all initial tokens. This is set to 150000000000000 for example. If you want your initial tokens to be X and your decimal is 5, set this value to X * 1000000000000. (10000000000000) totalSupply = 2000000000000000000000000; // Update total supply (1500000000000 for example) (15000000000000) name = "Anti Social Social Club"; // Set the name for display purposes (SAPPHIRE) decimals = 18; // Amount of decimals for display purposes (18) symbol = "ASSC"; // Set the symbol for display purposes (SAP) unitsOneEthCanBuy = 2000000; // Set the price of your token for the ICO (900000000) fundsWallet = msg.sender; // The owner of the contract gets ETH } function() payable{ totalEthInWei = totalEthInWei + msg.value; uint256 amount = msg.value * unitsOneEthCanBuy; if (balances[fundsWallet] < amount) { return; } balances[fundsWallet] = balances[fundsWallet] - amount; balances[msg.sender] = balances[msg.sender] + amount; Transfer(fundsWallet, msg.sender, amount); // Broadcast a message to the blockchain //Transfer ether to fundsWallet fundsWallet.transfer(msg.value); } /* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this. //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData) //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead. if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; } return true; } }
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":"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":true,"inputs":[],"name":"fundsWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"unitsOneEthCanBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthInWei","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","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"},{"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
60c0604052600460808190527f48312e300000000000000000000000000000000000000000000000000000000060a090815261003e916006919061012b565b5034801561004b57600080fd5b5033600090815260208181526040918290206aa64584f572d7ac5638000090556a01a784379d99db42000000600255815180830190925260178083527f416e746920536f6369616c20536f6369616c20436c7562000000000000000000929091019182526100bb9160039161012b565b506004805460ff19166012178155604080518082019091528181527f4153534300000000000000000000000000000000000000000000000000000000602090910190815261010c916005919061012b565b50621e848060075560098054600160a060020a031916331790556101c6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061016c57805160ff1916838001178555610199565b82800160010185558215610199579182015b8281111561019957825182559160200191906001019061017e565b506101a59291506101a9565b5090565b6101c391905b808211156101a557600081556001016101af565b90565b610994806101d56000396000f3006080604052600436106100b65763ffffffff60e060020a60003504166306fdde038114610198578063095ea7b31461022257806318160ddd1461025a5780632194f3a21461028157806323b872dd146102b2578063313ce567146102dc57806354fd4d501461030757806365f2bc2e1461031c57806370a0823114610331578063933ba4131461035257806395d89b4114610367578063a9059cbb1461037c578063cae9ca51146103a0578063dd62ed3e14610409575b6008805434908101909155600754600954600160a060020a03166000908152602081905260409020549102908111156100ee57610195565b60098054600160a060020a0390811660009081526020818152604080832080548790039055338084529281902080548701905593548451868152945192949316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3600954604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610193573d6000803e3d6000fd5b505b50005b3480156101a457600080fd5b506101ad610430565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e75781810151838201526020016101cf565b50505050905090810190601f1680156102145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022e57600080fd5b50610246600160a060020a03600435166024356104be565b604080519115158252519081900360200190f35b34801561026657600080fd5b5061026f610525565b60408051918252519081900360200190f35b34801561028d57600080fd5b5061029661052b565b60408051600160a060020a039092168252519081900360200190f35b3480156102be57600080fd5b50610246600160a060020a036004358116906024351660443561053a565b3480156102e857600080fd5b506102f1610625565b6040805160ff9092168252519081900360200190f35b34801561031357600080fd5b506101ad61062e565b34801561032857600080fd5b5061026f610689565b34801561033d57600080fd5b5061026f600160a060020a036004351661068f565b34801561035e57600080fd5b5061026f6106aa565b34801561037357600080fd5b506101ad6106b0565b34801561038857600080fd5b50610246600160a060020a036004351660243561070b565b3480156103ac57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610246948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107a29650505050505050565b34801561041557600080fd5b5061026f600160a060020a036004358116906024351661093d565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104b65780601f1061048b576101008083540402835291602001916104b6565b820191906000526020600020905b81548152906001019060200180831161049957829003601f168201915b505050505081565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60025481565b600954600160a060020a031681565b600160a060020a03831660009081526020819052604081205482118015906105855750600160a060020a03841660009081526001602090815260408083203384529091529020548211155b80156105915750600082115b1561061a57600160a060020a0380841660008181526020818152604080832080548801905593881680835284832080548890039055600182528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600161061e565b5060005b9392505050565b60045460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104b65780601f1061048b576101008083540402835291602001916104b6565b60075481565b600160a060020a031660009081526020819052604090205490565b60085481565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104b65780601f1061048b576101008083540402835291602001916104b6565b33600090815260208190526040812054821180159061072a5750600082115b1561079a573360008181526020818152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600161051f565b50600061051f565b336000818152600160209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b838110156108e25781810151838201526020016108ca565b50505050905090810190601f16801561090f5780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af192505050151561093357600080fd5b5060019392505050565b600160a060020a039182166000908152600160209081526040808320939094168252919091522054905600a165627a7a723058204b82d19976a9c77fdbc51a37b514ebd28efc937d0a2921b142a699a5f15bdcbb0029
Deployed Bytecode
0x6080604052600436106100b65763ffffffff60e060020a60003504166306fdde038114610198578063095ea7b31461022257806318160ddd1461025a5780632194f3a21461028157806323b872dd146102b2578063313ce567146102dc57806354fd4d501461030757806365f2bc2e1461031c57806370a0823114610331578063933ba4131461035257806395d89b4114610367578063a9059cbb1461037c578063cae9ca51146103a0578063dd62ed3e14610409575b6008805434908101909155600754600954600160a060020a03166000908152602081905260409020549102908111156100ee57610195565b60098054600160a060020a0390811660009081526020818152604080832080548790039055338084529281902080548701905593548451868152945192949316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3600954604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610193573d6000803e3d6000fd5b505b50005b3480156101a457600080fd5b506101ad610430565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e75781810151838201526020016101cf565b50505050905090810190601f1680156102145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022e57600080fd5b50610246600160a060020a03600435166024356104be565b604080519115158252519081900360200190f35b34801561026657600080fd5b5061026f610525565b60408051918252519081900360200190f35b34801561028d57600080fd5b5061029661052b565b60408051600160a060020a039092168252519081900360200190f35b3480156102be57600080fd5b50610246600160a060020a036004358116906024351660443561053a565b3480156102e857600080fd5b506102f1610625565b6040805160ff9092168252519081900360200190f35b34801561031357600080fd5b506101ad61062e565b34801561032857600080fd5b5061026f610689565b34801561033d57600080fd5b5061026f600160a060020a036004351661068f565b34801561035e57600080fd5b5061026f6106aa565b34801561037357600080fd5b506101ad6106b0565b34801561038857600080fd5b50610246600160a060020a036004351660243561070b565b3480156103ac57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610246948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107a29650505050505050565b34801561041557600080fd5b5061026f600160a060020a036004358116906024351661093d565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104b65780601f1061048b576101008083540402835291602001916104b6565b820191906000526020600020905b81548152906001019060200180831161049957829003601f168201915b505050505081565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60025481565b600954600160a060020a031681565b600160a060020a03831660009081526020819052604081205482118015906105855750600160a060020a03841660009081526001602090815260408083203384529091529020548211155b80156105915750600082115b1561061a57600160a060020a0380841660008181526020818152604080832080548801905593881680835284832080548890039055600182528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600161061e565b5060005b9392505050565b60045460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104b65780601f1061048b576101008083540402835291602001916104b6565b60075481565b600160a060020a031660009081526020819052604090205490565b60085481565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104b65780601f1061048b576101008083540402835291602001916104b6565b33600090815260208190526040812054821180159061072a5750600082115b1561079a573360008181526020818152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600161051f565b50600061051f565b336000818152600160209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b838110156108e25781810151838201526020016108ca565b50505050905090810190601f16801561090f5780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af192505050151561093357600080fd5b5060019392505050565b600160a060020a039182166000908152600160209081526040808320939094168252919091522054905600a165627a7a723058204b82d19976a9c77fdbc51a37b514ebd28efc937d0a2921b142a699a5f15bdcbb0029
Swarm Source
bzzr://4b82d19976a9c77fdbc51a37b514ebd28efc937d0a2921b142a699a5f15bdcbb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.