Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24320029 | 27 days ago | 0.00059677 ETH | ||||
| Transfer | 24131246 | 53 days ago | 0.00244541 ETH | ||||
| Transfer | 24089012 | 59 days ago | 0.00074821 ETH | ||||
| Transfer | 23578315 | 131 days ago | 0.00118209 ETH | ||||
| Transfer | 23512585 | 140 days ago | 0.00218001 ETH | ||||
| Transfer | 23461367 | 147 days ago | 0.00323384 ETH | ||||
| Transfer | 23461334 | 147 days ago | 0.00492594 ETH | ||||
| Transfer | 23426399 | 152 days ago | 0.00524108 ETH | ||||
| Transfer | 23420484 | 153 days ago | 0.01440245 ETH | ||||
| Transfer | 23385103 | 158 days ago | 0.01723719 ETH | ||||
| Transfer | 23375920 | 159 days ago | 0.0000001 ETH | ||||
| Transfer | 23375920 | 159 days ago | 0.00497937 ETH | ||||
| Transfer | 23158417 | 190 days ago | 0.00050155 ETH | ||||
| Transfer | 23105696 | 197 days ago | 0.00024314 ETH | ||||
| Transfer | 23105416 | 197 days ago | 0.00024212 ETH | ||||
| Transfer | 22642251 | 262 days ago | 0.00027522 ETH | ||||
| Transfer | 22642251 | 262 days ago | 0.00029565 ETH | ||||
| Transfer | 22511330 | 280 days ago | 0.0004978 ETH | ||||
| Transfer | 21946624 | 359 days ago | 0.00140227 ETH | ||||
| Transfer | 21875400 | 369 days ago | 0.00076754 ETH | ||||
| Transfer | 21842181 | 374 days ago | 0.00065686 ETH | ||||
| Transfer | 21836318 | 374 days ago | 0.00042408 ETH | ||||
| Transfer | 21609032 | 406 days ago | 0.00217754 ETH | ||||
| Transfer | 21317575 | 447 days ago | 0.00082401 ETH | ||||
| Transfer | 21289260 | 451 days ago | 0.00458684 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PonziExpressFeeSplitter
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.19;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IPONZIE {
function uniswapV2Pair() external view returns (address);
function burn(uint256 amount) external;
}
interface IUniswapV2Router02 {
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
}
interface IWETH {
function withdraw(uint256) external;
}
/// @title PonziExpressFeeSplitter
/// @notice Fee Splitter from lauchpad
contract PonziExpressFeeSplitter is Ownable {
/// VARIABLES ///
/// @notice Fee num on
uint256 public feeNum;
/// @notice Swap ETH at amount
uint256 public constant swapAt = 2 ether;
/// @notice Address of WETH
address public constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
/// @notice Address of PONZIE
address public immutable PONZIE;
/// @notice Address of lp staking
address public immutable lpStaking;
/// @notice Address of PONZIE staking
address public immutable PONZIEStaking;
/// @notice Address of treasury
address public immutable treasury;
/// @notice Address for team fees
address public teamAddress;
/// @notice Address of UniswapV2Router
IUniswapV2Router02 public immutable uniswapV2Router;
/// CONSTRUCTOR ///
constructor(address _ponize, address _lpStaking, address _ponzieStaking, address _treasury, address _initialTeam) {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
uniswapV2Router = _uniswapV2Router;
PONZIE = _ponize;
lpStaking = _lpStaking;
PONZIEStaking = _ponzieStaking;
treasury = _treasury;
teamAddress = _initialTeam;
}
/// RECEIVE ///
receive() external payable {}
/// PROCESS FEES ///
function processFees() external {
uint256 wethBalance = IERC20(WETH).balanceOf(address(this));
if (wethBalance > 0) IWETH(WETH).withdraw(wethBalance);
bool canSwap = address(this).balance >= swapAt;
if (canSwap) {
bool success;
(success,) = address(teamAddress).call{value: 0.8 ether}("");
uint256 remainingFee = 1.2 ether;
if (feeNum == 0) {
++feeNum;
_swapETH(remainingFee);
IPONZIE(PONZIE).burn(IERC20(PONZIE).balanceOf(address(this)));
} else if (feeNum == 1) {
++feeNum;
_addLiquidity();
} else if (feeNum == 2) {
++feeNum;
_swapETH(remainingFee);
uint256 balance = IERC20(PONZIE).balanceOf(address(this));
IERC20(PONZIE).transfer(lpStaking, balance);
} else {
feeNum = 0;
(success,) = address(PONZIEStaking).call{value: remainingFee}("");
}
}
}
//// INTERNAL FUNCTIONS ///
/// @notice Swap ETH
function _swapETH(uint256 _ethAmount) internal {
address[] memory path = new address[](2);
path[0] = WETH;
path[1] = PONZIE;
uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: _ethAmount}(
0, path, address(this), block.timestamp
);
}
/// @notice Add liq
function _addLiquidity() internal {
_swapETH(0.6 ether);
uint256 PONZIEBalance = IERC20(PONZIE).balanceOf(address(this));
IERC20(PONZIE).approve(address(uniswapV2Router), PONZIEBalance);
uniswapV2Router.addLiquidityETH{value: 0.6 ether}(PONZIE, PONZIEBalance, 0, 0, treasury, block.timestamp);
}
/// OWNER ///
/// @notice Set team address
function setTeam(address _team) external onlyOwner {
teamAddress = _team;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.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 Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @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 {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @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 {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: 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
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}{
"optimizer": {
"enabled": true,
"runs": 1000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_ponize","type":"address"},{"internalType":"address","name":"_lpStaking","type":"address"},{"internalType":"address","name":"_ponzieStaking","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_initialTeam","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"PONZIE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PONZIEStaking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpStaking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"processFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_team","type":"address"}],"name":"setTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddress","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":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6101206040523480156200001257600080fd5b50604051620010c5380380620010c5833981016040819052620000359162000100565b620000403362000093565b737a250d5630b4cf539739df2c5dacb4c659f2488d610100526001600160a01b0394851660805292841660a05290831660c052821660e052600280546001600160a01b0319169190921617905562000170565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b0381168114620000fb57600080fd5b919050565b600080600080600060a086880312156200011957600080fd5b6200012486620000e3565b94506200013460208701620000e3565b93506200014460408701620000e3565b92506200015460608701620000e3565b91506200016460808701620000e3565b90509295509295909350565b60805160a05160c05160e05161010051610eb5620002106000396000818161015001528181610a4901528181610b8b0152610cc80152600081816101bc0152610c9a01526000818161020501526107ad01526000818161025701526106f90152600081816102de0152818161051e015281816106560152818161072b015281816109d901528181610ae801528181610bbd0152610c5d0152610eb56000f3fe6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063b7d1878911610059578063b7d18789146102a1578063ba69ebed146102b7578063d3a3a6ef146102cc578063f2fde38b1461030057600080fd5b80638da5cb5b146102275780639bf1401c14610245578063ad5c46481461027957600080fd5b80631c75f085116100bb5780631c75f0851461018a57806361d027b3146101aa578063715018a6146101de578063873e5034146101f357600080fd5b806308aa2695146100ed578063095cf5c61461011c5780631694505e1461013e57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b50610109671bc16d674ec8000081565b6040519081526020015b60405180910390f35b34801561012857600080fd5b5061013c610137366004610d3f565b610320565b005b34801561014a57600080fd5b506101727f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610113565b34801561019657600080fd5b50600254610172906001600160a01b031681565b3480156101b657600080fd5b506101727f000000000000000000000000000000000000000000000000000000000000000081565b3480156101ea57600080fd5b5061013c610357565b3480156101ff57600080fd5b506101727f000000000000000000000000000000000000000000000000000000000000000081565b34801561023357600080fd5b506000546001600160a01b0316610172565b34801561025157600080fd5b506101727f000000000000000000000000000000000000000000000000000000000000000081565b34801561028557600080fd5b5061017273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156102ad57600080fd5b5061010960015481565b3480156102c357600080fd5b5061013c61036b565b3480156102d857600080fd5b506101727f000000000000000000000000000000000000000000000000000000000000000081565b34801561030c57600080fd5b5061013c61031b366004610d3f565b610822565b6103286108b7565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61035f6108b7565b6103696000610911565b565b6040516370a0823160e01b815230600482015260009073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2906370a0823190602401602060405180830381865afa1580156103bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e19190610d6f565b90508015610468576040517f2e1a7d4d0000000000000000000000000000000000000000000000000000000081526004810182905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290632e1a7d4d90602401600060405180830381600087803b15801561044f57600080fd5b505af1158015610463573d6000803e3d6000fd5b505050505b671bc16d674ec80000471080159061081e576002546040516000916001600160a01b031690670b1a2bc2ec500000908381818185875af1925050503d80600081146104cf576040519150601f19603f3d011682016040523d82523d6000602084013e6104d4565b606091505b50506001549091506710a741a462780000906000036105ee576001600081546104fc90610d88565b909155506105098161096e565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906342966c689082906370a0823190602401602060405180830381865afa158015610575573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105999190610d6f565b6040518263ffffffff1660e01b81526004016105b791815260200190565b600060405180830381600087803b1580156105d157600080fd5b505af11580156105e5573d6000803e3d6000fd5b5050505061081b565b6001546001036106185760016000815461060790610d88565b90915550610613610abf565b61081b565b6001546002036107a15760016000815461063190610d88565b9091555061063e8161096e565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156106a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c99190610d6f565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018390529192507f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb906044016020604051808303816000875af1158015610776573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079a9190610daf565b505061081b565b600060018190556040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169183919081818185875af1925050503d8060008114610810576040519150601f19603f3d011682016040523d82523d6000602084013e610815565b606091505b50909250505b50505b5050565b61082a6108b7565b6001600160a01b0381166108ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6108b481610911565b50565b6000546001600160a01b031633146103695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a2565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051600280825260608201835260009260208301908036833701905050905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816000815181106109b7576109b7610dd1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610a0b57610a0b610dd1565b6001600160a01b0392831660209182029290920101526040517fb6f9de950000000000000000000000000000000000000000000000000000000081527f00000000000000000000000000000000000000000000000000000000000000009091169063b6f9de95908490610a8990600090869030904290600401610de7565b6000604051808303818588803b158015610aa257600080fd5b505af1158015610ab6573d6000803e3d6000fd5b50505050505050565b610ad0670853a0d2313c000061096e565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5b9190610d6f565b6040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018390529192507f00000000000000000000000000000000000000000000000000000000000000009091169063095ea7b3906044016020604051808303816000875af1158015610c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2c9190610daf565b506040517ff305d7190000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820183905260006044830181905260648301527f0000000000000000000000000000000000000000000000000000000000000000811660848301524260a48301527f0000000000000000000000000000000000000000000000000000000000000000169063f305d71990670853a0d2313c00009060c40160606040518083038185885af1158015610d1a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061081b9190610e51565b600060208284031215610d5157600080fd5b81356001600160a01b0381168114610d6857600080fd5b9392505050565b600060208284031215610d8157600080fd5b5051919050565b600060018201610da857634e487b7160e01b600052601160045260246000fd5b5060010190565b600060208284031215610dc157600080fd5b81518015158114610d6857600080fd5b634e487b7160e01b600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015610e315784516001600160a01b031683529383019391830191600101610e0c565b50506001600160a01b039690961660408501525050506060015292915050565b600080600060608486031215610e6657600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d508a634a00eca2480ba3b5d5a14c978b4006b0e041645f0c4b22a2593b5694664736f6c634300081300330000000000000000000000004166673521e31ed98801e45e8b068b4bc227a11000000000000000000000000047f53e843689840cf155b160301c3121aa60e74f0000000000000000000000000b25d5358e13899e3cc77fe54b4baf949e476ac5000000000000000000000000e6338a83fa23f55919b6c371e32e8f5f71dab59a0000000000000000000000001d09bcc9baa14f30a42e59abc3110ba80c3947dc
Deployed Bytecode
0x6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063b7d1878911610059578063b7d18789146102a1578063ba69ebed146102b7578063d3a3a6ef146102cc578063f2fde38b1461030057600080fd5b80638da5cb5b146102275780639bf1401c14610245578063ad5c46481461027957600080fd5b80631c75f085116100bb5780631c75f0851461018a57806361d027b3146101aa578063715018a6146101de578063873e5034146101f357600080fd5b806308aa2695146100ed578063095cf5c61461011c5780631694505e1461013e57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b50610109671bc16d674ec8000081565b6040519081526020015b60405180910390f35b34801561012857600080fd5b5061013c610137366004610d3f565b610320565b005b34801561014a57600080fd5b506101727f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610113565b34801561019657600080fd5b50600254610172906001600160a01b031681565b3480156101b657600080fd5b506101727f000000000000000000000000e6338a83fa23f55919b6c371e32e8f5f71dab59a81565b3480156101ea57600080fd5b5061013c610357565b3480156101ff57600080fd5b506101727f0000000000000000000000000b25d5358e13899e3cc77fe54b4baf949e476ac581565b34801561023357600080fd5b506000546001600160a01b0316610172565b34801561025157600080fd5b506101727f00000000000000000000000047f53e843689840cf155b160301c3121aa60e74f81565b34801561028557600080fd5b5061017273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156102ad57600080fd5b5061010960015481565b3480156102c357600080fd5b5061013c61036b565b3480156102d857600080fd5b506101727f0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a11081565b34801561030c57600080fd5b5061013c61031b366004610d3f565b610822565b6103286108b7565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61035f6108b7565b6103696000610911565b565b6040516370a0823160e01b815230600482015260009073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2906370a0823190602401602060405180830381865afa1580156103bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e19190610d6f565b90508015610468576040517f2e1a7d4d0000000000000000000000000000000000000000000000000000000081526004810182905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290632e1a7d4d90602401600060405180830381600087803b15801561044f57600080fd5b505af1158015610463573d6000803e3d6000fd5b505050505b671bc16d674ec80000471080159061081e576002546040516000916001600160a01b031690670b1a2bc2ec500000908381818185875af1925050503d80600081146104cf576040519150601f19603f3d011682016040523d82523d6000602084013e6104d4565b606091505b50506001549091506710a741a462780000906000036105ee576001600081546104fc90610d88565b909155506105098161096e565b6040516370a0823160e01b81523060048201527f0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a1106001600160a01b0316906342966c689082906370a0823190602401602060405180830381865afa158015610575573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105999190610d6f565b6040518263ffffffff1660e01b81526004016105b791815260200190565b600060405180830381600087803b1580156105d157600080fd5b505af11580156105e5573d6000803e3d6000fd5b5050505061081b565b6001546001036106185760016000815461060790610d88565b90915550610613610abf565b61081b565b6001546002036107a15760016000815461063190610d88565b9091555061063e8161096e565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a1106001600160a01b0316906370a0823190602401602060405180830381865afa1580156106a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c99190610d6f565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b037f00000000000000000000000047f53e843689840cf155b160301c3121aa60e74f81166004830152602482018390529192507f0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a1109091169063a9059cbb906044016020604051808303816000875af1158015610776573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079a9190610daf565b505061081b565b600060018190556040517f0000000000000000000000000b25d5358e13899e3cc77fe54b4baf949e476ac56001600160a01b03169183919081818185875af1925050503d8060008114610810576040519150601f19603f3d011682016040523d82523d6000602084013e610815565b606091505b50909250505b50505b5050565b61082a6108b7565b6001600160a01b0381166108ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6108b481610911565b50565b6000546001600160a01b031633146103695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a2565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051600280825260608201835260009260208301908036833701905050905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816000815181106109b7576109b7610dd1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a11081600181518110610a0b57610a0b610dd1565b6001600160a01b0392831660209182029290920101526040517fb6f9de950000000000000000000000000000000000000000000000000000000081527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063b6f9de95908490610a8990600090869030904290600401610de7565b6000604051808303818588803b158015610aa257600080fd5b505af1158015610ab6573d6000803e3d6000fd5b50505050505050565b610ad0670853a0d2313c000061096e565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a1106001600160a01b0316906370a0823190602401602060405180830381865afa158015610b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5b9190610d6f565b6040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81166004830152602482018390529192507f0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a1109091169063095ea7b3906044016020604051808303816000875af1158015610c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2c9190610daf565b506040517ff305d7190000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a110811660048301526024820183905260006044830181905260648301527f000000000000000000000000e6338a83fa23f55919b6c371e32e8f5f71dab59a811660848301524260a48301527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d71990670853a0d2313c00009060c40160606040518083038185885af1158015610d1a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061081b9190610e51565b600060208284031215610d5157600080fd5b81356001600160a01b0381168114610d6857600080fd5b9392505050565b600060208284031215610d8157600080fd5b5051919050565b600060018201610da857634e487b7160e01b600052601160045260246000fd5b5060010190565b600060208284031215610dc157600080fd5b81518015158114610d6857600080fd5b634e487b7160e01b600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015610e315784516001600160a01b031683529383019391830191600101610e0c565b50506001600160a01b039690961660408501525050506060015292915050565b600080600060608486031215610e6657600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d508a634a00eca2480ba3b5d5a14c978b4006b0e041645f0c4b22a2593b5694664736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a11000000000000000000000000047f53e843689840cf155b160301c3121aa60e74f0000000000000000000000000b25d5358e13899e3cc77fe54b4baf949e476ac5000000000000000000000000e6338a83fa23f55919b6c371e32e8f5f71dab59a0000000000000000000000001d09bcc9baa14f30a42e59abc3110ba80c3947dc
-----Decoded View---------------
Arg [0] : _ponize (address): 0x4166673521e31eD98801E45e8b068b4bC227A110
Arg [1] : _lpStaking (address): 0x47f53e843689840cf155b160301C3121AA60E74F
Arg [2] : _ponzieStaking (address): 0x0B25D5358E13899e3cc77Fe54B4BAF949E476AC5
Arg [3] : _treasury (address): 0xE6338A83fa23F55919B6c371E32E8f5f71DaB59a
Arg [4] : _initialTeam (address): 0x1D09bCC9bAa14F30a42E59abC3110BA80C3947Dc
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000004166673521e31ed98801e45e8b068b4bc227a110
Arg [1] : 00000000000000000000000047f53e843689840cf155b160301c3121aa60e74f
Arg [2] : 0000000000000000000000000b25d5358e13899e3cc77fe54b4baf949e476ac5
Arg [3] : 000000000000000000000000e6338a83fa23f55919b6c371e32e8f5f71dab59a
Arg [4] : 0000000000000000000000001d09bcc9baa14f30a42e59abc3110ba80c3947dc
Loading...
Loading
Loading...
Loading
Net Worth in USD
$3,588.00
Net Worth in ETH
1.92331
Token Allocations
ETH
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,865.54 | 1.9233 | $3,588 |
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.