Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RacksAI
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract RacksAI is ERC20, Ownable {
address private constant DISTRIBUTION_ACCOUNT = 0x71C8EBB9AA1ac07003E36Da3b33F3e845D721955;
address private constant CUSTODY_ACCOUNT = 0x00a3de35369992C55FAB054604F08c3c19049764;
address private constant LIQUIDITY_ACCOUNT = 0x632797127Bb492a3FFE7Ab17f878E151A1169C92;
uint256 private constant TOTAL_SUPPLY = 100 * 10**9 * 10**18;
uint256 private constant INITIAL_LOCKED_SUPPLY = TOTAL_SUPPLY * 25 / 100;
uint256 private constant UNLOCK_PERIOD = 2 * 365 days;
uint256 private constant UNLOCK_INTERVAL = UNLOCK_PERIOD / 2;
uint256 private constant BOT_TAX_RATE = 1;
bool private _stakingEnabled = true;
uint256 private _lastUnlockTimestamp;
uint256 private _releasedSupply;
uint256 private _lockedSupply;
event BotTax(address indexed sender, uint256 amount);
bool private _predictionEngineEnabled;
bool private _governanceSystemEnabled;
bool private _personalizedInsightsEnabled;
bool private _supplyManagementEnabled;
bool private _securityMeasuresEnabled;
bool private _marketMakingEnabled;
bool private _tokenomicsOptimizationEnabled;
bool private _contentCurationEnabled;
bool private _automatedTradingEnabled;
bool private _mqttEnabled;
bool private _coapEnabled;
bool private _zigbeeEnabled;
bool private _threadEnabled;
bool private _lorawanEnabled;
bool private _nbiotEnabled;
bool private _sigfoxEnabled;
bool private _amqpEnabled;
bool private _xmppEnabled;
bool private _ddsEnabled;
bool private _opcuaEnabled;
bool private _httpEnabled;
bool private _bleEnabled;
bool private _zwaveEnabled;
bool private _lowpanEnabled;
bool private _alljoynEnabled;
bool private _mqttsnEnabled;
bool private _wotEnabled;
bool private _tangleEnabled;
bool private _weatherSupportEnabled;
bool private _spaceExplorationEnabled;
bool private _energyOptimizationEnabled;
bool private _autonomousDrivingEnabled;
bool private _dataScienceEnabled;
bool private _metaverseIntegrationEnabled;
bool private _gamingSupportEnabled;
bool private _geoTrackingEnabled;
bool private _fintechIntegrationEnabled;
bool private _securityAnalysisEnabled;
bool private _musicCompositionEnabled;
bool private _medicalDiagnosisEnabled;
bool private _agricultureOptimizationEnabled;
bool private _roboticsControlEnabled;
bool private _facialRecognitionEnabled;
bool private _languageTranslationEnabled;
bool private _contentGenerationEnabled;
bool private _customerServiceAutomationEnabled;
bool private _environmentalMonitoringEnabled;
bool private _emotionalAnalysisEnabled;
bool private _swarmCapabilitiesEnabled;
bool private _droneCapabilitiesEnabled;
bool private _quantumComputingEnabled;
bool private _voiceRecognitionEnabled;
bool private _speechCapabilityEnabled;
bool private _iotCrossUsageEnabled;
bool private _blockchainStandardsEnabled;
bool private _web3ProtocolsEnabled;
uint256 private constant INITIAL_BUY_PRICE = 0.00001 ether;
constructor() ERC20("Racks AI", "RACKS") Ownable(msg.sender) {
uint256 distributionAmount = TOTAL_SUPPLY * 50 / 100;
uint256 custodyAmount = TOTAL_SUPPLY * 25 / 100;
_mint(DISTRIBUTION_ACCOUNT, distributionAmount);
_mint(CUSTODY_ACCOUNT, custodyAmount);
_lockedSupply = INITIAL_LOCKED_SUPPLY;
_releasedSupply = distributionAmount + custodyAmount;
_lastUnlockTimestamp = block.timestamp;
_predictionEngineEnabled = true;
_governanceSystemEnabled = true;
_personalizedInsightsEnabled = true;
_supplyManagementEnabled = true;
_securityMeasuresEnabled = true;
_marketMakingEnabled = true;
_tokenomicsOptimizationEnabled = true;
_contentCurationEnabled = true;
_automatedTradingEnabled = true;
_mqttEnabled = true;
_coapEnabled = true;
_zigbeeEnabled = true;
_threadEnabled = true;
_lorawanEnabled = true;
_nbiotEnabled = true;
_sigfoxEnabled = true;
_amqpEnabled = true;
_xmppEnabled = true;
_ddsEnabled = true;
_opcuaEnabled = true;
_httpEnabled = true;
_bleEnabled = true;
_zwaveEnabled = true;
_lowpanEnabled = true;
_alljoynEnabled = true;
_mqttsnEnabled = true;
_wotEnabled = true;
_tangleEnabled = true;
_weatherSupportEnabled = true;
_spaceExplorationEnabled = true;
_energyOptimizationEnabled = true;
_autonomousDrivingEnabled = true;
_dataScienceEnabled = true;
_metaverseIntegrationEnabled = true;
_gamingSupportEnabled = true;
_geoTrackingEnabled = true;
_fintechIntegrationEnabled = true;
_securityAnalysisEnabled = true;
_musicCompositionEnabled = true;
_medicalDiagnosisEnabled = true;
_agricultureOptimizationEnabled = true;
_roboticsControlEnabled = true;
_facialRecognitionEnabled = true;
_languageTranslationEnabled = true;
_contentGenerationEnabled = true;
_customerServiceAutomationEnabled = true;
_environmentalMonitoringEnabled = true;
_emotionalAnalysisEnabled = true;
_swarmCapabilitiesEnabled = true;
_droneCapabilitiesEnabled = true;
_quantumComputingEnabled = true;
_voiceRecognitionEnabled = true;
_speechCapabilityEnabled = true;
_iotCrossUsageEnabled = true;
_blockchainStandardsEnabled = true;
_web3ProtocolsEnabled = true;
}
function transfer(address recipient, uint256 amount) public override returns (bool) {
if (_lastUnlockTimestamp + UNLOCK_INTERVAL <= block.timestamp) {
_unlockTokens();
}
uint256 botTaxAmount = (amount * BOT_TAX_RATE) / 100;
uint256 transferAmount = amount - botTaxAmount;
_transfer(_msgSender(), recipient, transferAmount);
_transfer(_msgSender(), LIQUIDITY_ACCOUNT, botTaxAmount);
emit BotTax(_msgSender(), botTaxAmount);
return true;
}
function enableStaking(bool enabled) external onlyOwner {
_stakingEnabled = enabled;
}
function enablePredictionEngine(bool enabled) external onlyOwner {
_predictionEngineEnabled = enabled;
}
function enableGovernanceSystem(bool enabled) external onlyOwner {
_governanceSystemEnabled = enabled;
}
function enablePersonalizedInsights(bool enabled) external onlyOwner {
_personalizedInsightsEnabled = enabled;
}
function enableSupplyManagement(bool enabled) external onlyOwner {
_supplyManagementEnabled = enabled;
}
function enableSecurityMeasures(bool enabled) external onlyOwner {
_securityMeasuresEnabled = enabled;
}
function enableMarketMaking(bool enabled) external onlyOwner {
_marketMakingEnabled = enabled;
}
function enableTokenomicsOptimization(bool enabled) external onlyOwner {
_tokenomicsOptimizationEnabled = enabled;
}
function enableContentCuration(bool enabled) external onlyOwner {
_contentCurationEnabled = enabled;
}
function enableAutomatedTrading(bool enabled) external onlyOwner {
_automatedTradingEnabled = enabled;
}
function enableLoaning(bool enabled) external onlyOwner {
}
function enableCredit(bool enabled) external onlyOwner {
}
function enableETF(bool enabled) external onlyOwner {
}
function initiateLoan(address borrower, uint256 amount) external onlyOwner {
}
function approveCreditRequest(address borrower, uint256 amount) external onlyOwner {
}
function issueETF(address beneficiary, uint256 amount) external onlyOwner {
}
function redeemETF(address holder, uint256 amount) external onlyOwner {
}
function _unlockTokens() internal {
uint256 unlockAmount = (_lockedSupply * (block.timestamp - _lastUnlockTimestamp)) / UNLOCK_PERIOD;
if (_releasedSupply + unlockAmount > TOTAL_SUPPLY) {
unlockAmount = TOTAL_SUPPLY - _releasedSupply;
}
_releasedSupply += unlockAmount;
_lockedSupply -= unlockAmount;
_lastUnlockTimestamp = block.timestamp;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../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.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
*
* 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.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* 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 `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BotTax","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":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveCreditRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableAutomatedTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableContentCuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableCredit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableETF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableGovernanceSystem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableLoaning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableMarketMaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enablePersonalizedInsights","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enablePredictionEngine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableSecurityMeasures","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableSupplyManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableTokenomicsOptimization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"initiateLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"issueETF","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":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeemETF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","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":"value","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
60806040526001600560146101000a81548160ff02191690831515021790555034801561002a575f80fd5b50336040518060400160405280600881526020017f5261636b732041490000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5241434b5300000000000000000000000000000000000000000000000000000081525081600390816100a79190610d9e565b5080600490816100b79190610d9e565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361012a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101219190610eac565b60405180910390fd5b6101398161080360201b60201c565b505f606460326c01431e0fae6d7217caa00000006101579190610ef2565b6101619190610f60565b90505f606460196c01431e0fae6d7217caa00000006101809190610ef2565b61018a9190610f60565b90506101b07371c8ebb9aa1ac07003e36da3b33f3e845d721955836108c660201b60201c565b6101d372a3de35369992c55fab054604f08c3c19049764826108c660201b60201c565b606460196c01431e0fae6d7217caa00000006101ef9190610ef2565b6101f99190610f60565b600881905550808261020b9190610f90565b60078190555042600681905550600160095f6101000a81548160ff0219169083151502179055506001600960016101000a81548160ff0219169083151502179055506001600960026101000a81548160ff0219169083151502179055506001600960036101000a81548160ff0219169083151502179055506001600960046101000a81548160ff0219169083151502179055506001600960056101000a81548160ff0219169083151502179055506001600960066101000a81548160ff0219169083151502179055506001600960076101000a81548160ff0219169083151502179055506001600960086101000a81548160ff02191690831515021790555060016009806101000a81548160ff02191690831515021790555060016009600a6101000a81548160ff02191690831515021790555060016009600b6101000a81548160ff02191690831515021790555060016009600c6101000a81548160ff02191690831515021790555060016009600d6101000a81548160ff02191690831515021790555060016009600e6101000a81548160ff02191690831515021790555060016009600f6101000a81548160ff0219169083151502179055506001600960106101000a81548160ff0219169083151502179055506001600960116101000a81548160ff0219169083151502179055506001600960126101000a81548160ff0219169083151502179055506001600960136101000a81548160ff0219169083151502179055506001600960146101000a81548160ff0219169083151502179055506001600960156101000a81548160ff0219169083151502179055506001600960166101000a81548160ff0219169083151502179055506001600960176101000a81548160ff0219169083151502179055506001600960186101000a81548160ff0219169083151502179055506001600960196101000a81548160ff02191690831515021790555060016009601a6101000a81548160ff02191690831515021790555060016009601b6101000a81548160ff02191690831515021790555060016009601c6101000a81548160ff02191690831515021790555060016009601d6101000a81548160ff02191690831515021790555060016009601e6101000a81548160ff02191690831515021790555060016009601f6101000a81548160ff0219169083151502179055506001600a5f6101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055506001600a60036101000a81548160ff0219169083151502179055506001600a60046101000a81548160ff0219169083151502179055506001600a60056101000a81548160ff0219169083151502179055506001600a60066101000a81548160ff0219169083151502179055506001600a60076101000a81548160ff0219169083151502179055506001600a60086101000a81548160ff0219169083151502179055506001600a60096101000a81548160ff0219169083151502179055506001600a806101000a81548160ff0219169083151502179055506001600a600b6101000a81548160ff0219169083151502179055506001600a600c6101000a81548160ff0219169083151502179055506001600a600d6101000a81548160ff0219169083151502179055506001600a600e6101000a81548160ff0219169083151502179055506001600a600f6101000a81548160ff0219169083151502179055506001600a60106101000a81548160ff0219169083151502179055506001600a60116101000a81548160ff0219169083151502179055506001600a60126101000a81548160ff0219169083151502179055506001600a60136101000a81548160ff0219169083151502179055506001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff0219169083151502179055506001600a60176101000a81548160ff0219169083151502179055505050611020565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610936575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161092d9190610eac565b60405180910390fd5b6109475f838361094b60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099b578060025f82825461098f9190610f90565b92505081905550610a69565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a24578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a1b93929190610fd2565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab0578060025f8282540392505081905550610afa565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b579190611007565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610bdf57607f821691505b602082108103610bf257610bf1610b9b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610c547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610c19565b610c5e8683610c19565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610ca2610c9d610c9884610c76565b610c7f565b610c76565b9050919050565b5f819050919050565b610cbb83610c88565b610ccf610cc782610ca9565b848454610c25565b825550505050565b5f90565b610ce3610cd7565b610cee818484610cb2565b505050565b5b81811015610d1157610d065f82610cdb565b600181019050610cf4565b5050565b601f821115610d5657610d2781610bf8565b610d3084610c0a565b81016020851015610d3f578190505b610d53610d4b85610c0a565b830182610cf3565b50505b505050565b5f82821c905092915050565b5f610d765f1984600802610d5b565b1980831691505092915050565b5f610d8e8383610d67565b9150826002028217905092915050565b610da782610b64565b67ffffffffffffffff811115610dc057610dbf610b6e565b5b610dca8254610bc8565b610dd5828285610d15565b5f60209050601f831160018114610e06575f8415610df4578287015190505b610dfe8582610d83565b865550610e65565b601f198416610e1486610bf8565b5f5b82811015610e3b57848901518255600182019150602085019450602081019050610e16565b86831015610e585784890151610e54601f891682610d67565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e9682610e6d565b9050919050565b610ea681610e8c565b82525050565b5f602082019050610ebf5f830184610e9d565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610efc82610c76565b9150610f0783610c76565b9250828202610f1581610c76565b91508282048414831517610f2c57610f2b610ec5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610f6a82610c76565b9150610f7583610c76565b925082610f8557610f84610f33565b5b828204905092915050565b5f610f9a82610c76565b9150610fa583610c76565b9250828201905080821115610fbd57610fbc610ec5565b5b92915050565b610fcc81610c76565b82525050565b5f606082019050610fe55f830186610e9d565b610ff26020830185610fc3565b610fff6040830184610fc3565b949350505050565b5f60208201905061101a5f830184610fc3565b92915050565b6117a58061102d5f395ff3fe608060405234801561000f575f80fd5b50600436106101cd575f3560e01c806395d89b4111610102578063c53ab6f3116100a0578063dda738021161006f578063dda73802146104e9578063ef12281c14610505578063f20cc0ea14610521578063f2fde38b1461053d576101cd565b8063c53ab6f314610465578063d360e53d14610481578063da6f7fec1461049d578063dd62ed3e146104b9576101cd565b8063b1f1d2e1116100dc578063b1f1d2e1146103f5578063b6ccad7614610411578063be51f26a1461042d578063c4df142814610449576101cd565b806395d89b411461038b5780639cefc1da146103a9578063a9059cbb146103c5576101cd565b806346d8fb181161016f5780636dce8956116101495780636dce89561461031757806370a0823114610333578063715018a6146103635780638da5cb5b1461036d576101cd565b806346d8fb18146102c357806357bd686d146102df5780635e927c33146102fb576101cd565b806318160ddd116101ab57806318160ddd1461023b57806323b872dd14610259578063313ce56714610289578063365f620c146102a7576101cd565b8063018eacd7146101d157806306fdde03146101ed578063095ea7b31461020b575b5f80fd5b6101eb60048036038101906101e69190611319565b610559565b005b6101f5610565565b60405161020291906113c7565b60405180910390f35b61022560048036038101906102209190611319565b6105f5565b6040516102329190611401565b60405180910390f35b610243610617565b6040516102509190611429565b60405180910390f35b610273600480360381019061026e9190611442565b610620565b6040516102809190611401565b60405180910390f35b61029161064e565b60405161029e91906114ad565b60405180910390f35b6102c160048036038101906102bc91906114f0565b610656565b005b6102dd60048036038101906102d891906114f0565b61067a565b005b6102f960048036038101906102f491906114f0565b61069f565b005b61031560048036038101906103109190611319565b6106aa565b005b610331600480360381019061032c9190611319565b6106b6565b005b61034d6004803603810190610348919061151b565b6106c2565b60405161035a9190611429565b60405180910390f35b61036b610707565b005b61037561071a565b6040516103829190611555565b60405180910390f35b610393610742565b6040516103a091906113c7565b60405180910390f35b6103c360048036038101906103be91906114f0565b6107d2565b005b6103df60048036038101906103da9190611319565b6107f7565b6040516103ec9190611401565b60405180910390f35b61040f600480360381019061040a91906114f0565b6108e9565b005b61042b600480360381019061042691906114f0565b6108f4565b005b610447600480360381019061044291906114f0565b610919565b005b610463600480360381019061045e91906114f0565b61093e565b005b61047f600480360381019061047a91906114f0565b610963565b005b61049b600480360381019061049691906114f0565b610988565b005b6104b760048036038101906104b29190611319565b610993565b005b6104d360048036038101906104ce919061156e565b61099f565b6040516104e09190611429565b60405180910390f35b61050360048036038101906104fe91906114f0565b610a21565b005b61051f600480360381019061051a91906114f0565b610a46565b005b61053b600480360381019061053691906114f0565b610a6b565b005b6105576004803603810190610552919061151b565b610a90565b005b610561610b14565b5050565b606060038054610574906115d9565b80601f01602080910402602001604051908101604052809291908181526020018280546105a0906115d9565b80156105eb5780601f106105c2576101008083540402835291602001916105eb565b820191905f5260205f20905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b5f806105ff610b9b565b905061060c818585610ba2565b600191505092915050565b5f600254905090565b5f8061062a610b9b565b9050610637858285610bb4565b610642858585610c46565b60019150509392505050565b5f6012905090565b61065e610b14565b8060095f6101000a81548160ff02191690831515021790555050565b610682610b14565b80600960046101000a81548160ff02191690831515021790555050565b6106a7610b14565b50565b6106b2610b14565b5050565b6106be610b14565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61070f610b14565b6107185f610d36565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610751906115d9565b80601f016020809104026020016040519081016040528092919081815260200182805461077d906115d9565b80156107c85780601f1061079f576101008083540402835291602001916107c8565b820191905f5260205f20905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b6107da610b14565b80600560146101000a81548160ff02191690831515021790555050565b5f4260026303c2670061080a9190611663565b6006546108179190611693565b1161082557610824610df9565b5b5f606460018461083591906116c6565b61083f9190611663565b90505f818461084e9190611707565b905061086261085b610b9b565b8683610c46565b61088861086d610b9b565b73632797127bb492a3ffe7ab17f878e151a1169c9284610c46565b610890610b9b565b73ffffffffffffffffffffffffffffffffffffffff167f95d301071c1055c26b3450a747874087f4e69644800fcde2bdd3be157811c4bc836040516108d59190611429565b60405180910390a260019250505092915050565b6108f1610b14565b50565b6108fc610b14565b80600960076101000a81548160ff02191690831515021790555050565b610921610b14565b80600960026101000a81548160ff02191690831515021790555050565b610946610b14565b80600960016101000a81548160ff02191690831515021790555050565b61096b610b14565b80600960086101000a81548160ff02191690831515021790555050565b610990610b14565b50565b61099b610b14565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a29610b14565b80600960036101000a81548160ff02191690831515021790555050565b610a4e610b14565b80600960066101000a81548160ff02191690831515021790555050565b610a73610b14565b80600960056101000a81548160ff02191690831515021790555050565b610a98610b14565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b08575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aff9190611555565b60405180910390fd5b610b1181610d36565b50565b610b1c610b9b565b73ffffffffffffffffffffffffffffffffffffffff16610b3a61071a565b73ffffffffffffffffffffffffffffffffffffffff1614610b9957610b5d610b9b565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b909190611555565b60405180910390fd5b565b5f33905090565b610baf8383836001610ea0565b505050565b5f610bbf848461099f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c405781811015610c31578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c289392919061173a565b60405180910390fd5b610c3f84848484035f610ea0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cb6575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cad9190611555565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d26575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d1d9190611555565b60405180910390fd5b610d3183838361106f565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6303c2670060065442610e0d9190611707565b600854610e1a91906116c6565b610e249190611663565b90506c01431e0fae6d7217caa000000081600754610e429190611693565b1115610e66576007546c01431e0fae6d7217caa0000000610e639190611707565b90505b8060075f828254610e779190611693565b925050819055508060085f828254610e8f9190611707565b925050819055504260068190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f10575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f079190611555565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f80575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f779190611555565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611069578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110609190611429565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110bf578060025f8282546110b39190611693565b9250508190555061118d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611148578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161113f9392919061173a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d4578060025f828254039250508190555061121e565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127b9190611429565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112b58261128c565b9050919050565b6112c5816112ab565b81146112cf575f80fd5b50565b5f813590506112e0816112bc565b92915050565b5f819050919050565b6112f8816112e6565b8114611302575f80fd5b50565b5f81359050611313816112ef565b92915050565b5f806040838503121561132f5761132e611288565b5b5f61133c858286016112d2565b925050602061134d85828601611305565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61139982611357565b6113a38185611361565b93506113b3818560208601611371565b6113bc8161137f565b840191505092915050565b5f6020820190508181035f8301526113df818461138f565b905092915050565b5f8115159050919050565b6113fb816113e7565b82525050565b5f6020820190506114145f8301846113f2565b92915050565b611423816112e6565b82525050565b5f60208201905061143c5f83018461141a565b92915050565b5f805f6060848603121561145957611458611288565b5b5f611466868287016112d2565b9350506020611477868287016112d2565b925050604061148886828701611305565b9150509250925092565b5f60ff82169050919050565b6114a781611492565b82525050565b5f6020820190506114c05f83018461149e565b92915050565b6114cf816113e7565b81146114d9575f80fd5b50565b5f813590506114ea816114c6565b92915050565b5f6020828403121561150557611504611288565b5b5f611512848285016114dc565b91505092915050565b5f602082840312156115305761152f611288565b5b5f61153d848285016112d2565b91505092915050565b61154f816112ab565b82525050565b5f6020820190506115685f830184611546565b92915050565b5f806040838503121561158457611583611288565b5b5f611591858286016112d2565b92505060206115a2858286016112d2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115f057607f821691505b602082108103611603576116026115ac565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61166d826112e6565b9150611678836112e6565b92508261168857611687611609565b5b828204905092915050565b5f61169d826112e6565b91506116a8836112e6565b92508282019050808211156116c0576116bf611636565b5b92915050565b5f6116d0826112e6565b91506116db836112e6565b92508282026116e9816112e6565b91508282048414831517611700576116ff611636565b5b5092915050565b5f611711826112e6565b915061171c836112e6565b925082820390508181111561173457611733611636565b5b92915050565b5f60608201905061174d5f830186611546565b61175a602083018561141a565b611767604083018461141a565b94935050505056fea26469706673582212201a39d43dcd8783891af233e99bb828136cc597b2e823336a8747eb574a5d96bb64736f6c63430008190033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101cd575f3560e01c806395d89b4111610102578063c53ab6f3116100a0578063dda738021161006f578063dda73802146104e9578063ef12281c14610505578063f20cc0ea14610521578063f2fde38b1461053d576101cd565b8063c53ab6f314610465578063d360e53d14610481578063da6f7fec1461049d578063dd62ed3e146104b9576101cd565b8063b1f1d2e1116100dc578063b1f1d2e1146103f5578063b6ccad7614610411578063be51f26a1461042d578063c4df142814610449576101cd565b806395d89b411461038b5780639cefc1da146103a9578063a9059cbb146103c5576101cd565b806346d8fb181161016f5780636dce8956116101495780636dce89561461031757806370a0823114610333578063715018a6146103635780638da5cb5b1461036d576101cd565b806346d8fb18146102c357806357bd686d146102df5780635e927c33146102fb576101cd565b806318160ddd116101ab57806318160ddd1461023b57806323b872dd14610259578063313ce56714610289578063365f620c146102a7576101cd565b8063018eacd7146101d157806306fdde03146101ed578063095ea7b31461020b575b5f80fd5b6101eb60048036038101906101e69190611319565b610559565b005b6101f5610565565b60405161020291906113c7565b60405180910390f35b61022560048036038101906102209190611319565b6105f5565b6040516102329190611401565b60405180910390f35b610243610617565b6040516102509190611429565b60405180910390f35b610273600480360381019061026e9190611442565b610620565b6040516102809190611401565b60405180910390f35b61029161064e565b60405161029e91906114ad565b60405180910390f35b6102c160048036038101906102bc91906114f0565b610656565b005b6102dd60048036038101906102d891906114f0565b61067a565b005b6102f960048036038101906102f491906114f0565b61069f565b005b61031560048036038101906103109190611319565b6106aa565b005b610331600480360381019061032c9190611319565b6106b6565b005b61034d6004803603810190610348919061151b565b6106c2565b60405161035a9190611429565b60405180910390f35b61036b610707565b005b61037561071a565b6040516103829190611555565b60405180910390f35b610393610742565b6040516103a091906113c7565b60405180910390f35b6103c360048036038101906103be91906114f0565b6107d2565b005b6103df60048036038101906103da9190611319565b6107f7565b6040516103ec9190611401565b60405180910390f35b61040f600480360381019061040a91906114f0565b6108e9565b005b61042b600480360381019061042691906114f0565b6108f4565b005b610447600480360381019061044291906114f0565b610919565b005b610463600480360381019061045e91906114f0565b61093e565b005b61047f600480360381019061047a91906114f0565b610963565b005b61049b600480360381019061049691906114f0565b610988565b005b6104b760048036038101906104b29190611319565b610993565b005b6104d360048036038101906104ce919061156e565b61099f565b6040516104e09190611429565b60405180910390f35b61050360048036038101906104fe91906114f0565b610a21565b005b61051f600480360381019061051a91906114f0565b610a46565b005b61053b600480360381019061053691906114f0565b610a6b565b005b6105576004803603810190610552919061151b565b610a90565b005b610561610b14565b5050565b606060038054610574906115d9565b80601f01602080910402602001604051908101604052809291908181526020018280546105a0906115d9565b80156105eb5780601f106105c2576101008083540402835291602001916105eb565b820191905f5260205f20905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b5f806105ff610b9b565b905061060c818585610ba2565b600191505092915050565b5f600254905090565b5f8061062a610b9b565b9050610637858285610bb4565b610642858585610c46565b60019150509392505050565b5f6012905090565b61065e610b14565b8060095f6101000a81548160ff02191690831515021790555050565b610682610b14565b80600960046101000a81548160ff02191690831515021790555050565b6106a7610b14565b50565b6106b2610b14565b5050565b6106be610b14565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61070f610b14565b6107185f610d36565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610751906115d9565b80601f016020809104026020016040519081016040528092919081815260200182805461077d906115d9565b80156107c85780601f1061079f576101008083540402835291602001916107c8565b820191905f5260205f20905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b6107da610b14565b80600560146101000a81548160ff02191690831515021790555050565b5f4260026303c2670061080a9190611663565b6006546108179190611693565b1161082557610824610df9565b5b5f606460018461083591906116c6565b61083f9190611663565b90505f818461084e9190611707565b905061086261085b610b9b565b8683610c46565b61088861086d610b9b565b73632797127bb492a3ffe7ab17f878e151a1169c9284610c46565b610890610b9b565b73ffffffffffffffffffffffffffffffffffffffff167f95d301071c1055c26b3450a747874087f4e69644800fcde2bdd3be157811c4bc836040516108d59190611429565b60405180910390a260019250505092915050565b6108f1610b14565b50565b6108fc610b14565b80600960076101000a81548160ff02191690831515021790555050565b610921610b14565b80600960026101000a81548160ff02191690831515021790555050565b610946610b14565b80600960016101000a81548160ff02191690831515021790555050565b61096b610b14565b80600960086101000a81548160ff02191690831515021790555050565b610990610b14565b50565b61099b610b14565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a29610b14565b80600960036101000a81548160ff02191690831515021790555050565b610a4e610b14565b80600960066101000a81548160ff02191690831515021790555050565b610a73610b14565b80600960056101000a81548160ff02191690831515021790555050565b610a98610b14565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b08575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aff9190611555565b60405180910390fd5b610b1181610d36565b50565b610b1c610b9b565b73ffffffffffffffffffffffffffffffffffffffff16610b3a61071a565b73ffffffffffffffffffffffffffffffffffffffff1614610b9957610b5d610b9b565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b909190611555565b60405180910390fd5b565b5f33905090565b610baf8383836001610ea0565b505050565b5f610bbf848461099f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c405781811015610c31578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c289392919061173a565b60405180910390fd5b610c3f84848484035f610ea0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cb6575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cad9190611555565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d26575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d1d9190611555565b60405180910390fd5b610d3183838361106f565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6303c2670060065442610e0d9190611707565b600854610e1a91906116c6565b610e249190611663565b90506c01431e0fae6d7217caa000000081600754610e429190611693565b1115610e66576007546c01431e0fae6d7217caa0000000610e639190611707565b90505b8060075f828254610e779190611693565b925050819055508060085f828254610e8f9190611707565b925050819055504260068190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f10575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f079190611555565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f80575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f779190611555565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611069578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110609190611429565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110bf578060025f8282546110b39190611693565b9250508190555061118d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611148578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161113f9392919061173a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d4578060025f828254039250508190555061121e565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127b9190611429565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112b58261128c565b9050919050565b6112c5816112ab565b81146112cf575f80fd5b50565b5f813590506112e0816112bc565b92915050565b5f819050919050565b6112f8816112e6565b8114611302575f80fd5b50565b5f81359050611313816112ef565b92915050565b5f806040838503121561132f5761132e611288565b5b5f61133c858286016112d2565b925050602061134d85828601611305565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61139982611357565b6113a38185611361565b93506113b3818560208601611371565b6113bc8161137f565b840191505092915050565b5f6020820190508181035f8301526113df818461138f565b905092915050565b5f8115159050919050565b6113fb816113e7565b82525050565b5f6020820190506114145f8301846113f2565b92915050565b611423816112e6565b82525050565b5f60208201905061143c5f83018461141a565b92915050565b5f805f6060848603121561145957611458611288565b5b5f611466868287016112d2565b9350506020611477868287016112d2565b925050604061148886828701611305565b9150509250925092565b5f60ff82169050919050565b6114a781611492565b82525050565b5f6020820190506114c05f83018461149e565b92915050565b6114cf816113e7565b81146114d9575f80fd5b50565b5f813590506114ea816114c6565b92915050565b5f6020828403121561150557611504611288565b5b5f611512848285016114dc565b91505092915050565b5f602082840312156115305761152f611288565b5b5f61153d848285016112d2565b91505092915050565b61154f816112ab565b82525050565b5f6020820190506115685f830184611546565b92915050565b5f806040838503121561158457611583611288565b5b5f611591858286016112d2565b92505060206115a2858286016112d2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115f057607f821691505b602082108103611603576116026115ac565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61166d826112e6565b9150611678836112e6565b92508261168857611687611609565b5b828204905092915050565b5f61169d826112e6565b91506116a8836112e6565b92508282019050808211156116c0576116bf611636565b5b92915050565b5f6116d0826112e6565b91506116db836112e6565b92508282026116e9816112e6565b91508282048414831517611700576116ff611636565b5b5092915050565b5f611711826112e6565b915061171c836112e6565b925082820390508181111561173457611733611636565b5b92915050565b5f60608201905061174d5f830186611546565b61175a602083018561141a565b611767604083018461141a565b94935050505056fea26469706673582212201a39d43dcd8783891af233e99bb828136cc597b2e823336a8747eb574a5d96bb64736f6c63430008190033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.