Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
19334414 | 313 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
DefiV2Token
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.17; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { LibCommon } from "./lib/LibCommon.sol"; import { ReflectiveERC20 } from "./ReflectiveERC20.sol"; /// @title A Defi Token implementation with extended functionalities /// @notice Implements ERC20 standards with additional features like tax and deflation contract DefiV2Token is ReflectiveERC20, Ownable { // Constants uint256 private constant MAX_BPS_AMOUNT = 10_000; uint256 private constant MAX_ALLOWED_BPS = 2_000; string public constant VERSION = "defi_v_2"; // State Variables string public initialDocumentUri; string public documentUri; uint256 public immutable initialSupply; uint256 public immutable initialMaxTokenAmountPerAddress; uint256 public maxTokenAmountPerAddress; /// @notice Configuration properties for the ERC20 token struct ERC20ConfigProps { bool _isMintable; bool _isBurnable; bool _isDocumentAllowed; bool _isMaxAmountOfTokensSet; bool _isTaxable; bool _isDeflationary; bool _isReflective; } ERC20ConfigProps private configProps; address public immutable initialTokenOwner; uint8 private immutable _decimals; address public taxAddress; uint256 public taxBPS; uint256 public deflationBPS; // Events event DocumentUriSet(string newDocUri); event MaxTokenAmountPerSet(uint256 newMaxTokenAmount); event TaxConfigSet(address indexed _taxAddress, uint256 indexed _taxBPS); event DeflationConfigSet(uint256 indexed _deflationBPS); event ReflectionConfigSet(uint256 indexed _feeBPS); // Custom Errors error InvalidMaxTokenAmount(uint256 maxTokenAmount); error InvalidDecimals(uint8 decimals); error MaxTokenAmountPerAddrLtPrevious(); error DestBalanceExceedsMaxAllowed(address addr); error DocumentUriNotAllowed(); error MaxTokenAmountNotAllowed(); error TokenIsNotTaxable(); error TokenIsNotDeflationary(); error InvalidTotalBPS(uint256 bps); error InvalidReflectiveConfig(); /// @notice Constructor to initialize the DeFi token /// @param name_ Name of the token /// @param symbol_ Symbol of the token /// @param initialSupplyToSet Initial supply of tokens /// @param decimalsToSet Number of decimals for the token /// @param tokenOwner Address of the initial token owner /// @param customConfigProps Configuration properties for the token /// @param maxTokenAmount Maximum token amount per address /// @param newDocumentUri URI for the document associated with the token /// @param _taxAddress Address where tax will be sent /// @param bpsParams array of BPS values in this order: /// taxBPS = bpsParams[0], /// deflationBPS = bpsParams[1], /// rewardFeeBPS = bpsParams[2], constructor( string memory name_, string memory symbol_, uint256 initialSupplyToSet, uint8 decimalsToSet, address tokenOwner, ERC20ConfigProps memory customConfigProps, uint256 maxTokenAmount, string memory newDocumentUri, address _taxAddress, uint256[3] memory bpsParams ) ReflectiveERC20( name_, symbol_, tokenOwner, initialSupplyToSet, decimalsToSet, initialSupplyToSet != 0 ? bpsParams[2] : 0, customConfigProps._isReflective ) { // reflection feature can't be used in combination with burning/minting/deflation // or reflection config is invalid if no reflection BPS amount is provided if ( (customConfigProps._isReflective && (customConfigProps._isBurnable || customConfigProps._isMintable || customConfigProps._isDeflationary)) || (!customConfigProps._isReflective && bpsParams[2] != 0) ) { revert InvalidReflectiveConfig(); } if (customConfigProps._isMaxAmountOfTokensSet) { if (maxTokenAmount == 0) { revert InvalidMaxTokenAmount(maxTokenAmount); } } if (decimalsToSet > 18) { revert InvalidDecimals(decimalsToSet); } uint256 totalBPS = 0; if (customConfigProps._isTaxable) { totalBPS += bpsParams[0]; LibCommon.validateAddress(_taxAddress); taxAddress = _taxAddress; taxBPS = bpsParams[0]; } if (customConfigProps._isDeflationary) { totalBPS += bpsParams[1]; deflationBPS = bpsParams[1]; } if (customConfigProps._isReflective) { totalBPS += bpsParams[2]; } if (totalBPS > MAX_ALLOWED_BPS) { revert InvalidTotalBPS(totalBPS); } LibCommon.validateAddress(tokenOwner); initialSupply = initialSupplyToSet; initialMaxTokenAmountPerAddress = maxTokenAmount; initialDocumentUri = newDocumentUri; initialTokenOwner = tokenOwner; _decimals = decimalsToSet; configProps = customConfigProps; documentUri = newDocumentUri; maxTokenAmountPerAddress = maxTokenAmount; if (tokenOwner != msg.sender) { transferOwnership(tokenOwner); } } // Public and External Functions /// @notice Checks if the token is mintable /// @return True if the token can be minted function isMintable() public view returns (bool) { return configProps._isMintable; } /// @notice Checks if the token is burnable /// @return True if the token can be burned function isBurnable() public view returns (bool) { return configProps._isBurnable; } /// @notice Checks if the maximum amount of tokens per address is set /// @return True if there is a maximum limit for token amount per address function isMaxAmountOfTokensSet() public view returns (bool) { return configProps._isMaxAmountOfTokensSet; } /// @notice Checks if setting a document URI is allowed /// @return True if setting a document URI is allowed function isDocumentUriAllowed() public view returns (bool) { return configProps._isDocumentAllowed; } /// @notice Returns the number of decimals used for the token /// @return The number of decimals function decimals() public view virtual override returns (uint8) { return _decimals; } /// @notice Checks if the token is taxable /// @return True if the token has tax applied on transfers function isTaxable() public view returns (bool) { return configProps._isTaxable; } /// @notice Checks if the token is deflationary /// @return True if the token has deflation applied on transfers function isDeflationary() public view returns (bool) { return configProps._isDeflationary; } /// @notice Checks if the token is reflective /// @return True if the token has reflection (ie. holder rewards) applied on transfers function isReflective() public view returns (bool) { return configProps._isReflective; } /// @notice Sets a new document URI /// @dev Can only be called by the contract owner /// @param newDocumentUri The new URI to be set function setDocumentUri(string memory newDocumentUri) external onlyOwner { if (!isDocumentUriAllowed()) { revert DocumentUriNotAllowed(); } documentUri = newDocumentUri; emit DocumentUriSet(newDocumentUri); } /// @notice Sets a new maximum token amount per address /// @dev Can only be called by the contract owner /// @param newMaxTokenAmount The new maximum token amount per address function setMaxTokenAmountPerAddress( uint256 newMaxTokenAmount ) external onlyOwner { if (!isMaxAmountOfTokensSet()) { revert MaxTokenAmountNotAllowed(); } if (newMaxTokenAmount <= maxTokenAmountPerAddress) { revert MaxTokenAmountPerAddrLtPrevious(); } maxTokenAmountPerAddress = newMaxTokenAmount; emit MaxTokenAmountPerSet(newMaxTokenAmount); } /// @notice Sets a new reflection fee /// @dev Can only be called by the contract owner /// @param _feeBPS The reflection fee in basis points function setReflectionConfig(uint256 _feeBPS) external onlyOwner { if (!isReflective()) { revert TokenIsNotReflective(); } super._setReflectionFee(_feeBPS); emit ReflectionConfigSet(_feeBPS); } /// @notice Sets a new tax configuration /// @dev Can only be called by the contract owner /// @param _taxAddress The address where tax will be sent /// @param _taxBPS The tax rate in basis points function setTaxConfig( address _taxAddress, uint256 _taxBPS ) external onlyOwner { if (!isTaxable()) { revert TokenIsNotTaxable(); } uint256 totalBPS = deflationBPS + tFeeBPS + _taxBPS; if (totalBPS > MAX_ALLOWED_BPS) { revert InvalidTotalBPS(totalBPS); } LibCommon.validateAddress(_taxAddress); taxAddress = _taxAddress; taxBPS = _taxBPS; emit TaxConfigSet(_taxAddress, _taxBPS); } /// @notice Sets a new deflation configuration /// @dev Can only be called by the contract owner /// @param _deflationBPS The deflation rate in basis points function setDeflationConfig(uint256 _deflationBPS) external onlyOwner { if (!isDeflationary()) { revert TokenIsNotDeflationary(); } uint256 totalBPS = deflationBPS + tFeeBPS + _deflationBPS; if (totalBPS > MAX_ALLOWED_BPS) { revert InvalidTotalBPS(totalBPS); } deflationBPS = _deflationBPS; emit DeflationConfigSet(_deflationBPS); } /// @notice Transfers tokens to a specified address /// @dev Overrides the ERC20 transfer function with added tax and deflation logic /// @param to The address to transfer tokens to /// @param amount The amount of tokens to be transferred /// @return True if the transfer was successful function transfer( address to, uint256 amount ) public virtual override returns (bool) { uint256 taxAmount = _taxAmount(msg.sender, amount); uint256 deflationAmount = _deflationAmount(amount); uint256 amountToTransfer = amount - taxAmount - deflationAmount; if (isMaxAmountOfTokensSet()) { if (balanceOf(to) + amountToTransfer > maxTokenAmountPerAddress) { revert DestBalanceExceedsMaxAllowed(to); } } if (taxAmount != 0) { _transferNonReflectedTax(msg.sender, taxAddress, taxAmount); } if (deflationAmount != 0) { _burn(msg.sender, deflationAmount); } return super.transfer(to, amountToTransfer); } /// @notice Transfers tokens from one address to another /// @dev Overrides the ERC20 transferFrom function with added tax and deflation logic /// @param from The address which you want to send tokens from /// @param to The address which you want to transfer to /// @param amount The amount of tokens to be transferred /// @return True if the transfer was successful function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { uint256 taxAmount = _taxAmount(from, amount); uint256 deflationAmount = _deflationAmount(amount); uint256 amountToTransfer = amount - taxAmount - deflationAmount; if (isMaxAmountOfTokensSet()) { if (balanceOf(to) + amountToTransfer > maxTokenAmountPerAddress) { revert DestBalanceExceedsMaxAllowed(to); } } if (taxAmount != 0) { _transferNonReflectedTax(from, taxAddress, taxAmount); } if (deflationAmount != 0) { _burn(from, deflationAmount); } return super.transferFrom(from, to, amountToTransfer); } /// @notice Mints new tokens to a specified address /// @dev Can only be called by the contract owner and if minting is enabled /// @param to The address to mint tokens to /// @param amount The amount of tokens to mint function mint(address to, uint256 amount) external onlyOwner { if (!isMintable()) { revert MintingNotEnabled(); } if (isMaxAmountOfTokensSet()) { if (balanceOf(to) + amount > maxTokenAmountPerAddress) { revert DestBalanceExceedsMaxAllowed(to); } } super._mint(to, amount); } /// @notice Burns a specific amount of tokens /// @dev Can only be called by the contract owner and if burning is enabled /// @param amount The amount of tokens to be burned function burn(uint256 amount) external onlyOwner { if (!isBurnable()) { revert BurningNotEnabled(); } _burn(msg.sender, amount); } /// @notice Renounces ownership of the contract /// @dev Leaves the contract without an owner, disabling any functions that require the owner's authorization function renounceOwnership() public override onlyOwner { super.renounceOwnership(); } /// @notice Transfers ownership of the contract to a new account /// @dev Can only be called by the current owner /// @param newOwner The address of the new owner function transferOwnership(address newOwner) public override onlyOwner { super.transferOwnership(newOwner); } // Internal Functions /// @notice Calculates the tax amount for a transfer /// @param sender The address initiating the transfer /// @param amount The amount of tokens being transferred /// @return taxAmount The calculated tax amount function _taxAmount( address sender, uint256 amount ) internal view returns (uint256 taxAmount) { taxAmount = 0; if (taxBPS != 0 && sender != taxAddress) { taxAmount = (amount * taxBPS) / MAX_BPS_AMOUNT; } } /// @notice Calculates the deflation amount for a transfer /// @param amount The amount of tokens being transferred /// @return deflationAmount The calculated deflation amount function _deflationAmount( uint256 amount ) internal view returns (uint256 deflationAmount) { deflationAmount = 0; if (deflationBPS != 0) { deflationAmount = (amount * deflationBPS) / MAX_BPS_AMOUNT; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; library LibCommon { /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CUSTOM ERRORS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The ETH transfer has failed. error ETHTransferFailed(); /// @dev The address is the zero address. error ZeroAddress(); /// @notice raised when an ERC20 transfer fails error TransferFailed(); /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* ETH OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @notice Taken from Solady (https://github.com/vectorized/solady/blob/main/src/utils/SafeTransferLib.sol) /// @dev Sends `amount` (in wei) ETH to `to`. /// Reverts upon failure. function safeTransferETH(address to, uint256 amount) internal { // solhint-disable-next-line no-inline-assembly assembly { // Transfer the ETH and check if it succeeded or not. if iszero(call(gas(), to, amount, 0, 0, 0, 0)) { // Store the function selector of `ETHTransferFailed()`. // bytes4(keccak256(bytes("ETHTransferFailed()"))) = 0xb12d13eb mstore(0x00, 0xb12d13eb) // Revert with (offset, size). revert(0x1c, 0x04) } } } /// @notice Validates that the address is not the zero address using assembly. /// @dev Reverts if the address is the zero address. function validateAddress(address addr) internal pure { // solhint-disable-next-line no-inline-assembly assembly { if iszero(shl(96, addr)) { // Store the function selector of `ZeroAddress()`. // bytes4(keccak256(bytes("ZeroAddress()"))) = 0xd92e233d mstore(0x00, 0xd92e233d) // Revert with (offset, size). revert(0x1c, 0x04) } } } /// @notice Helper function to transfer ERC20 tokens without the need for SafeERC20. /// @dev Reverts if the ERC20 transfer fails. /// @param tokenAddress The address of the ERC20 token. /// @param from The address to transfer the tokens from. /// @param to The address to transfer the tokens to. /// @param amount The amount of tokens to transfer. function safeTransferFrom( address tokenAddress, address from, address to, uint256 amount ) internal returns (bool) { // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory data) = tokenAddress.call( abi.encodeWithSignature( "transferFrom(address,address,uint256)", from, to, amount ) ); if (!success) { if (data.length != 0) { // bubble up error // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(data) revert(add(32, data), returndata_size) } } else { revert TransferFailed(); } } return true; } /// @notice Helper function to transfer ERC20 tokens without the need for SafeERC20. /// @dev Reverts if the ERC20 transfer fails. /// @param tokenAddress The address of the ERC20 token. /// @param to The address to transfer the tokens to. /// @param amount The amount of tokens to transfer. function safeTransfer( address tokenAddress, address to, uint256 amount ) internal returns (bool) { // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory data) = tokenAddress.call( abi.encodeWithSignature("transfer(address,uint256)", to, amount) ); if (!success) { if (data.length != 0) { // bubble up error // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(data) revert(add(32, data), returndata_size) } } else { revert TransferFailed(); } } return true; } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.17; import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import { LibCommon } from "./lib/LibCommon.sol"; /// @title A ERC20 implementation with extended reflection token functionalities /// @notice Implements ERC20 standards with additional token holder reward feature abstract contract ReflectiveERC20 is ERC20 { // Constants uint256 private constant BPS_DIVISOR = 10_000; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; uint256 private constant UINT_256_MAX = type(uint256).max; uint256 private _rTotal; uint256 private _tFeeTotal; uint256 public tFeeBPS; bool private immutable isReflective; // custom errors error TokenIsNotReflective(); error TotalReflectionTooSmall(); error ZeroTransferError(); error MintingNotEnabled(); error BurningNotEnabled(); error ERC20InsufficientBalance( address recipient, uint256 fromBalance, uint256 balance ); /// @notice Gets total supply of the erc20 token /// @return Token total supply function _tTotal() public view virtual returns (uint256) { return totalSupply(); } /// @notice Constructor to initialize the ReflectionErc20 token /// @param name_ Name of the token /// @param symbol_ Symbol of the token /// @param tokenOwner Address of the token owner /// @param totalSupply_ Initial total supply /// @param decimalsToSet Token decimal number /// @param decimalsToSet Token reward (reflection fee BPS value constructor( string memory name_, string memory symbol_, address tokenOwner, uint256 totalSupply_, uint8 decimalsToSet, uint256 tFeeBPS_, bool isReflective_ ) ERC20(name_, symbol_) { if (totalSupply_ != 0) { super._mint(tokenOwner, totalSupply_ * 10 ** decimalsToSet); _rTotal = (UINT_256_MAX - (UINT_256_MAX % totalSupply_)); } _rOwned[tokenOwner] = _rTotal; tFeeBPS = tFeeBPS_; isReflective = isReflective_; } // public standard ERC20 functions /// @notice Gets balance the erc20 token for specific address /// @param account Account address /// @return Token balance function balanceOf(address account) public view override returns (uint256) { if (isReflective) { return tokenFromReflection(_rOwned[account]); } else { return super.balanceOf(account); } } /// @notice Transfers allowed tokens between accounts /// @param from From account /// @param to To account /// @param value Transferred value /// @return Success function transferFrom( address from, address to, uint256 value ) public virtual override returns (bool) { address spender = super._msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /// @notice Transfers tokens from owner to an account /// @param to To account /// @param value Transferred value /// @return Success function transfer( address to, uint256 value ) public virtual override returns (bool) { address owner = super._msgSender(); _transfer(owner, to, value); return true; } // override internal OZ standard ERC20 functions related to transfer /// @notice Transfers tokens from owner to an account /// @param to To account /// @param amount Transferred amount function _transfer( address from, address to, uint256 amount ) internal override { if (isReflective) { LibCommon.validateAddress(from); LibCommon.validateAddress(to); if (amount == 0) { revert ZeroTransferError(); } _transferReflected(from, to, amount); } else { super._transfer(from, to, amount); } } // override incompatible internal OZ standard ERC20 functions to disable them in case // reflection mechanism is used, ie. tFeeBPS is non zero /// @notice Creates specified amount of tokens, it either uses standard OZ ERC function /// or in case of reflection logic, it is prohibited /// @param account Account new tokens will be transferred to /// @param value Created tokens value function _mint(address account, uint256 value) internal override { if (isReflective) { revert MintingNotEnabled(); } else { super._mint(account, value); } } /// @notice Destroys specified amount of tokens, it either uses standard OZ ERC function /// or in case of reflection logic, it is prohibited /// @param account Account in which tokens will be destroyed /// @param value Destroyed tokens value function _burn(address account, uint256 value) internal override { if (isReflective) { revert BurningNotEnabled(); } else { super._burn(account, value); } } // public reflection custom functions /// @notice Sets a new reflection fee /// @dev Should only be called by the contract owner /// @param _tFeeBPS The reflection fee in basis points function _setReflectionFee(uint256 _tFeeBPS) internal { if (!isReflective) { revert TokenIsNotReflective(); } tFeeBPS = _tFeeBPS; } /// @notice Calculates number of tokens from reflection amount /// @param rAmount Reflection token amount function tokenFromReflection(uint256 rAmount) public view returns (uint256) { if (rAmount > _rTotal) { revert TotalReflectionTooSmall(); } uint256 currentRate = _getRate(); return rAmount / currentRate; } // private reflection custom functions /// @notice Transfers reflected amount of tokens /// @param sender Account to transfer tokens from /// @param recipient Account to transfer tokens to /// @param tAmount Total token amount function _transferReflected( address sender, address recipient, uint256 tAmount ) private { uint256 tFee = calculateFee(tAmount); uint256 tTransferAmount = tAmount - tFee; (uint256 rAmount, uint256 rFee, uint256 rTransferAmount) = _getRValues( tAmount, tFee, tTransferAmount ); if (tAmount != 0) { _rUpdate(sender, recipient, rAmount, rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tAmount); } } /// @notice Deducts reflection fee from reflection supply to 'distribute' token holder rewards /// @param rFee Reflection fee /// @param tFee Token fee function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal - rFee; _tFeeTotal = _tFeeTotal + tFee; } /// @notice Calculates the reflection fee from token amount /// @param _amount Amount of tokens to calculate fee from function calculateFee(uint256 _amount) private view returns (uint256) { return (_amount * tFeeBPS) / BPS_DIVISOR; } /// @notice Transfers Tax related tokens and do not apply reflection fees /// @param from Account to transfer tokens from /// @param to Account to transfer tokens to /// @param tAmount Total token amount function _transferNonReflectedTax( address from, address to, uint256 tAmount ) internal { if (isReflective) { if (tAmount != 0) { uint256 currentRate = _getRate(); uint256 rAmount = tAmount * currentRate; _rUpdate(from, to, rAmount, rAmount); emit Transfer(from, to, tAmount); } } else { super._transfer(from, to, tAmount); } } /// @notice Get reflective values from token values /// @param tAmount Token amount /// @param tFee Token fee /// @param tTransferAmount Transfer amount function _getRValues( uint256 tAmount, uint256 tFee, uint256 tTransferAmount ) private view returns (uint256, uint256, uint256) { uint256 currentRate = _getRate(); uint256 rAmount = tAmount * currentRate; uint256 rFee = tFee * currentRate; uint256 rTransferAmount = tTransferAmount * currentRate; return (rAmount, rFee, rTransferAmount); } /// @notice Get ratio rate between reflective and token supply /// @return Reflective rate function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply / tSupply; } /// @notice Get reflective and token supplies /// @return Reflective and token supplies function _getCurrentSupply() private view returns (uint256, uint256) { return (_rTotal, _tTotal()); } /// @notice Update reflective balances to reflect amount transfer, /// with or without a fee applied. If a fee is applied, /// the amount deducted from the sender will differ /// from amount added to the recipient /// @param sender Sender address /// @param recipient Recipient address /// @param rSubAmount Amount to be deducted from sender /// @param rTransferAmount Amount to be added to recipient function _rUpdate( address sender, address recipient, uint256 rSubAmount, uint256 rTransferAmount ) private { uint256 fromBalance = _rOwned[sender]; if (fromBalance < rSubAmount) { revert ERC20InsufficientBalance(recipient, fromBalance, rSubAmount); } _rOwned[sender] = _rOwned[sender] - rSubAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; } }
// 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); }
{ "optimizer": { "enabled": true, "runs": 1337 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupplyToSet","type":"uint256"},{"internalType":"uint8","name":"decimalsToSet","type":"uint8"},{"internalType":"address","name":"tokenOwner","type":"address"},{"components":[{"internalType":"bool","name":"_isMintable","type":"bool"},{"internalType":"bool","name":"_isBurnable","type":"bool"},{"internalType":"bool","name":"_isDocumentAllowed","type":"bool"},{"internalType":"bool","name":"_isMaxAmountOfTokensSet","type":"bool"},{"internalType":"bool","name":"_isTaxable","type":"bool"},{"internalType":"bool","name":"_isDeflationary","type":"bool"},{"internalType":"bool","name":"_isReflective","type":"bool"}],"internalType":"struct DefiV2Token.ERC20ConfigProps","name":"customConfigProps","type":"tuple"},{"internalType":"uint256","name":"maxTokenAmount","type":"uint256"},{"internalType":"string","name":"newDocumentUri","type":"string"},{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"uint256[3]","name":"bpsParams","type":"uint256[3]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BurningNotEnabled","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"DestBalanceExceedsMaxAllowed","type":"error"},{"inputs":[],"name":"DocumentUriNotAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"fromBalance","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"InvalidDecimals","type":"error"},{"inputs":[{"internalType":"uint256","name":"maxTokenAmount","type":"uint256"}],"name":"InvalidMaxTokenAmount","type":"error"},{"inputs":[],"name":"InvalidReflectiveConfig","type":"error"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"InvalidTotalBPS","type":"error"},{"inputs":[],"name":"MaxTokenAmountNotAllowed","type":"error"},{"inputs":[],"name":"MaxTokenAmountPerAddrLtPrevious","type":"error"},{"inputs":[],"name":"MintingNotEnabled","type":"error"},{"inputs":[],"name":"TokenIsNotDeflationary","type":"error"},{"inputs":[],"name":"TokenIsNotReflective","type":"error"},{"inputs":[],"name":"TokenIsNotTaxable","type":"error"},{"inputs":[],"name":"TotalReflectionTooSmall","type":"error"},{"inputs":[],"name":"ZeroTransferError","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":"uint256","name":"_deflationBPS","type":"uint256"}],"name":"DeflationConfigSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newDocUri","type":"string"}],"name":"DocumentUriSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"MaxTokenAmountPerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_feeBPS","type":"uint256"}],"name":"ReflectionConfigSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_taxAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"_taxBPS","type":"uint256"}],"name":"TaxConfigSet","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":"VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","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":[],"name":"deflationBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"documentUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"initialDocumentUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialMaxTokenAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTokenOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDeflationary","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDocumentUriAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMaxAmountOfTokensSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReflective","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deflationBPS","type":"uint256"}],"name":"setDeflationConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newDocumentUri","type":"string"}],"name":"setDocumentUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"setMaxTokenAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeBPS","type":"uint256"}],"name":"setReflectionConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"uint256","name":"_taxBPS","type":"uint256"}],"name":"setTaxConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101206040523480156200001257600080fd5b5060405162002c4f38038062002c4f833981016040819052620000359162000850565b8989878a8a8c6000036200004b57600062000051565b60408601515b60c08b015186866003620000668382620009e6565b506004620000758282620009e6565b50505083600014620000d057620000b0856200009385600a62000bc7565b6200009f908762000bdf565b620003d460201b62000f701760201c565b620000be8460001962000bf9565b620000cc9060001962000c1c565b6007555b6007546001600160a01b0390951660009081526005602052604090209490945560095550501515608052506200010f9050620001093390565b62000497565b8460c0015180156200013857508460200151806200012b575084515b806200013857508460a001515b806200015557508460c00151158015620001555750604081015115155b156200017457604051630c2a1c3360e21b815260040160405180910390fd5b846060015115620001a95783600003620001a9576040516364824b8d60e01b8152600481018590526024015b60405180910390fd5b60128760ff161115620001d55760405163ca95039160e01b815260ff88166004820152602401620001a0565b600085608001511562000229578151620001f0908262000c32565b90506200020883620004e960201b6200102f1760201c565b600f80546001600160a01b0319166001600160a01b03851617905581516010555b8560a00151156200025057602082015162000245908262000c32565b602083015160115590505b8560c00151156200026f5760408201516200026c908262000c32565b90505b6107d08111156200029757604051633e474e0d60e01b815260048101829052602401620001a0565b620002ad87620004e960201b6200102f1760201c565b60a089905260c0859052600b620002c58582620009e6565b506001600160a01b03871660e05260ff88166101009081528651600e805460208a015160408b015160608c015160808d015160a08e015160c08f015161ffff1990961697151561ff001916979097179315159097029290921763ffff00001916620100009115159190910263ff0000001916176301000000911515919091021761ffff60201b19166401000000009415159490940260ff60281b19169390931765010000000000921515929092029190911760ff60301b1916660100000000000092151592909202919091179055600c620003a18582620009e6565b50600d8590556001600160a01b0387163314620003c357620003c38762000503565b505050505050505050505062000c48565b6001600160a01b0382166200042c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001a0565b806002600082825462000440919062000c32565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8060601b620005005763d92e233d6000526004601cfd5b50565b6200050d62000528565b62000500816200058660201b620010451760201c565b505050565b600a546001600160a01b03163314620005845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001a0565b565b6200059062000528565b6001600160a01b038116620005f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620001a0565b620005008162000497565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171562000643576200064362000602565b604052919050565b600082601f8301126200065d57600080fd5b81516001600160401b0381111562000679576200067962000602565b60206200068f601f8301601f1916820162000618565b8281528582848701011115620006a457600080fd5b60005b83811015620006c4578581018301518282018401528201620006a7565b506000928101909101919091529392505050565b805160ff81168114620006ea57600080fd5b919050565b80516001600160a01b0381168114620006ea57600080fd5b80518015158114620006ea57600080fd5b600060e082840312156200072b57600080fd5b60405160e081016001600160401b038111828210171562000750576200075062000602565b604052905080620007618362000707565b8152620007716020840162000707565b6020820152620007846040840162000707565b6040820152620007976060840162000707565b6060820152620007aa6080840162000707565b6080820152620007bd60a0840162000707565b60a0820152620007d060c0840162000707565b60c08201525092915050565b600082601f830112620007ee57600080fd5b604051606081016001600160401b038111828210171562000813576200081362000602565b6040528060608401858111156200082957600080fd5b845b81811015620008455780518352602092830192016200082b565b509195945050505050565b6000806000806000806000806000806102408b8d0312156200087157600080fd5b8a516001600160401b03808211156200088957600080fd5b620008978e838f016200064b565b9b5060208d0151915080821115620008ae57600080fd5b620008bc8e838f016200064b565b9a5060408d01519950620008d360608e01620006d8565b9850620008e360808e01620006ef565b9750620008f48e60a08f0162000718565b96506101808d015195506101a08d01519150808211156200091457600080fd5b50620009238d828e016200064b565b935050620009356101c08c01620006ef565b9150620009478c6101e08d01620007dc565b90509295989b9194979a5092959850565b600181811c908216806200096d57607f821691505b6020821081036200098e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200052357600081815260208120601f850160051c81016020861015620009bd5750805b601f850160051c820191505b81811015620009de57828155600101620009c9565b505050505050565b81516001600160401b0381111562000a025762000a0262000602565b62000a1a8162000a13845462000958565b8462000994565b602080601f83116001811462000a52576000841562000a395750858301515b600019600386901b1c1916600185901b178555620009de565b600085815260208120601f198616915b8281101562000a835788860151825594840194600190910190840162000a62565b508582101562000aa25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000b0957816000190482111562000aed5762000aed62000ab2565b8085161562000afb57918102915b93841c939080029062000acd565b509250929050565b60008262000b225750600162000bc1565b8162000b315750600062000bc1565b816001811462000b4a576002811462000b555762000b75565b600191505062000bc1565b60ff84111562000b695762000b6962000ab2565b50506001821b62000bc1565b5060208310610133831016604e8410600b841016171562000b9a575081810a62000bc1565b62000ba6838362000ac8565b806000190482111562000bbd5762000bbd62000ab2565b0290505b92915050565b600062000bd860ff84168362000b11565b9392505050565b808202811582820484141762000bc15762000bc162000ab2565b60008262000c1757634e487b7160e01b600052601260045260246000fd5b500690565b8181038181111562000bc15762000bc162000ab2565b8082018082111562000bc15762000bc162000ab2565b60805160a05160c05160e05161010051611f9f62000cb06000396000610393015260006104ab015260006104f7015260006103c2015260008181610a85015281816112f0015281816113a2015281816114270152818161149001526119f90152611f9f6000f3fe608060405234801561001057600080fd5b50600436106102d35760003560e01c8063883356d911610186578063a9d86685116100e3578063dd62ed3e11610097578063f820f56711610071578063f820f567146105f0578063f91f825d14610601578063ffa1ad741461061457600080fd5b8063dd62ed3e14610591578063f19c4e3b146105ca578063f2fde38b146105dd57600080fd5b8063b7bda68f116100c8578063b7bda68f14610562578063d48e412714610575578063d8f678511461057e57600080fd5b8063a9d8668514610552578063af465a271461055a57600080fd5b80639703a19d1161013a578063a457c2d71161011f578063a457c2d714610519578063a476df611461052c578063a9059cbb1461053f57600080fd5b80639703a19d146104e9578063a32f6976146104f257600080fd5b80638dac71911161016b5780638dac7191146104a65780638e8c10a2146104cd57806395d89b41146104e157600080fd5b8063883356d9146104715780638da5cb5b1461048157600080fd5b8063378dc3dc116102345780634ac0bc32116101e85780635a3990ce116101cd5780635a3990ce1461044457806370a0823114610456578063715018a61461046957600080fd5b80634ac0bc3214610428578063542e96671461043b57600080fd5b806340c10f191161021957806340c10f19146103f757806342966c681461040a57806346b45af71461041d57600080fd5b8063378dc3dc146103bd57806339509351146103e457600080fd5b806323b872dd1161028b5780632e0ee48e116102705780632e0ee48e1461036e5780632fa782eb14610383578063313ce5671461038c57600080fd5b806323b872dd146103485780632d8381191461035b57600080fd5b806306fdde03116102bc57806306fdde031461030b578063095ea7b31461031357806318160ddd1461033657600080fd5b806302252c4d146102d8578063044ab74e146102ed575b600080fd5b6102eb6102e6366004611bb3565b610650565b005b6102f5610712565b6040516103029190611bcc565b60405180910390f35b6102f56107a0565b610326610321366004611c31565b610832565b6040519015158152602001610302565b6002545b604051908152602001610302565b610326610356366004611c5b565b61084c565b61033a610369366004611bb3565b61091e565b600e546601000000000000900460ff16610326565b61033a60105481565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610302565b61033a7f000000000000000000000000000000000000000000000000000000000000000081565b6103266103f2366004611c31565b610979565b6102eb610405366004611c31565b6109b8565b6102eb610418366004611bb3565b610a44565b600e5460ff16610326565b600e54640100000000900460ff16610326565b61033a60115481565b600e546301000000900460ff16610326565b61033a610464366004611c97565b610a81565b6102eb610aee565b600e54610100900460ff16610326565b600a546001600160a01b03165b6040516001600160a01b039091168152602001610302565b61048e7f000000000000000000000000000000000000000000000000000000000000000081565b600e5465010000000000900460ff16610326565b6102f5610b00565b61033a60095481565b61033a7f000000000000000000000000000000000000000000000000000000000000000081565b610326610527366004611c31565b610b0f565b6102eb61053a366004611cc8565b610bc4565b61032661054d366004611c31565b610c4a565b6102f5610d15565b61033a610d22565b600f5461048e906001600160a01b031681565b61033a600d5481565b6102eb61058c366004611bb3565b610d32565b61033a61059f366004611d79565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102eb6105d8366004611c31565b610df8565b6102eb6105eb366004611c97565b610ef3565b600e5462010000900460ff16610326565b6102eb61060f366004611bb3565b610f04565b6102f56040518060400160405280600881526020017f646566695f765f3200000000000000000000000000000000000000000000000081525081565b6106586110d2565b600e546301000000900460ff1661069b576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5481116106d6576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d8190556040518181527f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d59906020015b60405180910390a150565b600c805461071f90611dac565b80601f016020809104026020016040519081016040528092919081815260200182805461074b90611dac565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b505050505081565b6060600380546107af90611dac565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90611dac565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b60003361084081858561112c565b60019150505b92915050565b6000806108598584611284565b90506000610866846112c7565b90506000816108758487611dfc565b61087f9190611dfc565b600e549091506301000000900460ff16156108da57600d54816108a188610a81565b6108ab9190611e0f565b11156108da5760405163f6202a8f60e01b81526001600160a01b03871660048201526024015b60405180910390fd5b82156108f857600f546108f89088906001600160a01b0316856112ee565b81156109085761090887836113a0565b6109138787836113e9565b979650505050505050565b600060075482111561095c576040517fc91fa8bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610966611402565b90506109728184611e22565b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061084090829086906109b3908790611e0f565b61112c565b6109c06110d2565b600e5460ff166109e357604051630732158d60e31b815260040160405180910390fd5b600e546301000000900460ff1615610a3657600d5481610a0284610a81565b610a0c9190611e0f565b1115610a365760405163f6202a8f60e01b81526001600160a01b03831660048201526024016108d1565b610a408282611425565b5050565b610a4c6110d2565b600e54610100900460ff16610a7457604051636cb5913960e01b815260040160405180910390fd5b610a7e33826113a0565b50565b60007f000000000000000000000000000000000000000000000000000000000000000015610acb576001600160a01b0382166000908152600560205260409020546108469061091e565b6001600160a01b038216600090815260208190526040902054610846565b919050565b610af66110d2565b610afe61146e565b565b6060600480546107af90611dac565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610bac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016108d1565b610bb9828686840361112c565b506001949350505050565b610bcc6110d2565b600e5462010000900460ff16610c0e576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c610c1a8282611e92565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade816040516107079190611bcc565b600080610c573384611284565b90506000610c64846112c7565b9050600081610c738487611dfc565b610c7d9190611dfc565b600e549091506301000000900460ff1615610cd357600d5481610c9f88610a81565b610ca99190611e0f565b1115610cd35760405163f6202a8f60e01b81526001600160a01b03871660048201526024016108d1565b8215610cf157600f54610cf19033906001600160a01b0316856112ee565b8115610d0157610d0133836113a0565b610d0b8682611480565b9695505050505050565b600b805461071f90611dac565b6000610d2d60025490565b905090565b610d3a6110d2565b600e5465010000000000900460ff16610d7f576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601154610d929190611e0f565b610d9c9190611e0f565b90506107d0811115610dc457604051633e474e0d60e01b8152600481018290526024016108d1565b601182905560405182907fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec390600090a25050565b610e006110d2565b600e54640100000000900460ff16610e44576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601154610e579190611e0f565b610e619190611e0f565b90506107d0811115610e8957604051633e474e0d60e01b8152600481018290526024016108d1565b610e928361102f565b600f805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03851690811790915560108390556040518391907facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a90600090a3505050565b610efb6110d2565b610a7e81611045565b610f0c6110d2565b600e546601000000000000900460ff16610f3957604051630800e34b60e41b815260040160405180910390fd5b610f428161148e565b60405181907f76e1296412dac7b50002658bf9aab02d0cfe366f373222d5c14d0168ee8199e390600090a250565b6001600160a01b038216610fc65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108d1565b8060026000828254610fd89190611e0f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b8060601b610a7e5763d92e233d6000526004601cfd5b61104d6110d2565b6001600160a01b0381166110c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108d1565b610a7e816114d1565b600a546001600160a01b03163314610afe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d1565b6001600160a01b0383166111a75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0382166112235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006010546000141580156112a75750600f546001600160a01b03848116911614155b1561084657612710601054836112bd9190611f52565b6109729190611e22565b6000601154600014610ae957612710601154836112e49190611f52565b6108469190611e22565b7f000000000000000000000000000000000000000000000000000000000000000015611395578015611390576000611324611402565b905060006113328284611f52565b905061134085858384611530565b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161138591815260200190565b60405180910390a350505b505050565b611390838383611613565b7f0000000000000000000000000000000000000000000000000000000000000000156113df57604051636cb5913960e01b815260040160405180910390fd5b610a408282611802565b6000336113f785828561196b565b610bb98585856119f7565b600080600061140f611a74565b909250905061141e8183611e22565b9250505090565b7f00000000000000000000000000000000000000000000000000000000000000001561146457604051630732158d60e31b815260040160405180910390fd5b610a408282610f70565b6114766110d2565b610afe60006114d1565b6000336108408185856119f7565b7f00000000000000000000000000000000000000000000000000000000000000006114cc57604051630800e34b60e41b815260040160405180910390fd5b600955565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166000908152600560205260409020548281101561159c576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b038516600482015260248101829052604481018490526064016108d1565b6001600160a01b0385166000908152600560205260409020546115c0908490611dfc565b6001600160a01b0380871660009081526005602052604080822093909355908616815220546115f0908390611e0f565b6001600160a01b0390941660009081526005602052604090209390935550505050565b6001600160a01b03831661168f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b03821661170b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0383166000908152602081905260409020548181101561179a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b6001600160a01b03821661187e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0382166000908152602081905260409020548181101561190d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146117fc57818110156119ea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108d1565b6117fc848484840361112c565b7f00000000000000000000000000000000000000000000000000000000000000001561139557611a268361102f565b611a2f8261102f565b80600003611a69576040517f76c4f5b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611390838383611a8a565b600080600754611a82610d22565b915091509091565b6000611a9582611b31565b90506000611aa38284611dfc565b90506000806000611ab5868686611b44565b92509250925085600014611b2757611acf88888584611530565b611ad98286611b8d565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051611b1e91815260200190565b60405180910390a35b5050505050505050565b6000612710600954836112e49190611f52565b600080600080611b52611402565b90506000611b608289611f52565b90506000611b6e8389611f52565b90506000611b7c8489611f52565b929a91995091975095505050505050565b81600754611b9b9190611dfc565b600755600854611bac908290611e0f565b6008555050565b600060208284031215611bc557600080fd5b5035919050565b600060208083528351808285015260005b81811015611bf957858101830151858201604001528201611bdd565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ae957600080fd5b60008060408385031215611c4457600080fd5b611c4d83611c1a565b946020939093013593505050565b600080600060608486031215611c7057600080fd5b611c7984611c1a565b9250611c8760208501611c1a565b9150604084013590509250925092565b600060208284031215611ca957600080fd5b61097282611c1a565b634e487b7160e01b600052604160045260246000fd5b600060208284031215611cda57600080fd5b813567ffffffffffffffff80821115611cf257600080fd5b818401915084601f830112611d0657600080fd5b813581811115611d1857611d18611cb2565b604051601f8201601f19908116603f01168101908382118183101715611d4057611d40611cb2565b81604052828152876020848701011115611d5957600080fd5b826020860160208301376000928101602001929092525095945050505050565b60008060408385031215611d8c57600080fd5b611d9583611c1a565b9150611da360208401611c1a565b90509250929050565b600181811c90821680611dc057607f821691505b602082108103611de057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561084657610846611de6565b8082018082111561084657610846611de6565b600082611e3f57634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561139057600081815260208120601f850160051c81016020861015611e6b5750805b601f850160051c820191505b81811015611e8a57828155600101611e77565b505050505050565b815167ffffffffffffffff811115611eac57611eac611cb2565b611ec081611eba8454611dac565b84611e44565b602080601f831160018114611ef55760008415611edd5750858301515b600019600386901b1c1916600185901b178555611e8a565b600085815260208120601f198616915b82811015611f2457888601518255948401946001909101908401611f05565b5085821015611f425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761084657610846611de656fea264697066735822122029fc8b143bd2c6c847589afeda7771157ccc6ac5f841e34c3d242bd7edb8d3f864736f6c6343000811003300000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000065a67df75ccbf57828185c7c050e34de64d859d00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000f198491611b7afe4c3c5be865efc6c9bb4e05089000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a466c6f70706120496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000466696e75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102d35760003560e01c8063883356d911610186578063a9d86685116100e3578063dd62ed3e11610097578063f820f56711610071578063f820f567146105f0578063f91f825d14610601578063ffa1ad741461061457600080fd5b8063dd62ed3e14610591578063f19c4e3b146105ca578063f2fde38b146105dd57600080fd5b8063b7bda68f116100c8578063b7bda68f14610562578063d48e412714610575578063d8f678511461057e57600080fd5b8063a9d8668514610552578063af465a271461055a57600080fd5b80639703a19d1161013a578063a457c2d71161011f578063a457c2d714610519578063a476df611461052c578063a9059cbb1461053f57600080fd5b80639703a19d146104e9578063a32f6976146104f257600080fd5b80638dac71911161016b5780638dac7191146104a65780638e8c10a2146104cd57806395d89b41146104e157600080fd5b8063883356d9146104715780638da5cb5b1461048157600080fd5b8063378dc3dc116102345780634ac0bc32116101e85780635a3990ce116101cd5780635a3990ce1461044457806370a0823114610456578063715018a61461046957600080fd5b80634ac0bc3214610428578063542e96671461043b57600080fd5b806340c10f191161021957806340c10f19146103f757806342966c681461040a57806346b45af71461041d57600080fd5b8063378dc3dc146103bd57806339509351146103e457600080fd5b806323b872dd1161028b5780632e0ee48e116102705780632e0ee48e1461036e5780632fa782eb14610383578063313ce5671461038c57600080fd5b806323b872dd146103485780632d8381191461035b57600080fd5b806306fdde03116102bc57806306fdde031461030b578063095ea7b31461031357806318160ddd1461033657600080fd5b806302252c4d146102d8578063044ab74e146102ed575b600080fd5b6102eb6102e6366004611bb3565b610650565b005b6102f5610712565b6040516103029190611bcc565b60405180910390f35b6102f56107a0565b610326610321366004611c31565b610832565b6040519015158152602001610302565b6002545b604051908152602001610302565b610326610356366004611c5b565b61084c565b61033a610369366004611bb3565b61091e565b600e546601000000000000900460ff16610326565b61033a60105481565b60405160ff7f000000000000000000000000000000000000000000000000000000000000000c168152602001610302565b61033a7f000000000000000000000000000000000000000000000000000009184e72a00081565b6103266103f2366004611c31565b610979565b6102eb610405366004611c31565b6109b8565b6102eb610418366004611bb3565b610a44565b600e5460ff16610326565b600e54640100000000900460ff16610326565b61033a60115481565b600e546301000000900460ff16610326565b61033a610464366004611c97565b610a81565b6102eb610aee565b600e54610100900460ff16610326565b600a546001600160a01b03165b6040516001600160a01b039091168152602001610302565b61048e7f00000000000000000000000065a67df75ccbf57828185c7c050e34de64d859d081565b600e5465010000000000900460ff16610326565b6102f5610b00565b61033a60095481565b61033a7f000000000000000000000000000000000000000000000000000000000000000081565b610326610527366004611c31565b610b0f565b6102eb61053a366004611cc8565b610bc4565b61032661054d366004611c31565b610c4a565b6102f5610d15565b61033a610d22565b600f5461048e906001600160a01b031681565b61033a600d5481565b6102eb61058c366004611bb3565b610d32565b61033a61059f366004611d79565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102eb6105d8366004611c31565b610df8565b6102eb6105eb366004611c97565b610ef3565b600e5462010000900460ff16610326565b6102eb61060f366004611bb3565b610f04565b6102f56040518060400160405280600881526020017f646566695f765f3200000000000000000000000000000000000000000000000081525081565b6106586110d2565b600e546301000000900460ff1661069b576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5481116106d6576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d8190556040518181527f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d59906020015b60405180910390a150565b600c805461071f90611dac565b80601f016020809104026020016040519081016040528092919081815260200182805461074b90611dac565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b505050505081565b6060600380546107af90611dac565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90611dac565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b60003361084081858561112c565b60019150505b92915050565b6000806108598584611284565b90506000610866846112c7565b90506000816108758487611dfc565b61087f9190611dfc565b600e549091506301000000900460ff16156108da57600d54816108a188610a81565b6108ab9190611e0f565b11156108da5760405163f6202a8f60e01b81526001600160a01b03871660048201526024015b60405180910390fd5b82156108f857600f546108f89088906001600160a01b0316856112ee565b81156109085761090887836113a0565b6109138787836113e9565b979650505050505050565b600060075482111561095c576040517fc91fa8bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610966611402565b90506109728184611e22565b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061084090829086906109b3908790611e0f565b61112c565b6109c06110d2565b600e5460ff166109e357604051630732158d60e31b815260040160405180910390fd5b600e546301000000900460ff1615610a3657600d5481610a0284610a81565b610a0c9190611e0f565b1115610a365760405163f6202a8f60e01b81526001600160a01b03831660048201526024016108d1565b610a408282611425565b5050565b610a4c6110d2565b600e54610100900460ff16610a7457604051636cb5913960e01b815260040160405180910390fd5b610a7e33826113a0565b50565b60007f000000000000000000000000000000000000000000000000000000000000000015610acb576001600160a01b0382166000908152600560205260409020546108469061091e565b6001600160a01b038216600090815260208190526040902054610846565b919050565b610af66110d2565b610afe61146e565b565b6060600480546107af90611dac565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610bac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016108d1565b610bb9828686840361112c565b506001949350505050565b610bcc6110d2565b600e5462010000900460ff16610c0e576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c610c1a8282611e92565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade816040516107079190611bcc565b600080610c573384611284565b90506000610c64846112c7565b9050600081610c738487611dfc565b610c7d9190611dfc565b600e549091506301000000900460ff1615610cd357600d5481610c9f88610a81565b610ca99190611e0f565b1115610cd35760405163f6202a8f60e01b81526001600160a01b03871660048201526024016108d1565b8215610cf157600f54610cf19033906001600160a01b0316856112ee565b8115610d0157610d0133836113a0565b610d0b8682611480565b9695505050505050565b600b805461071f90611dac565b6000610d2d60025490565b905090565b610d3a6110d2565b600e5465010000000000900460ff16610d7f576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601154610d929190611e0f565b610d9c9190611e0f565b90506107d0811115610dc457604051633e474e0d60e01b8152600481018290526024016108d1565b601182905560405182907fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec390600090a25050565b610e006110d2565b600e54640100000000900460ff16610e44576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601154610e579190611e0f565b610e619190611e0f565b90506107d0811115610e8957604051633e474e0d60e01b8152600481018290526024016108d1565b610e928361102f565b600f805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03851690811790915560108390556040518391907facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a90600090a3505050565b610efb6110d2565b610a7e81611045565b610f0c6110d2565b600e546601000000000000900460ff16610f3957604051630800e34b60e41b815260040160405180910390fd5b610f428161148e565b60405181907f76e1296412dac7b50002658bf9aab02d0cfe366f373222d5c14d0168ee8199e390600090a250565b6001600160a01b038216610fc65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108d1565b8060026000828254610fd89190611e0f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b8060601b610a7e5763d92e233d6000526004601cfd5b61104d6110d2565b6001600160a01b0381166110c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108d1565b610a7e816114d1565b600a546001600160a01b03163314610afe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d1565b6001600160a01b0383166111a75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0382166112235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006010546000141580156112a75750600f546001600160a01b03848116911614155b1561084657612710601054836112bd9190611f52565b6109729190611e22565b6000601154600014610ae957612710601154836112e49190611f52565b6108469190611e22565b7f000000000000000000000000000000000000000000000000000000000000000015611395578015611390576000611324611402565b905060006113328284611f52565b905061134085858384611530565b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161138591815260200190565b60405180910390a350505b505050565b611390838383611613565b7f0000000000000000000000000000000000000000000000000000000000000000156113df57604051636cb5913960e01b815260040160405180910390fd5b610a408282611802565b6000336113f785828561196b565b610bb98585856119f7565b600080600061140f611a74565b909250905061141e8183611e22565b9250505090565b7f00000000000000000000000000000000000000000000000000000000000000001561146457604051630732158d60e31b815260040160405180910390fd5b610a408282610f70565b6114766110d2565b610afe60006114d1565b6000336108408185856119f7565b7f00000000000000000000000000000000000000000000000000000000000000006114cc57604051630800e34b60e41b815260040160405180910390fd5b600955565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166000908152600560205260409020548281101561159c576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b038516600482015260248101829052604481018490526064016108d1565b6001600160a01b0385166000908152600560205260409020546115c0908490611dfc565b6001600160a01b0380871660009081526005602052604080822093909355908616815220546115f0908390611e0f565b6001600160a01b0390941660009081526005602052604090209390935550505050565b6001600160a01b03831661168f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b03821661170b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0383166000908152602081905260409020548181101561179a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b6001600160a01b03821661187e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0382166000908152602081905260409020548181101561190d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016108d1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146117fc57818110156119ea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108d1565b6117fc848484840361112c565b7f00000000000000000000000000000000000000000000000000000000000000001561139557611a268361102f565b611a2f8261102f565b80600003611a69576040517f76c4f5b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611390838383611a8a565b600080600754611a82610d22565b915091509091565b6000611a9582611b31565b90506000611aa38284611dfc565b90506000806000611ab5868686611b44565b92509250925085600014611b2757611acf88888584611530565b611ad98286611b8d565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051611b1e91815260200190565b60405180910390a35b5050505050505050565b6000612710600954836112e49190611f52565b600080600080611b52611402565b90506000611b608289611f52565b90506000611b6e8389611f52565b90506000611b7c8489611f52565b929a91995091975095505050505050565b81600754611b9b9190611dfc565b600755600854611bac908290611e0f565b6008555050565b600060208284031215611bc557600080fd5b5035919050565b600060208083528351808285015260005b81811015611bf957858101830151858201604001528201611bdd565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ae957600080fd5b60008060408385031215611c4457600080fd5b611c4d83611c1a565b946020939093013593505050565b600080600060608486031215611c7057600080fd5b611c7984611c1a565b9250611c8760208501611c1a565b9150604084013590509250925092565b600060208284031215611ca957600080fd5b61097282611c1a565b634e487b7160e01b600052604160045260246000fd5b600060208284031215611cda57600080fd5b813567ffffffffffffffff80821115611cf257600080fd5b818401915084601f830112611d0657600080fd5b813581811115611d1857611d18611cb2565b604051601f8201601f19908116603f01168101908382118183101715611d4057611d40611cb2565b81604052828152876020848701011115611d5957600080fd5b826020860160208301376000928101602001929092525095945050505050565b60008060408385031215611d8c57600080fd5b611d9583611c1a565b9150611da360208401611c1a565b90509250929050565b600181811c90821680611dc057607f821691505b602082108103611de057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561084657610846611de6565b8082018082111561084657610846611de6565b600082611e3f57634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561139057600081815260208120601f850160051c81016020861015611e6b5750805b601f850160051c820191505b81811015611e8a57828155600101611e77565b505050505050565b815167ffffffffffffffff811115611eac57611eac611cb2565b611ec081611eba8454611dac565b84611e44565b602080601f831160018114611ef55760008415611edd5750858301515b600019600386901b1c1916600185901b178555611e8a565b600085815260208120601f198616915b82811015611f2457888601518255948401946001909101908401611f05565b5085821015611f425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761084657610846611de656fea264697066735822122029fc8b143bd2c6c847589afeda7771157ccc6ac5f841e34c3d242bd7edb8d3f864736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000065a67df75ccbf57828185c7c050e34de64d859d00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000f198491611b7afe4c3c5be865efc6c9bb4e05089000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a466c6f70706120496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000466696e75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Floppa Inu
Arg [1] : symbol_ (string): finu
Arg [2] : initialSupplyToSet (uint256): 10000000000000
Arg [3] : decimalsToSet (uint8): 12
Arg [4] : tokenOwner (address): 0x65A67DF75CCbF57828185c7C050e34De64d859d0
Arg [5] : customConfigProps (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [6] : maxTokenAmount (uint256): 0
Arg [7] : newDocumentUri (string):
Arg [8] : _taxAddress (address): 0xF198491611B7AFe4c3C5BE865Efc6C9bB4E05089
Arg [9] : bpsParams (uint256[3]): 5,0,0
-----Encoded View---------------
23 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [2] : 000000000000000000000000000000000000000000000000000009184e72a000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 00000000000000000000000065a67df75ccbf57828185c7c050e34de64d859d0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 00000000000000000000000000000000000000000000000000000000000002c0
Arg [14] : 000000000000000000000000f198491611b7afe4c3c5be865efc6c9bb4e05089
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [18] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [19] : 466c6f70706120496e7500000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [21] : 66696e7500000000000000000000000000000000000000000000000000000000
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.