Latest 25 from a total of 179,070 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 92504031 | 15 mins ago | IN | 0 BNB | 0.00000149 | ||||
| Transfer | 92503556 | 19 mins ago | IN | 0 BNB | 0.00000284 | ||||
| Transfer | 92501366 | 35 mins ago | IN | 0 BNB | 0.00000149 | ||||
| Approve | 92500265 | 44 mins ago | IN | 0 BNB | 0.00000139 | ||||
| Approve | 92499011 | 53 mins ago | IN | 0 BNB | 0.00000233 | ||||
| Approve | 92498955 | 54 mins ago | IN | 0 BNB | 0.00000233 | ||||
| Approve | 92495157 | 1 hr ago | IN | 0 BNB | 0.00000232 | ||||
| Approve | 92493582 | 1 hr ago | IN | 0 BNB | 0.00000135 | ||||
| Transfer | 92491835 | 1 hr ago | IN | 0 BNB | 0.00000346 | ||||
| Transfer | 92489966 | 2 hrs ago | IN | 0 BNB | 0.00000149 | ||||
| Approve | 92485452 | 2 hrs ago | IN | 0 BNB | 0.00000136 | ||||
| Transfer | 92485410 | 2 hrs ago | IN | 0 BNB | 0.00000149 | ||||
| Transfer | 92482746 | 2 hrs ago | IN | 0 BNB | 0.00000149 | ||||
| Transfer | 92482675 | 2 hrs ago | IN | 0 BNB | 0.00000346 | ||||
| Transfer | 92482674 | 2 hrs ago | IN | 0 BNB | 0.00000346 | ||||
| Transfer | 92480083 | 3 hrs ago | IN | 0 BNB | 0.00000149 | ||||
| Approve | 92475845 | 3 hrs ago | IN | 0 BNB | 0.00000232 | ||||
| Transfer | 92475602 | 3 hrs ago | IN | 0 BNB | 0.00000346 | ||||
| Transfer | 92469774 | 4 hrs ago | IN | 0 BNB | 0.00000349 | ||||
| Approve | 92469007 | 4 hrs ago | IN | 0 BNB | 0.00000133 | ||||
| Transfer | 92464851 | 5 hrs ago | IN | 0 BNB | 0.00000349 | ||||
| Transfer | 92463777 | 5 hrs ago | IN | 0 BNB | 0.00000349 | ||||
| Transfer | 92463651 | 5 hrs ago | IN | 0 BNB | 0.00000349 | ||||
| Transfer | 92463576 | 5 hrs ago | IN | 0 BNB | 0.00003807 | ||||
| Transfer | 92463552 | 5 hrs ago | IN | 0 BNB | 0.00000276 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BankToken
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2025-04-17 */ // Sources flattened with hardhat v2.22.19 https://hardhat.org // SPDX-License-Identifier: MIT AND UNLICENSED // File @openzeppelin/contracts/interfaces/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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); } // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * 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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance < type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.20; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Total supply cap has been exceeded. */ error ERC20ExceededCap(uint256 increasedSupply, uint256 cap); /** * @dev The supplied cap is not a valid cap. */ error ERC20InvalidCap(uint256 cap); /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { if (cap_ == 0) { revert ERC20InvalidCap(0); } _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_update}. */ function _update(address from, address to, uint256 value) internal virtual override { super._update(from, to, value); if (from == address(0)) { uint256 maxSupply = cap(); uint256 supply = totalSupply(); if (supply > maxSupply) { revert ERC20ExceededCap(supply, maxSupply); } } } } // File contracts/BankToken.sol // Original license: SPDX_License_Identifier: UNLICENSED pragma solidity ^0.8.28; contract BankToken is ERC20Capped { uint256 public constant MAX_SUPPLY = 2_100_000_000 ether; // 2.1 billion tokens address public immutable tgeContract; constructor( address _tgeContract ) ERC20Capped(MAX_SUPPLY) ERC20("Lorenzo Governance Token", "BANK") { tgeContract = _tgeContract; } function mint(address to, uint256 amount) external { require(msg.sender == tgeContract, "Only TGE contract"); _mint(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_tgeContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededCap","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20InvalidCap","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"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":"value","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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"tgeContract","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c060405234801561001057600080fd5b50604051610bb5380380610bb583398101604081905261002f916100ea565b6b06c9144c1c690d4cb40000006040518060400160405280601881526020017f4c6f72656e7a6f20476f7665726e616e636520546f6b656e00000000000000008152506040518060400160405280600481526020016342414e4b60e01b815250816003908161009e91906101b9565b5060046100ab82826101b9565b505050806000036100d65760405163392e1e2760e01b81526000600482015260240160405180910390fd5b6080526001600160a01b031660a052610277565b6000602082840312156100fc57600080fd5b81516001600160a01b038116811461011357600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061014457607f821691505b60208210810361016457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156101b457806000526020600020601f840160051c810160208510156101915750805b601f840160051c820191505b818110156101b1576000815560010161019d565b50505b505050565b81516001600160401b038111156101d2576101d261011a565b6101e6816101e08454610130565b8461016a565b6020601f82116001811461021a57600083156102025750848201515b600019600385901b1c1916600184901b1784556101b1565b600084815260208120601f198516915b8281101561024a578785015182556020948501946001909201910161022a565b50848210156102685786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b60805160a05161090b6102aa6000396000818161019c015261032e01526000818161015e01526105d8015261090b6000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063355274ea1161008c57806370a082311161006657806370a08231146101d657806395d89b41146101ff578063a9059cbb14610207578063dd62ed3e1461021a57600080fd5b8063355274ea1461015c57806340c10f191461018257806363d095b21461019757600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a57806332cb6b0c14610149575b600080fd5b6100dc610253565b6040516100e99190610754565b60405180910390f35b6101056101003660046107be565b6102e5565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b6101056101353660046107e8565b6102ff565b604051601281526020016100e9565b6101196b06c9144c1c690d4cb400000081565b7f0000000000000000000000000000000000000000000000000000000000000000610119565b6101956101903660046107be565b610323565b005b6101be7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100e9565b6101196101e4366004610825565b6001600160a01b031660009081526020819052604090205490565b6100dc6103a2565b6101056102153660046107be565b6103b1565b610119610228366004610847565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102629061087a565b80601f016020809104026020016040519081016040528092919081815260200182805461028e9061087a565b80156102db5780601f106102b0576101008083540402835291602001916102db565b820191906000526020600020905b8154815290600101906020018083116102be57829003601f168201915b5050505050905090565b6000336102f38185856103bf565b60019150505b92915050565b60003361030d8582856103d1565b610318858585610450565b506001949350505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146103945760405162461bcd60e51b815260206004820152601160248201527013db9b1e481511d14818dbdb9d1c9858dd607a1b60448201526064015b60405180910390fd5b61039e82826104af565b5050565b6060600480546102629061087a565b6000336102f3818585610450565b6103cc83838360016104e5565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981101561044a578181101561043b57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161038b565b61044a848484840360006104e5565b50505050565b6001600160a01b03831661047a57604051634b637e8f60e11b81526000600482015260240161038b565b6001600160a01b0382166104a45760405163ec442f0560e01b81526000600482015260240161038b565b6103cc8383836105ba565b6001600160a01b0382166104d95760405163ec442f0560e01b81526000600482015260240161038b565b61039e600083836105ba565b6001600160a01b03841661050f5760405163e602df0560e01b81526000600482015260240161038b565b6001600160a01b03831661053957604051634a1406b160e11b81526000600482015260240161038b565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561044a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516105ac91815260200190565b60405180910390a350505050565b6105c583838361062a565b6001600160a01b0383166103cc576002547f000000000000000000000000000000000000000000000000000000000000000090818111156106235760405163279e7e1560e21b8152600481018290526024810183905260440161038b565b5050505050565b6001600160a01b03831661065557806002600082825461064a91906108b4565b909155506106c79050565b6001600160a01b038316600090815260208190526040902054818110156106a85760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161038b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166106e357600280548290039055610702565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161074791815260200190565b60405180910390a3505050565b602081526000825180602084015260005b818110156107825760208186018101516040868401015201610765565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146107b957600080fd5b919050565b600080604083850312156107d157600080fd5b6107da836107a2565b946020939093013593505050565b6000806000606084860312156107fd57600080fd5b610806846107a2565b9250610814602085016107a2565b929592945050506040919091013590565b60006020828403121561083757600080fd5b610840826107a2565b9392505050565b6000806040838503121561085a57600080fd5b610863836107a2565b9150610871602084016107a2565b90509250929050565b600181811c9082168061088e57607f821691505b6020821081036108ae57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102f957634e487b7160e01b600052601160045260246000fdfea2646970667358221220fd133aca140fbbbbcbbdc1224a18552998f36b6210dd6c4382fca28454d774f564736f6c634300081c00330000000000000000000000001716ece3ad0803df784ea57a38722d66305d536f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063355274ea1161008c57806370a082311161006657806370a08231146101d657806395d89b41146101ff578063a9059cbb14610207578063dd62ed3e1461021a57600080fd5b8063355274ea1461015c57806340c10f191461018257806363d095b21461019757600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a57806332cb6b0c14610149575b600080fd5b6100dc610253565b6040516100e99190610754565b60405180910390f35b6101056101003660046107be565b6102e5565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b6101056101353660046107e8565b6102ff565b604051601281526020016100e9565b6101196b06c9144c1c690d4cb400000081565b7f000000000000000000000000000000000000000006c9144c1c690d4cb4000000610119565b6101956101903660046107be565b610323565b005b6101be7f0000000000000000000000001716ece3ad0803df784ea57a38722d66305d536f81565b6040516001600160a01b0390911681526020016100e9565b6101196101e4366004610825565b6001600160a01b031660009081526020819052604090205490565b6100dc6103a2565b6101056102153660046107be565b6103b1565b610119610228366004610847565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102629061087a565b80601f016020809104026020016040519081016040528092919081815260200182805461028e9061087a565b80156102db5780601f106102b0576101008083540402835291602001916102db565b820191906000526020600020905b8154815290600101906020018083116102be57829003601f168201915b5050505050905090565b6000336102f38185856103bf565b60019150505b92915050565b60003361030d8582856103d1565b610318858585610450565b506001949350505050565b336001600160a01b037f0000000000000000000000001716ece3ad0803df784ea57a38722d66305d536f16146103945760405162461bcd60e51b815260206004820152601160248201527013db9b1e481511d14818dbdb9d1c9858dd607a1b60448201526064015b60405180910390fd5b61039e82826104af565b5050565b6060600480546102629061087a565b6000336102f3818585610450565b6103cc83838360016104e5565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981101561044a578181101561043b57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161038b565b61044a848484840360006104e5565b50505050565b6001600160a01b03831661047a57604051634b637e8f60e11b81526000600482015260240161038b565b6001600160a01b0382166104a45760405163ec442f0560e01b81526000600482015260240161038b565b6103cc8383836105ba565b6001600160a01b0382166104d95760405163ec442f0560e01b81526000600482015260240161038b565b61039e600083836105ba565b6001600160a01b03841661050f5760405163e602df0560e01b81526000600482015260240161038b565b6001600160a01b03831661053957604051634a1406b160e11b81526000600482015260240161038b565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561044a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516105ac91815260200190565b60405180910390a350505050565b6105c583838361062a565b6001600160a01b0383166103cc576002547f000000000000000000000000000000000000000006c9144c1c690d4cb400000090818111156106235760405163279e7e1560e21b8152600481018290526024810183905260440161038b565b5050505050565b6001600160a01b03831661065557806002600082825461064a91906108b4565b909155506106c79050565b6001600160a01b038316600090815260208190526040902054818110156106a85760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161038b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166106e357600280548290039055610702565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161074791815260200190565b60405180910390a3505050565b602081526000825180602084015260005b818110156107825760208186018101516040868401015201610765565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146107b957600080fd5b919050565b600080604083850312156107d157600080fd5b6107da836107a2565b946020939093013593505050565b6000806000606084860312156107fd57600080fd5b610806846107a2565b9250610814602085016107a2565b929592945050506040919091013590565b60006020828403121561083757600080fd5b610840826107a2565b9392505050565b6000806040838503121561085a57600080fd5b610863836107a2565b9150610871602084016107a2565b90509250929050565b600181811c9082168061088e57607f821691505b6020821081036108ae57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102f957634e487b7160e01b600052601160045260246000fdfea2646970667358221220fd133aca140fbbbbcbbdc1224a18552998f36b6210dd6c4382fca28454d774f564736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001716ece3ad0803df784ea57a38722d66305d536f
-----Decoded View---------------
Arg [0] : _tgeContract (address): 0x1716ECE3AD0803DF784eA57a38722d66305d536f
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001716ece3ad0803df784ea57a38722d66305d536f
Deployed Bytecode Sourcemap
24453:519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13400:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15693:190;;;;;;:::i;:::-;;:::i;:::-;;;1194:14:1;;1187:22;1169:41;;1157:2;1142:18;15693:190:0;1029:187:1;14502:99:0;14581:12;;14502:99;;;1367:25:1;;;1355:2;1340:18;14502:99:0;1221:177:1;16493:249:0;;;;;;:::i;:::-;;:::i;14353:84::-;;;14427:2;1924:36:1;;1912:2;1897:18;14353:84:0;1782:184:1;24494:56:0;;24531:19;24494:56;;23799:83;23870:4;23799:83;;24816:153;;;;;;:::i;:::-;;:::i;:::-;;24581:36;;;;;;;;-1:-1:-1;;;;;2135:32:1;;;2117:51;;2105:2;2090:18;24581:36:0;1971:203:1;14664:118:0;;;;;;:::i;:::-;-1:-1:-1;;;;;14756:18:0;14729:7;14756:18;;;;;;;;;;;;14664:118;13610:95;;;:::i;14987:182::-;;;;;;:::i;:::-;;:::i;15232:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15339:18:0;;;15312:7;15339:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15232:142;13400:91;13445:13;13478:5;13471:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13400:91;:::o;15693:190::-;15766:4;11460:10;15822:31;11460:10;15838:7;15847:5;15822:8;:31::i;:::-;15871:4;15864:11;;;15693:190;;;;;:::o;16493:249::-;16580:4;11460:10;16638:37;16654:4;11460:10;16669:5;16638:15;:37::i;:::-;16686:26;16696:4;16702:2;16706:5;16686:9;:26::i;:::-;-1:-1:-1;16730:4:0;;16493:249;-1:-1:-1;;;;16493:249:0:o;24816:153::-;24886:10;-1:-1:-1;;;;;24900:11:0;24886:25;;24878:55;;;;-1:-1:-1;;;24878:55:0;;3222:2:1;24878:55:0;;;3204:21:1;3261:2;3241:18;;;3234:30;-1:-1:-1;;;3280:18:1;;;3273:47;3337:18;;24878:55:0;;;;;;;;;24944:17;24950:2;24954:6;24944:5;:17::i;:::-;24816:153;;:::o;13610:95::-;13657:13;13690:7;13683:14;;;;;:::i;14987:182::-;15056:4;11460:10;15112:27;11460:10;15129:2;15133:5;15112:9;:27::i;20552:130::-;20637:37;20646:5;20653:7;20662:5;20669:4;20637:8;:37::i;:::-;20552:130;;;:::o;22284:486::-;-1:-1:-1;;;;;15339:18:0;;;22384:24;15339:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22451:36:0;;22447:316;;;22527:5;22508:16;:24;22504:132;;;22560:60;;-1:-1:-1;;;22560:60:0;;-1:-1:-1;;;;;3586:32:1;;22560:60:0;;;3568:51:1;3635:18;;;3628:34;;;3678:18;;;3671:34;;;3541:18;;22560:60:0;3366:345:1;22504:132:0;22679:57;22688:5;22695:7;22723:5;22704:16;:24;22730:5;22679:8;:57::i;:::-;22373:397;22284:486;;;:::o;17127:308::-;-1:-1:-1;;;;;17211:18:0;;17207:88;;17253:30;;-1:-1:-1;;;17253:30:0;;17280:1;17253:30;;;2117:51:1;2090:18;;17253:30:0;1971:203:1;17207:88:0;-1:-1:-1;;;;;17309:16:0;;17305:88;;17349:32;;-1:-1:-1;;;17349:32:0;;17378:1;17349:32;;;2117:51:1;2090:18;;17349:32:0;1971:203:1;17305:88:0;17403:24;17411:4;17417:2;17421:5;17403:7;:24::i;19247:213::-;-1:-1:-1;;;;;19318:21:0;;19314:93;;19363:32;;-1:-1:-1;;;19363:32:0;;19392:1;19363:32;;;2117:51:1;2090:18;;19363:32:0;1971:203:1;19314:93:0;19417:35;19433:1;19437:7;19446:5;19417:7;:35::i;21549:443::-;-1:-1:-1;;;;;21662:19:0;;21658:91;;21705:32;;-1:-1:-1;;;21705:32:0;;21734:1;21705:32;;;2117:51:1;2090:18;;21705:32:0;1971:203:1;21658:91:0;-1:-1:-1;;;;;21763:21:0;;21759:92;;21808:31;;-1:-1:-1;;;21808:31:0;;21836:1;21808:31;;;2117:51:1;2090:18;;21808:31:0;1971:203:1;21759:92:0;-1:-1:-1;;;;;21861:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21907:78;;;;21958:7;-1:-1:-1;;;;;21942:31:0;21951:5;-1:-1:-1;;;;;21942:31:0;;21967:5;21942:31;;;;1367:25:1;;1355:2;1340:18;;1221:177;21942:31:0;;;;;;;;21549:443;;;;:::o;23942:381::-;24037:30;24051:4;24057:2;24061:5;24037:13;:30::i;:::-;-1:-1:-1;;;;;24084:18:0;;24080:236;;14581:12;;23870:4;;24217:9;24208:6;:18;24204:101;;;24254:35;;-1:-1:-1;;;24254:35:0;;;;;3890:25:1;;;3931:18;;;3924:34;;;3863:18;;24254:35:0;3716:248:1;24204:101:0;24104:212;;23942:381;;;:::o;17759:1135::-;-1:-1:-1;;;;;17849:18:0;;17845:552;;18003:5;17987:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17845:552:0;;-1:-1:-1;17845:552:0;;-1:-1:-1;;;;;18063:15:0;;18041:19;18063:15;;;;;;;;;;;18097:19;;;18093:117;;;18144:50;;-1:-1:-1;;;18144:50:0;;-1:-1:-1;;;;;3586:32:1;;18144:50:0;;;3568:51:1;3635:18;;;3628:34;;;3678:18;;;3671:34;;;3541:18;;18144:50:0;3366:345:1;18093:117:0;-1:-1:-1;;;;;18333:15:0;;:9;:15;;;;;;;;;;18351:19;;;;18333:37;;17845:552;-1:-1:-1;;;;;18413:16:0;;18409:435;;18579:12;:21;;;;;;;18409:435;;;-1:-1:-1;;;;;18795:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18409:435;18876:2;-1:-1:-1;;;;;18861:25:0;18870:4;-1:-1:-1;;;;;18861:25:0;;18880:5;18861:25;;;;1367::1;;1355:2;1340:18;;1221:177;18861:25:0;;;;;;;;17759:1135;;;:::o;14:527:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;263:1;273:140;287:6;284:1;281:13;273:140;;;398:2;382:14;;;378:23;;372:30;367:2;348:17;;;344:26;337:66;302:10;273:140;;;277:3;462:1;457:2;448:6;437:9;433:22;429:31;422:42;532:2;525;521:7;516:2;508:6;504:15;500:29;489:9;485:45;481:54;473:62;;;14:527;;;;:::o;546:173::-;614:20;;-1:-1:-1;;;;;663:31:1;;653:42;;643:70;;709:1;706;699:12;643:70;546:173;;;:::o;724:300::-;792:6;800;853:2;841:9;832:7;828:23;824:32;821:52;;;869:1;866;859:12;821:52;892:29;911:9;892:29;:::i;:::-;882:39;990:2;975:18;;;;962:32;;-1:-1:-1;;;724:300:1:o;1403:374::-;1480:6;1488;1496;1549:2;1537:9;1528:7;1524:23;1520:32;1517:52;;;1565:1;1562;1555:12;1517:52;1588:29;1607:9;1588:29;:::i;:::-;1578:39;;1636:38;1670:2;1659:9;1655:18;1636:38;:::i;:::-;1403:374;;1626:48;;-1:-1:-1;;;1743:2:1;1728:18;;;;1715:32;;1403:374::o;2179:186::-;2238:6;2291:2;2279:9;2270:7;2266:23;2262:32;2259:52;;;2307:1;2304;2297:12;2259:52;2330:29;2349:9;2330:29;:::i;:::-;2320:39;2179:186;-1:-1:-1;;;2179:186:1:o;2370:260::-;2438:6;2446;2499:2;2487:9;2478:7;2474:23;2470:32;2467:52;;;2515:1;2512;2505:12;2467:52;2538:29;2557:9;2538:29;:::i;:::-;2528:39;;2586:38;2620:2;2609:9;2605:18;2586:38;:::i;:::-;2576:48;;2370:260;;;;;:::o;2635:380::-;2714:1;2710:12;;;;2757;;;2778:61;;2832:4;2824:6;2820:17;2810:27;;2778:61;2885:2;2877:6;2874:14;2854:18;2851:38;2848:161;;2931:10;2926:3;2922:20;2919:1;2912:31;2966:4;2963:1;2956:15;2994:4;2991:1;2984:15;2848:161;;2635:380;;;:::o;3969:222::-;4034:9;;;4055:10;;;4052:133;;;4107:10;4102:3;4098:20;4095:1;4088:31;4142:4;4139:1;4132:15;4170:4;4167:1;4160:15
Swarm Source
ipfs://fd133aca140fbbbbcbbdc1224a18552998f36b6210dd6c4382fca28454d774f5
Loading...
Loading
OVERVIEW
Lorenzo is an institutional-grade asset management platform specializing in the tokenization of yield-generating financial products.Loading...
Loading
Net Worth in USD
$1,595.22
Net Worth in BNB
Token Allocations
USDC
95.28%
USDT
3.41%
BANK
1.17%
Others
0.14%
Multichain Portfolio | 32 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.