Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,115 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 11161357 | 1955 days ago | IN | 0 ETH | 0.00055986 | ||||
| Transfer | 10493232 | 2058 days ago | IN | 0 ETH | 0.00110852 | ||||
| Transfer | 9849232 | 2157 days ago | IN | 0 ETH | 0.00007278 | ||||
| Approve | 9660587 | 2187 days ago | IN | 0 ETH | 0.00461104 | ||||
| Transfer | 9655640 | 2187 days ago | IN | 0 ETH | 0.00120215 | ||||
| Transfer | 9655498 | 2187 days ago | IN | 0 ETH | 0.00064179 | ||||
| Transfer | 9655492 | 2187 days ago | IN | 0 ETH | 0.00064251 | ||||
| Transfer | 9655478 | 2187 days ago | IN | 0 ETH | 0.00062039 | ||||
| Approve | 9605548 | 2195 days ago | IN | 0 ETH | 0.0002213 | ||||
| Transfer | 9604909 | 2195 days ago | IN | 0 ETH | 0.00005598 | ||||
| Approve | 9518615 | 2208 days ago | IN | 0 ETH | 0.00023388 | ||||
| Approve | 9518561 | 2208 days ago | IN | 0 ETH | 0.0002335 | ||||
| Transfer | 9518556 | 2208 days ago | IN | 0 ETH | 0.00017104 | ||||
| Approve | 9518550 | 2208 days ago | IN | 0 ETH | 0.0003534 | ||||
| Approve | 9506925 | 2210 days ago | IN | 0 ETH | 0.00003007 | ||||
| Approve | 9506921 | 2210 days ago | IN | 0 ETH | 0.00005852 | ||||
| Transfer | 9486416 | 2213 days ago | IN | 0 ETH | 0.00004365 | ||||
| Transfer | 9484952 | 2214 days ago | IN | 0 ETH | 0.00016795 | ||||
| Transfer | 9482269 | 2214 days ago | IN | 0 ETH | 0.00021828 | ||||
| Approve | 9475960 | 2215 days ago | IN | 0 ETH | 0.00012518 | ||||
| Approve | 9475822 | 2215 days ago | IN | 0 ETH | 0.0001452 | ||||
| Approve | 9475774 | 2215 days ago | IN | 0 ETH | 0.00018777 | ||||
| Approve | 9475774 | 2215 days ago | IN | 0 ETH | 0.00018777 | ||||
| Approve | 9475774 | 2215 days ago | IN | 0 ETH | 0.00014618 | ||||
| Transfer | 9475756 | 2215 days ago | IN | 0 ETH | 0.0001069 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SFU
Compiler Version
v0.4.25+commit.59dbf8f1
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2019-11-05
*/
/**
*Submitted for verification at Etherscan.io on 2019-06-24
*/
pragma solidity 0.4.25;
/**
* @title ERC20 interface
* @dev see https://eips.ethereum.org/EIPS/eip-20
*/
contract IERC20 {
function transfer(address to, uint256 value) public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
function transferFrom(address from, address to, uint256 value) public returns (bool);
function balanceOf(address who) public view returns (uint256);
function allowance(address owner, address spender) public view returns (uint256);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @title SafeMath
* @dev Unsigned math operations with safety checks that revert on error.
*/
library SafeMath {
/**
* @dev Multiplies two unsigned integers, reverts on 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);
return c;
}
/**
* @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a);
uint256 c = a - b;
return c;
}
/**
* @dev Adds two unsigned integers, reverts on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a);
return c;
}
/**
* @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
* reverts when dividing by zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0);
return a % b;
}
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://eips.ethereum.org/EIPS/eip-20
* Originally based on code by FirstBlood:
* https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*
* This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
* all accounts just by listening to said events. Note that this isn't required by the specification, and other
* compliant implementations may not do it.
*/
contract ERC20 is IERC20 {
using SafeMath for uint256;
mapping(address => uint256) internal _balances;
mapping(address => mapping(address => uint256)) private _allowed;
/**
* @dev Gets the balance of the specified address.
* @param owner The address to query the balance of.
* @return A uint256 representing the amount owned by the passed adfunction transferdress.
*/
function balanceOf(address owner) public view returns (uint256) {
return _balances[owner];
}
/**
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param owner address The address which owns the funds.
* @param spender address The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowed[owner][spender];
}
/**
* @dev Transfer token to a specified address.
* @param to The address to transfer to.
* @param value The amount to be transferred.
*/
function transfer(address to, uint256 value) public returns (bool) {
_transfer(msg.sender, to, value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
* Beware that changing an allowance with this method brings the risk that someone may use both the old
* and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
* race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
*/
function approve(address spender, uint256 value) public returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
/**
* @dev Transfer tokens from one address to another.
* Note that while this function emits an Approval event, this is not required as per the specification,
* and other compliant implementations may not emit the event.
* @param from address The address which you want to send tokens from
* @param to address The address which you want to transfer to
* @param value uint256 the amount of tokens to be transferred
*/
function transferFrom(address from, address to, uint256 value) public returns (bool) {
_transfer(from, to, value);
_approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
return true;
}
/**
* @dev Increase the amount of tokens that an owner allowed to a spender.
* approve should be called when _allowed[msg.sender][spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* Emits an Approval event.
* @param spender The address which will spend the funds.
* @param addedValue The amount of tokens to increase the allowance by.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
return true;
}
/**
* @dev Decrease the amount of tokens that an owner allowed to a spender.
* approve should be called when _allowed[msg.sender][spender] == 0. To decrement
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* Emits an Approval event.
* @param spender The address which will spend the funds.
* @param subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
return true;
}
/**
* @dev Transfer token for a specified addresses.
* @param from The address to transfer from.
* @param to The address to transfer to.
* @param value The amount to be transferred.
*/
function _transfer(address from, address to, uint256 value) internal {
require(to != address(0));
_balances[from] = _balances[from].sub(value);
_balances[to] = _balances[to].add(value);
emit Transfer(from, to, value);
}
/**
* @dev Approve an address to spend another addresses' tokens.
* @param owner The address that owns the tokens.
* @param spender The address that will spend the tokens.
* @param value The number of tokens that can be spent.
*/
function _approve(address owner, address spender, uint256 value) internal {
require(spender != address(0));
require(owner != address(0));
_allowed[owner][spender] = value;
emit Approval(owner, spender, value);
}
}
contract SFU is ERC20 {
string public constant name = 'Sfunding';
string public constant symbol = 'SFU';
uint8 public constant decimals = 18;
uint256 public constant totalSupply = (210 * 1e6) * (10 ** uint256(decimals)); // 210.000.000
constructor(address _reserveFund) public {
_balances[_reserveFund] = totalSupply;
emit Transfer(address(0x0), _reserveFund, totalSupply);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","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":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","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":"_reserveFund","type":"address"}],"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
608060405234801561001057600080fd5b506040516020806106ba8339810160408181529151600160a060020a038116600081815260208181528582206aadb53acfa41aee1200000090819055855294519294919390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350610629806100916000396000f3006080604052600436106100ae5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100b3578063095ea7b31461013d57806318160ddd1461017557806323b872dd1461019c578063313ce567146101c657806339509351146101f157806370a082311461021557806395d89b4114610236578063a457c2d71461024b578063a9059cbb1461026f578063dd62ed3e14610293575b600080fd5b3480156100bf57600080fd5b506100c86102ba565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101025781810151838201526020016100ea565b50505050905090810190601f16801561012f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014957600080fd5b50610161600160a060020a03600435166024356102f1565b604080519115158252519081900360200190f35b34801561018157600080fd5b5061018a610307565b60408051918252519081900360200190f35b3480156101a857600080fd5b50610161600160a060020a0360043581169060243516604435610316565b3480156101d257600080fd5b506101db61036d565b6040805160ff9092168252519081900360200190f35b3480156101fd57600080fd5b50610161600160a060020a0360043516602435610372565b34801561022157600080fd5b5061018a600160a060020a03600435166103ae565b34801561024257600080fd5b506100c86103c9565b34801561025757600080fd5b50610161600160a060020a0360043516602435610400565b34801561027b57600080fd5b50610161600160a060020a036004351660243561043c565b34801561029f57600080fd5b5061018a600160a060020a0360043581169060243516610449565b60408051808201909152600881527f5366756e64696e67000000000000000000000000000000000000000000000000602082015281565b60006102fe338484610474565b50600192915050565b6aadb53acfa41aee1200000081565b6000610323848484610500565b600160a060020a03841660009081526001602090815260408083203380855292529091205461036391869161035e908663ffffffff6105cd16565b610474565b5060019392505050565b601281565b336000818152600160209081526040808320600160a060020a038716845290915281205490916102fe91859061035e908663ffffffff6105e416565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f5346550000000000000000000000000000000000000000000000000000000000602082015281565b336000818152600160209081526040808320600160a060020a038716845290915281205490916102fe91859061035e908663ffffffff6105cd16565b60006102fe338484610500565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a038216151561048957600080fd5b600160a060020a038316151561049e57600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038216151561051557600080fd5b600160a060020a03831660009081526020819052604090205461053e908263ffffffff6105cd16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610573908263ffffffff6105e416565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080838311156105dd57600080fd5b5050900390565b6000828201838110156105f657600080fd5b93925050505600a165627a7a723058200d039d433b4916c30ef4c2ac9d428fe6cb62486e5ccc81cda103fb93aff5cdd20029000000000000000000000000b143b1b4c1355f400351e914feaec965d1794770
Deployed Bytecode
0x6080604052600436106100ae5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100b3578063095ea7b31461013d57806318160ddd1461017557806323b872dd1461019c578063313ce567146101c657806339509351146101f157806370a082311461021557806395d89b4114610236578063a457c2d71461024b578063a9059cbb1461026f578063dd62ed3e14610293575b600080fd5b3480156100bf57600080fd5b506100c86102ba565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101025781810151838201526020016100ea565b50505050905090810190601f16801561012f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014957600080fd5b50610161600160a060020a03600435166024356102f1565b604080519115158252519081900360200190f35b34801561018157600080fd5b5061018a610307565b60408051918252519081900360200190f35b3480156101a857600080fd5b50610161600160a060020a0360043581169060243516604435610316565b3480156101d257600080fd5b506101db61036d565b6040805160ff9092168252519081900360200190f35b3480156101fd57600080fd5b50610161600160a060020a0360043516602435610372565b34801561022157600080fd5b5061018a600160a060020a03600435166103ae565b34801561024257600080fd5b506100c86103c9565b34801561025757600080fd5b50610161600160a060020a0360043516602435610400565b34801561027b57600080fd5b50610161600160a060020a036004351660243561043c565b34801561029f57600080fd5b5061018a600160a060020a0360043581169060243516610449565b60408051808201909152600881527f5366756e64696e67000000000000000000000000000000000000000000000000602082015281565b60006102fe338484610474565b50600192915050565b6aadb53acfa41aee1200000081565b6000610323848484610500565b600160a060020a03841660009081526001602090815260408083203380855292529091205461036391869161035e908663ffffffff6105cd16565b610474565b5060019392505050565b601281565b336000818152600160209081526040808320600160a060020a038716845290915281205490916102fe91859061035e908663ffffffff6105e416565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f5346550000000000000000000000000000000000000000000000000000000000602082015281565b336000818152600160209081526040808320600160a060020a038716845290915281205490916102fe91859061035e908663ffffffff6105cd16565b60006102fe338484610500565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a038216151561048957600080fd5b600160a060020a038316151561049e57600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038216151561051557600080fd5b600160a060020a03831660009081526020819052604090205461053e908263ffffffff6105cd16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610573908263ffffffff6105e416565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080838311156105dd57600080fd5b5050900390565b6000828201838110156105f657600080fd5b93925050505600a165627a7a723058200d039d433b4916c30ef4c2ac9d428fe6cb62486e5ccc81cda103fb93aff5cdd20029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b143b1b4c1355f400351e914feaec965d1794770
-----Decoded View---------------
Arg [0] : _reserveFund (address): 0xb143b1B4C1355F400351e914FeAEC965D1794770
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b143b1b4c1355f400351e914feaec965d1794770
Deployed Bytecode Sourcemap
8549:428:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8578:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8578:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8578:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5201:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5201:148:0;-1:-1:-1;;;;;5201:148:0;;;;;;;;;;;;;;;;;;;;;;;;;8711:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8711:77:0;;;;;;;;;;;;;;;;;;;;5822:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5822:228:0;-1:-1:-1;;;;;5822:228:0;;;;;;;;;;;;8669:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8669:35:0;;;;;;;;;;;;;;;;;;;;;;;6576:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6576:203:0;-1:-1:-1;;;;;6576:203:0;;;;;;;3663:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3663:106:0;-1:-1:-1;;;;;3663:106:0;;;;;8625:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8625:37:0;;;;7310:213;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7310:213:0;-1:-1:-1;;;;;7310:213:0;;;;;;;4414:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4414:140:0;-1:-1:-1;;;;;4414:140:0;;;;;;;4108:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4108:131:0;-1:-1:-1;;;;;4108:131:0;;;;;;;;;;8578:40;;;;;;;;;;;;;;;;;;;:::o;5201:148::-;5266:4;5283:36;5292:10;5304:7;5313:5;5283:8;:36::i;:::-;-1:-1:-1;5337:4:0;5201:148;;;;:::o;8711:77::-;8749:39;8711:77;:::o;5822:228::-;5901:4;5918:26;5928:4;5934:2;5938:5;5918:9;:26::i;:::-;-1:-1:-1;;;;;5982:14:0;;;;;;:8;:14;;;;;;;;5970:10;5982:26;;;;;;;;;5955:65;;5964:4;;5982:37;;6013:5;5982:37;:30;:37;:::i;:::-;5955:8;:65::i;:::-;-1:-1:-1;6038:4:0;5822:228;;;;;:::o;8669:35::-;8702:2;8669:35;:::o;6576:203::-;6682:10;6656:4;6703:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6703:29:0;;;;;;;;;;6656:4;;6673:76;;6694:7;;6703:45;;6737:10;6703:45;:33;:45;:::i;3663:106::-;-1:-1:-1;;;;;3745:16:0;3718:7;3745:16;;;;;;;;;;;;3663:106::o;8625:37::-;;;;;;;;;;;;;;;;;;;:::o;7310:213::-;7421:10;7395:4;7442:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7442:29:0;;;;;;;;;;7395:4;;7412:81;;7433:7;;7442:50;;7476:15;7442:50;:33;:50;:::i;4414:140::-;4475:4;4492:32;4502:10;4514:2;4518:5;4492:9;:32::i;4108:131::-;-1:-1:-1;;;;;4207:15:0;;;4180:7;4207:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;4108:131::o;8286:254::-;-1:-1:-1;;;;;8379:21:0;;;;8371:30;;;;;;-1:-1:-1;;;;;8420:19:0;;;;8412:28;;;;;;-1:-1:-1;;;;;8453:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;8501:31;;;;;;;;;;;;;;;;;8286:254;;;:::o;7751:262::-;-1:-1:-1;;;;;7839:16:0;;;;7831:25;;;;;;-1:-1:-1;;;;;7887:15:0;;:9;:15;;;;;;;;;;;:26;;7907:5;7887:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7869:15:0;;;:9;:15;;;;;;;;;;;:44;;;;7940:13;;;;;;;:24;;7958:5;7940:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7924:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;7980:25;;;;;;;7924:13;;7980:25;;;;;;;;;;;;;7751:262;;;:::o;2004:150::-;2062:7;;2090:6;;;;2082:15;;;;;;-1:-1:-1;;2120:5:0;;;2004:150::o;2242:::-;2300:7;2332:5;;;2356:6;;;;2348:15;;;;;;2383:1;2242:150;-1:-1:-1;;;2242:150:0:o
Swarm Source
bzzr://0d039d433b4916c30ef4c2ac9d428fe6cb62486e5ccc81cda103fb93aff5cdd2
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.