Contract
0xf2af4407B8Ba25c6019d2fCd510B5C15e4ce7EF0
1
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] | |||
---|---|---|---|---|---|---|---|---|---|
0xb12c6d0333a5cb7603cf24acce931f407673c70a4e58170a25c898630995614a | 0x60806040 | 57899483 | 4 days 13 hrs ago | 0xf13f2fe43dc0f1570cace94b0ac02c0fbe7719cf | IN | Create: RangoTest2 | 0 FTM | 0.033869197994 |
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xb12c6d0333a5cb7603cf24acce931f407673c70a4e58170a25c898630995614a | 57899483 | 4 days 13 hrs ago | 0xf13f2fe43dc0f1570cace94b0ac02c0fbe7719cf | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Source Code Verified (Exact Match)
Contract Name:
RangoTest2
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2023-03-19 */ // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // 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); } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: contracts/RangoTest2.sol pragma solidity 0.8.18; interface testToken{ function increaseAllowance( address spender, uint256 amount ) external returns (bool); } contract RangoTest2 is Ownable{ using SafeERC20 for IERC20; testToken public testtoken; constructor(address _testtoken){ testtoken = testToken(_testtoken); } function allownace(address spender, uint256 increment) external onlyOwner{ testtoken.increaseAllowance(spender, increment); } function withdraw(address token, uint256 amount) external onlyOwner{ IERC20(token).safeTransfer(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_testtoken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"spender","type":"address"},{"internalType":"uint256","name":"increment","type":"uint256"}],"name":"allownace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"testtoken","outputs":[{"internalType":"contract testToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000f6138038062000f618339818101604052810190620000379190620001d5565b620000576200004b6200009f60201b60201c565b620000a760201b60201c565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000207565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200019d8262000170565b9050919050565b620001af8162000190565b8114620001bb57600080fd5b50565b600081519050620001cf81620001a4565b92915050565b600060208284031215620001ee57620001ed6200016b565b5b6000620001fe84828501620001be565b91505092915050565b610d4a80620002176000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80633fa69faa14610067578063715018a614610085578063741cc1831461008f5780638da5cb5b146100ab578063f2fde38b146100c9578063f3fef3a3146100e5575b600080fd5b61006f610101565b60405161007c91906107ae565b60405180910390f35b61008d610127565b005b6100a960048036038101906100a49190610842565b61013b565b005b6100b36101e8565b6040516100c09190610891565b60405180910390f35b6100e360048036038101906100de91906108ac565b610211565b005b6100ff60048036038101906100fa9190610842565b610294565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61012f6102cb565b6101396000610349565b565b6101436102cb565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633950935183836040518363ffffffff1660e01b81526004016101a09291906108e8565b6020604051808303816000875af11580156101bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101e39190610949565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6102196102cb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027f906109f9565b60405180910390fd5b61029181610349565b50565b61029c6102cb565b6102c733828473ffffffffffffffffffffffffffffffffffffffff1661040d9092919063ffffffff16565b5050565b6102d3610493565b73ffffffffffffffffffffffffffffffffffffffff166102f16101e8565b73ffffffffffffffffffffffffffffffffffffffff1614610347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033e90610a65565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61048e8363a9059cbb60e01b848460405160240161042c9291906108e8565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061049b565b505050565b600033905090565b60006104fd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166105629092919063ffffffff16565b905060008151111561055d578080602001905181019061051d9190610949565b61055c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055390610af7565b60405180910390fd5b5b505050565b6060610571848460008561057a565b90509392505050565b6060824710156105bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b690610b89565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516105e89190610c1a565b60006040518083038185875af1925050503d8060008114610625576040519150601f19603f3d011682016040523d82523d6000602084013e61062a565b606091505b509150915061063b87838387610647565b92505050949350505050565b606083156106a95760008351036106a157610661856106bc565b6106a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069790610c7d565b60405180910390fd5b5b8290506106b4565b6106b383836106df565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156106f25781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107269190610cf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061077461076f61076a8461072f565b61074f565b61072f565b9050919050565b600061078682610759565b9050919050565b60006107988261077b565b9050919050565b6107a88161078d565b82525050565b60006020820190506107c3600083018461079f565b92915050565b600080fd5b60006107d98261072f565b9050919050565b6107e9816107ce565b81146107f457600080fd5b50565b600081359050610806816107e0565b92915050565b6000819050919050565b61081f8161080c565b811461082a57600080fd5b50565b60008135905061083c81610816565b92915050565b60008060408385031215610859576108586107c9565b5b6000610867858286016107f7565b92505060206108788582860161082d565b9150509250929050565b61088b816107ce565b82525050565b60006020820190506108a66000830184610882565b92915050565b6000602082840312156108c2576108c16107c9565b5b60006108d0848285016107f7565b91505092915050565b6108e28161080c565b82525050565b60006040820190506108fd6000830185610882565b61090a60208301846108d9565b9392505050565b60008115159050919050565b61092681610911565b811461093157600080fd5b50565b6000815190506109438161091d565b92915050565b60006020828403121561095f5761095e6107c9565b5b600061096d84828501610934565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006109e3602683610976565b91506109ee82610987565b604082019050919050565b60006020820190508181036000830152610a12816109d6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000610a4f602083610976565b9150610a5a82610a19565b602082019050919050565b60006020820190508181036000830152610a7e81610a42565b9050919050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000610ae1602a83610976565b9150610aec82610a85565b604082019050919050565b60006020820190508181036000830152610b1081610ad4565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000610b73602683610976565b9150610b7e82610b17565b604082019050919050565b60006020820190508181036000830152610ba281610b66565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015610bdd578082015181840152602081019050610bc2565b60008484015250505050565b6000610bf482610ba9565b610bfe8185610bb4565b9350610c0e818560208601610bbf565b80840191505092915050565b6000610c268284610be9565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000610c67601d83610976565b9150610c7282610c31565b602082019050919050565b60006020820190508181036000830152610c9681610c5a565b9050919050565b600081519050919050565b6000601f19601f8301169050919050565b6000610cc482610c9d565b610cce8185610976565b9350610cde818560208601610bbf565b610ce781610ca8565b840191505092915050565b60006020820190508181036000830152610d0c8184610cb9565b90509291505056fea2646970667358221220e3816aca89fc01bdfb41712aceea42b64c41de2f7e41c0e3747c53084c4d1dcb64736f6c6343000812003300000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75
-----Decoded View---------------
Arg [0] : _testtoken (address): 0x04068da6c83afcfa0e13ba15a6696662335d5b75
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75
Deployed ByteCode Sourcemap
22981:478:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23051:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21952:103;;;:::i;:::-;;23177:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21304:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22210:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23324:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23051:26;;;;;;;;;;;;;:::o;21952:103::-;21190:13;:11;:13::i;:::-;22017:30:::1;22044:1;22017:18;:30::i;:::-;21952:103::o:0;23177:139::-;21190:13;:11;:13::i;:::-;23261:9:::1;;;;;;;;;;;:27;;;23289:7;23298:9;23261:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23177:139:::0;;:::o;21304:87::-;21350:7;21377:6;;;;;;;;;;;21370:13;;21304:87;:::o;22210:201::-;21190:13;:11;:13::i;:::-;22319:1:::1;22299:22;;:8;:22;;::::0;22291:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22375:28;22394:8;22375:18;:28::i;:::-;22210:201:::0;:::o;23324:132::-;21190:13;:11;:13::i;:::-;23402:46:::1;23429:10;23441:6;23409:5;23402:26;;;;:46;;;;;:::i;:::-;23324:132:::0;;:::o;21469:::-;21544:12;:10;:12::i;:::-;21533:23;;:7;:5;:7::i;:::-;:23;;;21525:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21469:132::o;22571:191::-;22645:16;22664:6;;;;;;;;;;;22645:25;;22690:8;22681:6;;:17;;;;;;;;;;;;;;;;;;22745:8;22714:40;;22735:8;22714:40;;;;;;;;;;;;22634:128;22571:191;:::o;15386:211::-;15503:86;15523:5;15553:23;;;15578:2;15582:5;15530:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15503:19;:86::i;:::-;15386:211;;;:::o;19855:98::-;19908:7;19935:10;19928:17;;19855:98;:::o;18453:716::-;18877:23;18903:69;18931:4;18903:69;;;;;;;;;;;;;;;;;18911:5;18903:27;;;;:69;;;;;:::i;:::-;18877:95;;19007:1;18987:10;:17;:21;18983:179;;;19084:10;19073:30;;;;;;;;;;;;:::i;:::-;19065:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18983:179;18523:646;18453:716;;:::o;3990:229::-;4127:12;4159:52;4181:6;4189:4;4195:1;4198:12;4159:21;:52::i;:::-;4152:59;;3990:229;;;;;:::o;5110:455::-;5280:12;5338:5;5313:21;:30;;5305:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5398:12;5412:23;5439:6;:11;;5458:5;5465:4;5439:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5397:73;;;;5488:69;5515:6;5523:7;5532:10;5544:12;5488:26;:69::i;:::-;5481:76;;;;5110:455;;;;;;:::o;7683:644::-;7868:12;7897:7;7893:427;;;7946:1;7925:10;:17;:22;7921:290;;8143:18;8154:6;8143:10;:18::i;:::-;8135:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;7921:290;8232:10;8225:17;;;;7893:427;8275:33;8283:10;8295:12;8275:7;:33::i;:::-;7683:644;;;;;;;:::o;1233:326::-;1293:4;1550:1;1528:7;:19;;;:23;1521:30;;1233:326;;;:::o;8869:552::-;9050:1;9030:10;:17;:21;9026:388;;;9262:10;9256:17;9319:15;9306:10;9302:2;9298:19;9291:44;9026:388;9389:12;9382:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:126:1;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:60::-;167:3;188:5;181:12;;139:60;;;:::o;205:142::-;255:9;288:53;306:34;315:24;333:5;315:24;:::i;:::-;306:34;:::i;:::-;288:53;:::i;:::-;275:66;;205:142;;;:::o;353:126::-;403:9;436:37;467:5;436:37;:::i;:::-;423:50;;353:126;;;:::o;485:143::-;552:9;585:37;616:5;585:37;:::i;:::-;572:50;;485:143;;;:::o;634:165::-;738:54;786:5;738:54;:::i;:::-;733:3;726:67;634:165;;:::o;805:256::-;915:4;953:2;942:9;938:18;930:26;;966:88;1051:1;1040:9;1036:17;1027:6;966:88;:::i;:::-;805:256;;;;:::o;1148:117::-;1257:1;1254;1247:12;1394:96;1431:7;1460:24;1478:5;1460:24;:::i;:::-;1449:35;;1394:96;;;:::o;1496:122::-;1569:24;1587:5;1569:24;:::i;:::-;1562:5;1559:35;1549:63;;1608:1;1605;1598:12;1549:63;1496:122;:::o;1624:139::-;1670:5;1708:6;1695:20;1686:29;;1724:33;1751:5;1724:33;:::i;:::-;1624:139;;;;:::o;1769:77::-;1806:7;1835:5;1824:16;;1769:77;;;:::o;1852:122::-;1925:24;1943:5;1925:24;:::i;:::-;1918:5;1915:35;1905:63;;1964:1;1961;1954:12;1905:63;1852:122;:::o;1980:139::-;2026:5;2064:6;2051:20;2042:29;;2080:33;2107:5;2080:33;:::i;:::-;1980:139;;;;:::o;2125:474::-;2193:6;2201;2250:2;2238:9;2229:7;2225:23;2221:32;2218:119;;;2256:79;;:::i;:::-;2218:119;2376:1;2401:53;2446:7;2437:6;2426:9;2422:22;2401:53;:::i;:::-;2391:63;;2347:117;2503:2;2529:53;2574:7;2565:6;2554:9;2550:22;2529:53;:::i;:::-;2519:63;;2474:118;2125:474;;;;;:::o;2605:118::-;2692:24;2710:5;2692:24;:::i;:::-;2687:3;2680:37;2605:118;;:::o;2729:222::-;2822:4;2860:2;2849:9;2845:18;2837:26;;2873:71;2941:1;2930:9;2926:17;2917:6;2873:71;:::i;:::-;2729:222;;;;:::o;2957:329::-;3016:6;3065:2;3053:9;3044:7;3040:23;3036:32;3033:119;;;3071:79;;:::i;:::-;3033:119;3191:1;3216:53;3261:7;3252:6;3241:9;3237:22;3216:53;:::i;:::-;3206:63;;3162:117;2957:329;;;;:::o;3292:118::-;3379:24;3397:5;3379:24;:::i;:::-;3374:3;3367:37;3292:118;;:::o;3416:332::-;3537:4;3575:2;3564:9;3560:18;3552:26;;3588:71;3656:1;3645:9;3641:17;3632:6;3588:71;:::i;:::-;3669:72;3737:2;3726:9;3722:18;3713:6;3669:72;:::i;:::-;3416:332;;;;;:::o;3754:90::-;3788:7;3831:5;3824:13;3817:21;3806:32;;3754:90;;;:::o;3850:116::-;3920:21;3935:5;3920:21;:::i;:::-;3913:5;3910:32;3900:60;;3956:1;3953;3946:12;3900:60;3850:116;:::o;3972:137::-;4026:5;4057:6;4051:13;4042:22;;4073:30;4097:5;4073:30;:::i;:::-;3972:137;;;;:::o;4115:345::-;4182:6;4231:2;4219:9;4210:7;4206:23;4202:32;4199:119;;;4237:79;;:::i;:::-;4199:119;4357:1;4382:61;4435:7;4426:6;4415:9;4411:22;4382:61;:::i;:::-;4372:71;;4328:125;4115:345;;;;:::o;4466:169::-;4550:11;4584:6;4579:3;4572:19;4624:4;4619:3;4615:14;4600:29;;4466:169;;;;:::o;4641:225::-;4781:34;4777:1;4769:6;4765:14;4758:58;4850:8;4845:2;4837:6;4833:15;4826:33;4641:225;:::o;4872:366::-;5014:3;5035:67;5099:2;5094:3;5035:67;:::i;:::-;5028:74;;5111:93;5200:3;5111:93;:::i;:::-;5229:2;5224:3;5220:12;5213:19;;4872:366;;;:::o;5244:419::-;5410:4;5448:2;5437:9;5433:18;5425:26;;5497:9;5491:4;5487:20;5483:1;5472:9;5468:17;5461:47;5525:131;5651:4;5525:131;:::i;:::-;5517:139;;5244:419;;;:::o;5669:182::-;5809:34;5805:1;5797:6;5793:14;5786:58;5669:182;:::o;5857:366::-;5999:3;6020:67;6084:2;6079:3;6020:67;:::i;:::-;6013:74;;6096:93;6185:3;6096:93;:::i;:::-;6214:2;6209:3;6205:12;6198:19;;5857:366;;;:::o;6229:419::-;6395:4;6433:2;6422:9;6418:18;6410:26;;6482:9;6476:4;6472:20;6468:1;6457:9;6453:17;6446:47;6510:131;6636:4;6510:131;:::i;:::-;6502:139;;6229:419;;;:::o;6654:229::-;6794:34;6790:1;6782:6;6778:14;6771:58;6863:12;6858:2;6850:6;6846:15;6839:37;6654:229;:::o;6889:366::-;7031:3;7052:67;7116:2;7111:3;7052:67;:::i;:::-;7045:74;;7128:93;7217:3;7128:93;:::i;:::-;7246:2;7241:3;7237:12;7230:19;;6889:366;;;:::o;7261:419::-;7427:4;7465:2;7454:9;7450:18;7442:26;;7514:9;7508:4;7504:20;7500:1;7489:9;7485:17;7478:47;7542:131;7668:4;7542:131;:::i;:::-;7534:139;;7261:419;;;:::o;7686:225::-;7826:34;7822:1;7814:6;7810:14;7803:58;7895:8;7890:2;7882:6;7878:15;7871:33;7686:225;:::o;7917:366::-;8059:3;8080:67;8144:2;8139:3;8080:67;:::i;:::-;8073:74;;8156:93;8245:3;8156:93;:::i;:::-;8274:2;8269:3;8265:12;8258:19;;7917:366;;;:::o;8289:419::-;8455:4;8493:2;8482:9;8478:18;8470:26;;8542:9;8536:4;8532:20;8528:1;8517:9;8513:17;8506:47;8570:131;8696:4;8570:131;:::i;:::-;8562:139;;8289:419;;;:::o;8714:98::-;8765:6;8799:5;8793:12;8783:22;;8714:98;;;:::o;8818:147::-;8919:11;8956:3;8941:18;;8818:147;;;;:::o;8971:246::-;9052:1;9062:113;9076:6;9073:1;9070:13;9062:113;;;9161:1;9156:3;9152:11;9146:18;9142:1;9137:3;9133:11;9126:39;9098:2;9095:1;9091:10;9086:15;;9062:113;;;9209:1;9200:6;9195:3;9191:16;9184:27;9033:184;8971:246;;;:::o;9223:386::-;9327:3;9355:38;9387:5;9355:38;:::i;:::-;9409:88;9490:6;9485:3;9409:88;:::i;:::-;9402:95;;9506:65;9564:6;9559:3;9552:4;9545:5;9541:16;9506:65;:::i;:::-;9596:6;9591:3;9587:16;9580:23;;9331:278;9223:386;;;;:::o;9615:271::-;9745:3;9767:93;9856:3;9847:6;9767:93;:::i;:::-;9760:100;;9877:3;9870:10;;9615:271;;;;:::o;9892:179::-;10032:31;10028:1;10020:6;10016:14;10009:55;9892:179;:::o;10077:366::-;10219:3;10240:67;10304:2;10299:3;10240:67;:::i;:::-;10233:74;;10316:93;10405:3;10316:93;:::i;:::-;10434:2;10429:3;10425:12;10418:19;;10077:366;;;:::o;10449:419::-;10615:4;10653:2;10642:9;10638:18;10630:26;;10702:9;10696:4;10692:20;10688:1;10677:9;10673:17;10666:47;10730:131;10856:4;10730:131;:::i;:::-;10722:139;;10449:419;;;:::o;10874:99::-;10926:6;10960:5;10954:12;10944:22;;10874:99;;;:::o;10979:102::-;11020:6;11071:2;11067:7;11062:2;11055:5;11051:14;11047:28;11037:38;;10979:102;;;:::o;11087:377::-;11175:3;11203:39;11236:5;11203:39;:::i;:::-;11258:71;11322:6;11317:3;11258:71;:::i;:::-;11251:78;;11338:65;11396:6;11391:3;11384:4;11377:5;11373:16;11338:65;:::i;:::-;11428:29;11450:6;11428:29;:::i;:::-;11423:3;11419:39;11412:46;;11179:285;11087:377;;;;:::o;11470:313::-;11583:4;11621:2;11610:9;11606:18;11598:26;;11670:9;11664:4;11660:20;11656:1;11645:9;11641:17;11634:47;11698:78;11771:4;11762:6;11698:78;:::i;:::-;11690:86;;11470:313;;;;:::o
Swarm Source
ipfs://e3816aca89fc01bdfb41712aceea42b64c41de2f7e41c0e3747c53084c4d1dcb
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.