Contract
0x3f0F24d037c1fBa1E6bF8EE498Fdee27b6ED71b6
4
Contract Overview
Balance:
0 FTM
FTM Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xabd3561ba4c7ece4a2e8d75d1dd1879b966ba9e10fa1cda629240b4d309601db | 0x60806040 | 57866062 | 5 days 3 hrs ago | 0xc112b2055a37574a009e36393196ba0ed7bb2ae3 | IN | Create: PaymentsProcessor | 0 FTM | 0.21285311086 |
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xabd3561ba4c7ece4a2e8d75d1dd1879b966ba9e10fa1cda629240b4d309601db | 57866062 | 5 days 3 hrs ago | 0xc112b2055a37574a009e36393196ba0ed7bb2ae3 | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
PaymentsProcessor
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes 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"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; struct TokenData { ERC20 token; bool exists; } struct RecipientTokenData { TokenData token_data; uint8 fee_percent; } // Contract for processing transactions contract PaymentsProcessor is Ownable { using SafeMath for uint256; // Mapping from token cocntract address to ERC20 object mapping(address => TokenData) public available_tokens; // Mapping from recipient address to (ERC20 , fee) object mapping(address => mapping(address => RecipientTokenData)) private recipients_erc20_fees; // Mapping from recipient address to native coin fee mapping(address => uint8) private recipients_native_coin_fees; // Events for logging transactions event ERC20Transaction(address indexed token, address indexed from, address indexed to, uint256 value); event NativeCoinTransaction(address indexed from, address indexed to, uint256 value); // Constructor to initialize contract with available token contracts addresses constructor(address[] memory token_addresses) { for (uint256 i = 0; i < token_addresses.length; i++) { available_tokens[token_addresses[i]] = TokenData(ERC20(token_addresses[i]), true); } } // Function to set fee percentage for a specific ERC20 token address for a given recipient // Returns true on success function setERC20Fee(address receipient, address token_address ,uint8 fee_percent) public onlyOwner returns (bool) { // Fee must be in range (0, 100) require(fee_percent < 100, "Fee percent must be less than 100%"); require(fee_percent > 0, "Fee percent must be greater than 0%"); require(available_tokens[token_address].exists, "Unsupported token address"); recipients_erc20_fees[receipient][token_address] = RecipientTokenData(available_tokens[token_address], fee_percent); return true; } // Function to set fee percentage for a native blockchain coin for a given recipient // Returns true on success function setNativeCoinFee(address receipient, uint8 fee_percent) public onlyOwner returns (bool) { // Fee must be in range (0, 100) require(fee_percent < 100, "Fee percent must be less than 100%"); require(fee_percent > 0, "Fee percent must be greater than 0%"); recipients_native_coin_fees[receipient] = fee_percent; return true; } // Function to get the fee percentage for a specific ERC20 token address for a given recipient function getERC20Fee(address receipient, address token_address) public onlyOwner view returns (uint8) { require(available_tokens[token_address].exists, "Unsupported token address"); return recipients_erc20_fees[receipient][token_address].fee_percent; } // Function to get the fee percentage for a native blockchain coin for a given recipient function getNativeCoinFee(address receipient) public onlyOwner view returns (uint8){ return recipients_native_coin_fees[receipient]; } // Function to add a new ERC20 token to mapping of available tokens // Returns true on success function addERC20Token(address token_address) public onlyOwner returns (bool) { require(!available_tokens[token_address].exists, "Token address already exists"); available_tokens[token_address] = TokenData(ERC20(token_address), true); return true; } // Function to process ERC20 transaction for a given recipient function processTransactionERC20(address token_address, address from, address to, uint256 value) public { // Ensure that the token contract is registered with the processor require(available_tokens[token_address].exists, "Token contract not registered with processor"); // Ensure that the from address has sufficient balance require(available_tokens[token_address].token.balanceOf(from) >= value, "Insufficient balance for sender"); // Ensure that value is a positive number require(value > 0, "Tokens amount must be greater than zero"); // Get fee percent for the givan recipient and token uint8 fee_percent = recipients_erc20_fees[to][token_address].fee_percent; // Calculate the amount to transfer to the recipient uint256 fee_amount = value.mul(fee_percent).div(100); // Transfer the value from sender to the contract available_tokens[token_address].token.transferFrom(from, address(this), value); // Transfer fee from contract to owner available_tokens[token_address].token.transfer(owner(), fee_amount); // Transfer (value - fee) to `to` address available_tokens[token_address].token.transfer(to, value.sub(fee_amount)); // Emit transaction event emit ERC20Transaction(token_address, from, to, value); } // Function to process native coin transaction for a given recipient function processTransactionNative(address payable recipient) public payable { // Ensure that msg.value is a positive number require(msg.value > 0, "Value to process must be greater than zero"); // Get recipient fee percent uint8 fee_percent = recipients_native_coin_fees[recipient]; // Calculate fee amount uint256 fee_amount = msg.value.mul(fee_percent).div(100); // Calculate the amount to transfer to the recipient uint256 amount_to_recipient = msg.value - fee_amount; // Transfer the amount to the recipient recipient.transfer(amount_to_recipient); // Transfer the fee amount to the owner payable(owner()).transfer(fee_amount); // Emit transaction event emit NativeCoinTransaction(msg.sender, recipient, amount_to_recipient); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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; } _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; _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; } _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.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"token_addresses","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"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":"ERC20Transaction","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":"NativeCoinTransaction","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"},{"inputs":[{"internalType":"address","name":"token_address","type":"address"}],"name":"addERC20Token","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"available_tokens","outputs":[{"internalType":"contract ERC20","name":"token","type":"address"},{"internalType":"bool","name":"exists","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receipient","type":"address"},{"internalType":"address","name":"token_address","type":"address"}],"name":"getERC20Fee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receipient","type":"address"}],"name":"getNativeCoinFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token_address","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"processTransactionERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"processTransactionNative","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receipient","type":"address"},{"internalType":"address","name":"token_address","type":"address"},{"internalType":"uint8","name":"fee_percent","type":"uint8"}],"name":"setERC20Fee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receipient","type":"address"},{"internalType":"uint8","name":"fee_percent","type":"uint8"}],"name":"setNativeCoinFee","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
60806040523480156200001157600080fd5b506040516200125d3803806200125d833981016040819052620000349162000194565b6200003f3362000127565b60005b81518110156200011f5760405180604001604052808383815181106200007857634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b031681526020016001151581525060016000848481518110620000ba57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b0390811683528282019390935260409091016000208351815494909201511515600160a01b026001600160a81b0319909416919092161791909117905580620001168162000268565b91505062000042565b5050620002a6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200018f57600080fd5b919050565b60006020808385031215620001a7578182fd5b82516001600160401b0380821115620001be578384fd5b818501915085601f830112620001d2578384fd5b815181811115620001e757620001e762000290565b8060051b604051601f19603f830116810181811085821117156200020f576200020f62000290565b604052828152858101935084860182860187018a10156200022e578788fd5b8795505b838610156200025b57620002468162000177565b85526001959095019493860193860162000232565b5098975050505050505050565b60006000198214156200028957634e487b7160e01b81526011600452602481fd5b5060010190565b634e487b7160e01b600052604160045260246000fd5b610fa780620002b66000396000f3fe60806040526004361061009c5760003560e01c8063715018a611610064578063715018a61461015d5780638da5cb5b14610172578063971ccc161461019a578063999aef34146101ba578063b587c63b1461021b578063f2fde38b1461023b57600080fd5b80630b7711bb146100a15780630d820c26146100d85780631091740b14610108578063218c6aba146101285780632318d1d81461014a575b600080fd5b3480156100ad57600080fd5b506100c16100bc366004610d31565b61025b565b60405160ff90911681526020015b60405180910390f35b3480156100e457600080fd5b506100f86100f3366004610db9565b610307565b60405190151581526020016100cf565b34801561011457600080fd5b506100c1610123366004610d15565b61046a565b34801561013457600080fd5b50610148610143366004610d69565b610497565b005b610148610158366004610d15565b6108f7565b34801561016957600080fd5b50610148610a4e565b34801561017e57600080fd5b506000546040516001600160a01b0390911681526020016100cf565b3480156101a657600080fd5b506100f86101b5366004610d15565b610a62565b3480156101c657600080fd5b506101fc6101d5366004610d15565b6001602052600090815260409020546001600160a01b03811690600160a01b900460ff1682565b604080516001600160a01b0390931683529015156020830152016100cf565b34801561022757600080fd5b506100f8610236366004610dff565b610b36565b34801561024757600080fd5b50610148610256366004610d15565b610bb6565b6000610265610c2f565b6001600160a01b038216600090815260016020526040902054600160a01b900460ff166102d55760405162461bcd60e51b8152602060048201526019602482015278556e737570706f7274656420746f6b656e206164647265737360381b60448201526064015b60405180910390fd5b506001600160a01b03918216600090815260026020908152604080832093909416825291909152206001015460ff1690565b6000610311610c2f565b60648260ff16106103345760405162461bcd60e51b81526004016102cc90610e6b565b60008260ff16116103575760405162461bcd60e51b81526004016102cc90610ead565b6001600160a01b038316600090815260016020526040902054600160a01b900460ff166103c25760405162461bcd60e51b8152602060048201526019602482015278556e737570706f7274656420746f6b656e206164647265737360381b60448201526064016102cc565b50604080516001600160a01b038085166000818152600160208181528683206080870188525480861687890190815260ff600160a01b928390048116151560608a01529088528981168389019081528c881686526002845289862096865295835297909320955180518754919092015115159093026001600160a81b03199093169416939093171783555191810180549290931660ff19909216919091179091559392505050565b6000610474610c2f565b506001600160a01b03811660009081526003602052604090205460ff165b919050565b6001600160a01b038416600090815260016020526040902054600160a01b900460ff1661051b5760405162461bcd60e51b815260206004820152602c60248201527f546f6b656e20636f6e7472616374206e6f74207265676973746572656420776960448201526b3a3410383937b1b2b9b9b7b960a11b60648201526084016102cc565b6001600160a01b03848116600090815260016020526040908190205490516370a0823160e01b81528583166004820152839291909116906370a082319060240160206040518083038186803b15801561057357600080fd5b505afa158015610587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ab9190610e53565b10156105f95760405162461bcd60e51b815260206004820152601f60248201527f496e73756666696369656e742062616c616e636520666f722073656e6465720060448201526064016102cc565b600081116106595760405162461bcd60e51b815260206004820152602760248201527f546f6b656e7320616d6f756e74206d7573742062652067726561746572207468604482015266616e207a65726f60c81b60648201526084016102cc565b6001600160a01b03808316600090815260026020908152604080832093881683529290529081206001015460ff169061069d60646106978585610c89565b90610c9c565b6001600160a01b03878116600090815260016020526040908190205490516323b872dd60e01b815288831660048201523060248201526044810187905292935016906323b872dd90606401602060405180830381600087803b15801561070257600080fd5b505af1158015610716573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073a9190610e33565b506001600160a01b038087166000908152600160205260409020541663a9059cbb61076d6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b1580156107b557600080fd5b505af11580156107c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ed9190610e33565b506001600160a01b038087166000908152600160205260409020541663a9059cbb856108198685610ca8565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561085f57600080fd5b505af1158015610873573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108979190610e33565b50836001600160a01b0316856001600160a01b0316876001600160a01b03167f0ac316d0e69c2527f917eba73dd9aaee482f901a26eacf141d5ad60791a0e120866040516108e791815260200190565b60405180910390a4505050505050565b6000341161095a5760405162461bcd60e51b815260206004820152602a60248201527f56616c756520746f2070726f63657373206d7573742062652067726561746572604482015269207468616e207a65726f60b01b60648201526084016102cc565b6001600160a01b03811660009081526003602052604081205460ff169061098660646106973485610c89565b905060006109948234610f2f565b6040519091506001600160a01b0385169082156108fc029083906000818181858888f193505050501580156109cd573d6000803e3d6000fd5b50600080546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015610a07573d6000803e3d6000fd5b506040518181526001600160a01b0385169033907f290ac5f8dc1819c6a25b7076c1e3b8fc93a538481cb1e78569572229d3eed7969060200160405180910390a350505050565b610a56610c2f565b610a606000610cb4565b565b6000610a6c610c2f565b6001600160a01b038216600090815260016020526040902054600160a01b900460ff1615610adc5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e206164647265737320616c7265616479206578697374730000000060448201526064016102cc565b506040805180820182526001600160a01b0380841680835260016020808501828152600093845290829052949091209251835494511515600160a01b026001600160a81b0319909516921691909117929092179055919050565b6000610b40610c2f565b60648260ff1610610b635760405162461bcd60e51b81526004016102cc90610e6b565b60008260ff1611610b865760405162461bcd60e51b81526004016102cc90610ead565b506001600160a01b0382166000908152600360205260409020805460ff831660ff19909116179055600192915050565b610bbe610c2f565b6001600160a01b038116610c235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102cc565b610c2c81610cb4565b50565b6000546001600160a01b03163314610a605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102cc565b6000610c958284610f10565b9392505050565b6000610c958284610ef0565b6000610c958284610f2f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803560ff8116811461049257600080fd5b600060208284031215610d26578081fd5b8135610c9581610f5c565b60008060408385031215610d43578081fd5b8235610d4e81610f5c565b91506020830135610d5e81610f5c565b809150509250929050565b60008060008060808587031215610d7e578182fd5b8435610d8981610f5c565b93506020850135610d9981610f5c565b92506040850135610da981610f5c565b9396929550929360600135925050565b600080600060608486031215610dcd578283fd5b8335610dd881610f5c565b92506020840135610de881610f5c565b9150610df660408501610d04565b90509250925092565b60008060408385031215610e11578182fd5b8235610e1c81610f5c565b9150610e2a60208401610d04565b90509250929050565b600060208284031215610e44578081fd5b81518015158114610c95578182fd5b600060208284031215610e64578081fd5b5051919050565b60208082526022908201527f4665652070657263656e74206d757374206265206c657373207468616e203130604082015261302560f01b606082015260800190565b60208082526023908201527f4665652070657263656e74206d7573742062652067726561746572207468616e60408201526220302560e81b606082015260800190565b600082610f0b57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610f2a57610f2a610f46565b500290565b600082821015610f4157610f41610f46565b500390565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610c2c57600080fdfea264697066735822122007535576253e6256624a926010ca2984b08eb073d733b0cc45bfe9dddd7f518764736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000400000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b7500000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c830000000000000000000000008d11ec38a3eb5e956b052f67da8bdc9bef8abf3e00000000000000000000000074b23882a30290451a17c44f4f05243b6b58c76d
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000400000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b7500000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c830000000000000000000000008d11ec38a3eb5e956b052f67da8bdc9bef8abf3e00000000000000000000000074b23882a30290451a17c44f4f05243b6b58c76d
-----Decoded View---------------
Arg [0] : token_addresses (address[]): 0x04068da6c83afcfa0e13ba15a6696662335d5b75,0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83,0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e,0x74b23882a30290451a17c44f4f05243b6b58c76d
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 00000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75
Arg [3] : 00000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c83
Arg [4] : 0000000000000000000000008d11ec38a3eb5e956b052f67da8bdc9bef8abf3e
Arg [5] : 00000000000000000000000074b23882a30290451a17c44f4f05243b6b58c76d
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.