Overview
BERA Balance
BERA Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 710 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 4091062 | 2 mins ago | IN | 0 BERA | 0.00002427 | ||||
Approve | 4090968 | 5 mins ago | IN | 0 BERA | 0.00002442 | ||||
Approve | 4090785 | 11 mins ago | IN | 0 BERA | 0.00001019 | ||||
Approve | 4090645 | 16 mins ago | IN | 0 BERA | 0.00002427 | ||||
Approve | 4090554 | 19 mins ago | IN | 0 BERA | 0.00000728 | ||||
Approve | 4090376 | 25 mins ago | IN | 0 BERA | 0.00000728 | ||||
Approve | 4089660 | 48 mins ago | IN | 0 BERA | 0.00000728 | ||||
Approve | 4089576 | 51 mins ago | IN | 0 BERA | 0 | ||||
Approve | 4089543 | 52 mins ago | IN | 0 BERA | 0 | ||||
Approve | 4089420 | 56 mins ago | IN | 0 BERA | 0.00000829 | ||||
Approve | 4089330 | 1 hrs ago | IN | 0 BERA | 0.00000728 | ||||
Approve | 4089270 | 1 hr ago | IN | 0 BERA | 0.00000728 | ||||
Approve | 4089231 | 1 hr ago | IN | 0 BERA | 0.00000728 | ||||
Approve | 4089192 | 1 hr ago | IN | 0 BERA | 0.00000728 | ||||
Approve | 4089185 | 1 hr ago | IN | 0 BERA | 0.00000728 | ||||
Approve | 4089160 | 1 hr ago | IN | 0 BERA | 0 | ||||
Approve | 4089119 | 1 hr ago | IN | 0 BERA | 0.00000839 | ||||
Approve | 4089107 | 1 hr ago | IN | 0 BERA | 0.00000272 | ||||
Approve | 4088985 | 1 hr ago | IN | 0 BERA | 0 | ||||
Approve | 4088806 | 1 hr ago | IN | 0 BERA | 0.00000539 | ||||
Approve | 4088793 | 1 hr ago | IN | 0 BERA | 0.00000472 | ||||
Approve | 4088331 | 1 hr ago | IN | 0 BERA | 0.0000033 | ||||
Approve | 4088280 | 1 hr ago | IN | 0 BERA | 0.00000125 | ||||
Approve | 4088095 | 1 hr ago | IN | 0 BERA | 0.00007286 | ||||
Approve | 4088066 | 1 hr ago | IN | 0 BERA | 0.00004856 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
3230090 | 19 days ago | Contract Creation | 0 BERA |
Loading...
Loading
Contract Name:
OogaBoogaToken
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >= 0.8.20; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; /* * OOGA is OogaBooga's native ERC20 token. * It has a max supply of 100,000,000 OOGA. */ contract OogaBoogaToken is ERC20("Ooga Token", "OOGA") { uint256 public constant MAX_SUPPLY = 100e6 ether; address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; constructor(address _distributor) { _mint(_distributor, MAX_SUPPLY); } /** * @dev Burns "amount" of OOGA by sending it to BURN_ADDRESS */ function burn(uint256 amount) external { _transfer(msg.sender, BURN_ADDRESS, amount); } /** * @dev Total supply = max supply - amount burned */ function totalSupply() public view override returns (uint256) { return MAX_SUPPLY - balanceOf(BURN_ADDRESS); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// 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 v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// 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; } }
{ "remappings": [ "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/openzeppelin-contracts/contracts/", "solmate/=lib/solmate/src/" ], "optimizer": { "enabled": false, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "shanghai", "viaIR": true, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_distributor","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523462000037576200001e6200001862000110565b6200025c565b620000286200003d565b61126e6200082f823961126e90f35b62000043565b60405190565b5f80fd5b601f801991011690565b634e487b7160e01b5f52604160045260245ffd5b90620000719062000047565b810190811060018060401b038211176200008a57604052565b62000051565b90620000a76200009f6200003d565b928362000065565b565b5f80fd5b60018060a01b031690565b620000c390620000ad565b90565b620000d181620000b8565b03620000d957565b5f80fd5b90505190620000ec82620000c6565b565b906020828203126200010a5762000107915f01620000dd565b90565b620000a9565b6200013362001a9d80380380620001278162000090565b928339810190620000ee565b90565b60018060401b03811162000155576200015160209162000047565b0190565b62000051565b90620001716200016b8362000136565b62000090565b918252565b5f7f4f6f676120546f6b656e00000000000000000000000000000000000000000000910152565b620001a9600a6200015b565b90620001b86020830162000176565b565b620001c46200019d565b90565b5f7f4f4f474100000000000000000000000000000000000000000000000000000000910152565b620001fa60046200015b565b906200020960208301620001c7565b565b62000215620001ee565b90565b90565b90565b90565b6200023a62000234620002409262000218565b6200021e565b6200021b565b90565b620002596a52b7d2dcc80cd2e400000062000221565b90565b6200029190620002806200026f620001ba565b620002796200020b565b9062000529565b6200028a62000243565b906200074b565b565b5190565b634e487b7160e01b5f52602260045260245ffd5b9060016002830492168015620002ce575b6020831014620002c857565b62000297565b91607f1691620002bc565b5f5260205f2090565b601f602091010490565b1b90565b919060086200030f910291620003085f1984620002ec565b92620002ec565b9181191691161790565b620003326200032c62000338926200021b565b6200021e565b6200021b565b90565b90565b91906200035962000353620003629362000319565b6200033b565b908354620002f0565b9055565b5f90565b62000380916200037962000366565b916200033e565b565b5b8181106200038f575050565b806200039e5f6001936200036a565b0162000383565b9190601f8111620003b6575b505050565b620003c5620003f093620002d9565b906020620003d384620002e2565b83019310620003f9575b620003e890620002e2565b019062000382565b5f8080620003b1565b9150620003e881929050620003dd565b1c90565b906200041f905f199060080262000409565b191690565b8162000430916200040d565b906002021790565b90620004448162000293565b9060018060401b03821162000515576200046b82620004648554620002ab565b85620003a5565b602090601f8311600114620004a45791809162000492935f9262000497575b505062000424565b90555b565b90915001515f806200048a565b601f19831691620004b585620002d9565b925f5b818110620004fc57509160029391856001969410620004df575b5050500201905562000495565b620004f1910151601f8416906200040d565b90555f8080620004d2565b91936020600181928787015181550195019201620004b8565b62000051565b90620005279162000438565b565b906200053b620005439260036200051b565b60046200051b565b565b90565b620005616200055b620005679262000545565b6200021e565b620000ad565b90565b620005759062000548565b90565b60209181520190565b5f7f45524332303a206d696e7420746f20746865207a65726f206164647265737300910152565b620005b7601f60209262000578565b620005c28162000581565b0190565b620005dd9060208101905f818303910152620005a8565b90565b15620005e857565b620005f26200003d565b62461bcd60e51b8152806200060a60048201620005c6565b0390fd5b5f1c90565b90565b620006256200062b916200060e565b62000613565b90565b6200063a905462000616565b90565b634e487b7160e01b5f52601160045260245ffd5b620006636200066a919392936200021b565b926200021b565b82018092116200067657565b6200063d565b5f1b90565b906200068f5f19916200067c565b9181191691161790565b90620006b3620006ad620006bb9262000319565b6200033b565b825462000681565b9055565b620006d8620006d2620006de92620000ad565b6200021e565b620000ad565b90565b620006ec90620006bf565b90565b620006fa90620006e1565b90565b906200070990620006ef565b5f5260205260405f2090565b906200072291016200021b565b90565b62000730906200021b565b9052565b919062000749905f6020850194019062000725565b565b906200077982620007716200076a620007645f6200056a565b620000b8565b91620000b8565b1415620005e0565b6200079c62000794826200078e60026200062e565b62000651565b600262000699565b620007cb81620007c4620007b25f8690620006fd565b91620007be836200062e565b62000715565b9062000699565b620007d65f6200056a565b91909162000829620008146200080d7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93620006ef565b93620006ef565b936200081f6200003d565b9182918262000734565b0390a356fe60806040526004361015610013575b6106a9565b61001d5f356100fc565b806306fdde03146100f7578063095ea7b3146100f257806318160ddd146100ed57806323b872dd146100e8578063313ce567146100e357806332cb6b0c146100de57806339509351146100d957806342966c68146100d457806370a08231146100cf57806395d89b41146100ca578063a457c2d7146100c5578063a9059cbb146100c0578063dd62ed3e146100bb5763fccc28130361000e57610674565b61060b565b6105a8565b610572565b61053d565b610508565b6104b7565b61045e565b610429565b6103b0565b610352565b6102e3565b61028b565b6101a2565b60e01c90565b60405190565b5f80fd5b5f80fd5b5f91031261011a57565b61010c565b5190565b60209181520190565b5f5b83811061013e575050905f910152565b80602091830151818501520161012e565b601f801991011690565b6101786101816020936101869361016f8161011f565b93848093610123565b9586910161012c565b61014f565b0190565b61019f9160208201915f818403910152610159565b90565b346101d2576101b2366004610110565b6101ce6101bd610887565b6101c5610102565b9182918261018a565b0390f35b610108565b60018060a01b031690565b6101eb906101d7565b90565b6101f7816101e2565b036101fe57565b5f80fd5b9050359061020f826101ee565b565b90565b61021d81610211565b0361022457565b5f80fd5b9050359061023582610214565b565b919060408382031261025f578061025361025c925f8601610202565b93602001610228565b90565b61010c565b151590565b61027290610264565b9052565b9190610289905f60208501940190610269565b565b346102bc576102b86102a76102a1366004610237565b906109e1565b6102af610102565b91829182610276565b0390f35b610108565b6102ca90610211565b9052565b91906102e1905f602085019401906102c1565b565b34610313576102f3366004610110565b61030f6102fe610701565b610306610102565b918291826102ce565b0390f35b610108565b909160608284031261034d5761034a610333845f8501610202565b936103418160208601610202565b93604001610228565b90565b61010c565b346103835761037f61036e610368366004610318565b91610a03565b610376610102565b91829182610276565b0390f35b610108565b60ff1690565b61039790610388565b9052565b91906103ae905f6020850194019061038e565b565b346103e0576103c0366004610110565b6103dc6103cb6108d6565b6103d3610102565b9182918261039b565b0390f35b610108565b90565b90565b6103ff6103fa610404926103e5565b6103e8565b610211565b90565b61041b6a52b7d2dcc80cd2e40000006103eb565b90565b610426610407565b90565b3461045957610439366004610110565b61045561044461041e565b61044c610102565b918291826102ce565b0390f35b610108565b3461048f5761048b61047a610474366004610237565b90610a57565b610482610102565b91829182610276565b0390f35b610108565b906020828203126104ad576104aa915f01610228565b90565b61010c565b5f0190565b346104e5576104cf6104ca366004610494565b6106ad565b6104d7610102565b806104e1816104b2565b0390f35b610108565b9060208282031261050357610500915f01610202565b90565b61010c565b346105385761053461052361051e3660046104ea565b61095f565b61052b610102565b918291826102ce565b0390f35b610108565b3461056d5761054d366004610110565b61056961055861089d565b610560610102565b9182918261018a565b0390f35b610108565b346105a35761059f61058e610588366004610237565b90610b42565b610596610102565b91829182610276565b0390f35b610108565b346105d9576105d56105c46105be366004610237565b90610981565b6105cc610102565b91829182610276565b0390f35b610108565b919060408382031261060657806105fa610603925f8601610202565b93602001610202565b90565b61010c565b3461063c576106386106276106213660046105de565b906109b9565b61062f610102565b918291826102ce565b0390f35b610108565b61dead90565b61064f610641565b90565b61065b906101e2565b9052565b9190610672905f60208501940190610652565b565b346106a457610684366004610110565b6106a061068f610647565b610697610102565b9182918261065f565b0390f35b610108565b5f80fd5b6106c29033906106bb610641565b9091610e21565b565b5f90565b634e487b7160e01b5f52601160045260245ffd5b6106eb6106f191939293610211565b92610211565b82039182116106fc57565b6106c8565b6107096106c4565b5061072b610715610407565b610725610720610641565b61095f565b906106dc565b90565b606090565b634e487b7160e01b5f52602260045260245ffd5b9060016002830492168015610767575b602083101461076257565b610733565b91607f1691610757565b60209181520190565b5f5260205f2090565b905f929180549061079d61079683610747565b8094610771565b916001811690815f146107f457506001146107b8575b505050565b6107c5919293945061077a565b915f925b8184106107dc57505001905f80806107b3565b600181602092959395548486015201910192906107c9565b92949550505060ff19168252151560200201905f80806107b3565b9061081991610783565b90565b634e487b7160e01b5f52604160045260245ffd5b9061083a9061014f565b810190811067ffffffffffffffff82111761085457604052565b61081c565b9061087961087292610869610102565b9384809261080f565b0383610830565b565b61088490610859565b90565b61088f61072e565b5061089a600361087b565b90565b6108a561072e565b506108b0600461087b565b90565b5f90565b90565b6108ce6108c96108d3926108b7565b6103e8565b610388565b90565b6108de6108b3565b506108e960126108ba565b90565b6109006108fb610905926101d7565b6103e8565b6101d7565b90565b610911906108ec565b90565b61091d90610908565b90565b9061092a90610914565b5f5260205260405f2090565b5f1c90565b90565b61094a61094f91610936565b61093b565b90565b61095c905461093e565b90565b61097561097a9161096e6106c4565b505f610920565b610952565b90565b5f90565b61099e9161098d61097d565b5061099661122b565b919091610e21565b600190565b906109ad90610914565b5f5260205260405f2090565b6109de916109d46109d9926109cc6106c4565b5060016109a3565b610920565b610952565b90565b6109fe916109ed61097d565b506109f661122b565b919091611082565b600190565b91610a2d92610a1061097d565b50610a25610a1c61122b565b829084916111c0565b919091610e21565b600190565b610a41610a4791939293610211565b92610211565b8201809211610a5257565b6106c8565b610a8791610a6361097d565b50610a81610a6f61122b565b91610a7c839480946109b9565b610a32565b91611082565b600190565b60207f207a65726f000000000000000000000000000000000000000000000000000000917f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201520152565b610ae66025604092610123565b610aef81610a8c565b0190565b610b089060208101905f818303910152610ad9565b90565b15610b1257565b610b1a610102565b62461bcd60e51b815280610b3060048201610af3565b0390fd5b90610b3f9103610211565b90565b610b9191610b4e61097d565b50610b8b610b5a61122b565b91610b668385906109b9565b92610b8484610b7d610b7785610211565b91610211565b1015610b0b565b9392610b34565b91611082565b600190565b90565b610bad610ba8610bb292610b96565b6103e8565b6101d7565b90565b610bbe90610b99565b90565b60207f6472657373000000000000000000000000000000000000000000000000000000917f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201520152565b610c1b6025604092610123565b610c2481610bc1565b0190565b610c3d9060208101905f818303910152610c0e565b90565b15610c4757565b610c4f610102565b62461bcd60e51b815280610c6560048201610c28565b0390fd5b60207f6573730000000000000000000000000000000000000000000000000000000000917f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201520152565b610cc36023604092610123565b610ccc81610c69565b0190565b610ce59060208101905f818303910152610cb6565b90565b15610cef57565b610cf7610102565b62461bcd60e51b815280610d0d60048201610cd0565b0390fd5b60207f616c616e63650000000000000000000000000000000000000000000000000000917f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201520152565b610d6b6026604092610123565b610d7481610d11565b0190565b610d8d9060208101905f818303910152610d5e565b90565b15610d9757565b610d9f610102565b62461bcd60e51b815280610db560048201610d78565b0390fd5b5f1b90565b90610dca5f1991610db9565b9181191691161790565b610de8610de3610ded92610211565b6103e8565b610211565b90565b90565b90610e08610e03610e0f92610dd4565b610df0565b8254610dbe565b9055565b90610e1e9101610211565b90565b919091610e4981610e42610e3c610e375f610bb5565b6101e2565b916101e2565b1415610c40565b610e6e83610e67610e61610e5c5f610bb5565b6101e2565b916101e2565b1415610ce8565b610ebb610eab610e87610e825f8590610920565b610952565b610ea481610e9d610e9788610211565b91610211565b1015610d90565b8490610b34565b610eb65f8490610920565b610df3565b610ee282610edc610ecd5f8790610920565b91610ed783610952565b610e13565b90610df3565b919091610f2d610f1b610f157fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93610914565b93610914565b93610f24610102565b918291826102ce565b0390a3565b60207f7265737300000000000000000000000000000000000000000000000000000000917f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201520152565b610f8c6024604092610123565b610f9581610f32565b0190565b610fae9060208101905f818303910152610f7f565b90565b15610fb857565b610fc0610102565b62461bcd60e51b815280610fd660048201610f99565b0390fd5b60207f7373000000000000000000000000000000000000000000000000000000000000917f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201520152565b6110346022604092610123565b61103d81610fda565b0190565b6110569060208101905f818303910152611027565b90565b1561106057565b611068610102565b62461bcd60e51b81528061107e60048201611041565b0390fd5b9190916110aa816110a361109d6110985f610bb5565b6101e2565b916101e2565b1415610fb1565b6110cf836110c86110c26110bd5f610bb5565b6101e2565b916101e2565b1415611059565b6110ee826110e96110e2600185906109a3565b8690610920565b610df3565b9190916111396111276111217f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92593610914565b93610914565b93611130610102565b918291826102ce565b0390a3565b5f7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000910152565b611172601d602092610123565b61117b8161113e565b0190565b6111949060208101905f818303910152611165565b90565b1561119e57565b6111a6610102565b62461bcd60e51b8152806111bc6004820161117f565b0390fd5b6111cb8183906109b9565b90816111e06111da5f19610211565b91610211565b036111ec575b50505050565b61121e93611218916112118461120a61120485610211565b91610211565b1015611197565b9392610b34565b91611082565b5f8080806111e6565b5f90565b611233611227565b50339056fea2646970667358221220d0bafa8ee5f915294ab8fefb85b504f57e6184a48ffb01f112eb5c91be0cb83e64736f6c63430008150033000000000000000000000000259de9e4d6751bfd0f4e538424dfcbbf36fe2c33
Deployed Bytecode
0x60806040526004361015610013575b6106a9565b61001d5f356100fc565b806306fdde03146100f7578063095ea7b3146100f257806318160ddd146100ed57806323b872dd146100e8578063313ce567146100e357806332cb6b0c146100de57806339509351146100d957806342966c68146100d457806370a08231146100cf57806395d89b41146100ca578063a457c2d7146100c5578063a9059cbb146100c0578063dd62ed3e146100bb5763fccc28130361000e57610674565b61060b565b6105a8565b610572565b61053d565b610508565b6104b7565b61045e565b610429565b6103b0565b610352565b6102e3565b61028b565b6101a2565b60e01c90565b60405190565b5f80fd5b5f80fd5b5f91031261011a57565b61010c565b5190565b60209181520190565b5f5b83811061013e575050905f910152565b80602091830151818501520161012e565b601f801991011690565b6101786101816020936101869361016f8161011f565b93848093610123565b9586910161012c565b61014f565b0190565b61019f9160208201915f818403910152610159565b90565b346101d2576101b2366004610110565b6101ce6101bd610887565b6101c5610102565b9182918261018a565b0390f35b610108565b60018060a01b031690565b6101eb906101d7565b90565b6101f7816101e2565b036101fe57565b5f80fd5b9050359061020f826101ee565b565b90565b61021d81610211565b0361022457565b5f80fd5b9050359061023582610214565b565b919060408382031261025f578061025361025c925f8601610202565b93602001610228565b90565b61010c565b151590565b61027290610264565b9052565b9190610289905f60208501940190610269565b565b346102bc576102b86102a76102a1366004610237565b906109e1565b6102af610102565b91829182610276565b0390f35b610108565b6102ca90610211565b9052565b91906102e1905f602085019401906102c1565b565b34610313576102f3366004610110565b61030f6102fe610701565b610306610102565b918291826102ce565b0390f35b610108565b909160608284031261034d5761034a610333845f8501610202565b936103418160208601610202565b93604001610228565b90565b61010c565b346103835761037f61036e610368366004610318565b91610a03565b610376610102565b91829182610276565b0390f35b610108565b60ff1690565b61039790610388565b9052565b91906103ae905f6020850194019061038e565b565b346103e0576103c0366004610110565b6103dc6103cb6108d6565b6103d3610102565b9182918261039b565b0390f35b610108565b90565b90565b6103ff6103fa610404926103e5565b6103e8565b610211565b90565b61041b6a52b7d2dcc80cd2e40000006103eb565b90565b610426610407565b90565b3461045957610439366004610110565b61045561044461041e565b61044c610102565b918291826102ce565b0390f35b610108565b3461048f5761048b61047a610474366004610237565b90610a57565b610482610102565b91829182610276565b0390f35b610108565b906020828203126104ad576104aa915f01610228565b90565b61010c565b5f0190565b346104e5576104cf6104ca366004610494565b6106ad565b6104d7610102565b806104e1816104b2565b0390f35b610108565b9060208282031261050357610500915f01610202565b90565b61010c565b346105385761053461052361051e3660046104ea565b61095f565b61052b610102565b918291826102ce565b0390f35b610108565b3461056d5761054d366004610110565b61056961055861089d565b610560610102565b9182918261018a565b0390f35b610108565b346105a35761059f61058e610588366004610237565b90610b42565b610596610102565b91829182610276565b0390f35b610108565b346105d9576105d56105c46105be366004610237565b90610981565b6105cc610102565b91829182610276565b0390f35b610108565b919060408382031261060657806105fa610603925f8601610202565b93602001610202565b90565b61010c565b3461063c576106386106276106213660046105de565b906109b9565b61062f610102565b918291826102ce565b0390f35b610108565b61dead90565b61064f610641565b90565b61065b906101e2565b9052565b9190610672905f60208501940190610652565b565b346106a457610684366004610110565b6106a061068f610647565b610697610102565b9182918261065f565b0390f35b610108565b5f80fd5b6106c29033906106bb610641565b9091610e21565b565b5f90565b634e487b7160e01b5f52601160045260245ffd5b6106eb6106f191939293610211565b92610211565b82039182116106fc57565b6106c8565b6107096106c4565b5061072b610715610407565b610725610720610641565b61095f565b906106dc565b90565b606090565b634e487b7160e01b5f52602260045260245ffd5b9060016002830492168015610767575b602083101461076257565b610733565b91607f1691610757565b60209181520190565b5f5260205f2090565b905f929180549061079d61079683610747565b8094610771565b916001811690815f146107f457506001146107b8575b505050565b6107c5919293945061077a565b915f925b8184106107dc57505001905f80806107b3565b600181602092959395548486015201910192906107c9565b92949550505060ff19168252151560200201905f80806107b3565b9061081991610783565b90565b634e487b7160e01b5f52604160045260245ffd5b9061083a9061014f565b810190811067ffffffffffffffff82111761085457604052565b61081c565b9061087961087292610869610102565b9384809261080f565b0383610830565b565b61088490610859565b90565b61088f61072e565b5061089a600361087b565b90565b6108a561072e565b506108b0600461087b565b90565b5f90565b90565b6108ce6108c96108d3926108b7565b6103e8565b610388565b90565b6108de6108b3565b506108e960126108ba565b90565b6109006108fb610905926101d7565b6103e8565b6101d7565b90565b610911906108ec565b90565b61091d90610908565b90565b9061092a90610914565b5f5260205260405f2090565b5f1c90565b90565b61094a61094f91610936565b61093b565b90565b61095c905461093e565b90565b61097561097a9161096e6106c4565b505f610920565b610952565b90565b5f90565b61099e9161098d61097d565b5061099661122b565b919091610e21565b600190565b906109ad90610914565b5f5260205260405f2090565b6109de916109d46109d9926109cc6106c4565b5060016109a3565b610920565b610952565b90565b6109fe916109ed61097d565b506109f661122b565b919091611082565b600190565b91610a2d92610a1061097d565b50610a25610a1c61122b565b829084916111c0565b919091610e21565b600190565b610a41610a4791939293610211565b92610211565b8201809211610a5257565b6106c8565b610a8791610a6361097d565b50610a81610a6f61122b565b91610a7c839480946109b9565b610a32565b91611082565b600190565b60207f207a65726f000000000000000000000000000000000000000000000000000000917f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201520152565b610ae66025604092610123565b610aef81610a8c565b0190565b610b089060208101905f818303910152610ad9565b90565b15610b1257565b610b1a610102565b62461bcd60e51b815280610b3060048201610af3565b0390fd5b90610b3f9103610211565b90565b610b9191610b4e61097d565b50610b8b610b5a61122b565b91610b668385906109b9565b92610b8484610b7d610b7785610211565b91610211565b1015610b0b565b9392610b34565b91611082565b600190565b90565b610bad610ba8610bb292610b96565b6103e8565b6101d7565b90565b610bbe90610b99565b90565b60207f6472657373000000000000000000000000000000000000000000000000000000917f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201520152565b610c1b6025604092610123565b610c2481610bc1565b0190565b610c3d9060208101905f818303910152610c0e565b90565b15610c4757565b610c4f610102565b62461bcd60e51b815280610c6560048201610c28565b0390fd5b60207f6573730000000000000000000000000000000000000000000000000000000000917f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201520152565b610cc36023604092610123565b610ccc81610c69565b0190565b610ce59060208101905f818303910152610cb6565b90565b15610cef57565b610cf7610102565b62461bcd60e51b815280610d0d60048201610cd0565b0390fd5b60207f616c616e63650000000000000000000000000000000000000000000000000000917f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201520152565b610d6b6026604092610123565b610d7481610d11565b0190565b610d8d9060208101905f818303910152610d5e565b90565b15610d9757565b610d9f610102565b62461bcd60e51b815280610db560048201610d78565b0390fd5b5f1b90565b90610dca5f1991610db9565b9181191691161790565b610de8610de3610ded92610211565b6103e8565b610211565b90565b90565b90610e08610e03610e0f92610dd4565b610df0565b8254610dbe565b9055565b90610e1e9101610211565b90565b919091610e4981610e42610e3c610e375f610bb5565b6101e2565b916101e2565b1415610c40565b610e6e83610e67610e61610e5c5f610bb5565b6101e2565b916101e2565b1415610ce8565b610ebb610eab610e87610e825f8590610920565b610952565b610ea481610e9d610e9788610211565b91610211565b1015610d90565b8490610b34565b610eb65f8490610920565b610df3565b610ee282610edc610ecd5f8790610920565b91610ed783610952565b610e13565b90610df3565b919091610f2d610f1b610f157fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93610914565b93610914565b93610f24610102565b918291826102ce565b0390a3565b60207f7265737300000000000000000000000000000000000000000000000000000000917f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201520152565b610f8c6024604092610123565b610f9581610f32565b0190565b610fae9060208101905f818303910152610f7f565b90565b15610fb857565b610fc0610102565b62461bcd60e51b815280610fd660048201610f99565b0390fd5b60207f7373000000000000000000000000000000000000000000000000000000000000917f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201520152565b6110346022604092610123565b61103d81610fda565b0190565b6110569060208101905f818303910152611027565b90565b1561106057565b611068610102565b62461bcd60e51b81528061107e60048201611041565b0390fd5b9190916110aa816110a361109d6110985f610bb5565b6101e2565b916101e2565b1415610fb1565b6110cf836110c86110c26110bd5f610bb5565b6101e2565b916101e2565b1415611059565b6110ee826110e96110e2600185906109a3565b8690610920565b610df3565b9190916111396111276111217f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92593610914565b93610914565b93611130610102565b918291826102ce565b0390a3565b5f7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000910152565b611172601d602092610123565b61117b8161113e565b0190565b6111949060208101905f818303910152611165565b90565b1561119e57565b6111a6610102565b62461bcd60e51b8152806111bc6004820161117f565b0390fd5b6111cb8183906109b9565b90816111e06111da5f19610211565b91610211565b036111ec575b50505050565b61121e93611218916112118461120a61120485610211565b91610211565b1015611197565b9392610b34565b91611082565b5f8080806111e6565b5f90565b611233611227565b50339056fea2646970667358221220d0bafa8ee5f915294ab8fefb85b504f57e6184a48ffb01f112eb5c91be0cb83e64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000259de9e4d6751bfd0f4e538424dfcbbf36fe2c33
-----Decoded View---------------
Arg [0] : _distributor (address): 0x259DE9E4d6751bfd0F4e538424dFCBBf36fE2C33
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000259de9e4d6751bfd0f4e538424dfcbbf36fe2c33
Loading...
Loading
OVERVIEW
Ooga Booga is Berachain's native liquidity aggregator that finds optimal swaps across the ecosystem. By combining liquidity from multiple DEXs, it routes trades through the best paths in real-time, minimizing slippage and maximizing value for users.Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.