FTM Testnet

Contract

0xfD2f19C2e6BfF9bd2F1e72B058C57C9959ea4dac

Overview

FTM Balance

Fantom LogoFantom LogoFantom Logo0 FTM

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Value
0x6080604072403552022-02-04 20:43:35783 days ago1644007415IN
 Contract Creation
0 FTM0.15924513200.018

Latest 1 internal transaction

Parent Txn Hash Block From To Value
72403552022-02-04 20:43:35783 days ago1644007415  Contract Creation0 FTM
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xe1DfdB8b...a9b2AF4a7
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at testnet.ftmscan.com on 2021-12-07
*/

//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.6.12;

contract Context {
	// Empty internal constructor, to prevent people from mistakenly deploying
	// an instance of this contract, which should be used via inheritance.
	constructor () internal { }

	function _msgSender() internal view returns (address payable) {
		return msg.sender;
	}

	function _msgData() internal view returns (bytes memory) {
		this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
		return msg.data;
	}
}
    /* --------- safe math --------- */
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) {
		return sub(a, b, "SafeMath: subtraction overflow");
	}

	/**
	* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
	* overflow (when the result is negative).
	*
	* Counterpart to Solidity's `-` operator.
	*
	* Requirements:
	* - Subtraction cannot overflow.
	*/
	function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
		require(b <= a, errorMessage);
		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-contracts/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) {
		return div(a, b, "SafeMath: division by zero");
	}

	/**
	* @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
		// Solidity only automatically asserts when dividing by 0
		require(b > 0, errorMessage);
		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) {
		return mod(a, b, "SafeMath: modulo by zero");
	}

	/**
	* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
	* Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
		require(b != 0, errorMessage);
		return a % b;
	}
}

contract ERC20 is Context{

	event Transfer(address indexed from, address indexed to, uint256 value);

	event Approval(address indexed owner, address indexed spender, uint256 value);

	using SafeMath for uint256;

	mapping (address => uint256) internal _balances;

	mapping (address => mapping (address => uint256)) internal _allowances;

	uint256 internal _totalSupply;
	uint8 internal _decimals = 18;
	string internal _symbol;
	string internal _name;
    
    constructor (string memory name, string memory symbol, uint8 decimals, uint totalSupply) public {
        _name = name;
        _symbol = symbol;
        _totalSupply = totalSupply;
        _decimals = decimals;
		_balances[msg.sender] = _totalSupply;
    }

	function decimals() external view returns (uint8) {
		return _decimals;
	}

	function symbol() external view returns (string memory) {
		return _symbol;
	}

	function name() external view returns (string memory) {
		return _name;
	}

	function totalSupply() external view returns (uint256) {
		return _totalSupply;
	}

	function balanceOf(address account) public view returns (uint256) {
		return _balances[account];
	}

	function transfer(address recipient, uint256 amount) external returns (bool) {
		_transfer(_msgSender(), recipient, amount);
		return true;
	}

	function allowance(address owner, address spender) external view returns (uint256) {
		return _allowances[owner][spender];
	}

	function approve(address spender, uint256 amount) external returns (bool) {
		_approve(_msgSender(), spender, amount);
		return true;
	}

	function transferFrom(address sender, address recipient, uint256 amount) external returns (bool) {
		_transfer(sender, recipient, amount);
		_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance"));
		return true;
	}

	function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
		_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
		return true;
	}

	function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
		_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero"));
		return true;
	}

	function burn(uint256 amount) external {
		_burn(msg.sender,amount);
	}

	function _mint(address account, uint256 amount) internal {
		require(account != address(0), "BEP20: mint to the zero address");

		_totalSupply = _totalSupply.add(amount);
		_balances[account] = _balances[account].add(amount);
		emit Transfer(address(0), account, amount);
	}

	function _burn(address account, uint256 amount) internal {
		require(account != address(0), "BEP20: burn from the zero address");

		_balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance");
		_totalSupply = _totalSupply.sub(amount);
		emit Transfer(account, address(0), amount);
	}

	function _approve(address owner, address spender, uint256 amount) internal {
		require(owner != address(0), "BEP20: approve from the zero address");
		require(spender != address(0), "BEP20: approve to the zero address");

		_allowances[owner][spender] = amount;
		emit Approval(owner, spender, amount);
	}

	function _burnFrom(address account, uint256 amount) internal {
		_burn(account, amount);
		_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance"));
	}

    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "BEP20: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

}

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c681461021057806370a082311461022f57806395d89b4114610255578063a457c2d71461025d578063a9059cbb14610289578063dd62ed3e146102b5576100b4565b806306fdde03146100b9578063095ea7b31461013657806318160ddd1461017657806323b872dd14610190578063313ce567146101c657806339509351146101e4575b600080fd5b6100c16102e3565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b038135169060200135610379565b604080519115158252519081900360200190f35b61017e610396565b60408051918252519081900360200190f35b610162600480360360608110156101a657600080fd5b506001600160a01b0381358116916020810135909116906040013561039c565b6101ce610423565b6040805160ff9092168252519081900360200190f35b610162600480360360408110156101fa57600080fd5b506001600160a01b03813516906020013561042c565b61022d6004803603602081101561022657600080fd5b503561047a565b005b61017e6004803603602081101561024557600080fd5b50356001600160a01b0316610487565b6100c16104a2565b6101626004803603604081101561027357600080fd5b506001600160a01b038135169060200135610503565b6101626004803603604081101561029f57600080fd5b506001600160a01b03813516906020013561056b565b61017e600480360360408110156102cb57600080fd5b506001600160a01b038135811691602001351661057f565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561036f5780601f106103445761010080835404028352916020019161036f565b820191906000526020600020905b81548152906001019060200180831161035257829003601f168201915b5050505050905090565b600061038d6103866105aa565b84846105ae565b50600192915050565b60025490565b60006103a984848461069a565b610419846103b56105aa565b61041485604051806060016040528060288152602001610a5e602891396001600160a01b038a166000908152600160205260408120906103f36105aa565b6001600160a01b0316815260208101919091526040016000205491906107ea565b6105ae565b5060019392505050565b60035460ff1690565b600061038d6104396105aa565b84610414856001600061044a6105aa565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610881565b61048433826108e2565b50565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561036f5780601f106103445761010080835404028352916020019161036f565b600061038d6105106105aa565b8461041485604051806060016040528060258152602001610acf602591396001600061053a6105aa565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906107ea565b600061038d6105786105aa565b848461069a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166105f35760405162461bcd60e51b8152600401808060200182810382526024815260200180610a3a6024913960400191505060405180910390fd5b6001600160a01b0382166106385760405162461bcd60e51b8152600401808060200182810382526022815260200180610b376022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166106df5760405162461bcd60e51b8152600401808060200182810382526025815260200180610a156025913960400191505060405180910390fd5b6001600160a01b0382166107245760405162461bcd60e51b8152600401808060200182810382526023815260200180610aac6023913960400191505060405180910390fd5b61076181604051806060016040528060268152602001610a86602691396001600160a01b03861660009081526020819052604090205491906107ea565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546107909082610881565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156108795760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561083e578181015183820152602001610826565b50505050905090810190601f16801561086b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156108db576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166109275760405162461bcd60e51b8152600401808060200182810382526021815260200180610af46021913960400191505060405180910390fd5b61096481604051806060016040528060228152602001610b15602291396001600160a01b03851660009081526020819052604090205491906107ea565b6001600160a01b03831660009081526020819052604090205560025461098a90826109d2565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006108db83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506107ea56fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a20617070726f766520746f20746865207a65726f2061646472657373a264697066735822122005a0174fe435130368bb01ee93a9d14bd1e329391216e26a6f32cb30f8869a2c64736f6c634300060c0033

Deployed Bytecode Sourcemap

4831:4063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5744:76;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6302:139;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6302:139:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5825:84;;;:::i;:::-;;;;;;;;;;;;;;;;6446:285;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6446:285:0;;;;;;;;;;;;;;;;;:::i;5578:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6736:195;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6736:195:0;;;;;;;;:::i;7187:73::-;;;;;;;;;;;;;;;;-1:-1:-1;7187:73:0;;:::i;:::-;;5914:101;;;;;;;;;;;;;;;;-1:-1:-1;5914:101:0;-1:-1:-1;;;;;5914:101:0;;:::i;5659:80::-;;;:::i;6936:246::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6936:246:0;;;;;;;;:::i;6020:145::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6020:145:0;;;;;;;;:::i;6170:127::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6170:127:0;;;;;;;;;;:::i;5744:76::-;5810:5;5803:12;;;;;;;;-1:-1:-1;;5803:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5783:13;;5803:12;;5810:5;;5803:12;;5810:5;5803:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5744:76;:::o;6302:139::-;6370:4;6381:39;6390:12;:10;:12::i;:::-;6404:7;6413:6;6381:8;:39::i;:::-;-1:-1:-1;6432:4:0;6302:139;;;;:::o;5825:84::-;5892:12;;5825:84;:::o;6446:285::-;6537:4;6548:36;6558:6;6566:9;6577:6;6548:9;:36::i;:::-;6589:121;6598:6;6606:12;:10;:12::i;:::-;6620:89;6658:6;6620:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6620:19:0;;;;;;:11;:19;;;;;;6640:12;:10;:12::i;:::-;-1:-1:-1;;;;;6620:33:0;;;;;;;;;;;;-1:-1:-1;6620:33:0;;;:89;:37;:89::i;:::-;6589:8;:121::i;:::-;-1:-1:-1;6722:4:0;6446:285;;;;;:::o;5578:76::-;5640:9;;;;5578:76;:::o;6736:195::-;6816:4;6827:83;6836:12;:10;:12::i;:::-;6850:7;6859:50;6898:10;6859:11;:25;6871:12;:10;:12::i;:::-;-1:-1:-1;;;;;6859:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;6859:25:0;;;:34;;;;;;;;;;;:38;:50::i;7187:73::-;7231:24;7237:10;7248:6;7231:5;:24::i;:::-;7187:73;:::o;5914:101::-;-1:-1:-1;;;;;5992:18:0;5971:7;5992:18;;;;;;;;;;;;5914:101::o;5659:80::-;5727:7;5720:14;;;;;;;;-1:-1:-1;;5720:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5700:13;;5720:14;;5727:7;;5720:14;;5727:7;5720:14;;;;;;;;;;;;;;;;;;;;;;;;6936:246;7021:4;7032:129;7041:12;:10;:12::i;:::-;7055:7;7064:96;7103:15;7064:96;;;;;;;;;;;;;;;;;:11;:25;7076:12;:10;:12::i;:::-;-1:-1:-1;;;;;7064:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;7064:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;6020:145::-;6091:4;6102:42;6112:12;:10;:12::i;:::-;6126:9;6137:6;6102:9;:42::i;6170:127::-;-1:-1:-1;;;;;6265:18:0;;;6244:7;6265:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6170:127::o;269:89::-;343:10;269:89;:::o;7877:311::-;-1:-1:-1;;;;;7965:19:0;;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8038:21:0;;8030:68;;;;-1:-1:-1;;;8030:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8105:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;8151:32;;;;;;;;;;;;;;;;;7877:311;;;:::o;8418:471::-;-1:-1:-1;;;;;8516:20:0;;8508:70;;;;-1:-1:-1;;;8508:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8597:23:0;;8589:71;;;;-1:-1:-1;;;8589:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8693;8715:6;8693:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8693:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;8673:17:0;;;:9;:17;;;;;;;;;;;:91;;;;8798:20;;;;;;;:32;;8823:6;8798:24;:32::i;:::-;-1:-1:-1;;;;;8775:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;8846:35;;;;;;;8775:20;;8846:35;;;;;;;;;;;;;8418:471;;;:::o;1617:171::-;1703:7;1733:12;1725:6;;;;1717:29;;;;-1:-1:-1;;;1717:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1763:5:0;;;1617:171::o;836:160::-;894:7;920:5;;;938:6;;;;930:46;;;;;-1:-1:-1;;;930:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;990:1;836:160;-1:-1:-1;;;836:160:0:o;7551:321::-;-1:-1:-1;;;;;7621:21:0;;7613:67;;;;-1:-1:-1;;;7613:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7708:68;7731:6;7708:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7708:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;7687:18:0;;:9;:18;;;;;;;;;;:89;7796:12;;:24;;7813:6;7796:16;:24::i;:::-;7781:12;:39;7830:37;;;;;;;;7856:1;;-1:-1:-1;;;;;7830:37:0;;;;;;;;;;;;7551:321;;:::o;1233:127::-;1291:7;1312:43;1316:1;1319;1312:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

ipfs://05a0174fe435130368bb01ee93a9d14bd1e329391216e26a6f32cb30f8869a2c

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.