Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x0ff9dd8e1063023b0d15604b3536fe283406bffd1598ad16c06d9b7dff0e059f | 0x60806040 | 20132100 | 215 days 23 hrs ago | 0x2b241cbe6b455e08ade78a7ccc42de2403d7b566 | IN | Create: DappGasTank | 0 MATIC | 0.03067116 |
[ Download CSV Export ]
Contract Name:
DappGasTank
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771ContextUpgradeable is Initializable { /* * Forwarder singleton we accept calls from */ address public _trustedForwarder; function __ERC2771Context_init(address trustedForwarder) internal initializer { __ERC2771Context_init_unchained(trustedForwarder); } function __ERC2771Context_init_unchained(address trustedForwarder) internal initializer { _trustedForwarder = trustedForwarder; } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return forwarder == _trustedForwarder; } function _msgSender() internal view virtual returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return msg.sender; } } function _msgData() internal view virtual returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return msg.data; } } uint256[49] private __gap; } /* * @title DappGasTank * @author livingrock (Biconomy) * @title Dapp Deposit Gas Tank Contract * @notice Handles customers deposits */ contract DappGasTank is Initializable, OwnableUpgradeable, ERC2771ContextUpgradeable { address payable public masterAccount; uint256 public minDeposit = 1e18; uint8 internal _initializedVersion; address private constant NATIVE = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; //Maintain balances for each funding key mapping(uint256 => uint256) public dappBalances; //Maintains fundingKey and depositedAmount information for each Depositor //review mapping and how it is populated with each deposits mapping(address => mapping(uint256 => uint256) ) public depositorBalances; //Allowed tokens as deposit currency in Dapp Gas Tank mapping(address => bool) public allowedTokens; //Pricefeeds info should you require to calculate Token/ETH mapping(address => address) public tokenPriceFeed; /// @custom:oz-upgrades-unsafe-allow constructor constructor() initializer {} /** * @dev Initializes the contract */ function initialize(address trustedForwarder) public initializer { __ERC2771Context_init(trustedForwarder); __Ownable_init(); _initializedVersion = 0; } event Deposit(address indexed sender, uint256 indexed amount, uint256 indexed fundingKey); // fundingKey event Withdraw(address indexed actor, uint256 indexed amount, address indexed receiver); // for when owner withdraws funds event MasterAccountChanged(address indexed account, address indexed actor); event MinimumDepositChanged(uint256 indexed minDeposit, address indexed actor); event DepositTokenAdded(address indexed token, address indexed actor); /** * @dev Emitted when trusted forwarder is updated to * another (`trustedForwarder`). * * Note that `trustedForwarder` may be zero. `actor` is msg.sender for this action. */ event TrustedForwarderChanged(address indexed truestedForwarder, address indexed actor); /** * returns the message sender */ function _msgSender() internal view override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (address) { return ERC2771ContextUpgradeable._msgSender(); } /** * returns the message data */ function _msgData() internal view override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (bytes memory) { return ERC2771ContextUpgradeable._msgData(); } /** * Admin function to set minimum deposit amount * emits and event */ function setMinDeposit(uint256 _newMinDeposit) external onlyOwner{ minDeposit = _newMinDeposit; emit MinimumDepositChanged(_newMinDeposit,msg.sender); } /** * admin function to set trusted forwarder * @param _forwarder new trusted forwarder address * */ function setTrustedForwarder(address payable _forwarder) external onlyOwner { require(_forwarder != address(0), "BICO:: Invalid address for new trusted forwarder"); _trustedForwarder = _forwarder; emit TrustedForwarderChanged(_forwarder, msg.sender); } /** * Admin function to set master account which collects gas tank deposits */ function setMasterAccount(address payable _newAccount) external onlyOwner{ masterAccount = _newAccount; emit MasterAccountChanged(_newAccount, msg.sender); } /** * Admin function to set token allowed for depositing in gas tank */ function setTokenAllowed(address token, bool allowed) external onlyOwner{ require(token != address(0), "Token address cannot be 0"); allowedTokens[token] = allowed; emit DepositTokenAdded(token,msg.sender); } /** * @param _fundingKey Associate funds with this funding key. * Supply a deposit for a specified funding key. (This will be a unique unix epoch time) * Caution: The funding key must be an your identifier generated from biconomy dashboard * Funds deposited will be forwarded to master account to fund the relayers * emits an event for off-chain accounting * @notice In the future this method may be upgraded to allow ERC20 token deposits * @notice Generic depositFor could be added that allows deposit of ERC20 tokens and swaps them for native currency. */ function depositFor(uint256 _fundingKey) public payable { require(msg.sender == tx.origin || msg.sender == _trustedForwarder, "sender must be EOA or trusted forwarder"); require(msg.value > 0, "No value provided to depositFor."); require(msg.value >= minDeposit, "Must be grater than minimum deposit for this network"); masterAccount.transfer(msg.value); dappBalances[_fundingKey] = dappBalances[_fundingKey] + msg.value; //review depositorBalances[msg.sender][_fundingKey] = depositorBalances[msg.sender][_fundingKey] + msg.value; emit Deposit(msg.sender, msg.value, _fundingKey); } /** * @dev If someone deposits funds directly to contract address * Here we wouldn't know the funding key! */ receive() external payable { require(msg.value > 0, "No value provided to fallback."); require(tx.origin == msg.sender, "Only EOA can deposit directly."); //review //funding key stored is 0 depositorBalances[msg.sender][0] = depositorBalances[msg.sender][0] + msg.value; //All these types of deposits come under funding key 0 emit Deposit(msg.sender, msg.value, 0); } /** * Admin function for sending/migrating any stuck funds. */ function withdraw(uint256 _amount) public onlyOwner { masterAccount.transfer(_amount); emit Withdraw(msg.sender, _amount, masterAccount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"fundingKey","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"actor","type":"address"}],"name":"DepositTokenAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"actor","type":"address"}],"name":"MasterAccountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"minDeposit","type":"uint256"},{"indexed":true,"internalType":"address","name":"actor","type":"address"}],"name":"MinimumDepositChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"truestedForwarder","type":"address"},{"indexed":true,"internalType":"address","name":"actor","type":"address"}],"name":"TrustedForwarderChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"actor","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"_trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dappBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fundingKey","type":"uint256"}],"name":"depositFor","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"depositorBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"trustedForwarder","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterAccount","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newAccount","type":"address"}],"name":"setMasterAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMinDeposit","type":"uint256"}],"name":"setMinDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"bool","name":"allowed","type":"bool"}],"name":"setTokenAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_forwarder","type":"address"}],"name":"setTrustedForwarder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenPriceFeed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052670de0b6b3a764000060985534801561001c57600080fd5b50600054610100900460ff1680610036575060005460ff16155b61009d5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b600054610100900460ff161580156100bf576000805461ffff19166101011790555b80156100d1576000805461ff00191690555b506110ab806100e16000396000f3fe60806040526004361061010d5760003560e01c80638da5cb5b11610095578063a040cb8511610064578063a040cb851461042f578063c4d66de81461044f578063da7422281461046f578063e744092e1461048f578063f2fde38b146104bf57600080fd5b80638da5cb5b1461039b5780638fcc9cfb146103b95780639878cbb3146103d95780639afd453c1461040f57600080fd5b806356c022bb116100dc57806356c022bb146102cf578063572b6c05146103075780635d9c31d3146103465780636d88f45114610373578063715018a61461038657600080fd5b806315f690121461022c578063201d0f821461024e5780632e1a7d4d1461029957806341b3d185146102b957600080fd5b3661022757600034116101675760405162461bcd60e51b815260206004820152601e60248201527f4e6f2076616c75652070726f766964656420746f2066616c6c6261636b2e000060448201526064015b60405180910390fd5b3233146101b65760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c7920454f412063616e206465706f736974206469726563746c792e0000604482015260640161015e565b336000908152609b602090815260408083208380529091529020546101dc90349061103c565b336000818152609b602090815260408083208380529091528082209390935591513491907f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15908490a4005b600080fd5b34801561023857600080fd5b5061024c610247366004610f3a565b6104df565b005b34801561025a57600080fd5b50610286610269366004610f76565b609b60209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b3480156102a557600080fd5b5061024c6102b4366004610fa1565b6105ce565b3480156102c557600080fd5b5061028660985481565b3480156102db57600080fd5b506065546102ef906001600160a01b031681565b6040516001600160a01b039091168152602001610290565b34801561031357600080fd5b50610336610322366004610f17565b6065546001600160a01b0391821691161490565b6040519015158152602001610290565b34801561035257600080fd5b50610286610361366004610fa1565b609a6020526000908152604090205481565b61024c610381366004610fa1565b610691565b34801561039257600080fd5b5061024c610896565b3480156103a757600080fd5b506033546001600160a01b03166102ef565b3480156103c557600080fd5b5061024c6103d4366004610fa1565b6108eb565b3480156103e557600080fd5b506102ef6103f4366004610f17565b609d602052600090815260409020546001600160a01b031681565b34801561041b57600080fd5b506097546102ef906001600160a01b031681565b34801561043b57600080fd5b5061024c61044a366004610f17565b610969565b34801561045b57600080fd5b5061024c61046a366004610f17565b6109ff565b34801561047b57600080fd5b5061024c61048a366004610f17565b610a87565b34801561049b57600080fd5b506103366104aa366004610f17565b609c6020526000908152604090205460ff1681565b3480156104cb57600080fd5b5061024c6104da366004610f17565b610b8c565b6104e7610c46565b6001600160a01b03166105026033546001600160a01b031690565b6001600160a01b0316146105285760405162461bcd60e51b815260040161015e90611007565b6001600160a01b03821661057e5760405162461bcd60e51b815260206004820152601960248201527f546f6b656e20616464726573732063616e6e6f74206265203000000000000000604482015260640161015e565b6001600160a01b0382166000818152609c6020526040808220805460ff1916851515179055513392917f4d10ecf9da236fc925a7283e7277ed82a53ebff302888a1a9ca285ee986621f291a35050565b6105d6610c46565b6001600160a01b03166105f16033546001600160a01b031690565b6001600160a01b0316146106175760405162461bcd60e51b815260040161015e90611007565b6097546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610651573d6000803e3d6000fd5b506097546040516001600160a01b0390911690829033907f56c54ba9bd38d8fd62012e42c7ee564519b09763c426d331b3661b537ead19b290600090a450565b333214806106a957506065546001600160a01b031633145b6107055760405162461bcd60e51b815260206004820152602760248201527f73656e646572206d75737420626520454f41206f72207472757374656420666f604482015266393bb0b93232b960c91b606482015260840161015e565b600034116107555760405162461bcd60e51b815260206004820181905260248201527f4e6f2076616c75652070726f766964656420746f206465706f736974466f722e604482015260640161015e565b6098543410156107c45760405162461bcd60e51b815260206004820152603460248201527f4d75737420626520677261746572207468616e206d696e696d756d206465706f60448201527373697420666f722074686973206e6574776f726b60601b606482015260840161015e565b6097546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156107fd573d6000803e3d6000fd5b506000818152609a602052604090205461081890349061103c565b6000828152609a6020908152604080832093909355338252609b81528282208483529052205461084990349061103c565b336000818152609b6020908152604080832086845290915280822093909355915183923492917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159190a450565b61089e610c46565b6001600160a01b03166108b96033546001600160a01b031690565b6001600160a01b0316146108df5760405162461bcd60e51b815260040161015e90611007565b6108e96000610c55565b565b6108f3610c46565b6001600160a01b031661090e6033546001600160a01b031690565b6001600160a01b0316146109345760405162461bcd60e51b815260040161015e90611007565b6098819055604051339082907fd7fcb0ae0023f2c47ad87c3f6886b7d78850d713c118a1a4bd2b13523961105190600090a350565b610971610c46565b6001600160a01b031661098c6033546001600160a01b031690565b6001600160a01b0316146109b25760405162461bcd60e51b815260040161015e90611007565b609780546001600160a01b0319166001600160a01b0383169081179091556040513391907fca9f79532036ed57a638a72597e104fb5c14b1dfdd6d3aa360b943741a48208190600090a350565b600054610100900460ff1680610a18575060005460ff16155b610a345760405162461bcd60e51b815260040161015e90610fb9565b600054610100900460ff16158015610a56576000805461ffff19166101011790555b610a5f82610ca7565b610a67610d1c565b6099805460ff191690558015610a83576000805461ff00191690555b5050565b610a8f610c46565b6001600160a01b0316610aaa6033546001600160a01b031690565b6001600160a01b031614610ad05760405162461bcd60e51b815260040161015e90611007565b6001600160a01b038116610b3f5760405162461bcd60e51b815260206004820152603060248201527f4249434f3a3a20496e76616c6964206164647265737320666f72206e6577207460448201526f393ab9ba32b2103337b93bb0b93232b960811b606482015260840161015e565b606580546001600160a01b0319166001600160a01b0383169081179091556040513391907f06dff7401eb7fb04d241246ade7f817c7ad512b1bed61c18aedd9bc51eec047590600090a350565b610b94610c46565b6001600160a01b0316610baf6033546001600160a01b031690565b6001600160a01b031614610bd55760405162461bcd60e51b815260040161015e90611007565b6001600160a01b038116610c3a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161015e565b610c4381610c55565b50565b6000610c50610d97565b905090565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff1680610cc0575060005460ff16155b610cdc5760405162461bcd60e51b815260040161015e90610fb9565b600054610100900460ff16158015610cfe576000805461ffff19166101011790555b610d0782610dbf565b8015610a83576000805461ff00191690555050565b600054610100900460ff1680610d35575060005460ff16155b610d515760405162461bcd60e51b815260040161015e90610fb9565b600054610100900460ff16158015610d73576000805461ffff19166101011790555b610d7b610e46565b610d83610eb0565b8015610c43576000805461ff001916905550565b6065546000906001600160a01b0316331415610dba575060131936013560601c90565b503390565b600054610100900460ff1680610dd8575060005460ff16155b610df45760405162461bcd60e51b815260040161015e90610fb9565b600054610100900460ff16158015610e16576000805461ffff19166101011790555b606580546001600160a01b0319166001600160a01b0384161790558015610a83576000805461ff00191690555050565b600054610100900460ff1680610e5f575060005460ff16155b610e7b5760405162461bcd60e51b815260040161015e90610fb9565b600054610100900460ff16158015610d83576000805461ffff19166101011790558015610c43576000805461ff001916905550565b600054610100900460ff1680610ec9575060005460ff16155b610ee55760405162461bcd60e51b815260040161015e90610fb9565b600054610100900460ff16158015610f07576000805461ffff19166101011790555b610d83610f12610c46565b610c55565b600060208284031215610f28578081fd5b8135610f3381611060565b9392505050565b60008060408385031215610f4c578081fd5b8235610f5781611060565b915060208301358015158114610f6b578182fd5b809150509250929050565b60008060408385031215610f88578182fd5b8235610f9381611060565b946020939093013593505050565b600060208284031215610fb2578081fd5b5035919050565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561105b57634e487b7160e01b81526011600452602481fd5b500190565b6001600160a01b0381168114610c4357600080fdfea2646970667358221220a1103d8e8996b7ec36aa83b5c43eca8ce11ac06285d91effb8201716ff0ccfc564736f6c63430008040033
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.