ETH Price: $2,197.20 (-0.36%)

Token

Ouroboros (ORX)
 

Overview

Max Total Supply

66,697,498.42131865728130448 ORX

Holders

534

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
61,693.827024599124979699 ORX

Value
$0.00
0x8f4791cf58a000264ace84d1b11023f64b71be4b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A foundation driving sustainable blockchain solutions.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ORX

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 1 runs

Other Settings:
paris EvmVersion
File 1 of 19 : ORX.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "../../interfaces/IFeeToken.sol";
/**
* @title ORX Fee Sharing Token Contract
* @dev Implementation of the ORX token using OpenZeppelin contracts.
* This contract includes minting, burning, and staking functionalities.
*/
contract ORX is IFeeToken, ERC20, ERC20Permit, Ownable {
/// @dev The initial liquidity pool share of ORX tokens.
uint256 private constant INITIAL_LP_SHARE = 600_000e18;
/// @dev The referral program share of ORX tokens which may or may not be availed of.
uint256 private constant REF_SHARE = 20_000_000e18;
/// @dev The backstop pool incentives share of ORX tokens.
uint256 private constant BACKSTOP_INCENTIVES_SHARE = 200_000_000e18;
/// @dev The USDX-WETH V2 liquidity pool share of ORX tokens.
uint256 private constant USDX_WETH_LP_SHARE = 50_000_000e18;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 19 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 19 : IERC2612.sol
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2612.sol)
pragma solidity ^0.8.0;
import "../token/ERC20/extensions/IERC20Permit.sol";
interface IERC2612 is IERC20Permit {}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 19 : IERC5267.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)
pragma solidity ^0.8.0;
interface IERC5267 {
/**
* @dev MAY be emitted to signal that the domain could have changed.
*/
event EIP712DomainChanged();
/**
* @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
* signature.
*/
function eip712Domain()
external
view
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 19 : ERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 19 : ERC20Permit.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/ERC20Permit.sol)
pragma solidity ^0.8.0;
import "./IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/ECDSA.sol";
import "../../../utils/cryptography/EIP712.sol";
import "../../../utils/Counters.sol";
/**
* @dev Implementation 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.
*
* _Available since v3.4._
*/
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
using Counters for Counters.Counter;
mapping(address => Counters.Counter) private _nonces;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 19 : IERC20Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 19 : IERC20Permit.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/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.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 19 : IERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 19 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 19 : Counters.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 19 : ECDSA.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV // Deprecated in v4.8
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 19 : EIP712.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)
pragma solidity ^0.8.8;
import "./ECDSA.sol";
import "../ShortStrings.sol";
import "../../interfaces/IERC5267.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 19 : Math.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 19 : SignedMath.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 19 : ShortStrings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol)
pragma solidity ^0.8.8;
import "./StorageSlot.sol";
// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
// | length | 0x BB |
type ShortString is bytes32;
/**
* @dev This library provides functions to convert short memory strings
* into a `ShortString` type that can be used as an immutable variable.
*
* Strings of arbitrary length can be optimized using this library if
* they are short enough (up to 31 bytes) by packing them with their
* length (1 byte) in a single EVM word (32 bytes). Additionally, a
* fallback mechanism can be used for every other case.
*
* Usage example:
*
* ```solidity
* contract Named {
* using ShortStrings for *;
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 17 of 19 : StorageSlot.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.0;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 18 of 19 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 19 of 19 : IFeeToken.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/interfaces/IERC2612.sol";
interface IFeeToken is IERC20 {
/**
* @dev Sends tokens directly to the Fee Staking contract
* @param _sender The address of the token sender
* @param _amount The amount of tokens to send
*/
function sendToFeeStaking(address _sender, uint _amount) external;
/**
* @dev Mints new tokens
* @param account The address that will receive the minted tokens
* @param amount The amount of tokens to mint
*/
function mint(address account, uint amount) external;
/**
* @dev Burns tokens
* @param amount The amount of tokens to burn
*/
function burn(uint amount) external;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"optimizer": {
"enabled": true,
"runs": 1
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_orxStakingAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","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":"BASE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_CAP","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":"_minterAddress","type":"address"}],"name":"attachMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minterSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"orxStakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sendToFeeStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101806040523480156200001257600080fd5b5060405162001f0838038062001f088339810160408190526200003591620002e2565b604051806040016040528060098152602001684f75726f626f726f7360b81b81525080604051806040016040528060018152602001603160f81b815250604051806040016040528060098152602001684f75726f626f726f7360b81b8152506040518060400160405280600381526020016209ea4b60eb1b8152508160039081620000c19190620003b9565b506004620000d08282620003b9565b50620000e29150839050600562000214565b61012052620000f381600662000214565b61014052815160208084019190912060e052815190820120610100524660a0526200018160e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c0525062000196336200024d565b6001600160a01b038116620002015760405162461bcd60e51b815260206004820152602660248201527f5f6f72785374616b696e674164647265737320697320746865206e756c6c206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6001600160a01b031661016052620004fa565b600060208351101562000234576200022c836200029f565b905062000247565b81620002418482620003b9565b5060ff90505b92915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080829050601f81511115620002cd578260405163305a27a960e01b8152600401620001f8919062000485565b8051620002da82620004d5565b179392505050565b600060208284031215620002f557600080fd5b81516001600160a01b03811681146200030d57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200033f57607f821691505b6020821081036200036057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003b457600081815260208120601f850160051c810160208610156200038f5750805b601f850160051c820191505b81811015620003b0578281556001016200039b565b5050505b505050565b81516001600160401b03811115620003d557620003d562000314565b620003ed81620003e684546200032a565b8462000366565b602080601f8311600181146200042557600084156200040c5750858301515b600019600386901b1c1916600185901b178555620003b0565b600085815260208120601f198616915b82811015620004565788860151825594840194600190910190840162000435565b5085821015620004755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208083528351808285015260005b81811015620004b45785810183015185820160400152820162000496565b506000604082860101526040601f19601f8301168501019250505092915050565b80516020808301519190811015620003605760001960209190910360031b1b16919050565b60805160a05160c05160e05161010051610120516101405161016051611993620005756000396000818161032001528181610792015281816108190152610c7801526000610719015260006106ee01526000610dfc01526000610dd401526000610d2f01526000610d5901526000610d8301526119936000f3fe608060405234801561001057600080fd5b50600436106101495760003560e01c806306fdde031461014e578063095ea7b31461016c5780630cfccc831461018f57806318160ddd146101a557806323b872dd146101ad578063313ce567146101c057806334d722c9146101cf5780633644e515146101fa578063395093511461020257806340c10f191461021557806342966c681461022a5780634fe95dd81461023d57806370a0823114610250578063715018a6146102795780637ecebe001461028157806384b0196e146102945780638da5cb5b146102af57806393c68400146102b757806395d89b41146102c85780639caa9c77146102d0578063a457c2d7146102e3578063a9059cbb146102f6578063baf13a0a14610309578063d3ed9e321461031b578063d505accf14610342578063dd62ed3e14610355578063f2fde38b14610368575b600080fd5b61015661037b565b60405161016391906116ad565b60405180910390f35b61017f61017a3660046116dc565b61040d565b6040519015158152602001610163565b610197610427565b604051908152602001610163565b600254610197565b61017f6101bb366004611706565b61048b565b60405160128152602001610163565b600a546101e2906001600160a01b031681565b6040516001600160a01b039091168152602001610163565b6101976104a9565b61017f6102103660046116dc565b6104b8565b6102286102233660046116dc565b6104da565b005b610228610238366004611742565b610619565b61022861024b36600461175b565b610626565b61019761025e36600461175b565b6001600160a01b031660009081526020819052604090205490565b6102286106ae565b61019761028f36600461175b565b6106c2565b61029c6106e0565b6040516101639796959493929190611776565b6101e2610769565b676765c793fa10079d601b1b610197565b610156610778565b6102286102de3660046116dc565b610787565b61017f6102f13660046116dc565b61083e565b61017f6103043660046116dc565b6108c4565b610197676765c793fa10079d601b1b81565b6101e27f000000000000000000000000000000000000000000000000000000000000000081565b61022861035036600461180c565b6108e0565b61019761036336600461187f565b610a44565b61022861037636600461175b565b610a6f565b60606003805461038a906118b2565b80601f01602080910402602001604051908101604052809291908181526020018280546103b6906118b2565b80156104035780601f106103d857610100808354040283529160200191610403565b820191906000526020600020905b8154815290600101906020018083116103e657829003601f168201915b5050505050905090565b60003361041b818585610ae5565b60019150505b92915050565b6a295be96e640669720000006aa56fa5b99019a5c8000000676765c793fa10079d601b1b61046a6a108b2a2c28029094000000697f0e10af47c1c70000006118e6565b61047491906118e6565b61047e91906118e6565b61048891906118e6565b81565b600061049683610c0a565b6104a1848484610d09565b949350505050565b60006104b3610d22565b905090565b60003361041b8185856104cb8383610a44565b6104d591906118e6565b610ae5565b600a546001600160a01b031633146105495760405162461bcd60e51b815260206004820152602760248201527f4f52583a2063616c6c6572206d75737420626520746865204d696e74657220636044820152661bdb9d1c9858dd60ca1b60648201526084015b60405180910390fd5b6a295be96e640669720000006aa56fa5b99019a5c8000000676765c793fa10079d601b1b61058c6a108b2a2c28029094000000697f0e10af47c1c70000006118e6565b61059691906118e6565b6105a091906118e6565b6105aa91906118e6565b816105b460025490565b6105be91906118e6565b111561060b5760405162461bcd60e51b815260206004820152601c60248201527b04d696e742065786365656473206861726420737570706c79206361760241b6044820152606401610540565b6106158282610e4d565b5050565b6106233382610efa565b50565b61062e611012565b6001600160a01b03811661068f5760405162461bcd60e51b815260206004820152602260248201527f5f6d696e7465724164647265737320697320746865206e756c6c206164647265604482015261737360f01b6064820152608401610540565b600a80546001600160a01b0319166001600160a01b0383161790556106235b6106b6611012565b6106c06000611071565b565b6001600160a01b038116600090815260076020526040812054610421565b6000606080828080836107147f000000000000000000000000000000000000000000000000000000000000000060056110c3565b61073f7f000000000000000000000000000000000000000000000000000000000000000060066110c3565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6009546001600160a01b031690565b60606004805461038a906118b2565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146108135760405162461bcd60e51b815260206004820152602b60248201527f4f52583a2063616c6c6572206d75737420626520746865204f72785374616b6960448201526a1b99c818dbdb9d1c9858dd60aa1b6064820152608401610540565b610615827f00000000000000000000000000000000000000000000000000000000000000008361116e565b6000338161084c8286610a44565b9050838110156108ac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610540565b6108b98286868403610ae5565b506001949350505050565b60006108cf83610c0a565b6108d98383611302565b9392505050565b834211156109305760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610540565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861095f8c611310565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006109ba82611338565b905060006109ca82878787611365565b9050896001600160a01b0316816001600160a01b031614610a2d5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610540565b610a388a8a8a610ae5565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a77611012565b6001600160a01b038116610adc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610540565b61062381611071565b6001600160a01b038316610b475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610540565b6001600160a01b038216610ba85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610540565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b306001600160a01b03821603610c765760405162461bcd60e51b815260206004820152603d602482015260008051602061191e83398151915260448201527f746c7920746f20746865204f525820746f6b656e20636f6e74726163740000006064820152608401610540565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316036106235760405162461bcd60e51b815260206004820152603b602482015260008051602061191e83398151915260448201527a1d1b1e481d1bc81d1a19481cdd185ada5b99c818dbdb9d1c9858dd602a1b6064820152608401610540565b600033610d1785828561138d565b6108b985858561116e565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610d7b57507f000000000000000000000000000000000000000000000000000000000000000046145b15610da557507f000000000000000000000000000000000000000000000000000000000000000090565b6104b3604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b038216610ea35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610540565b8060026000828254610eb591906118e6565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602061193e833981519152910160405180910390a35050565b6001600160a01b038216610f5a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610540565b6001600160a01b03821660009081526020819052604090205481811015610fce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610540565b6001600160a01b03831660008181526020818152604080832086860390556002805487900390555185815291929160008051602061193e8339815191529101610bfd565b3361101b610769565b6001600160a01b0316146106c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610540565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060ff83146110dd576110d683611401565b9050610421565b8180546110e9906118b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611115906118b2565b80156111625780601f1061113757610100808354040283529160200191611162565b820191906000526020600020905b81548152906001019060200180831161114557829003601f168201915b50505050509050610421565b6001600160a01b0383166111d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610540565b6001600160a01b0382166112345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610540565b6001600160a01b038316600090815260208190526040902054818110156112ac5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610540565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602061193e833981519152910160405180910390a35b50505050565b60003361041b81858561116e565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b6000610421611345610d22565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600061137687878787611440565b91509150611383816114fa565b5095945050505050565b60006113998484610a44565b905060001981146112fc57818110156113f45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610540565b6112fc8484848403610ae5565b6060600061140e8361163f565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b0383111561146d57506000905060036114f1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156114c1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166114ea576000600192509250506114f1565b9150600090505b94509492505050565b600081600481111561150e5761150e611907565b036115165750565b600181600481111561152a5761152a611907565b036115725760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610540565b600281600481111561158657611586611907565b036115d35760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610540565b60038160048111156115e7576115e7611907565b036106235760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610540565b600060ff8216601f81111561042157604051632cd44ac360e21b815260040160405180910390fd5b6000815180845260005b8181101561168d57602081850181015186830182015201611671565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006108d96020830184611667565b80356001600160a01b03811681146116d757600080fd5b919050565b600080604083850312156116ef57600080fd5b6116f8836116c0565b946020939093013593505050565b60008060006060848603121561171b57600080fd5b611724846116c0565b9250611732602085016116c0565b9150604084013590509250925092565b60006020828403121561175457600080fd5b5035919050565b60006020828403121561176d57600080fd5b6108d9826116c0565b60ff60f81b881681526000602060e08184015261179660e084018a611667565b83810360408501526117a8818a611667565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b818110156117fa578351835292840192918401916001016117de565b50909c9b505050505050505050505050565b600080600080600080600060e0888a03121561182757600080fd5b611830886116c0565b965061183e602089016116c0565b95506040880135945060608801359350608088013560ff8116811461186257600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561189257600080fd5b61189b836116c0565b91506118a9602084016116c0565b90509250929050565b600181811c908216806118c657607f821691505b60208210810361133257634e487b7160e01b600052602260045260246000fd5b8082018082111561042157634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfe4f52582043616e6e6f74207472616e7366657220746f6b656e73206469726563ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220694815ec033c76f64f532304638f3f008f983542ad847d7d38fd8e40052f647864736f6c63430008150033000000000000000000000000e293dfd4720308c048b63afe885f5971e135eb1e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101495760003560e01c806306fdde031461014e578063095ea7b31461016c5780630cfccc831461018f57806318160ddd146101a557806323b872dd146101ad578063313ce567146101c057806334d722c9146101cf5780633644e515146101fa578063395093511461020257806340c10f191461021557806342966c681461022a5780634fe95dd81461023d57806370a0823114610250578063715018a6146102795780637ecebe001461028157806384b0196e146102945780638da5cb5b146102af57806393c68400146102b757806395d89b41146102c85780639caa9c77146102d0578063a457c2d7146102e3578063a9059cbb146102f6578063baf13a0a14610309578063d3ed9e321461031b578063d505accf14610342578063dd62ed3e14610355578063f2fde38b14610368575b600080fd5b61015661037b565b60405161016391906116ad565b60405180910390f35b61017f61017a3660046116dc565b61040d565b6040519015158152602001610163565b610197610427565b604051908152602001610163565b600254610197565b61017f6101bb366004611706565b61048b565b60405160128152602001610163565b600a546101e2906001600160a01b031681565b6040516001600160a01b039091168152602001610163565b6101976104a9565b61017f6102103660046116dc565b6104b8565b6102286102233660046116dc565b6104da565b005b610228610238366004611742565b610619565b61022861024b36600461175b565b610626565b61019761025e36600461175b565b6001600160a01b031660009081526020819052604090205490565b6102286106ae565b61019761028f36600461175b565b6106c2565b61029c6106e0565b6040516101639796959493929190611776565b6101e2610769565b676765c793fa10079d601b1b610197565b610156610778565b6102286102de3660046116dc565b610787565b61017f6102f13660046116dc565b61083e565b61017f6103043660046116dc565b6108c4565b610197676765c793fa10079d601b1b81565b6101e27f000000000000000000000000e293dfd4720308c048b63afe885f5971e135eb1e81565b61022861035036600461180c565b6108e0565b61019761036336600461187f565b610a44565b61022861037636600461175b565b610a6f565b60606003805461038a906118b2565b80601f01602080910402602001604051908101604052809291908181526020018280546103b6906118b2565b80156104035780601f106103d857610100808354040283529160200191610403565b820191906000526020600020905b8154815290600101906020018083116103e657829003601f168201915b5050505050905090565b60003361041b818585610ae5565b60019150505b92915050565b6a295be96e640669720000006aa56fa5b99019a5c8000000676765c793fa10079d601b1b61046a6a108b2a2c28029094000000697f0e10af47c1c70000006118e6565b61047491906118e6565b61047e91906118e6565b61048891906118e6565b81565b600061049683610c0a565b6104a1848484610d09565b949350505050565b60006104b3610d22565b905090565b60003361041b8185856104cb8383610a44565b6104d591906118e6565b610ae5565b600a546001600160a01b031633146105495760405162461bcd60e51b815260206004820152602760248201527f4f52583a2063616c6c6572206d75737420626520746865204d696e74657220636044820152661bdb9d1c9858dd60ca1b60648201526084015b60405180910390fd5b6a295be96e640669720000006aa56fa5b99019a5c8000000676765c793fa10079d601b1b61058c6a108b2a2c28029094000000697f0e10af47c1c70000006118e6565b61059691906118e6565b6105a091906118e6565b6105aa91906118e6565b816105b460025490565b6105be91906118e6565b111561060b5760405162461bcd60e51b815260206004820152601c60248201527b04d696e742065786365656473206861726420737570706c79206361760241b6044820152606401610540565b6106158282610e4d565b5050565b6106233382610efa565b50565b61062e611012565b6001600160a01b03811661068f5760405162461bcd60e51b815260206004820152602260248201527f5f6d696e7465724164647265737320697320746865206e756c6c206164647265604482015261737360f01b6064820152608401610540565b600a80546001600160a01b0319166001600160a01b0383161790556106235b6106b6611012565b6106c06000611071565b565b6001600160a01b038116600090815260076020526040812054610421565b6000606080828080836107147f4f75726f626f726f73000000000000000000000000000000000000000000000960056110c3565b61073f7f310000000000000000000000000000000000000000000000000000000000000160066110c3565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6009546001600160a01b031690565b60606004805461038a906118b2565b336001600160a01b037f000000000000000000000000e293dfd4720308c048b63afe885f5971e135eb1e16146108135760405162461bcd60e51b815260206004820152602b60248201527f4f52583a2063616c6c6572206d75737420626520746865204f72785374616b6960448201526a1b99c818dbdb9d1c9858dd60aa1b6064820152608401610540565b610615827f000000000000000000000000e293dfd4720308c048b63afe885f5971e135eb1e8361116e565b6000338161084c8286610a44565b9050838110156108ac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610540565b6108b98286868403610ae5565b506001949350505050565b60006108cf83610c0a565b6108d98383611302565b9392505050565b834211156109305760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610540565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861095f8c611310565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006109ba82611338565b905060006109ca82878787611365565b9050896001600160a01b0316816001600160a01b031614610a2d5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610540565b610a388a8a8a610ae5565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a77611012565b6001600160a01b038116610adc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610540565b61062381611071565b6001600160a01b038316610b475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610540565b6001600160a01b038216610ba85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610540565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b306001600160a01b03821603610c765760405162461bcd60e51b815260206004820152603d602482015260008051602061191e83398151915260448201527f746c7920746f20746865204f525820746f6b656e20636f6e74726163740000006064820152608401610540565b7f000000000000000000000000e293dfd4720308c048b63afe885f5971e135eb1e6001600160a01b0316816001600160a01b0316036106235760405162461bcd60e51b815260206004820152603b602482015260008051602061191e83398151915260448201527a1d1b1e481d1bc81d1a19481cdd185ada5b99c818dbdb9d1c9858dd602a1b6064820152608401610540565b600033610d1785828561138d565b6108b985858561116e565b6000306001600160a01b037f000000000000000000000000d536e7a9543cf9867a580b45cec7f748a1fe11ec16148015610d7b57507f000000000000000000000000000000000000000000000000000000000000000146145b15610da557507f5e8603bcec023192ffc60be52091d6881f6e8fece61de5b98530b85070ff093990565b6104b3604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527fd53884125cf83f5dad28350174cc6739a922ca4fce5ce75775e718cfa90e80e9918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b038216610ea35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610540565b8060026000828254610eb591906118e6565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602061193e833981519152910160405180910390a35050565b6001600160a01b038216610f5a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610540565b6001600160a01b03821660009081526020819052604090205481811015610fce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610540565b6001600160a01b03831660008181526020818152604080832086860390556002805487900390555185815291929160008051602061193e8339815191529101610bfd565b3361101b610769565b6001600160a01b0316146106c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610540565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060ff83146110dd576110d683611401565b9050610421565b8180546110e9906118b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611115906118b2565b80156111625780601f1061113757610100808354040283529160200191611162565b820191906000526020600020905b81548152906001019060200180831161114557829003601f168201915b50505050509050610421565b6001600160a01b0383166111d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610540565b6001600160a01b0382166112345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610540565b6001600160a01b038316600090815260208190526040902054818110156112ac5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610540565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602061193e833981519152910160405180910390a35b50505050565b60003361041b81858561116e565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b6000610421611345610d22565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600061137687878787611440565b91509150611383816114fa565b5095945050505050565b60006113998484610a44565b905060001981146112fc57818110156113f45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610540565b6112fc8484848403610ae5565b6060600061140e8361163f565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b0383111561146d57506000905060036114f1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156114c1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166114ea576000600192509250506114f1565b9150600090505b94509492505050565b600081600481111561150e5761150e611907565b036115165750565b600181600481111561152a5761152a611907565b036115725760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610540565b600281600481111561158657611586611907565b036115d35760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610540565b60038160048111156115e7576115e7611907565b036106235760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610540565b600060ff8216601f81111561042157604051632cd44ac360e21b815260040160405180910390fd5b6000815180845260005b8181101561168d57602081850181015186830182015201611671565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006108d96020830184611667565b80356001600160a01b03811681146116d757600080fd5b919050565b600080604083850312156116ef57600080fd5b6116f8836116c0565b946020939093013593505050565b60008060006060848603121561171b57600080fd5b611724846116c0565b9250611732602085016116c0565b9150604084013590509250925092565b60006020828403121561175457600080fd5b5035919050565b60006020828403121561176d57600080fd5b6108d9826116c0565b60ff60f81b881681526000602060e08184015261179660e084018a611667565b83810360408501526117a8818a611667565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b818110156117fa578351835292840192918401916001016117de565b50909c9b505050505050505050505050565b600080600080600080600060e0888a03121561182757600080fd5b611830886116c0565b965061183e602089016116c0565b95506040880135945060608801359350608088013560ff8116811461186257600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561189257600080fd5b61189b836116c0565b91506118a9602084016116c0565b90509250929050565b600181811c908216806118c657607f821691505b60208210810361133257634e487b7160e01b600052602260045260246000fd5b8082018082111561042157634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfe4f52582043616e6e6f74207472616e7366657220746f6b656e73206469726563ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220694815ec033c76f64f532304638f3f008f983542ad847d7d38fd8e40052f647864736f6c63430008150033

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

000000000000000000000000e293dfd4720308c048b63afe885f5971e135eb1e

-----Decoded View---------------
Arg [0] : _orxStakingAddress (address): 0xE293DFD4720308c048B63AfE885F5971E135Eb1e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e293dfd4720308c048b63afe885f5971e135eb1e


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.