More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Membot Token... | 17894060 | 619 days ago | IN | 0 ETH | 0.00081999 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22140870 | 25 days ago | 0.00098713 ETH | ||||
Transfer | 22140870 | 25 days ago | 0.00230332 ETH | ||||
Transfer | 22140870 | 25 days ago | 0.00329046 ETH | ||||
Transfer | 21912198 | 57 days ago | 0.00126112 ETH | ||||
Transfer | 21912198 | 57 days ago | 0.00294261 ETH | ||||
Transfer | 21912198 | 57 days ago | 0.00420373 ETH | ||||
Transfer | 19831774 | 348 days ago | 0.00512045 ETH | ||||
Transfer | 19831774 | 348 days ago | 0.01194772 ETH | ||||
Transfer | 19831774 | 348 days ago | 0.01706818 ETH | ||||
Transfer | 19821670 | 349 days ago | 0.02683479 ETH | ||||
Transfer | 19821670 | 349 days ago | 0.06261451 ETH | ||||
Transfer | 19821670 | 349 days ago | 0.0894493 ETH | ||||
Transfer | 19727709 | 362 days ago | 0.03053713 ETH | ||||
Transfer | 19727709 | 362 days ago | 0.07125331 ETH | ||||
Transfer | 19727709 | 362 days ago | 0.10179044 ETH | ||||
Transfer | 19143596 | 444 days ago | 0.00231316 ETH | ||||
Transfer | 19143596 | 444 days ago | 0.00539738 ETH | ||||
Transfer | 19143596 | 444 days ago | 0.00771054 ETH | ||||
Transfer | 18909159 | 477 days ago | 0.00287303 ETH | ||||
Transfer | 18909159 | 477 days ago | 0.00670375 ETH | ||||
Transfer | 18909159 | 477 days ago | 0.00957679 ETH | ||||
Transfer | 18901837 | 478 days ago | 0.00186854 ETH | ||||
Transfer | 18901837 | 478 days ago | 0.00435994 ETH | ||||
Transfer | 18901837 | 478 days ago | 0.00622849 ETH | ||||
Transfer | 18788032 | 494 days ago | 0.00232118 ETH |
Loading...
Loading
Contract Name:
MembotBuffer
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-11 */ // // @@@@@@@@ @@@@@@@@ // /@@@@@@@@@ @@@@@@@@@, // @@@@@@@@@@& @@@@@@@@@@@ // *@@@@@@@@@@@%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%&@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // .@@@@@@@@* @@@@@@@@@@@@@@@@@@@@@@@@ /@@@@@@@@ // @@@@@# @@@@@@@@@@@@@@@@@@@@@@ &@@@@@ // *@@@@ /@@@@@@@@@@@@@@@@@@* /@@@@ // /@@@@@@@ @@@@@@@* // @@@@@@@@@* @@@@@@@/ &@@@@@@@ *@@@@@@@@& // @@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@@ // *@@@@@@@@@ .@@@@@@@@ @@@@@@@@ @@@@@@@@@ // *@@@@@@@@@ *@@@@@@@@ @@@@@@@@ @@@@@@@@@ // @@@@@@@@@ .@@@@@@@@ @@@@@@@@ @@@@@@@@@ // @@@@@@@@@ @@@@@@@@ @@@@@@@@ ,@@@@@@@@@ // @@@@@@@& @@@@@@@@ // /@@@@ &@@@@@@@@@@@@@@@@# @@@@ // @@@@@ &@@@@@@@@@@@@@@@@@@@@( .@@@@% // (@@@@@@ &@@@@@@@@@@@@@@@@@@@@@@( ,@@@@@@, // ,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // (@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@, // // The #1 Discord trading tool, sniper & wallet - https://discord.gg/membot // https://twitter.com/MembotETH | https://membot.tools // pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/Context.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 Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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. * * The initial owner is set to the address provided by the deployer. 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. */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IMEMBOT { function unblacklist(address) external; function blacklistLiquidityPool(address) external; function withdrawStuckEth(address) external; function withdrawStuckToken(address, address) external; } contract MembotBuffer is Ownable { address public teamTreasury; address public holderRewardsReserve; uint256 public teamAllocation = 70; IMEMBOT public membotTokenContract; constructor(address _teamTreasury, address _holderRewardsReserve) Ownable(msg.sender) { teamTreasury = _teamTreasury; holderRewardsReserve = _holderRewardsReserve; } function setMembotTokenContract (address _token) external onlyOwner { membotTokenContract = IMEMBOT(_token); } function changeTeamTreasury(address _teamTreasury) external onlyOwner { teamTreasury = _teamTreasury; } function changeHolderReserve(address _holderRewardsReserve) external onlyOwner { holderRewardsReserve = _holderRewardsReserve; } function changeTeamAllocation(uint256 _teamAllocation) external onlyOwner { require(_teamAllocation <= 100, "Cannot be more than 100%"); teamAllocation = _teamAllocation; } function withdrawExcessEth() external onlyOwner { // Send remaining balance to teamTreasury (bool success, ) = teamTreasury.call{value: address(this).balance}(""); require(success, "Transfer to Team Treasury failed."); } // Calls main token contract to withdraw any stuck ETH. function withdrawStuckEth() external onlyOwner { membotTokenContract.withdrawStuckEth(owner()); } // Calls main token contract to withdraw any stuck tokens. function withdrawStuckToken(address _token) external onlyOwner { membotTokenContract.withdrawStuckToken(_token, owner()); } // Unblacklist any Uniswap V3 LP Pools if we chose to use them in the future. function unblacklist(address _accountOrContract) external onlyOwner { membotTokenContract.unblacklist(_accountOrContract); } // Ability to blacklist any Uniswap V3 LP pools. function blacklistLiquidityPool(address _contract) external onlyOwner { membotTokenContract.blacklistLiquidityPool(_contract); } receive() external payable { unchecked { uint256 amountReceived = msg.value; //Calculates reward allocation by subtracting the amount allocated to the team uint256 rewardAllocation = 100 - teamAllocation; (bool success, ) = teamTreasury.call{value: (amountReceived / 100 * teamAllocation)}(""); require(success, "Transfer to Team Treasury failed"); (success, ) = holderRewardsReserve.call{value: (amountReceived / 100 * rewardAllocation)}(""); require(success, "Transfer to Reward Reserve failed"); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_teamTreasury","type":"address"},{"internalType":"address","name":"_holderRewardsReserve","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holderRewardsReserve","type":"address"}],"name":"changeHolderReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamAllocation","type":"uint256"}],"name":"changeTeamAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamTreasury","type":"address"}],"name":"changeTeamTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"holderRewardsReserve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"membotTokenContract","outputs":[{"internalType":"contract IMEMBOT","name":"","type":"address"}],"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","name":"_token","type":"address"}],"name":"setMembotTokenContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamTreasury","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":"address","name":"_accountOrContract","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawExcessEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052604660035534801562000015575f80fd5b50604051620012c2380380620012c283398181016040528101906200003b9190620001fc565b336200004d81620000d660201b60201c565b508160015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000241565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620001c6826200019b565b9050919050565b620001d881620001ba565b8114620001e3575f80fd5b50565b5f81519050620001f681620001cd565b92915050565b5f806040838503121562000215576200021462000197565b5b5f6200022485828601620001e6565b92505060206200023785828601620001e6565b9150509250929050565b611073806200024f5f395ff3fe6080604052600436106100f6575f3560e01c806382a00b3c11610089578063b6c5819c11610058578063b6c5819c1461047b578063ce44ff75146104a5578063e19b2823146104cd578063f2fde38b146104f5576102c5565b806382a00b3c146103e95780638da5cb5b146103ff578063a011c62a14610429578063b5887b4014610453576102c5565b80636acb62d7116100c55780636acb62d71461036d578063715018a61461039557806375e3661e146103ab5780637fa787ba146103d3576102c5565b806305fe562d146102c9578063068acf6c146102f357806328cb57731461031b5780636816521a14610343576102c5565b366102c5575f3490505f60035460640390505f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166003546064858161015557610154610c01565b5b040260405161016390610c5b565b5f6040518083038185875af1925050503d805f811461019d576040519150601f19603f3d011682016040523d82523d5f602084013e6101a2565b606091505b50509050806101e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101dd90610cc9565b60405180910390fd5b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682606485816102305761022f610c01565b5b040260405161023e90610c5b565b5f6040518083038185875af1925050503d805f8114610278576040519150601f19603f3d011682016040523d82523d5f602084013e61027d565b606091505b505080915050806102c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610d57565b60405180910390fd5b005b5f80fd5b3480156102d4575f80fd5b506102dd61051d565b6040516102ea9190610db4565b60405180910390f35b3480156102fe575f80fd5b5061031960048036038101906103149190610dfb565b610542565b005b348015610326575f80fd5b50610341600480360381019061033c9190610dfb565b6105dd565b005b34801561034e575f80fd5b50610357610628565b6040516103649190610e3e565b60405180910390f35b348015610378575f80fd5b50610393600480360381019061038e9190610e81565b61062e565b005b3480156103a0575f80fd5b506103a9610684565b005b3480156103b6575f80fd5b506103d160048036038101906103cc9190610dfb565b610697565b005b3480156103de575f80fd5b506103e7610729565b005b3480156103f4575f80fd5b506103fd6107c1565b005b34801561040a575f80fd5b50610413610895565b6040516104209190610db4565b60405180910390f35b348015610434575f80fd5b5061043d6108bc565b60405161044a9190610db4565b60405180910390f35b34801561045e575f80fd5b5061047960048036038101906104749190610dfb565b6108e1565b005b348015610486575f80fd5b5061048f61092c565b60405161049c9190610f07565b60405180910390f35b3480156104b0575f80fd5b506104cb60048036038101906104c69190610dfb565b610951565b005b3480156104d8575f80fd5b506104f360048036038101906104ee9190610dfb565b61099c565b005b348015610500575f80fd5b5061051b60048036038101906105169190610dfb565b610a2e565b005b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61054a610ab2565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc205ad382610590610895565b6040518363ffffffff1660e01b81526004016105ad929190610f20565b5f604051808303815f87803b1580156105c4575f80fd5b505af11580156105d6573d5f803e3d5ffd5b5050505050565b6105e5610ab2565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035481565b610636610ab2565b606481111561067a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067190610f91565b60405180910390fd5b8060038190555050565b61068c610ab2565b6106955f610b39565b565b61069f610ab2565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166375e3661e826040518263ffffffff1660e01b81526004016106f99190610db4565b5f604051808303815f87803b158015610710575f80fd5b505af1158015610722573d5f803e3d5ffd5b5050505050565b610731610ab2565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637ca8448a610776610895565b6040518263ffffffff1660e01b81526004016107929190610db4565b5f604051808303815f87803b1580156107a9575f80fd5b505af11580156107bb573d5f803e3d5ffd5b50505050565b6107c9610ab2565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161080f90610c5b565b5f6040518083038185875af1925050503d805f8114610849576040519150601f19603f3d011682016040523d82523d5f602084013e61084e565b606091505b5050905080610892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108899061101f565b60405180910390fd5b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108e9610ab2565b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610959610ab2565b8060045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6109a4610ab2565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e19b2823826040518263ffffffff1660e01b81526004016109fe9190610db4565b5f604051808303815f87803b158015610a15575f80fd5b505af1158015610a27573d5f803e3d5ffd5b5050505050565b610a36610ab2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa6575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a9d9190610db4565b60405180910390fd5b610aaf81610b39565b50565b610aba610bfa565b73ffffffffffffffffffffffffffffffffffffffff16610ad8610895565b73ffffffffffffffffffffffffffffffffffffffff1614610b3757610afb610bfa565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b2e9190610db4565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f81905092915050565b50565b5f610c465f83610c2e565b9150610c5182610c38565b5f82019050919050565b5f610c6582610c3b565b9150819050919050565b5f82825260208201905092915050565b7f5472616e7366657220746f205465616d205472656173757279206661696c65645f82015250565b5f610cb3602083610c6f565b9150610cbe82610c7f565b602082019050919050565b5f6020820190508181035f830152610ce081610ca7565b9050919050565b7f5472616e7366657220746f205265776172642052657365727665206661696c655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f610d41602183610c6f565b9150610d4c82610ce7565b604082019050919050565b5f6020820190508181035f830152610d6e81610d35565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d9e82610d75565b9050919050565b610dae81610d94565b82525050565b5f602082019050610dc75f830184610da5565b92915050565b5f80fd5b610dda81610d94565b8114610de4575f80fd5b50565b5f81359050610df581610dd1565b92915050565b5f60208284031215610e1057610e0f610dcd565b5b5f610e1d84828501610de7565b91505092915050565b5f819050919050565b610e3881610e26565b82525050565b5f602082019050610e515f830184610e2f565b92915050565b610e6081610e26565b8114610e6a575f80fd5b50565b5f81359050610e7b81610e57565b92915050565b5f60208284031215610e9657610e95610dcd565b5b5f610ea384828501610e6d565b91505092915050565b5f819050919050565b5f610ecf610eca610ec584610d75565b610eac565b610d75565b9050919050565b5f610ee082610eb5565b9050919050565b5f610ef182610ed6565b9050919050565b610f0181610ee7565b82525050565b5f602082019050610f1a5f830184610ef8565b92915050565b5f604082019050610f335f830185610da5565b610f406020830184610da5565b9392505050565b7f43616e6e6f74206265206d6f7265207468616e203130302500000000000000005f82015250565b5f610f7b601883610c6f565b9150610f8682610f47565b602082019050919050565b5f6020820190508181035f830152610fa881610f6f565b9050919050565b7f5472616e7366657220746f205465616d205472656173757279206661696c65645f8201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b5f611009602183610c6f565b915061101482610faf565b604082019050919050565b5f6020820190508181035f83015261103681610ffd565b905091905056fea2646970667358221220475f02e3cfab3e3e3442f310a41c798d646a2a65f898c81bd695ada29711ab6864736f6c634300081400330000000000000000000000001079e06479b037aeeeda9b9d1a2271a6062ce33000000000000000000000000094d75530a5cbc1ee66b515aa0f8ded483cdf6074
Deployed Bytecode
0x6080604052600436106100f6575f3560e01c806382a00b3c11610089578063b6c5819c11610058578063b6c5819c1461047b578063ce44ff75146104a5578063e19b2823146104cd578063f2fde38b146104f5576102c5565b806382a00b3c146103e95780638da5cb5b146103ff578063a011c62a14610429578063b5887b4014610453576102c5565b80636acb62d7116100c55780636acb62d71461036d578063715018a61461039557806375e3661e146103ab5780637fa787ba146103d3576102c5565b806305fe562d146102c9578063068acf6c146102f357806328cb57731461031b5780636816521a14610343576102c5565b366102c5575f3490505f60035460640390505f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166003546064858161015557610154610c01565b5b040260405161016390610c5b565b5f6040518083038185875af1925050503d805f811461019d576040519150601f19603f3d011682016040523d82523d5f602084013e6101a2565b606091505b50509050806101e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101dd90610cc9565b60405180910390fd5b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682606485816102305761022f610c01565b5b040260405161023e90610c5b565b5f6040518083038185875af1925050503d805f8114610278576040519150601f19603f3d011682016040523d82523d5f602084013e61027d565b606091505b505080915050806102c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610d57565b60405180910390fd5b005b5f80fd5b3480156102d4575f80fd5b506102dd61051d565b6040516102ea9190610db4565b60405180910390f35b3480156102fe575f80fd5b5061031960048036038101906103149190610dfb565b610542565b005b348015610326575f80fd5b50610341600480360381019061033c9190610dfb565b6105dd565b005b34801561034e575f80fd5b50610357610628565b6040516103649190610e3e565b60405180910390f35b348015610378575f80fd5b50610393600480360381019061038e9190610e81565b61062e565b005b3480156103a0575f80fd5b506103a9610684565b005b3480156103b6575f80fd5b506103d160048036038101906103cc9190610dfb565b610697565b005b3480156103de575f80fd5b506103e7610729565b005b3480156103f4575f80fd5b506103fd6107c1565b005b34801561040a575f80fd5b50610413610895565b6040516104209190610db4565b60405180910390f35b348015610434575f80fd5b5061043d6108bc565b60405161044a9190610db4565b60405180910390f35b34801561045e575f80fd5b5061047960048036038101906104749190610dfb565b6108e1565b005b348015610486575f80fd5b5061048f61092c565b60405161049c9190610f07565b60405180910390f35b3480156104b0575f80fd5b506104cb60048036038101906104c69190610dfb565b610951565b005b3480156104d8575f80fd5b506104f360048036038101906104ee9190610dfb565b61099c565b005b348015610500575f80fd5b5061051b60048036038101906105169190610dfb565b610a2e565b005b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61054a610ab2565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc205ad382610590610895565b6040518363ffffffff1660e01b81526004016105ad929190610f20565b5f604051808303815f87803b1580156105c4575f80fd5b505af11580156105d6573d5f803e3d5ffd5b5050505050565b6105e5610ab2565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035481565b610636610ab2565b606481111561067a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067190610f91565b60405180910390fd5b8060038190555050565b61068c610ab2565b6106955f610b39565b565b61069f610ab2565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166375e3661e826040518263ffffffff1660e01b81526004016106f99190610db4565b5f604051808303815f87803b158015610710575f80fd5b505af1158015610722573d5f803e3d5ffd5b5050505050565b610731610ab2565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637ca8448a610776610895565b6040518263ffffffff1660e01b81526004016107929190610db4565b5f604051808303815f87803b1580156107a9575f80fd5b505af11580156107bb573d5f803e3d5ffd5b50505050565b6107c9610ab2565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161080f90610c5b565b5f6040518083038185875af1925050503d805f8114610849576040519150601f19603f3d011682016040523d82523d5f602084013e61084e565b606091505b5050905080610892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108899061101f565b60405180910390fd5b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108e9610ab2565b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610959610ab2565b8060045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6109a4610ab2565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e19b2823826040518263ffffffff1660e01b81526004016109fe9190610db4565b5f604051808303815f87803b158015610a15575f80fd5b505af1158015610a27573d5f803e3d5ffd5b5050505050565b610a36610ab2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa6575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a9d9190610db4565b60405180910390fd5b610aaf81610b39565b50565b610aba610bfa565b73ffffffffffffffffffffffffffffffffffffffff16610ad8610895565b73ffffffffffffffffffffffffffffffffffffffff1614610b3757610afb610bfa565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b2e9190610db4565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f81905092915050565b50565b5f610c465f83610c2e565b9150610c5182610c38565b5f82019050919050565b5f610c6582610c3b565b9150819050919050565b5f82825260208201905092915050565b7f5472616e7366657220746f205465616d205472656173757279206661696c65645f82015250565b5f610cb3602083610c6f565b9150610cbe82610c7f565b602082019050919050565b5f6020820190508181035f830152610ce081610ca7565b9050919050565b7f5472616e7366657220746f205265776172642052657365727665206661696c655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f610d41602183610c6f565b9150610d4c82610ce7565b604082019050919050565b5f6020820190508181035f830152610d6e81610d35565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d9e82610d75565b9050919050565b610dae81610d94565b82525050565b5f602082019050610dc75f830184610da5565b92915050565b5f80fd5b610dda81610d94565b8114610de4575f80fd5b50565b5f81359050610df581610dd1565b92915050565b5f60208284031215610e1057610e0f610dcd565b5b5f610e1d84828501610de7565b91505092915050565b5f819050919050565b610e3881610e26565b82525050565b5f602082019050610e515f830184610e2f565b92915050565b610e6081610e26565b8114610e6a575f80fd5b50565b5f81359050610e7b81610e57565b92915050565b5f60208284031215610e9657610e95610dcd565b5b5f610ea384828501610e6d565b91505092915050565b5f819050919050565b5f610ecf610eca610ec584610d75565b610eac565b610d75565b9050919050565b5f610ee082610eb5565b9050919050565b5f610ef182610ed6565b9050919050565b610f0181610ee7565b82525050565b5f602082019050610f1a5f830184610ef8565b92915050565b5f604082019050610f335f830185610da5565b610f406020830184610da5565b9392505050565b7f43616e6e6f74206265206d6f7265207468616e203130302500000000000000005f82015250565b5f610f7b601883610c6f565b9150610f8682610f47565b602082019050919050565b5f6020820190508181035f830152610fa881610f6f565b9050919050565b7f5472616e7366657220746f205465616d205472656173757279206661696c65645f8201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b5f611009602183610c6f565b915061101482610faf565b604082019050919050565b5f6020820190508181035f83015261103681610ffd565b905091905056fea2646970667358221220475f02e3cfab3e3e3442f310a41c798d646a2a65f898c81bd695ada29711ab6864736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001079e06479b037aeeeda9b9d1a2271a6062ce33000000000000000000000000094d75530a5cbc1ee66b515aa0f8ded483cdf6074
-----Decoded View---------------
Arg [0] : _teamTreasury (address): 0x1079E06479b037aEEEda9B9D1a2271A6062ce330
Arg [1] : _holderRewardsReserve (address): 0x94d75530A5CBc1ee66B515Aa0F8DeD483CDF6074
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000001079e06479b037aeeeda9b9d1a2271a6062ce330
Arg [1] : 00000000000000000000000094d75530a5cbc1ee66b515aa0f8ded483cdf6074
Deployed Bytecode Sourcemap
6299:2691:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8454:22;8479:9;8454:34;;8587:24;8620:14;;8614:3;:20;8587:47;;8648:12;8666;;;;;;;;;;;:17;;8715:14;;8709:3;8692:14;:20;;;;;:::i;:::-;;;:37;8666:69;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8647:88;;;8754:7;8746:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;8823:20;;;;;;;;;;;:25;;8880:16;8874:3;8857:14;:20;;;;;:::i;:::-;;;:39;8823:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8809:93;;;;;8921:7;8913:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;8433:545;6299:2691;;;;6341:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7817:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6835:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6421:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7110:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5225:103;;;;;;;;;;;;;:::i;:::-;;8045:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7634:111;;;;;;;;;;;;;:::i;:::-;;7313:252;;;;;;;;;;;;;:::i;:::-;;4550:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6377:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6960:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6464:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6703:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8245:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5483:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6341:27;;;;;;;;;;;;;:::o;7817:137::-;4436:13;:11;:13::i;:::-;7891:19:::1;;;;;;;;;;;:38;;;7930:6;7938:7;:5;:7::i;:::-;7891:55;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;7817:137:::0;:::o;6835:117::-;4436:13;:11;:13::i;:::-;6931::::1;6916:12;;:28;;;;;;;;;;;;;;;;;;6835:117:::0;:::o;6421:34::-;;;;:::o;7110:195::-;4436:13;:11;:13::i;:::-;7222:3:::1;7203:15;:22;;7195:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;7282:15;7265:14;:32;;;;7110:195:::0;:::o;5225:103::-;4436:13;:11;:13::i;:::-;5290:30:::1;5317:1;5290:18;:30::i;:::-;5225:103::o:0;8045:138::-;4436:13;:11;:13::i;:::-;8124:19:::1;;;;;;;;;;;:31;;;8156:18;8124:51;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;8045:138:::0;:::o;7634:111::-;4436:13;:11;:13::i;:::-;7692:19:::1;;;;;;;;;;;:36;;;7729:7;:5;:7::i;:::-;7692:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;7634:111::o:0;7313:252::-;4436:13;:11;:13::i;:::-;7424:12:::1;7442;;;;;;;;;;;:17;;7467:21;7442:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7423:70;;;7512:7;7504:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;7361:204;7313:252::o:0;4550:87::-;4596:7;4623:6;;;;;;;;;;;4616:13;;4550:87;:::o;6377:35::-;;;;;;;;;;;;;:::o;6960:142::-;4436:13;:11;:13::i;:::-;7073:21:::1;7050:20;;:44;;;;;;;;;;;;;;;;;;6960:142:::0;:::o;6464:34::-;;;;;;;;;;;;;:::o;6703:124::-;4436:13;:11;:13::i;:::-;6812:6:::1;6782:19;;:37;;;;;;;;;;;;;;;;;;6703:124:::0;:::o;8245:142::-;4436:13;:11;:13::i;:::-;8326:19:::1;;;;;;;;;;;:42;;;8369:9;8326:53;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;8245:142:::0;:::o;5483:220::-;4436:13;:11;:13::i;:::-;5588:1:::1;5568:22;;:8;:22;;::::0;5564:93:::1;;5642:1;5614:31;;;;;;;;;;;:::i;:::-;;;;;;;;5564:93;5667:28;5686:8;5667:18;:28::i;:::-;5483:220:::0;:::o;4715:166::-;4786:12;:10;:12::i;:::-;4775:23;;:7;:5;:7::i;:::-;:23;;;4771:103;;4849:12;:10;:12::i;:::-;4822:40;;;;;;;;;;;:::i;:::-;;;;;;;;4771:103;4715:166::o;5863:191::-;5937:16;5956:6;;;;;;;;;;;5937:25;;5982:8;5973:6;;:17;;;;;;;;;;;;;;;;;;6037:8;6006:40;;6027:8;6006:40;;;;;;;;;;;;5926:128;5863:191;:::o;2823:98::-;2876:7;2903:10;2896:17;;2823:98;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:147;294:11;331:3;316:18;;193:147;;;;:::o;346:114::-;;:::o;466:398::-;625:3;646:83;727:1;722:3;646:83;:::i;:::-;639:90;;738:93;827:3;738:93;:::i;:::-;856:1;851:3;847:11;840:18;;466:398;;;:::o;870:379::-;1054:3;1076:147;1219:3;1076:147;:::i;:::-;1069:154;;1240:3;1233:10;;870:379;;;:::o;1255:169::-;1339:11;1373:6;1368:3;1361:19;1413:4;1408:3;1404:14;1389:29;;1255:169;;;;:::o;1430:182::-;1570:34;1566:1;1558:6;1554:14;1547:58;1430:182;:::o;1618:366::-;1760:3;1781:67;1845:2;1840:3;1781:67;:::i;:::-;1774:74;;1857:93;1946:3;1857:93;:::i;:::-;1975:2;1970:3;1966:12;1959:19;;1618:366;;;:::o;1990:419::-;2156:4;2194:2;2183:9;2179:18;2171:26;;2243:9;2237:4;2233:20;2229:1;2218:9;2214:17;2207:47;2271:131;2397:4;2271:131;:::i;:::-;2263:139;;1990:419;;;:::o;2415:220::-;2555:34;2551:1;2543:6;2539:14;2532:58;2624:3;2619:2;2611:6;2607:15;2600:28;2415:220;:::o;2641:366::-;2783:3;2804:67;2868:2;2863:3;2804:67;:::i;:::-;2797:74;;2880:93;2969:3;2880:93;:::i;:::-;2998:2;2993:3;2989:12;2982:19;;2641:366;;;:::o;3013:419::-;3179:4;3217:2;3206:9;3202:18;3194:26;;3266:9;3260:4;3256:20;3252:1;3241:9;3237:17;3230:47;3294:131;3420:4;3294:131;:::i;:::-;3286:139;;3013:419;;;:::o;3438:126::-;3475:7;3515:42;3508:5;3504:54;3493:65;;3438:126;;;:::o;3570:96::-;3607:7;3636:24;3654:5;3636:24;:::i;:::-;3625:35;;3570:96;;;:::o;3672:118::-;3759:24;3777:5;3759:24;:::i;:::-;3754:3;3747:37;3672:118;;:::o;3796:222::-;3889:4;3927:2;3916:9;3912:18;3904:26;;3940:71;4008:1;3997:9;3993:17;3984:6;3940:71;:::i;:::-;3796:222;;;;:::o;4105:117::-;4214:1;4211;4204:12;4351:122;4424:24;4442:5;4424:24;:::i;:::-;4417:5;4414:35;4404:63;;4463:1;4460;4453:12;4404:63;4351:122;:::o;4479:139::-;4525:5;4563:6;4550:20;4541:29;;4579:33;4606:5;4579:33;:::i;:::-;4479:139;;;;:::o;4624:329::-;4683:6;4732:2;4720:9;4711:7;4707:23;4703:32;4700:119;;;4738:79;;:::i;:::-;4700:119;4858:1;4883:53;4928:7;4919:6;4908:9;4904:22;4883:53;:::i;:::-;4873:63;;4829:117;4624:329;;;;:::o;4959:77::-;4996:7;5025:5;5014:16;;4959:77;;;:::o;5042:118::-;5129:24;5147:5;5129:24;:::i;:::-;5124:3;5117:37;5042:118;;:::o;5166:222::-;5259:4;5297:2;5286:9;5282:18;5274:26;;5310:71;5378:1;5367:9;5363:17;5354:6;5310:71;:::i;:::-;5166:222;;;;:::o;5394:122::-;5467:24;5485:5;5467:24;:::i;:::-;5460:5;5457:35;5447:63;;5506:1;5503;5496:12;5447:63;5394:122;:::o;5522:139::-;5568:5;5606:6;5593:20;5584:29;;5622:33;5649:5;5622:33;:::i;:::-;5522:139;;;;:::o;5667:329::-;5726:6;5775:2;5763:9;5754:7;5750:23;5746:32;5743:119;;;5781:79;;:::i;:::-;5743:119;5901:1;5926:53;5971:7;5962:6;5951:9;5947:22;5926:53;:::i;:::-;5916:63;;5872:117;5667:329;;;;:::o;6002:60::-;6030:3;6051:5;6044:12;;6002:60;;;:::o;6068:142::-;6118:9;6151:53;6169:34;6178:24;6196:5;6178:24;:::i;:::-;6169:34;:::i;:::-;6151:53;:::i;:::-;6138:66;;6068:142;;;:::o;6216:126::-;6266:9;6299:37;6330:5;6299:37;:::i;:::-;6286:50;;6216:126;;;:::o;6348:141::-;6413:9;6446:37;6477:5;6446:37;:::i;:::-;6433:50;;6348:141;;;:::o;6495:161::-;6597:52;6643:5;6597:52;:::i;:::-;6592:3;6585:65;6495:161;;:::o;6662:252::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:86;6904:1;6893:9;6889:17;6880:6;6821:86;:::i;:::-;6662:252;;;;:::o;6920:332::-;7041:4;7079:2;7068:9;7064:18;7056:26;;7092:71;7160:1;7149:9;7145:17;7136:6;7092:71;:::i;:::-;7173:72;7241:2;7230:9;7226:18;7217:6;7173:72;:::i;:::-;6920:332;;;;;:::o;7258:174::-;7398:26;7394:1;7386:6;7382:14;7375:50;7258:174;:::o;7438:366::-;7580:3;7601:67;7665:2;7660:3;7601:67;:::i;:::-;7594:74;;7677:93;7766:3;7677:93;:::i;:::-;7795:2;7790:3;7786:12;7779:19;;7438:366;;;:::o;7810:419::-;7976:4;8014:2;8003:9;7999:18;7991:26;;8063:9;8057:4;8053:20;8049:1;8038:9;8034:17;8027:47;8091:131;8217:4;8091:131;:::i;:::-;8083:139;;7810:419;;;:::o;8235:220::-;8375:34;8371:1;8363:6;8359:14;8352:58;8444:3;8439:2;8431:6;8427:15;8420:28;8235:220;:::o;8461:366::-;8603:3;8624:67;8688:2;8683:3;8624:67;:::i;:::-;8617:74;;8700:93;8789:3;8700:93;:::i;:::-;8818:2;8813:3;8809:12;8802:19;;8461:366;;;:::o;8833:419::-;8999:4;9037:2;9026:9;9022:18;9014:26;;9086:9;9080:4;9076:20;9072:1;9061:9;9057:17;9050:47;9114:131;9240:4;9114:131;:::i;:::-;9106:139;;8833:419;;;:::o
Swarm Source
ipfs://475f02e3cfab3e3e3442f310a41c798d646a2a65f898c81bd695ada29711ab68
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1,702 | 0.0000000000000255 | <$0.000001 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.