Feature Tip: Add private address tag to any address under My Name Tag !
Latest 25 from a total of 301 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Batch Withdraw A... | 23515805 | 2 days ago | IN | 0 ETH | 0.00000635 | ||||
Batch Withdraw A... | 23487535 | 6 days ago | IN | 0 ETH | 0.00001423 | ||||
Batch Withdraw A... | 23444289 | 12 days ago | IN | 0 ETH | 0.00001244 | ||||
Batch Withdraw A... | 23423297 | 15 days ago | IN | 0 ETH | 0.0000306 | ||||
Batch Withdraw A... | 23409805 | 16 days ago | IN | 0 ETH | 0.00001597 | ||||
Batch Withdraw A... | 23395600 | 18 days ago | IN | 0 ETH | 0.00000998 | ||||
Batch Withdraw A... | 23380205 | 21 days ago | IN | 0 ETH | 0.0000072 | ||||
Batch Withdraw A... | 23366377 | 23 days ago | IN | 0 ETH | 0.00000668 | ||||
Batch Withdraw A... | 23358567 | 24 days ago | IN | 0 ETH | 0.00000651 | ||||
Batch Withdraw A... | 23351913 | 25 days ago | IN | 0 ETH | 0.00000912 | ||||
Batch Withdraw A... | 23344111 | 26 days ago | IN | 0 ETH | 0.00000781 | ||||
Batch Withdraw A... | 23336919 | 27 days ago | IN | 0 ETH | 0.0000081 | ||||
Batch Withdraw A... | 23330332 | 28 days ago | IN | 0 ETH | 0.00000719 | ||||
Batch Withdraw A... | 23322482 | 29 days ago | IN | 0 ETH | 0.00000776 | ||||
Batch Withdraw A... | 23315213 | 30 days ago | IN | 0 ETH | 0.00000792 | ||||
Batch Withdraw A... | 23309549 | 30 days ago | IN | 0 ETH | 0.00002391 | ||||
Batch Withdraw A... | 23279188 | 35 days ago | IN | 0 ETH | 0.00000976 | ||||
Batch Withdraw A... | 23272280 | 36 days ago | IN | 0 ETH | 0.00002012 | ||||
Batch Withdraw A... | 23264957 | 37 days ago | IN | 0 ETH | 0.0000107 | ||||
Batch Withdraw A... | 23257716 | 38 days ago | IN | 0 ETH | 0.00000999 | ||||
Batch Withdraw A... | 23243536 | 40 days ago | IN | 0 ETH | 0.00001314 | ||||
Batch Withdraw A... | 23229739 | 42 days ago | IN | 0 ETH | 0.00001047 | ||||
Batch Withdraw A... | 23218144 | 43 days ago | IN | 0 ETH | 0.00001488 | ||||
Batch Withdraw A... | 23207963 | 45 days ago | IN | 0 ETH | 0.00001223 | ||||
Batch Withdraw A... | 23196994 | 46 days ago | IN | 0 ETH | 0.00061109 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 23531130 | 22 mins ago | 0.00315466 ETH | ||||
Transfer | 23530819 | 1 hr ago | 0.0001688 ETH | ||||
Transfer | 23530651 | 1 hr ago | 0.0000971 ETH | ||||
Transfer | 23530546 | 2 hrs ago | 0.0000034 ETH | ||||
Transfer | 23530525 | 2 hrs ago | 0.00001918 ETH | ||||
Transfer | 23529853 | 4 hrs ago | 0.00002874 ETH | ||||
Transfer | 23529815 | 4 hrs ago | 0.00006569 ETH | ||||
Transfer | 23529476 | 5 hrs ago | 0.0006078 ETH | ||||
Transfer | 23529308 | 6 hrs ago | 0.00003197 ETH | ||||
Transfer | 23529292 | 6 hrs ago | 0.00079152 ETH | ||||
Transfer | 23529083 | 7 hrs ago | 0.00010233 ETH | ||||
Transfer | 23528823 | 8 hrs ago | 0.00016268 ETH | ||||
Transfer | 23528644 | 8 hrs ago | 0.00211128 ETH | ||||
Transfer | 23528533 | 9 hrs ago | 0.00012304 ETH | ||||
Transfer | 23528527 | 9 hrs ago | 0.00020758 ETH | ||||
Transfer | 23528443 | 9 hrs ago | 0.00010016 ETH | ||||
Transfer | 23528411 | 9 hrs ago | 0.00008939 ETH | ||||
Transfer | 23528364 | 9 hrs ago | 0.00118939 ETH | ||||
Transfer | 23528333 | 9 hrs ago | 0.00025272 ETH | ||||
Transfer | 23528308 | 9 hrs ago | 0.00016827 ETH | ||||
Transfer | 23528277 | 9 hrs ago | 0.00120802 ETH | ||||
Transfer | 23528252 | 10 hrs ago | 0.00000317 ETH | ||||
Transfer | 23528237 | 10 hrs ago | 0.00001187 ETH | ||||
Transfer | 23528222 | 10 hrs ago | 0.00001453 ETH | ||||
Transfer | 23528199 | 10 hrs ago | 0.00001785 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
FeeClaimer
Compiler Version
v0.7.5+commit.eb77ed08
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: ISC pragma solidity 0.7.5; // helpers import "../AugustusSwapper.sol"; import "../lib/Utils.sol"; // interfaces import { IFeeClaimer } from "./IFeeClaimer.sol"; // helpers import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @title Fee Claimer * @author paraswap * @notice a contract that holds balances of ParaSwap Protocol as well as partners. * the partners can later claim the tokens from this contract. */ contract FeeClaimer is IFeeClaimer { using SafeMath for uint256; /**@notice mapping for storing partner's and PP's share in fee of various ERC20 tokens */ mapping(address => mapping(IERC20 => uint256)) public fees; /**@notice address of the augustusSwapper */ address payable public immutable augustusSwapper; /**@notice amount of fees in token allocated*/ mapping(IERC20 => uint256) public allocatedFees; //===constructor=== constructor(address payable _augustusAddress) { augustusSwapper = _augustusAddress; } modifier onlyAugustusSwapper() { require(msg.sender == augustusSwapper, "FeeClaimer: 1"); _; } //===external functions=== /** * @inheritdoc IFeeClaimer */ function registerFee( address _account, IERC20 _token, uint256 _fee ) external override onlyAugustusSwapper { uint256 _unallocatedFees = getUnallocatedFees(_token); if (_fee > _unallocatedFees) { _fee = _unallocatedFees; } allocatedFees[_token] = allocatedFees[_token].add(_fee); fees[_account][_token] = fees[_account][_token].add(_fee); } /** * @inheritdoc IFeeClaimer */ function withdrawSomeERC20( IERC20 _token, uint256 _tokenAmount, address _recipient ) public override returns (bool) { uint256 _balance = fees[msg.sender][_token]; require(_balance >= _tokenAmount, "FeeClaimer: 2"); address _account = _recipient == address(0) ? msg.sender : _recipient; fees[msg.sender][_token] = _balance.sub(_tokenAmount); allocatedFees[_token] = allocatedFees[_token].sub(_tokenAmount); Utils.transferTokens(address(_token), payable(_account), _tokenAmount); return true; } /** * @inheritdoc IFeeClaimer */ function batchWithdrawSomeERC20( IERC20[] calldata _tokens, uint256[] calldata _tokenAmounts, address _recipient ) external override returns (bool) { require(_tokens.length == _tokenAmounts.length, "FeeClaimer: 3"); for (uint256 _i; _i < _tokens.length; _i++) { require(withdrawSomeERC20(_tokens[_i], _tokenAmounts[_i], _recipient), "FeeClaimer: 4"); } return true; } /** * @inheritdoc IFeeClaimer */ function withdrawAllERC20(IERC20 _token, address _recipient) public override returns (bool) { uint256 _balance = fees[msg.sender][_token]; require(_balance > 0, "FeeClaimer: 5"); address _account = _recipient == address(0) ? msg.sender : _recipient; fees[msg.sender][_token] = 0; allocatedFees[_token] = allocatedFees[_token].sub(_balance); Utils.transferTokens(address(_token), payable(_account), _balance); return true; } /** * @inheritdoc IFeeClaimer */ function batchWithdrawAllERC20(IERC20[] calldata _tokens, address _recipient) external override returns (bool) { for (uint256 _i; _i < _tokens.length; _i++) { require(withdrawAllERC20(_tokens[_i], _recipient), "FeeClaimer: 6"); } return true; } //===public view functions=== /** * @inheritdoc IFeeClaimer */ function getUnallocatedFees(IERC20 _token) public view override returns (uint256) { return Utils.tokenBalance(address(_token), address(this)).sub(allocatedFees[_token]); } /** * @inheritdoc IFeeClaimer */ function getBalance(IERC20 _token, address _partner) external view override returns (uint256) { return fees[_partner][_token]; } /** * @inheritdoc IFeeClaimer */ function batchGetBalance(IERC20[] calldata _tokens, address _partner) external view override returns (uint256[] memory _fees) { uint256 _len = _tokens.length; _fees = new uint256[](_len); for (uint256 _i; _i < _tokens.length; _i++) { _fees[_i] = fees[_partner][_tokens[_i]]; } } receive() external payable {} }
/* solhint-disable avoid-low-level-calls*/ /* solhint-disable no-inline-assembly */ /* solhint-disable no-complex-fallback */ // SPDX-License-Identifier: ISC pragma solidity 0.7.5; pragma abicoder v2; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "./routers/IRouter.sol"; import "./adapters/IAdapter.sol"; import "./TokenTransferProxy.sol"; import "./ITokenTransferProxy.sol"; import "./AugustusStorage.sol"; contract AugustusSwapper is AugustusStorage, AccessControl { using SafeMath for uint256; using SafeERC20 for IERC20; event AdapterInitialized(address indexed adapter); event RouterInitialized(address indexed router); /** * @dev Throws if called by any account other than the admin. */ modifier onlyAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "caller is not the admin"); _; } constructor(address payable _feeWallet) public { TokenTransferProxy lTokenTransferProxy = new TokenTransferProxy(); tokenTransferProxy = ITokenTransferProxy(lTokenTransferProxy); feeWallet = _feeWallet; _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } /*solhint-disable no-empty-blocks*/ receive() external payable {} /*solhint-enable no-empty-blocks*/ fallback() external payable { bytes4 selector = msg.sig; //Figure out the router contract for the given function address implementation = getImplementation(selector); if (implementation == address(0)) { _revertWithData(abi.encodeWithSelector(bytes4(keccak256("NotImplementedError(bytes4)")), selector)); } //Delegate call to the router (bool success, bytes memory resultData) = implementation.delegatecall(msg.data); if (!success) { _revertWithData(resultData); } _returnWithData(resultData); } function initializeAdapter(address adapter, bytes calldata data) external onlyAdmin { require(hasRole(WHITELISTED_ROLE, adapter), "Exchange not whitelisted"); (bool success, ) = adapter.delegatecall(abi.encodeWithSelector(IAdapter.initialize.selector, data)); require(success, "Failed to initialize adapter"); emit AdapterInitialized(adapter); } function initializeRouter(address router, bytes calldata data) external onlyAdmin { require(hasRole(ROUTER_ROLE, router), "Router not whitelisted"); (bool success, ) = router.delegatecall(abi.encodeWithSelector(IRouter.initialize.selector, data)); require(success, "Failed to initialize router"); emit RouterInitialized(router); } function getImplementation(bytes4 selector) public view returns (address) { return selectorVsRouter[selector]; } function getVersion() external pure returns (string memory) { return "5.0.0"; } function getPartnerFeeStructure(address partner) public view returns (FeeStructure memory) { return registeredPartners[partner]; } function getFeeWallet() external view returns (address) { return feeWallet; } function setFeeWallet(address payable _feeWallet) external onlyAdmin { require(_feeWallet != address(0), "Invalid address"); feeWallet = _feeWallet; } function registerPartner( address partner, uint256 _partnerShare, bool _noPositiveSlippage, bool _positiveSlippageToUser, uint16 _feePercent, string calldata partnerId, bytes calldata _data ) external onlyAdmin { require(partner != address(0), "Invalid partner"); FeeStructure storage feeStructure = registeredPartners[partner]; require(feeStructure.partnerShare == 0, "Already registered"); require(_partnerShare > 0 && _partnerShare < 10000, "Invalid values"); require(_feePercent <= 10000, "Invalid values"); feeStructure.partnerShare = _partnerShare; feeStructure.noPositiveSlippage = _noPositiveSlippage; feeStructure.positiveSlippageToUser = _positiveSlippageToUser; feeStructure.partnerId = partnerId; feeStructure.feePercent = _feePercent; feeStructure.data = _data; } function setImplementation(bytes4 selector, address implementation) external onlyAdmin { require(hasRole(ROUTER_ROLE, implementation), "Router is not whitelisted"); selectorVsRouter[selector] = implementation; } /** * @dev Allows admin of the contract to transfer any tokens which are assigned to the contract * This method is for safety if by any chance tokens or ETHs are assigned to the contract by mistake * @dev token Address of the token to be transferred * @dev destination Recepient of the token * @dev amount Amount of tokens to be transferred */ function transferTokens( address token, address payable destination, uint256 amount ) external onlyAdmin { if (amount > 0) { if (token == address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)) { (bool result, ) = destination.call{ value: amount, gas: 10000 }(""); require(result, "Failed to transfer Ether"); } else { IERC20(token).safeTransfer(destination, amount); } } } function isAdapterInitialized(bytes32 key) public view returns (bool) { return adapterInitialized[key]; } function getAdapterData(bytes32 key) public view returns (bytes memory) { return adapterVsData[key]; } function isRouterInitialized(bytes32 key) public view returns (bool) { return routerInitialized[key]; } function getRouterData(bytes32 key) public view returns (bytes memory) { return routerData[key]; } function getTokenTransferProxy() public view returns (address) { return address(tokenTransferProxy); } function _revertWithData(bytes memory data) private pure { assembly { revert(add(data, 32), mload(data)) } } function _returnWithData(bytes memory data) private pure { assembly { return(add(data, 32), mload(data)) } } }
/*solhint-disable avoid-low-level-calls */ // SPDX-License-Identifier: ISC pragma solidity 0.7.5; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "../ITokenTransferProxy.sol"; interface IERC20Permit { function permit( address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; } interface IERC20PermitLegacy { function permit( address holder, address spender, uint256 nonce, uint256 expiry, bool allowed, uint8 v, bytes32 r, bytes32 s ) external; } library Utils { using SafeMath for uint256; using SafeERC20 for IERC20; address private constant ETH_ADDRESS = address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE); uint256 private constant MAX_UINT = type(uint256).max; /** * @param fromToken Address of the source token * @param fromAmount Amount of source tokens to be swapped * @param toAmount Minimum destination token amount expected out of this swap * @param expectedAmount Expected amount of destination tokens without slippage * @param beneficiary Beneficiary address * 0 then 100% will be transferred to beneficiary. Pass 10000 for 100% * @param path Route to be taken for this swap to take place */ struct SellData { address fromToken; uint256 fromAmount; uint256 toAmount; uint256 expectedAmount; address payable beneficiary; Utils.Path[] path; address payable partner; uint256 feePercent; bytes permit; uint256 deadline; bytes16 uuid; } struct BuyData { address adapter; address fromToken; address toToken; uint256 fromAmount; uint256 toAmount; uint256 expectedAmount; address payable beneficiary; Utils.Route[] route; address payable partner; uint256 feePercent; bytes permit; uint256 deadline; bytes16 uuid; } struct MegaSwapSellData { address fromToken; uint256 fromAmount; uint256 toAmount; uint256 expectedAmount; address payable beneficiary; Utils.MegaSwapPath[] path; address payable partner; uint256 feePercent; bytes permit; uint256 deadline; bytes16 uuid; } struct SimpleData { address fromToken; address toToken; uint256 fromAmount; uint256 toAmount; uint256 expectedAmount; address[] callees; bytes exchangeData; uint256[] startIndexes; uint256[] values; address payable beneficiary; address payable partner; uint256 feePercent; bytes permit; uint256 deadline; bytes16 uuid; } struct Adapter { address payable adapter; uint256 percent; uint256 networkFee; //NOT USED Route[] route; } struct Route { uint256 index; //Adapter at which index needs to be used address targetExchange; uint256 percent; bytes payload; uint256 networkFee; //NOT USED - Network fee is associated with 0xv3 trades } struct MegaSwapPath { uint256 fromAmountPercent; Path[] path; } struct Path { address to; uint256 totalNetworkFee; //NOT USED - Network fee is associated with 0xv3 trades Adapter[] adapters; } function ethAddress() internal pure returns (address) { return ETH_ADDRESS; } function maxUint() internal pure returns (uint256) { return MAX_UINT; } function approve( address addressToApprove, address token, uint256 amount ) internal { if (token != ETH_ADDRESS) { IERC20 _token = IERC20(token); uint256 allowance = _token.allowance(address(this), addressToApprove); if (allowance < amount) { _token.safeApprove(addressToApprove, 0); _token.safeIncreaseAllowance(addressToApprove, MAX_UINT); } } } function transferTokens( address token, address payable destination, uint256 amount ) internal { if (amount > 0) { if (token == ETH_ADDRESS) { (bool result, ) = destination.call{ value: amount, gas: 10000 }(""); require(result, "Failed to transfer Ether"); } else { IERC20(token).safeTransfer(destination, amount); } } } function tokenBalance(address token, address account) internal view returns (uint256) { if (token == ETH_ADDRESS) { return account.balance; } else { return IERC20(token).balanceOf(account); } } function permit(address token, bytes memory permit) internal { if (permit.length == 32 * 7) { (bool success, ) = token.call(abi.encodePacked(IERC20Permit.permit.selector, permit)); require(success, "Permit failed"); } if (permit.length == 32 * 8) { (bool success, ) = token.call(abi.encodePacked(IERC20PermitLegacy.permit.selector, permit)); require(success, "Permit failed"); } } function transferETH(address payable destination, uint256 amount) internal { if (amount > 0) { (bool result, ) = destination.call{ value: amount, gas: 10000 }(""); require(result, "Transfer ETH failed"); } } }
// SPDX-License-Identifier: ISC pragma solidity 0.7.5; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IFeeClaimer { /** * @notice register partner's, affiliate's and PP's fee * @dev only callable by AugustusSwapper contract * @param _account account address used to withdraw fees * @param _token token address * @param _fee fee amount in token */ function registerFee( address _account, IERC20 _token, uint256 _fee ) external; /** * @notice claim partner share fee in ERC20 token * @dev transfers ERC20 token balance to the caller's account * the call will fail if withdrawer have zero balance in the contract * @param _token address of the ERC20 token * @param _recipient address * @return true if the withdraw was successfull */ function withdrawAllERC20(IERC20 _token, address _recipient) external returns (bool); /** * @notice batch claim whole balance of fee share amount * @dev transfers ERC20 token balance to the caller's account * the call will fail if withdrawer have zero balance in the contract * @param _tokens list of addresses of the ERC20 token * @param _recipient address of recipient * @return true if the withdraw was successfull */ function batchWithdrawAllERC20(IERC20[] calldata _tokens, address _recipient) external returns (bool); /** * @notice claim some partner share fee in ERC20 token * @dev transfers ERC20 token amount to the caller's account * the call will fail if withdrawer have zero balance in the contract * @param _token address of the ERC20 token * @param _recipient address * @return true if the withdraw was successfull */ function withdrawSomeERC20( IERC20 _token, uint256 _tokenAmount, address _recipient ) external returns (bool); /** * @notice batch claim some amount of fee share in ERC20 token * @dev transfers ERC20 token balance to the caller's account * the call will fail if withdrawer have zero balance in the contract * @param _tokens address of the ERC20 tokens * @param _tokenAmounts array of amounts * @param _recipient destination account addresses * @return true if the withdraw was successfull */ function batchWithdrawSomeERC20( IERC20[] calldata _tokens, uint256[] calldata _tokenAmounts, address _recipient ) external returns (bool); /** * @notice compute unallocated fee in token * @param _token address of the ERC20 token * @return amount of unallocated token in fees */ function getUnallocatedFees(IERC20 _token) external view returns (uint256); /** * @notice returns unclaimed fee amount given the token * @dev retrieves the balance of ERC20 token fee amount for a partner * @param _token address of the ERC20 token * @param _partner account address of the partner * @return amount of balance */ function getBalance(IERC20 _token, address _partner) external view returns (uint256); /** * @notice returns unclaimed fee amount given the token in batch * @dev retrieves the balance of ERC20 token fee amount for a partner in batch * @param _tokens list of ERC20 token addresses * @param _partner account address of the partner * @return _fees array of the token amount */ function batchGetBalance(IERC20[] calldata _tokens, address _partner) external view returns (uint256[] memory _fees); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @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 SafeMath for uint256; 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' // solhint-disable-next-line max-line-length 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).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @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 // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: ISC pragma solidity 0.7.5; interface IRouter { /** * @dev Certain routers/exchanges needs to be initialized. * This method will be called from Augustus */ function initialize(bytes calldata data) external; /** * @dev Returns unique identifier for the router */ function getKey() external pure returns (bytes32); event SwappedV3( bytes16 uuid, address partner, uint256 feePercent, address initiator, address indexed beneficiary, address indexed srcToken, address indexed destToken, uint256 srcAmount, uint256 receivedAmount, uint256 expectedAmount ); event BoughtV3( bytes16 uuid, address partner, uint256 feePercent, address initiator, address indexed beneficiary, address indexed srcToken, address indexed destToken, uint256 srcAmount, uint256 receivedAmount, uint256 expectedAmount ); }
// SPDX-License-Identifier: ISC pragma solidity 0.7.5; pragma abicoder v2; import "../lib/Utils.sol"; interface IAdapter { /** * @dev Certain adapters needs to be initialized. * This method will be called from Augustus */ function initialize(bytes calldata data) external; /** * @dev The function which performs the swap on an exchange. * @param fromToken Address of the source token * @param toToken Address of the destination token * @param fromAmount Amount of source tokens to be swapped * @param networkFee NOT USED - Network fee to be used in this router * @param route Route to be followed */ function swap( IERC20 fromToken, IERC20 toToken, uint256 fromAmount, uint256 networkFee, Utils.Route[] calldata route ) external payable; }
// SPDX-License-Identifier: ISC pragma solidity 0.7.5; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./ITokenTransferProxy.sol"; /** * @dev Allows owner of the contract to transfer tokens on behalf of user. * User will need to approve this contract to spend tokens on his/her behalf * on Paraswap platform */ contract TokenTransferProxy is Ownable, ITokenTransferProxy { using SafeERC20 for IERC20; using Address for address; /** * @dev Allows owner of the contract to transfer tokens on user's behalf * @dev Swapper contract will be the owner of this contract * @param token Address of the token * @param from Address from which tokens will be transferred * @param to Receipent address of the tokens * @param amount Amount of tokens to transfer */ function transferFrom( address token, address from, address to, uint256 amount ) external override onlyOwner { // solhint-disable-next-line avoid-tx-origin require(from == tx.origin || from.isContract(), "Invalid from address"); IERC20(token).safeTransferFrom(from, to, amount); } }
// SPDX-License-Identifier: ISC pragma solidity 0.7.5; interface ITokenTransferProxy { function transferFrom( address token, address from, address to, uint256 amount ) external; }
// SPDX-License-Identifier: ISC pragma solidity 0.7.5; import "./ITokenTransferProxy.sol"; contract AugustusStorage { struct FeeStructure { uint256 partnerShare; bool noPositiveSlippage; bool positiveSlippageToUser; uint16 feePercent; string partnerId; bytes data; } ITokenTransferProxy internal tokenTransferProxy; address payable internal feeWallet; mapping(address => FeeStructure) internal registeredPartners; mapping(bytes4 => address) internal selectorVsRouter; mapping(bytes32 => bool) internal adapterInitialized; mapping(bytes32 => bytes) internal adapterVsData; mapping(bytes32 => bytes) internal routerData; mapping(bytes32 => bool) internal routerInitialized; bytes32 public constant WHITELISTED_ROLE = keccak256("WHITELISTED_ROLE"); bytes32 public constant ROUTER_ROLE = keccak256("ROUTER_ROLE"); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: 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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
{ "metadata": { "bytecodeHash": "none", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 1000000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address payable","name":"_augustusAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"name":"allocatedFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"augustusSwapper","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"_tokens","type":"address[]"},{"internalType":"address","name":"_partner","type":"address"}],"name":"batchGetBalance","outputs":[{"internalType":"uint256[]","name":"_fees","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"_tokens","type":"address[]"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"batchWithdrawAllERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_tokenAmounts","type":"uint256[]"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"batchWithdrawSomeERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"contract IERC20","name":"","type":"address"}],"name":"fees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address","name":"_partner","type":"address"}],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"getUnallocatedFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"registerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"withdrawAllERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"withdrawSomeERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405234801561001057600080fd5b5060405161157c38038061157c8339818101604052602081101561003357600080fd5b5051606081901b6001600160601b0319166080526001600160a01b031661151061006c600039806108495280610a4352506115106000f3fe6080604052600436106100c05760003560e01c8063b0a65b1711610074578063d4fac45d1161004e578063d4fac45d14610418578063f89abe8c14610460578063ffcc41ee146104a0576100c7565b8063b0a65b1714610250578063bbedcc4014610333578063d1f4354b146103c6576100c7565b80639b9ac2cb116100a55780639b9ac2cb14610182578063ae11c7f8146101ca578063ae551c6614610212576100c7565b80633ea6f511146100cc5780638f79528c1461011e576100c7565b366100c757005b600080fd5b3480156100d857600080fd5b5061010c600480360360208110156100ef57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610585565b60408051918252519081900360200190f35b34801561012a57600080fd5b5061016e6004803603606081101561014157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359160409091013516610597565b604080519115158252519081900360200190f35b34801561018e57600080fd5b5061010c600480360360408110156101a557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166106e8565b3480156101d657600080fd5b5061016e600480360360408110156101ed57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610702565b34801561021e57600080fd5b50610227610847565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561025c57600080fd5b506102e36004803603604081101561027357600080fd5b81019060208101813564010000000081111561028e57600080fd5b8201836020820111156102a057600080fd5b803590602001918460208302840111640100000000831117156102c257600080fd5b91935091503573ffffffffffffffffffffffffffffffffffffffff1661086b565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561031f578181015183820152602001610307565b505050509050019250505060405180910390f35b34801561033f57600080fd5b5061016e6004803603604081101561035657600080fd5b81019060208101813564010000000081111561037157600080fd5b82018360208201111561038357600080fd5b803590602001918460208302840111640100000000831117156103a557600080fd5b91935091503573ffffffffffffffffffffffffffffffffffffffff1661096f565b3480156103d257600080fd5b50610416600480360360608110156103e957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610a2b565b005b34801561042457600080fd5b5061010c6004803603604081101561043b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610b9e565b34801561046c57600080fd5b5061010c6004803603602081101561048357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610bd5565b3480156104ac57600080fd5b5061016e600480360360608110156104c357600080fd5b8101906020810181356401000000008111156104de57600080fd5b8201836020820111156104f057600080fd5b8035906020019184602083028401116401000000008311171561051257600080fd5b91939092909160208101903564010000000081111561053057600080fd5b82018360208201111561054257600080fd5b8035906020019184602083028401116401000000008311171561056457600080fd5b91935091503573ffffffffffffffffffffffffffffffffffffffff16610c0f565b60016020526000908152604090205481565b3360009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120548381101561063557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203200000000000000000000000000000000000000604482015290519081900360640190fd5b600073ffffffffffffffffffffffffffffffffffffffff841615610659578361065b565b335b90506106678286610d4f565b3360009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b1684528252808320939093556001905220546106a99086610d4f565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600160205260409020556106da868287610dc6565b6001925050505b9392505050565b600060208181529281526040808220909352908152205481565b3360009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548061079d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203500000000000000000000000000000000000000604482015290519081900360640190fd5b600073ffffffffffffffffffffffffffffffffffffffff8416156107c157836107c3565b335b3360009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8a168452825280832083905560019091529020549091506108099083610d4f565b73ffffffffffffffffffffffffffffffffffffffff861660009081526001602052604090205561083a858284610dc6565b6001925050505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060828067ffffffffffffffff8111801561088557600080fd5b506040519080825280602002602001820160405280156108af578160200160208202803683370190505b50915060005b848110156109665773ffffffffffffffffffffffffffffffffffffffff84166000908152602081905260408120908787848181106108ef57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483828151811061095357fe5b60209081029190910101526001016108b5565b50509392505050565b6000805b83811015610a20576109ad85858381811061098a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1684610702565b610a1857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203600000000000000000000000000000000000000604482015290519081900360640190fd5b600101610973565b506001949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614610acf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203100000000000000000000000000000000000000604482015290519081900360640190fd5b6000610ada83610bd5565b905080821115610ae8578091505b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054610b189083610edb565b73ffffffffffffffffffffffffffffffffffffffff808516600081815260016020908152604080832095909555928816815280835283812091815291522054610b619083610edb565b73ffffffffffffffffffffffffffffffffffffffff9485166000908152602081815260408083209690971682529490945293909220929092555050565b73ffffffffffffffffffffffffffffffffffffffff8082166000908152602081815260408083209386168352929052205492915050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604081205461084190610c098430610f4f565b90610d4f565b6000848314610c7f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203300000000000000000000000000000000000000604482015290519081900360640190fd5b60005b85811015610d4257610ccf878783818110610c9957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16868684818110610cc257fe5b9050602002013585610597565b610d3a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203400000000000000000000000000000000000000604482015290519081900360640190fd5b600101610c82565b5060019695505050505050565b600082821115610dc057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b8015610ed65773ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610eb55760008273ffffffffffffffffffffffffffffffffffffffff168261271090604051610e2890611458565b600060405180830381858888f193505050503d8060008114610e66576040519150601f19603f3d011682016040523d82523d6000602084013e610e6b565b606091505b5050905080610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea69061147c565b60405180910390fd5b50610ed6565b610ed673ffffffffffffffffffffffffffffffffffffffff8416838361104a565b505050565b6000828201838110156106e157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610fa1575073ffffffffffffffffffffffffffffffffffffffff811631610841565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416906370a0823190610ff390859060040161145b565b60206040518083038186803b15801561100b57600080fd5b505afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190611440565b9050610841565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610ed69084906060611134826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166111aa9092919063ffffffff16565b805190915015610ed65780806020019051602081101561115357600080fd5b5051610ed6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806114da602a913960400191505060405180910390fd5b60606111b984846000856111c1565b949350505050565b60608247101561121c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806114b46026913960400191505060405180910390fd5b6112258561137c565b61129057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106112fa57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016112bd565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461135c576040519150601f19603f3d011682016040523d82523d6000602084013e611361565b606091505b5091509150611371828286611382565b979650505050505050565b3b151590565b606083156113915750816106e1565b8251156113a15782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114055781810151838201526020016113ed565b50505050905090810190601f1680156114325780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b600060208284031215611451578081fd5b5051919050565b90565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b60208082526018908201527f4661696c656420746f207472616e73666572204574686572000000000000000060408201526060019056fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a164736f6c6343000705000a000000000000000000000000def171fe48cf0115b1d80b88dc8eab59176fee57
Deployed Bytecode
0x6080604052600436106100c05760003560e01c8063b0a65b1711610074578063d4fac45d1161004e578063d4fac45d14610418578063f89abe8c14610460578063ffcc41ee146104a0576100c7565b8063b0a65b1714610250578063bbedcc4014610333578063d1f4354b146103c6576100c7565b80639b9ac2cb116100a55780639b9ac2cb14610182578063ae11c7f8146101ca578063ae551c6614610212576100c7565b80633ea6f511146100cc5780638f79528c1461011e576100c7565b366100c757005b600080fd5b3480156100d857600080fd5b5061010c600480360360208110156100ef57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610585565b60408051918252519081900360200190f35b34801561012a57600080fd5b5061016e6004803603606081101561014157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359160409091013516610597565b604080519115158252519081900360200190f35b34801561018e57600080fd5b5061010c600480360360408110156101a557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166106e8565b3480156101d657600080fd5b5061016e600480360360408110156101ed57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610702565b34801561021e57600080fd5b50610227610847565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561025c57600080fd5b506102e36004803603604081101561027357600080fd5b81019060208101813564010000000081111561028e57600080fd5b8201836020820111156102a057600080fd5b803590602001918460208302840111640100000000831117156102c257600080fd5b91935091503573ffffffffffffffffffffffffffffffffffffffff1661086b565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561031f578181015183820152602001610307565b505050509050019250505060405180910390f35b34801561033f57600080fd5b5061016e6004803603604081101561035657600080fd5b81019060208101813564010000000081111561037157600080fd5b82018360208201111561038357600080fd5b803590602001918460208302840111640100000000831117156103a557600080fd5b91935091503573ffffffffffffffffffffffffffffffffffffffff1661096f565b3480156103d257600080fd5b50610416600480360360608110156103e957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610a2b565b005b34801561042457600080fd5b5061010c6004803603604081101561043b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610b9e565b34801561046c57600080fd5b5061010c6004803603602081101561048357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610bd5565b3480156104ac57600080fd5b5061016e600480360360608110156104c357600080fd5b8101906020810181356401000000008111156104de57600080fd5b8201836020820111156104f057600080fd5b8035906020019184602083028401116401000000008311171561051257600080fd5b91939092909160208101903564010000000081111561053057600080fd5b82018360208201111561054257600080fd5b8035906020019184602083028401116401000000008311171561056457600080fd5b91935091503573ffffffffffffffffffffffffffffffffffffffff16610c0f565b60016020526000908152604090205481565b3360009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120548381101561063557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203200000000000000000000000000000000000000604482015290519081900360640190fd5b600073ffffffffffffffffffffffffffffffffffffffff841615610659578361065b565b335b90506106678286610d4f565b3360009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b1684528252808320939093556001905220546106a99086610d4f565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600160205260409020556106da868287610dc6565b6001925050505b9392505050565b600060208181529281526040808220909352908152205481565b3360009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548061079d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203500000000000000000000000000000000000000604482015290519081900360640190fd5b600073ffffffffffffffffffffffffffffffffffffffff8416156107c157836107c3565b335b3360009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8a168452825280832083905560019091529020549091506108099083610d4f565b73ffffffffffffffffffffffffffffffffffffffff861660009081526001602052604090205561083a858284610dc6565b6001925050505b92915050565b7f000000000000000000000000def171fe48cf0115b1d80b88dc8eab59176fee5781565b6060828067ffffffffffffffff8111801561088557600080fd5b506040519080825280602002602001820160405280156108af578160200160208202803683370190505b50915060005b848110156109665773ffffffffffffffffffffffffffffffffffffffff84166000908152602081905260408120908787848181106108ef57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483828151811061095357fe5b60209081029190910101526001016108b5565b50509392505050565b6000805b83811015610a20576109ad85858381811061098a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1684610702565b610a1857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203600000000000000000000000000000000000000604482015290519081900360640190fd5b600101610973565b506001949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000def171fe48cf0115b1d80b88dc8eab59176fee571614610acf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203100000000000000000000000000000000000000604482015290519081900360640190fd5b6000610ada83610bd5565b905080821115610ae8578091505b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054610b189083610edb565b73ffffffffffffffffffffffffffffffffffffffff808516600081815260016020908152604080832095909555928816815280835283812091815291522054610b619083610edb565b73ffffffffffffffffffffffffffffffffffffffff9485166000908152602081815260408083209690971682529490945293909220929092555050565b73ffffffffffffffffffffffffffffffffffffffff8082166000908152602081815260408083209386168352929052205492915050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604081205461084190610c098430610f4f565b90610d4f565b6000848314610c7f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203300000000000000000000000000000000000000604482015290519081900360640190fd5b60005b85811015610d4257610ccf878783818110610c9957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16868684818110610cc257fe5b9050602002013585610597565b610d3a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f466565436c61696d65723a203400000000000000000000000000000000000000604482015290519081900360640190fd5b600101610c82565b5060019695505050505050565b600082821115610dc057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b8015610ed65773ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610eb55760008273ffffffffffffffffffffffffffffffffffffffff168261271090604051610e2890611458565b600060405180830381858888f193505050503d8060008114610e66576040519150601f19603f3d011682016040523d82523d6000602084013e610e6b565b606091505b5050905080610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea69061147c565b60405180910390fd5b50610ed6565b610ed673ffffffffffffffffffffffffffffffffffffffff8416838361104a565b505050565b6000828201838110156106e157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610fa1575073ffffffffffffffffffffffffffffffffffffffff811631610841565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416906370a0823190610ff390859060040161145b565b60206040518083038186803b15801561100b57600080fd5b505afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190611440565b9050610841565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610ed69084906060611134826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166111aa9092919063ffffffff16565b805190915015610ed65780806020019051602081101561115357600080fd5b5051610ed6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806114da602a913960400191505060405180910390fd5b60606111b984846000856111c1565b949350505050565b60608247101561121c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806114b46026913960400191505060405180910390fd5b6112258561137c565b61129057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106112fa57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016112bd565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461135c576040519150601f19603f3d011682016040523d82523d6000602084013e611361565b606091505b5091509150611371828286611382565b979650505050505050565b3b151590565b606083156113915750816106e1565b8251156113a15782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114055781810151838201526020016113ed565b50505050905090810190601f1680156114325780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b600060208284031215611451578081fd5b5051919050565b90565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b60208082526018908201527f4661696c656420746f207472616e73666572204574686572000000000000000060408201526060019056fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a164736f6c6343000705000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000def171fe48cf0115b1d80b88dc8eab59176fee57
-----Decoded View---------------
Arg [0] : _augustusAddress (address): 0xDEF171Fe48CF0115B1d80b88dc8eAB59176FEe57
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000def171fe48cf0115b1d80b88dc8eab59176fee57
Loading...
Loading
Loading...
Loading

Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 12.53% | $4,449.16 | 13.3972 | $59,606.16 | |
ETH | 12.48% | $0.999705 | 59,379.8477 | $59,362.33 | |
ETH | 12.16% | $121,000 | 0.4783 | $57,871.41 | |
ETH | 11.55% | $1 | 54,944.8151 | $54,944.82 | |
ETH | 1.94% | $1 | 9,226.7184 | $9,235.95 | |
ETH | 1.34% | $0.724719 | 8,777.5195 | $6,361.24 | |
ETH | 1.16% | $276.93 | 19.9124 | $5,514.35 | |
ETH | 1.06% | $0.198733 | 25,365.938 | $5,041.05 | |
ETH | 1.06% | $1.48 | 3,392.2994 | $5,020.6 | |
ETH | 0.98% | $0.999066 | 4,683.4966 | $4,679.12 | |
ETH | 0.89% | $4,449.16 | 0.9491 | $4,222.84 | |
ETH | 0.78% | $7.72 | 480.7094 | $3,711.08 | |
ETH | 0.76% | $219.21 | 16.4292 | $3,601.45 | |
ETH | 0.74% | $0.129072 | 27,284.9847 | $3,521.73 | |
ETH | 0.69% | $0.000009 | 351,598,419.9841 | $3,283.93 | |
ETH | 0.67% | $5,067.22 | 0.6288 | $3,186.49 | |
ETH | 0.59% | $0.001375 | 2,050,244.8567 | $2,820 | |
ETH | 0.58% | $21.83 | 126.5903 | $2,763.47 | |
ETH | 0.53% | $1.17 | 2,166.1765 | $2,534.43 | |
ETH | 0.51% | $101.91 | 23.9791 | $2,443.71 | |
ETH | 0.46% | $3.44 | 636.6041 | $2,187.6 | |
ETH | 0.43% | $121,145 | 0.0171 | $2,067.68 | |
ETH | 0.42% | $0.000012 | 167,041,561.2626 | $2,017.86 | |
ETH | 0.39% | $0.131838 | 14,249.6481 | $1,878.65 | |
ETH | 0.39% | $0.009215 | 203,509.0096 | $1,875.35 | |
ETH | 0.36% | $3.34 | 518.7413 | $1,732.6 | |
ETH | 0.35% | $0.999874 | 1,679.0682 | $1,678.86 | |
ETH | 0.35% | $4,878.43 | 0.3437 | $1,676.83 | |
ETH | 0.35% | $0.004439 | 374,015.79 | $1,660.14 | |
ETH | 0.35% | $0.996796 | 1,651.6669 | $1,646.37 | |
ETH | 0.34% | $2.33 | 696.4849 | $1,622.81 | |
ETH | 0.34% | $0.387403 | 4,179.439 | $1,619.13 | |
ETH | 0.33% | $0.262096 | 6,014.1493 | $1,576.28 | |
ETH | 0.33% | $20.64 | 75.9313 | $1,567.22 | |
ETH | 0.33% | $4,434.41 | 0.3508 | $1,555.68 | |
ETH | 0.33% | $4,040.5 | 0.3841 | $1,551.98 | |
ETH | 0.32% | $1,564.41 | 0.9819 | $1,536.07 | |
ETH | 0.32% | $0.101983 | 14,993.86 | $1,529.12 | |
ETH | 0.31% | $1.07 | 1,379.6372 | $1,472.27 | |
ETH | 0.29% | $0.538614 | 2,594.1626 | $1,397.25 | |
ETH | 0.29% | $0.003508 | 395,951.1457 | $1,388.89 | |
ETH | 0.29% | $0.898663 | 1,544.5374 | $1,388.02 | |
ETH | 0.28% | $0.019125 | 70,601.2951 | $1,350.24 | |
ETH | 0.28% | $0.00002 | 68,358,270.2919 | $1,343.92 | |
ETH | 0.28% | $4.71 | 283.2996 | $1,334.34 | |
ETH | 0.28% | $0.081544 | 16,311.3239 | $1,330.09 | |
ETH | 0.27% | $0.697932 | 1,823.6466 | $1,272.78 | |
ETH | 0.27% | $1.16 | 1,088.9629 | $1,263.2 | |
ETH | 0.26% | $0.033715 | 36,406.1559 | $1,227.44 | |
ETH | 0.26% | $143.79 | 8.5049 | $1,222.92 | |
ETH | 0.26% | $5,388.22 | 0.2269 | $1,222.6 | |
ETH | 0.24% | $0.015189 | 75,615.3329 | $1,148.52 | |
ETH | 0.23% | $0.277872 | 4,012.0543 | $1,114.84 | |
ETH | 0.23% | $0.012467 | 88,912.3914 | $1,108.44 | |
ETH | 0.23% | $0.000001 | 1,436,286,368.8168 | $1,106.31 | |
ETH | 0.23% | $0.999676 | 1,098.6932 | $1,098.34 | |
ETH | 0.23% | $2.81 | 381.3037 | $1,071.46 | |
ETH | 0.22% | $0.010762 | 98,479.8844 | $1,059.87 | |
ETH | 0.22% | $0.319887 | 3,295.0922 | $1,054.06 | |
ETH | 0.22% | $5,262.9 | 0.1991 | $1,047.87 | |
ETH | 0.21% | <$0.000001 | 7,787,997,233.4315 | $1,000.94 | |
ETH | 0.20% | $1.2 | 808.7458 | $970.49 | |
ETH | 0.20% | $19.58 | 48.8954 | $957.35 | |
ETH | 0.20% | $4,027.54 | 0.2359 | $950.15 | |
ETH | 0.20% | $0.235204 | 4,028.7625 | $947.58 | |
ETH | 0.20% | $0.162511 | 5,808.9987 | $944.03 | |
ETH | 0.20% | $0.451252 | 2,087.7082 | $942.08 | |
ETH | 0.20% | $5.55 | 169.1434 | $938.75 | |
ETH | 0.20% | $0.234391 | 3,980.6788 | $933.03 | |
ETH | 0.19% | $14.41 | 63.9564 | $921.61 | |
ETH | 0.19% | $0.05762 | 15,956.6413 | $919.42 | |
ETH | 0.19% | $1.9 | 482.6455 | $917.03 | |
ETH | 0.19% | <$0.000001 | 2,467,046,536.6924 | $891.46 | |
ETH | 0.18% | $12.28 | 70.8979 | $870.62 | |
ETH | 0.18% | $4.28 | 202.6636 | $867.4 | |
ETH | 0.18% | $0.549708 | 1,570.1719 | $863.14 | |
ETH | 0.18% | $0.587875 | 1,456.95 | $856.5 | |
ETH | 0.18% | $0.999759 | 854.2734 | $854.07 | |
ETH | 0.18% | $0.000001 | 1,362,324,969.2478 | $850.46 | |
ETH | 0.18% | $0.23864 | 3,537.7701 | $844.25 | |
ETH | 0.17% | $2.16 | 383.9705 | $829.38 | |
ETH | 0.17% | $0.419007 | 1,967.8124 | $824.53 | |
ETH | 0.17% | $0.073713 | 10,995.8139 | $810.54 | |
ETH | 0.17% | $1,290.42 | 0.6181 | $797.62 | |
ETH | 0.16% | $0.002812 | 278,856.4279 | $784.08 | |
ETH | 0.16% | $0.000271 | 2,866,427.6268 | $776.09 | |
ETH | 0.16% | $0.999746 | 774.41 | $774.21 | |
ETH | 0.16% | $0.112571 | 6,673.36 | $751.23 | |
ETH | 0.16% | $0.472187 | 1,582.3443 | $747.16 | |
ETH | 0.16% | $0.066244 | 11,244.1784 | $744.86 | |
ETH | 0.16% | $213.72 | 3.4812 | $744 | |
ETH | 0.16% | $0.074859 | 9,869.3265 | $738.8 | |
ETH | 0.15% | $0.001121 | 651,911.103 | $730.78 | |
ETH | 0.15% | $0.684326 | 1,061.1581 | $726.18 | |
ETH | 0.15% | $0.578878 | 1,233.4857 | $714.04 | |
ETH | 0.15% | $0.174885 | 3,997.4913 | $699.1 | |
ETH | 0.15% | $1.18 | 590.5531 | $696.85 | |
ETH | 0.15% | $0.014963 | 46,527.116 | $696.18 | |
ETH | 0.15% | $0.000015 | 46,347,433.5528 | $693.82 | |
ETH | 0.15% | $1.16 | 595.17 | $690.4 | |
ETH | 0.14% | $4,435.82 | 0.1489 | $660.63 | |
ETH | 0.14% | $0.09402 | 6,959.2941 | $654.31 | |
ETH | 0.14% | $2.39 | 271.1526 | $648.05 | |
ETH | 0.14% | $0.008922 | 72,515.8346 | $647.01 | |
ETH | 0.13% | $0.00826 | 77,426.5682 | $639.52 | |
ETH | 0.13% | $0.553309 | 1,150.2453 | $636.44 | |
ETH | 0.13% | $0.264664 | 2,397.1445 | $634.44 | |
ETH | 0.13% | $325.62 | 1.8799 | $612.12 | |
ETH | 0.13% | $0.066904 | 8,952.087 | $598.93 | |
ETH | 0.12% | $12.84 | 46.2837 | $594.28 | |
ETH | 0.12% | $1.6 | 369.7142 | $591.54 | |
ETH | 0.12% | $0.44528 | 1,314.4344 | $585.29 | |
ETH | 0.12% | $42.15 | 13.8416 | $583.42 | |
ETH | 0.12% | $103.92 | 5.5836 | $580.25 | |
ETH | 0.12% | $0.005662 | 101,700.0168 | $575.85 | |
ETH | 0.12% | $1 | 572.4052 | $572.61 | |
ETH | 0.12% | $0.000001 | 943,623,560.6587 | $570.8 | |
ETH | 0.12% | $0.997488 | 565.375 | $563.95 | |
ETH | 0.12% | $0.09905 | 5,659.1162 | $560.54 | |
ETH | 0.12% | $1 | 553.3793 | $553.93 | |
ETH | 0.12% | $0.004569 | 121,133.5125 | $553.51 | |
ETH | 0.12% | $0.005915 | 92,868.4288 | $549.36 | |
ETH | 0.12% | $150.9 | 3.6359 | $548.65 | |
ETH | 0.11% | $0.014379 | 37,937.5702 | $545.49 | |
ETH | 0.11% | $0.105744 | 5,131.9456 | $542.67 | |
ETH | 0.11% | $0.277903 | 1,903.4072 | $528.96 | |
ETH | 0.11% | $0.240569 | 2,138.8611 | $514.54 | |
ETH | 0.10% | $0.000096 | 5,170,070.9795 | $496.28 | |
ETH | 0.10% | $0.076706 | 6,257.6148 | $480 | |
ETH | 0.10% | <$0.000001 | 4,937,268,455.3752 | $469.23 | |
ETH | 0.10% | $0.235425 | 1,992.3638 | $469.05 | |
ETH | 0.10% | $2.73 | 171.5847 | $468.43 | |
ETH | 0.10% | $0.0001 | 4,675,594.9454 | $465.36 | |
ETH | 0.10% | $0.040419 | 11,471.0938 | $463.65 | |
ETH | 0.10% | $0.998526 | 461.8254 | $461.14 | |
ETH | 0.09% | $1.16 | 379.0734 | $439.73 | |
ETH | 0.09% | $0.137874 | 3,015.481 | $415.76 | |
ETH | 0.09% | <$0.000001 | 11,959,052,928.7491 | $411.94 | |
ETH | 0.09% | $2.07 | 198.3911 | $410.67 | |
ETH | 0.09% | $0.773686 | 526.9451 | $407.69 | |
ETH | 0.09% | $1.76 | 231.3259 | $407.13 | |
ETH | 0.08% | $0.000004 | 95,727,606.2386 | $400.9 | |
ETH | 0.08% | $0.018151 | 21,535.8246 | $390.89 | |
ETH | 0.08% | $0.999676 | 384.3919 | $384.27 | |
ETH | 0.08% | $4.55 | 84.0702 | $382.9 | |
ETH | 0.08% | $0.017125 | 22,193.8558 | $380.06 | |
ETH | 0.08% | $0.024092 | 15,651.9501 | $377.09 | |
ETH | 0.08% | $1.12 | 327.9476 | $367.3 | |
ETH | 0.08% | $0.000263 | 1,389,638.7218 | $364.92 | |
ETH | 0.08% | $0.00 | 169,868.4595 | $0.00 | |
ETH | 0.08% | $0.002861 | 127,480.7727 | $364.69 | |
ETH | 0.08% | $0.115619 | 3,119.021 | $360.62 | |
ETH | 0.07% | $0.252333 | 1,405.2305 | $354.59 | |
ETH | 0.07% | $0.000252 | 1,397,421.2634 | $352.09 | |
ETH | 0.07% | $0.078807 | 4,440.222 | $349.92 | |
ETH | 0.07% | $0.290225 | 1,170.6575 | $339.75 | |
ETH | 0.07% | $5,831.12 | 0.0572 | $333.77 | |
ETH | 0.07% | $0.000304 | 1,097,084.1149 | $333.59 | |
ETH | 0.07% | $1.73 | 189.7743 | $328.31 | |
ETH | 0.07% | $0.290749 | 1,123.5377 | $326.67 | |
ETH | 0.07% | $10.28 | 31.7024 | $325.96 | |
ETH | 0.07% | $4.85 | 67.171 | $325.78 | |
ETH | 0.07% | $0.000139 | 2,325,532.6039 | $322.57 | |
ETH | 0.07% | $5,388.11 | 0.0596 | $321.26 | |
ETH | 0.07% | $0.000474 | 667,303.0204 | $316.07 | |
ETH | 0.07% | $0.003028 | 103,804.7894 | $314.29 | |
ETH | 0.07% | $0.458916 | 680.1245 | $312.12 | |
ETH | 0.06% | $8.77 | 34.7283 | $304.57 | |
ETH | 0.06% | <$0.000001 | 3,796,591,775.3603 | $296.77 | |
ETH | 0.06% | $0.189043 | 1,559.8932 | $294.89 | |
ETH | 0.06% | $1.26 | 228.0358 | $287.33 | |
ETH | 0.06% | $15.68 | 17.8221 | $279.45 | |
ETH | 0.06% | $0.996229 | 277.7683 | $276.72 | |
ETH | 0.06% | $0.028481 | 9,697.4466 | $276.19 | |
ETH | 0.06% | $0.0135 | 20,404.8056 | $275.46 | |
ETH | 0.06% | $0.000037 | 7,473,732.3729 | $273.46 | |
ETH | 0.06% | $0.593631 | 457.461 | $271.56 | |
ETH | 0.06% | $0.517321 | 524.149 | $271.15 | |
ETH | 0.05% | $0.094184 | 2,759.8883 | $259.94 | |
ETH | 0.05% | $0.475341 | 544.9318 | $259.03 | |
ETH | 0.05% | $0.000737 | 350,124.8818 | $257.88 | |
ETH | 0.05% | $10,208.3 | 0.0252 | $257.35 | |
ETH | 0.05% | $0.082736 | 3,096.9512 | $256.23 | |
ETH | 0.05% | $2.31 | 108.23 | $250.01 | |
ETH | 0.05% | $1.06 | 232.3663 | $245.43 | |
ETH | 0.05% | $0.141611 | 1,718.6098 | $243.37 | |
ETH | 0.05% | $0.470222 | 515.7178 | $242.5 | |
ETH | 0.05% | $1.19 | 203.0191 | $241.59 | |
ETH | 0.05% | <$0.000001 | 182,735,339,202.9544 | $237.92 | |
ETH | 0.05% | $1.43 | 166.3755 | $237.92 | |
ETH | 0.05% | $0.293816 | 808.5597 | $237.57 | |
ETH | 0.05% | $0.127964 | 1,844.6062 | $236.04 | |
ETH | 0.05% | $0.066726 | 3,529.9503 | $235.54 | |
ETH | 0.05% | $0.3016 | 772.5936 | $233.01 | |
ETH | 0.05% | $0.048059 | 4,847.5827 | $232.97 | |
ETH | 0.05% | $0.705889 | 325.6765 | $229.89 | |
ETH | 0.05% | <$0.000001 | 1,523,207,850.9854 | $228.53 | |
ETH | 0.05% | $21.7 | 10.52 | $228.28 | |
ETH | 0.05% | $1,283.22 | 0.177 | $227.18 | |
ETH | 0.05% | $0.110217 | 2,046.268 | $225.53 | |
ETH | 0.05% | $0.165443 | 1,361.3184 | $225.22 | |
ETH | 0.05% | $0.652633 | 342.7044 | $223.66 | |
ETH | 0.05% | $210,567 | 0.00104987 | $221.07 | |
ETH | 0.05% | $0.006927 | 31,876.2062 | $220.8 | |
ETH | 0.05% | $0.190292 | 1,146.5272 | $218.17 | |
ETH | 0.05% | $0.206354 | 1,054.0308 | $217.5 | |
ETH | 0.05% | $2.07 | 104.6417 | $216.61 | |
ETH | 0.04% | $1.25 | 169.0103 | $211.26 | |
ETH | 0.04% | $1.16 | 179.2362 | $207.91 | |
ETH | 0.04% | $0.000434 | 476,000.4483 | $206.8 | |
ETH | 0.04% | $0.002277 | 90,663.7362 | $206.41 | |
ETH | 0.04% | <$0.000001 | 696,179,462.7922 | $205.04 | |
ETH | 0.04% | $0.730249 | 280.5262 | $204.85 | |
ETH | 0.04% | <$0.000001 | 4,746,662,414.8196 | $202.41 | |
ETH | 0.04% | $0.000628 | 322,132.7721 | $202.3 | |
ETH | 0.04% | $0.484854 | 413.6035 | $200.54 | |
ETH | 0.04% | $1.07 | 184.4543 | $197.73 | |
ETH | 0.04% | $0.925387 | 211.4757 | $195.7 | |
ETH | 0.04% | $61.06 | 3.149 | $192.28 | |
ETH | 0.04% | $2.92 | 64.8193 | $189.27 | |
ETH | 0.04% | $1 | 189.1713 | $189.17 | |
ETH | 0.04% | $0.003552 | 52,943.9709 | $188.03 | |
ETH | 0.04% | $28.23 | 6.6467 | $187.64 | |
ETH | 0.04% | $0.145529 | 1,270.9747 | $184.96 | |
ETH | 0.04% | $1.17 | 157.0021 | $183.69 | |
ETH | 0.04% | $8.75 | 20.7607 | $181.66 | |
ETH | 0.04% | $0.221194 | 812.6161 | $179.75 | |
ETH | 0.04% | $0.012348 | 14,538.5077 | $179.51 | |
ETH | 0.04% | $0.000014 | 12,344,000.5756 | $176.64 | |
ETH | 0.04% | $0.367131 | 477.595 | $175.34 | |
ETH | 0.04% | $0.005396 | 32,368.6148 | $174.66 | |
ETH | 0.04% | $2,010.14 | 0.0855 | $171.84 | |
ETH | 0.04% | $0.031312 | 5,468.9459 | $171.24 | |
ETH | 0.04% | $0.001623 | 104,878.1819 | $170.23 | |
ETH | 0.04% | $0.010569 | 16,095.4018 | $170.11 | |
ETH | 0.04% | $0.005547 | 30,090.318 | $166.92 | |
ETH | 0.03% | $0.208259 | 791.9442 | $164.93 | |
ETH | 0.03% | $0.179504 | 915.0644 | $164.26 | |
ETH | 0.03% | $4,778.24 | 0.0342 | $163.51 | |
ETH | 0.03% | $1.76 | 91.9324 | $161.8 | |
ETH | 0.03% | $0.118301 | 1,357.5602 | $160.6 | |
ETH | 0.03% | $17.83 | 8.9755 | $160.03 | |
ETH | 0.03% | $0.307892 | 515.1667 | $158.62 | |
ETH | 0.03% | $0.016673 | 9,508.2096 | $158.53 | |
ETH | 0.03% | $104.6 | 1.5139 | $158.35 | |
ETH | 0.03% | $0.076772 | 2,045.518 | $157.04 | |
ETH | 0.03% | $0.041454 | 3,656.9101 | $151.59 | |
ETH | 0.03% | $0.017593 | 8,520.5359 | $149.9 | |
ETH | 0.03% | $5 | 29.802 | $149.01 | |
ETH | 0.03% | $0.009166 | 16,116.1686 | $147.71 | |
ETH | 0.03% | $0.06843 | 2,138.9765 | $146.37 | |
ETH | 0.03% | $0.030205 | 4,805.3058 | $145.15 | |
ETH | 0.03% | $1.15 | 126.1936 | $145.12 | |
ETH | 0.03% | $7.61 | 18.8814 | $143.69 | |
ETH | 0.03% | $0.000047 | 3,049,110.8991 | $143.19 | |
ETH | 0.03% | $0.015458 | 9,205.095 | $142.29 | |
ETH | 0.03% | $120,711 | 0.00117769 | $142.16 | |
ETH | 0.03% | <$0.000001 | 108,964,041,616.9506 | $141.87 | |
ETH | 0.03% | $0.001012 | 139,345.9813 | $141.07 | |
ETH | 0.03% | $0.060551 | 2,318.312 | $140.38 | |
ETH | 0.03% | $0.176871 | 787.8174 | $139.34 | |
ETH | 0.03% | $0.686823 | 202.4423 | $139.04 | |
ETH | 0.03% | <$0.000001 | 3,543,159,373.2645 | $138.94 | |
ETH | 0.03% | $0.163802 | 845.3878 | $138.48 | |
ETH | 0.03% | $0.999608 | 138.4908 | $138.44 | |
ETH | 0.03% | $0.067618 | 2,022.0614 | $136.73 | |
ETH | 0.03% | $1.37 | 99.7031 | $136.59 | |
ETH | 0.03% | $4,748.47 | 0.0286 | $135.58 | |
ETH | 0.03% | $1 | 134.7894 | $134.92 | |
ETH | 0.03% | $6.39 | 21.0408 | $134.45 | |
ETH | 0.03% | $0.525648 | 255.1582 | $134.12 | |
ETH | 0.03% | $0.069849 | 1,917.6904 | $133.95 | |
ETH | 0.03% | $0.962794 | 137.6858 | $132.56 | |
ETH | 0.03% | $0.000862 | 151,172.7284 | $130.26 | |
ETH | 0.03% | $0.019861 | 6,546.2275 | $130.02 | |
ETH | 0.03% | $0.733952 | 170.9184 | $125.45 | |
ETH | 0.03% | $21.71 | 5.7404 | $124.62 | |
ETH | 0.03% | $0.22291 | 556.9733 | $124.15 | |
ETH | 0.03% | $0.517576 | 233.6761 | $120.95 | |
ETH | 0.03% | $0.123917 | 966.5604 | $119.77 | |
ETH | 0.02% | $0.112947 | 1,030.7832 | $116.42 | |
ETH | 0.02% | $0.096684 | 1,199.9227 | $116.01 | |
ETH | 0.02% | $0.999898 | 115.8284 | $115.82 | |
ETH | 0.02% | $0.008658 | 13,372.2587 | $115.77 | |
ETH | 0.02% | $0.013301 | 8,386.9044 | $111.56 | |
ETH | 0.02% | $0.023683 | 4,664.1386 | $110.46 | |
ETH | 0.02% | $0.262729 | 420.0875 | $110.37 | |
ETH | 0.02% | $120,697 | 0.00091267 | $110.16 | |
ETH | 0.02% | $0.235067 | 461.4364 | $108.47 | |
ETH | 0.02% | $0.34986 | 303.2889 | $106.11 | |
ETH | 0.02% | $155.07 | 0.6688 | $103.71 | |
ETH | 0.02% | $0.096363 | 1,071.9718 | $103.3 | |
ETH | 0.02% | $838.44 | 0.1217 | $102.01 | |
ETH | 0.02% | $2.64 | 38.4882 | $101.61 | |
ETH | 0.02% | $0.0034 | 29,542.2151 | $100.46 | |
ETH | 0.02% | $0.049459 | 2,023.3561 | $100.07 | |
ETH | 0.02% | $0.301191 | 331.657 | $99.89 | |
ETH | 0.02% | $0.04811 | 2,029.3666 | $97.63 | |
ETH | 0.02% | $0.122719 | 791.0412 | $97.08 | |
ETH | 0.02% | $0.047703 | 2,026.548 | $96.67 | |
ETH | 0.02% | $0.002802 | 34,353.2864 | $96.24 | |
ETH | 0.02% | $73.58 | 1.3079 | $96.23 | |
ETH | 0.02% | <$0.000001 | 30,882,054,515.5366 | $95.89 | |
ETH | 0.02% | $2.39 | 40.0015 | $95.6 | |
ETH | 0.02% | $0.000204 | 464,164.1513 | $94.76 | |
ETH | 0.02% | $6.25 | 15.0144 | $93.84 | |
ETH | 0.02% | $0.042591 | 2,186.4516 | $93.12 | |
ETH | 0.02% | $0.018443 | 5,021.6714 | $92.62 | |
ETH | 0.02% | $0.05262 | 1,754.233 | $92.31 | |
ETH | 0.02% | $0.000042 | 2,171,125.0366 | $90.12 | |
ETH | 0.02% | $15.83 | 5.6839 | $89.95 | |
ETH | 0.02% | $175.79 | 0.5045 | $88.69 | |
ETH | 0.02% | $0.024467 | 3,621.6533 | $88.61 | |
ETH | 0.02% | $0.804504 | 109.904 | $88.42 | |
ETH | 0.02% | $185.37 | 0.4721 | $87.51 | |
ETH | 0.02% | $0.036995 | 2,356.4165 | $87.18 | |
ETH | 0.02% | $4,707.39 | 0.0185 | $87.13 | |
ETH | 0.02% | $0.64292 | 135.4482 | $87.08 | |
ETH | 0.02% | $0.07361 | 1,167.9195 | $85.97 | |
ETH | 0.02% | $0.054048 | 1,537.7857 | $83.11 | |
ETH | 0.02% | $0.027423 | 3,003.9454 | $82.38 | |
ETH | 0.02% | $0.028171 | 2,911.9612 | $82.03 | |
ETH | 0.02% | $12.64 | 6.447 | $81.48 | |
ETH | 0.02% | $0.071255 | 1,129.1265 | $80.46 | |
ETH | 0.02% | $1.64 | 48.7344 | $79.92 | |
ETH | 0.02% | $0.028459 | 2,800.8309 | $79.71 | |
ETH | 0.02% | $0.071156 | 1,119.6684 | $79.67 | |
ETH | 0.02% | $1 | 79.5463 | $79.55 | |
ETH | 0.02% | $0.004062 | 19,558.1678 | $79.44 | |
ETH | 0.02% | $0.999395 | 79.3024 | $79.25 | |
ETH | 0.02% | $0.000021 | 3,725,483.999 | $78.72 | |
ETH | 0.02% | <$0.000001 | 167,488,216.96 | $77.55 | |
ETH | 0.02% | $0.036393 | 2,119.1019 | $77.12 | |
ETH | 0.02% | $0.023371 | 3,255.8933 | $76.09 | |
ETH | 0.02% | $0.477599 | 159.0244 | $75.95 | |
ETH | 0.02% | $0.826705 | 91.5422 | $75.68 | |
ETH | 0.02% | $0.007714 | 9,780.3451 | $75.45 | |
ETH | 0.02% | $0.063384 | 1,189.8528 | $75.42 | |
ETH | 0.02% | $0.300348 | 249.1883 | $74.84 | |
ETH | 0.02% | $17.45 | 4.2282 | $73.8 | |
ETH | 0.02% | $0.136306 | 537.0443 | $73.2 | |
ETH | 0.02% | $0.014907 | 4,895.5552 | $72.98 | |
ETH | 0.02% | $0.008529 | 8,425.6051 | $71.86 | |
ETH | 0.02% | $0.99974 | 71.5324 | $71.51 | |
ETH | 0.01% | $0.000004 | 19,785,781.4847 | $71.19 | |
ETH | 0.01% | $0.000002 | 35,407,246.1636 | $71.04 | |
ETH | 0.01% | $0.059973 | 1,147.5629 | $68.82 | |
ETH | 0.01% | $0.996663 | 67.194 | $66.97 | |
ETH | 0.01% | $0.01168 | 5,723.9354 | $66.86 | |
ETH | 0.01% | $0.001731 | 38,148.7518 | $66.04 | |
ETH | 0.01% | $0.021412 | 3,074.1398 | $65.82 | |
ETH | 0.01% | $1.06 | 61.3335 | $64.83 | |
ETH | 0.01% | $0.021402 | 2,965.175 | $63.46 | |
ETH | 0.01% | $0.088339 | 717.3131 | $63.37 | |
ETH | 0.01% | $0.026317 | 2,396.3752 | $63.07 | |
ETH | 0.01% | $0.216079 | 291.7388 | $63.04 | |
ETH | 0.01% | $0.001292 | 47,746.7845 | $61.7 | |
ETH | 0.01% | $4,438.16 | 0.0138 | $61.15 | |
ETH | 0.01% | $0.364614 | 166.9361 | $60.87 | |
ETH | 0.01% | $1.02 | 59.2664 | $60.16 | |
ETH | 0.01% | $0.021847 | 2,729.931 | $59.64 | |
ETH | 0.01% | $0.00117 | 50,477.631 | $59.07 | |
ETH | 0.01% | $0.423696 | 139.3846 | $59.06 | |
ETH | 0.01% | $0.248123 | 237.4531 | $58.92 | |
ETH | 0.01% | $0.02082 | 2,821.821 | $58.75 | |
ETH | 0.01% | $1.02 | 57.2477 | $58.27 | |
ETH | 0.01% | $0.000001 | 99,219,723.3032 | $58.21 | |
ETH | 0.01% | $0.003123 | 18,590.3272 | $58.06 | |
ETH | 0.01% | $39.21 | 1.4783 | $57.97 | |
ETH | 0.01% | $0.005731 | 9,826.8102 | $56.32 | |
ETH | 0.01% | $4,779.84 | 0.0118 | $56.26 | |
ETH | 0.01% | $0.286093 | 195.6936 | $55.99 | |
ETH | 0.01% | $0.183951 | 303.9894 | $55.92 | |
ETH | 0.01% | $0.005376 | 10,276.4042 | $55.24 | |
ETH | 0.01% | $0.002356 | 23,218.5159 | $54.71 | |
ETH | 0.01% | $0.004958 | 10,988.9638 | $54.48 | |
ETH | 0.01% | $0.234479 | 230.7576 | $54.11 | |
ETH | 0.01% | $350.01 | 0.1532 | $53.62 | |
ETH | 0.01% | $0.012497 | 4,248.9745 | $53.1 | |
ETH | 0.01% | <$0.000001 | 57,481,515,485.9397 | $52.99 | |
ETH | 0.01% | $1.31 | 40.4243 | $52.96 | |
ETH | 0.01% | $0.000065 | 809,174.5131 | $52.94 | |
ETH | 0.01% | $0.282654 | 185.6306 | $52.47 | |
ETH | 0.01% | $0.041381 | 1,267.9183 | $52.47 | |
ETH | 0.01% | $0.007308 | 7,135.999 | $52.15 | |
ETH | 0.01% | $0.043221 | 1,203.5488 | $52.02 | |
ETH | 0.01% | $0.126592 | 406.7655 | $51.49 | |
ETH | 0.01% | $0.999837 | 51.3711 | $51.36 | |
ETH | 0.01% | $0.000015 | 3,315,905.0952 | $50.73 | |
ETH | 0.01% | $0.663816 | 75.7519 | $50.29 | |
ETH | 0.01% | $0.00178 | 28,181.2313 | $50.16 | |
ETH | 0.01% | $0.042272 | 1,179.2478 | $49.85 | |
ETH | 0.01% | $0.000034 | 1,473,934.2753 | $49.67 | |
ETH | 0.01% | $0.025219 | 1,966.3827 | $49.59 | |
ETH | 0.01% | $0.076252 | 645.5977 | $49.23 | |
ETH | 0.01% | $0.003867 | 12,684.4075 | $49.05 | |
ETH | 0.01% | $1.58 | 31.0109 | $49 | |
ETH | 0.01% | <$0.000001 | 1,503,327,884.0326 | $48.93 | |
ETH | 0.01% | $0.000197 | 248,748.8102 | $48.92 | |
ETH | 0.01% | $0.142291 | 342.0668 | $48.67 | |
ETH | 0.01% | $0.011032 | 4,372.7972 | $48.24 | |
ETH | 0.01% | $0.001337 | 36,037.6803 | $48.19 | |
ETH | 0.01% | $0.887891 | 54.2461 | $48.16 | |
ETH | <0.01% | $0.10759 | 440.5536 | $47.4 | |
ETH | <0.01% | <$0.000001 | 417,360,961.2233 | $47.12 | |
ETH | <0.01% | $0.08544 | 551.1012 | $47.09 | |
ETH | <0.01% | $0.064449 | 728.2155 | $46.93 | |
ETH | <0.01% | $0.032731 | 1,428.5885 | $46.76 | |
ETH | <0.01% | $0.001536 | 30,200.3917 | $46.39 | |
ETH | <0.01% | $0.09103 | 508.2053 | $46.26 | |
ETH | <0.01% | $60.47 | 0.7624 | $46.1 | |
ETH | <0.01% | $0.001539 | 29,867 | $45.97 | |
ETH | <0.01% | $0.076584 | 598.1196 | $45.81 | |
ETH | <0.01% | $0.007234 | 6,320.1685 | $45.72 | |
ETH | <0.01% | $0.046514 | 982.8335 | $45.72 | |
ETH | <0.01% | $0.005003 | 9,119.5549 | $45.62 | |
ETH | <0.01% | $4,904.25 | 0.00924242 | $45.33 | |
ETH | <0.01% | $0.059044 | 766.4993 | $45.26 | |
ETH | <0.01% | $0.013532 | 3,328.2021 | $45.04 | |
ETH | <0.01% | $0.171016 | 263.0981 | $44.99 | |
ETH | <0.01% | $0.016266 | 2,756.1743 | $44.83 | |
ETH | <0.01% | $0.018308 | 2,445.1906 | $44.77 | |
ETH | <0.01% | $4,423.64 | 0.0101 | $44.74 | |
ETH | <0.01% | <$0.000001 | 2,095,707,360.4161 | $44.22 | |
ETH | <0.01% | $0.073632 | 600.0861 | $44.19 | |
ETH | <0.01% | $0.000004 | 11,727,049.6357 | $44.09 | |
ETH | <0.01% | $0.001599 | 27,186.3853 | $43.47 | |
ETH | <0.01% | $0.000536 | 80,200.7664 | $42.98 | |
ETH | <0.01% | $0.631327 | 67.8125 | $42.81 | |
ETH | <0.01% | $0.134842 | 315.6905 | $42.57 | |
ETH | <0.01% | $0.02689 | 1,583.0079 | $42.57 | |
ETH | <0.01% | $0.020329 | 2,083.665 | $42.36 | |
ETH | <0.01% | <$0.000001 | 2,761,157,289.636 | $42 | |
ETH | <0.01% | $0.000005 | 8,183,943.8707 | $41.8 | |
ETH | <0.01% | $4,701.02 | 0.00889074 | $41.8 | |
ETH | <0.01% | $0.001784 | 23,056.1867 | $41.14 | |
ETH | <0.01% | $0.07771 | 528.557 | $41.07 | |
ETH | <0.01% | $0.074187 | 552.4075 | $40.98 | |
ETH | <0.01% | $0.008591 | 4,733.6703 | $40.67 | |
ETH | <0.01% | $0.000688 | 59,072.171 | $40.63 | |
ETH | <0.01% | $0.252573 | 160.2234 | $40.47 | |
ETH | <0.01% | $275.8 | 0.1467 | $40.46 | |
ETH | <0.01% | $0.015276 | 2,639.3013 | $40.32 | |
ETH | <0.01% | $0.041978 | 954.1115 | $40.05 | |
ETH | <0.01% | $0.044767 | 893.5355 | $40 | |
ETH | <0.01% | $0.000746 | 53,579.1407 | $39.98 | |
ETH | <0.01% | $24.78 | 1.6129 | $39.97 | |
ETH | <0.01% | $0.061856 | 646.1364 | $39.97 | |
ETH | <0.01% | $0.006689 | 5,958.2975 | $39.86 | |
ETH | <0.01% | <$0.000001 | 8,282,807,668.7361 | $39.71 | |
ETH | <0.01% | $0.01675 | 2,368.7014 | $39.67 | |
ETH | <0.01% | $0.225276 | 172.5119 | $38.86 | |
ETH | <0.01% | $0.078447 | 493.553 | $38.72 | |
ETH | <0.01% | $0.10033 | 382.0433 | $38.33 | |
ETH | <0.01% | $0.364435 | 104.3572 | $38.03 | |
ETH | <0.01% | $2.23 | 16.9108 | $37.71 | |
ETH | <0.01% | $0.000021 | 1,754,157.2834 | $37.63 | |
ETH | <0.01% | <$0.000001 | 860,956,326.6944 | $37.57 | |
ETH | <0.01% | $0.148514 | 252.7932 | $37.54 | |
ETH | <0.01% | $0.072356 | 516.7855 | $37.39 | |
ETH | <0.01% | $0.091716 | 405.0207 | $37.15 | |
ETH | <0.01% | $0.927977 | 39.9837 | $37.1 | |
ETH | <0.01% | $0.009668 | 3,827.033 | $37 | |
ETH | <0.01% | $0.057522 | 641 | $36.87 | |
ETH | <0.01% | $0.030832 | 1,168.9944 | $36.04 | |
ETH | <0.01% | $1.07 | 33.8184 | $36.02 | |
ETH | <0.01% | $13.1 | 2.7352 | $35.83 | |
ETH | <0.01% | $0.000252 | 140,452.5219 | $35.4 | |
ETH | <0.01% | $0.508731 | 69.436 | $35.32 | |
ETH | <0.01% | $0.016438 | 2,146.2862 | $35.28 | |
ETH | <0.01% | $1.31 | 26.5372 | $34.76 | |
ETH | <0.01% | $0.004177 | 8,277.0408 | $34.57 | |
ETH | <0.01% | $1 | 34.4164 | $34.49 | |
ETH | <0.01% | $0.000049 | 700,680.663 | $34.39 | |
ETH | <0.01% | $0.047242 | 713.9953 | $33.73 | |
ETH | <0.01% | <$0.000001 | 43,614,119,165.8541 | $33.72 | |
ETH | <0.01% | $0.023703 | 1,417.6171 | $33.6 | |
ETH | <0.01% | <$0.000001 | 30,827,961,408.2945 | $33.39 | |
ETH | <0.01% | $15.8 | 2.1076 | $33.3 | |
ETH | <0.01% | $0.017806 | 1,869.738 | $33.29 | |
ETH | <0.01% | $1.91 | 16.8805 | $32.25 | |
ETH | <0.01% | $0.182196 | 175.7601 | $32.02 | |
ETH | <0.01% | $0.04922 | 637.4817 | $31.38 | |
ETH | <0.01% | $0.003514 | 8,907.7677 | $31.3 | |
ETH | <0.01% | $0.006427 | 4,850.9404 | $31.17 | |
ETH | <0.01% | $0.507666 | 61.1886 | $31.06 | |
ETH | <0.01% | $0.012931 | 2,377.3208 | $30.74 | |
ETH | <0.01% | $0.000192 | 159,445.4861 | $30.68 | |
ETH | <0.01% | $0.021775 | 1,395.781 | $30.39 | |
ETH | <0.01% | $0.0074 | 4,084.585 | $30.22 | |
ETH | <0.01% | $0.41817 | 72.25 | $30.21 | |
ETH | <0.01% | $1.73 | 17.3535 | $30.02 | |
ETH | <0.01% | $0.056502 | 529.3731 | $29.91 | |
ETH | <0.01% | $0.071475 | 417.7749 | $29.86 | |
ETH | <0.01% | $0.02163 | 1,376.4165 | $29.77 | |
ETH | <0.01% | $2.12 | 13.9733 | $29.62 | |
ETH | <0.01% | $12.34 | 2.3923 | $29.52 | |
ETH | <0.01% | $0.365233 | 80.4893 | $29.4 | |
ETH | <0.01% | $0.380627 | 76.9598 | $29.29 | |
ETH | <0.01% | $0.154858 | 187.9918 | $29.11 | |
ETH | <0.01% | $119,374 | 0.00023875 | $28.5 | |
ETH | <0.01% | $32.33 | 0.8766 | $28.34 | |
ETH | <0.01% | $1.23 | 22.9822 | $28.27 | |
ETH | <0.01% | $0.034832 | 808.9793 | $28.18 | |
ETH | <0.01% | <$0.000001 | 8,110,675,676.0035 | $28.01 | |
ETH | <0.01% | $0.000282 | 99,189.2449 | $27.93 | |
ETH | <0.01% | $0.1267 | 219.8098 | $27.85 | |
ETH | <0.01% | $0.000138 | 200,292.9426 | $27.72 | |
ETH | <0.01% | $1,568.06 | 0.0176 | $27.54 | |
ETH | <0.01% | $0.999835 | 27.4084 | $27.4 | |
ETH | <0.01% | $0.00003 | 900,423.9842 | $27.4 | |
ETH | <0.01% | $4,612.77 | 0.00590677 | $27.25 | |
ETH | <0.01% | $0.041534 | 655.8954 | $27.24 | |
ETH | <0.01% | $0.443199 | 61.3947 | $27.21 | |
ETH | <0.01% | $0.318319 | 83.5718 | $26.6 | |
ETH | <0.01% | $1.54 | 17.2425 | $26.55 | |
ETH | <0.01% | $0.001336 | 19,825.5811 | $26.48 | |
ETH | <0.01% | $2.61 | 10.1188 | $26.41 | |
ETH | <0.01% | $0.037769 | 694.961 | $26.25 | |
ETH | <0.01% | $0.324541 | 80.4003 | $26.09 | |
ETH | <0.01% | $0.082539 | 311.6062 | $25.72 | |
ETH | <0.01% | $0.050085 | 513.1319 | $25.7 | |
ETH | <0.01% | $0.392124 | 65.3969 | $25.64 | |
ETH | <0.01% | $0.021431 | 1,192.5382 | $25.56 | |
ETH | <0.01% | $0.000623 | 40,616.5019 | $25.31 | |
ETH | <0.01% | <$0.000001 | 342,987,284,949,396.63 | $25.29 | |
ETH | <0.01% | $0.17297 | 146.1032 | $25.27 | |
ETH | <0.01% | $7,686.31 | 0.00328639 | $25.26 | |
ETH | <0.01% | $0.0044 | 5,724.0165 | $25.18 | |
ETH | <0.01% | $0.020673 | 1,216.8634 | $25.16 | |
ETH | <0.01% | $5.55 | 4.51 | $25.03 | |
ETH | <0.01% | $0.164387 | 152.1706 | $25.01 | |
ETH | <0.01% | $0.004951 | 5,017.9998 | $24.84 | |
ETH | <0.01% | $36.88 | 0.6716 | $24.77 | |
ETH | <0.01% | $0.105846 | 233.9327 | $24.76 | |
ETH | <0.01% | $0.021954 | 1,122.7698 | $24.65 | |
ETH | <0.01% | $0.000005 | 5,268,313.1073 | $24.6 | |
ETH | <0.01% | $0.000224 | 109,974.536 | $24.58 | |
ETH | <0.01% | $0.056061 | 435.0704 | $24.39 | |
ETH | <0.01% | $0.010726 | 2,263.9133 | $24.28 | |
ETH | <0.01% | $0.112098 | 215.5285 | $24.16 | |
ETH | <0.01% | $0.14823 | 162.8931 | $24.15 | |
ETH | <0.01% | $7.69 | 3.1224 | $24.02 | |
ETH | <0.01% | $0.172797 | 137.5268 | $23.76 | |
ETH | <0.01% | $0.393835 | 59.9972 | $23.63 | |
ETH | <0.01% | $1.54 | 15.1701 | $23.36 | |
ETH | <0.01% | $0.000433 | 53,817.4284 | $23.33 | |
ETH | <0.01% | $1.01 | 22.6559 | $22.97 | |
ETH | <0.01% | <$0.000001 | 127,722,036.8699 | $22.95 | |
ETH | <0.01% | $1.01 | 22.7953 | $22.91 | |
ETH | <0.01% | $0.000294 | 77,911.5344 | $22.89 | |
ETH | <0.01% | $0.010054 | 2,243.5017 | $22.56 | |
ETH | <0.01% | $0.376885 | 59.5266 | $22.43 | |
ETH | <0.01% | $0.028624 | 779.9445 | $22.33 | |
ETH | <0.01% | $14.71 | 1.5122 | $22.24 | |
ETH | <0.01% | $0.000446 | 49,659.6108 | $22.17 | |
ETH | <0.01% | $0.196479 | 112.5687 | $22.12 | |
ETH | <0.01% | $0.167392 | 132.1062 | $22.11 | |
ETH | <0.01% | $0.025736 | 851.7843 | $21.92 | |
ETH | <0.01% | $0.008398 | 2,593.1665 | $21.78 | |
ETH | <0.01% | $0.037997 | 571.8056 | $21.73 | |
ETH | <0.01% | $0.05797 | 373.3667 | $21.64 | |
ETH | <0.01% | $0.000001 | 23,046,355.9244 | $21.5 | |
ETH | <0.01% | $0.259689 | 81.8392 | $21.25 | |
ETH | <0.01% | $0.010352 | 2,047.061 | $21.19 | |
ETH | <0.01% | $0.02416 | 877.0378 | $21.19 | |
ETH | <0.01% | $0.046067 | 457.6283 | $21.08 | |
ETH | <0.01% | $0.109513 | 191.4351 | $20.96 | |
ETH | <0.01% | $0.086017 | 243.4639 | $20.94 | |
ETH | <0.01% | $0.012226 | 1,668.3626 | $20.4 | |
ETH | <0.01% | $0.000003 | 5,838,083.682 | $20.14 | |
ETH | <0.01% | $0.016947 | 1,186.6455 | $20.11 | |
ETH | <0.01% | $0.026754 | 751.6102 | $20.11 | |
ETH | <0.01% | $1 | 20.0055 | $20.03 | |
ETH | <0.01% | $0.000936 | 21,371.3818 | $20 | |
ETH | <0.01% | $0.049147 | 404.8238 | $19.9 | |
ETH | <0.01% | $0.829962 | 23.971 | $19.9 | |
ETH | <0.01% | $0.000063 | 315,600.3516 | $19.83 | |
ETH | <0.01% | $0.579977 | 33.7743 | $19.59 | |
ETH | <0.01% | $0.004327 | 4,521.4743 | $19.56 | |
ETH | <0.01% | $0.002953 | 6,460.7588 | $19.08 | |
ETH | <0.01% | <$0.000001 | 4,093,722,238.4691 | $19.07 | |
ETH | <0.01% | $0.055813 | 340.6374 | $19.01 | |
ETH | <0.01% | $0.007891 | 2,398.4934 | $18.93 | |
ETH | <0.01% | $0.015893 | 1,186.586 | $18.86 | |
ETH | <0.01% | $1 | 18.8142 | $18.85 | |
ETH | <0.01% | $1.15 | 16.1895 | $18.56 | |
ETH | <0.01% | $1.07 | 17.208 | $18.46 | |
ETH | <0.01% | $1.15 | 16.0039 | $18.43 | |
ETH | <0.01% | $0.10051 | 182.7143 | $18.36 | |
ETH | <0.01% | $0.071855 | 254.8597 | $18.31 | |
ETH | <0.01% | $0.000494 | 37,036.9967 | $18.3 | |
ETH | <0.01% | $1.57 | 11.5554 | $18.14 | |
ETH | <0.01% | $0.020729 | 870.5562 | $18.05 | |
ETH | <0.01% | $0.011314 | 1,583.2987 | $17.91 | |
ETH | <0.01% | $0.085365 | 209.4602 | $17.88 | |
ETH | <0.01% | $1 | 17.8361 | $17.85 | |
ETH | <0.01% | $0.000157 | 113,822.3658 | $17.83 | |
ETH | <0.01% | $0.00195 | 9,086.9256 | $17.72 | |
ETH | <0.01% | $0.000941 | 18,801.8627 | $17.7 | |
ETH | <0.01% | $0.000598 | 29,537.5858 | $17.66 | |
ETH | <0.01% | $0.13593 | 129.7513 | $17.64 | |
ETH | <0.01% | $4.82 | 3.6409 | $17.53 | |
ETH | <0.01% | $0.997541 | 17.5716 | $17.53 | |
ETH | <0.01% | $0.336755 | 51.8331 | $17.46 | |
ETH | <0.01% | $0.011446 | 1,520.1958 | $17.4 | |
ETH | <0.01% | $10.28 | 1.6753 | $17.22 | |
ETH | <0.01% | $0.154307 | 110.5458 | $17.06 | |
ETH | <0.01% | $0.961075 | 17.6036 | $16.92 | |
ETH | <0.01% | $275.8 | 0.0613 | $16.91 | |
ETH | <0.01% | <$0.000001 | 5,712,881,034.5172 | $16.89 | |
ETH | <0.01% | $0.003617 | 4,639.5963 | $16.78 | |
ETH | <0.01% | $0.085532 | 195.884 | $16.75 | |
ETH | <0.01% | $0.101795 | 164.5208 | $16.75 | |
ETH | <0.01% | $0.03026 | 552.9347 | $16.73 | |
ETH | <0.01% | $0.001165 | 14,350.9148 | $16.72 | |
ETH | <0.01% | $0.000965 | 17,293.4634 | $16.68 | |
ETH | <0.01% | $0.000369 | 44,973.4285 | $16.62 | |
ETH | <0.01% | $0.012558 | 1,317.8093 | $16.55 | |
ETH | <0.01% | $0.985493 | 16.7918 | $16.55 | |
ETH | <0.01% | $0.021077 | 775.1652 | $16.34 | |
ETH | <0.01% | $0.000682 | 23,878.6599 | $16.28 | |
ETH | <0.01% | $0.000042 | 384,760.9824 | $16.24 | |
ETH | <0.01% | $0.872998 | 18.4435 | $16.1 | |
ETH | <0.01% | $0.179258 | 89.2445 | $16 | |
ETH | <0.01% | $0.000137 | 116,972.3942 | $15.97 | |
ETH | <0.01% | $1.76 | 9.0259 | $15.89 | |
ETH | <0.01% | $0.680104 | 23.28 | $15.83 | |
ETH | <0.01% | $0.000042 | 373,575.6435 | $15.8 | |
ETH | <0.01% | $0.424399 | 37.0641 | $15.73 | |
ETH | <0.01% | $0.054726 | 287.0781 | $15.71 | |
ETH | <0.01% | $0.001179 | 13,302.6564 | $15.68 | |
ETH | <0.01% | $1.21 | 12.8057 | $15.48 | |
ETH | <0.01% | $0.003241 | 4,767.7862 | $15.45 | |
ETH | <0.01% | $0.00043 | 35,661.7903 | $15.32 | |
ETH | <0.01% | $0.010224 | 1,497.6353 | $15.31 | |
ETH | <0.01% | <$0.000001 | 1,122,578,658.2493 | $15.3 | |
ETH | <0.01% | $0.31713 | 48.2319 | $15.3 | |
ETH | <0.01% | <$0.000001 | 104,387,338.5794 | $15.29 | |
ETH | <0.01% | $0.013427 | 1,129.0002 | $15.16 | |
ETH | <0.01% | $0.000178 | 84,815 | $15.13 | |
ETH | <0.01% | $0.045807 | 328.7732 | $15.06 | |
ETH | <0.01% | $0.081338 | 185.0088 | $15.05 | |
ETH | <0.01% | $0.201675 | 74.5461 | $15.03 | |
ETH | <0.01% | $0.022634 | 658.549 | $14.91 | |
ETH | <0.01% | $0.18802 | 79.2486 | $14.9 | |
ETH | <0.01% | <$0.000001 | 34,260,272.5932 | $14.75 | |
ETH | <0.01% | $0.119911 | 122.9839 | $14.75 | |
ETH | <0.01% | $1.15 | 12.599 | $14.52 | |
ETH | <0.01% | $0.001204 | 12,028.3943 | $14.48 | |
ETH | <0.01% | $22.71 | 0.6372 | $14.47 | |
ETH | <0.01% | $0.000184 | 78,652.0907 | $14.45 | |
ETH | <0.01% | $0.000136 | 105,690.846 | $14.38 | |
ETH | <0.01% | $1.02 | 14.0833 | $14.37 | |
ETH | <0.01% | $0.001188 | 12,060.2305 | $14.33 | |
ETH | <0.01% | $1.95 | 7.3326 | $14.31 | |
ETH | <0.01% | $0.007168 | 1,991.5239 | $14.27 | |
ETH | <0.01% | $0.038249 | 372.8932 | $14.26 | |
ETH | <0.01% | $0.003059 | 4,647.8711 | $14.22 | |
ETH | <0.01% | $0.002679 | 5,303.0539 | $14.21 | |
ETH | <0.01% | <$0.000001 | 25,771,335,351.0357 | $14.18 | |
ETH | <0.01% | $0.046717 | 302.4665 | $14.13 | |
ETH | <0.01% | $21.81 | 0.6478 | $14.13 | |
ETH | <0.01% | $0.329191 | 42.8852 | $14.12 | |
ETH | <0.01% | $0.001451 | 9,708.022 | $14.09 | |
ETH | <0.01% | $0.010927 | 1,280.0726 | $13.99 | |
ETH | <0.01% | $0.006898 | 2,021.4898 | $13.94 | |
ETH | <0.01% | $0.002052 | 6,786.8029 | $13.93 | |
ETH | <0.01% | $9.66 | 1.4409 | $13.92 | |
ETH | <0.01% | $0.031613 | 440.0721 | $13.91 | |
ETH | <0.01% | $0.046936 | 296.261 | $13.91 | |
ETH | <0.01% | $0.000001 | 17,006,782.1017 | $13.84 | |
ETH | <0.01% | $0.61957 | 22.0387 | $13.65 | |
ETH | <0.01% | $0.000559 | 24,352.3507 | $13.62 | |
ETH | <0.01% | $0.027595 | 492.759 | $13.6 | |
ETH | <0.01% | $0.006546 | 2,061.5132 | $13.5 | |
ETH | <0.01% | $405.71 | 0.0328 | $13.31 | |
ETH | <0.01% | $0.306602 | 43.1511 | $13.23 | |
ETH | <0.01% | $0.001488 | 8,858.2817 | $13.18 | |
ETH | <0.01% | $3.38 | 3.8586 | $13.05 | |
ETH | <0.01% | $0.001041 | 12,187.0015 | $12.69 | |
ETH | <0.01% | $0.000004 | 3,131,963.9628 | $12.68 | |
ETH | <0.01% | $1.09 | 11.6337 | $12.63 | |
ETH | <0.01% | $0.216099 | 58.0145 | $12.54 | |
ETH | <0.01% | $70.86 | 0.1769 | $12.54 | |
ETH | <0.01% | $0.00442 | 2,824.6124 | $12.48 | |
ETH | <0.01% | $0.002248 | 5,529.4067 | $12.43 | |
ETH | <0.01% | $0.031025 | 394.4282 | $12.24 | |
ETH | <0.01% | $0.219385 | 55.3735 | $12.15 | |
ETH | <0.01% | $0.00 | 18,424.5661 | $0.00 | |
ETH | <0.01% | $0.093477 | 129.2918 | $12.09 | |
ETH | <0.01% | $1.22 | 9.8958 | $12.07 | |
ETH | <0.01% | $0.039881 | 301.9437 | $12.04 | |
ETH | <0.01% | <$0.000001 | 2,611,429,803.872 | $12.01 | |
ETH | <0.01% | <$0.000001 | 1,495,394,641.9834 | $11.82 | |
ETH | <0.01% | $0.458124 | 25.7228 | $11.78 | |
ETH | <0.01% | <$0.000001 | 170,331,589.1152 | $11.75 | |
ETH | <0.01% | <$0.000001 | 411,960,131.0443 | $11.74 | |
ETH | <0.01% | $0.010655 | 1,100.3194 | $11.72 | |
ETH | <0.01% | $0.000001 | 15,656,473.3762 | $11.67 | |
ETH | <0.01% | $0.024755 | 471.288 | $11.67 | |
ETH | <0.01% | $0.65652 | 17.7525 | $11.65 | |
ETH | <0.01% | $5,289.7 | 0.00220231 | $11.65 | |
ETH | <0.01% | $0.297583 | 38.6159 | $11.49 | |
ETH | <0.01% | $4,428.75 | 0.00258843 | $11.46 | |
ETH | <0.01% | $0.007215 | 1,588.4623 | $11.46 | |
ETH | <0.01% | $0.005801 | 1,959.8732 | $11.37 | |
ETH | <0.01% | $0.286839 | 39.354 | $11.29 | |
ETH | <0.01% | $0.112531 | 99.5787 | $11.21 | |
ETH | <0.01% | $0.012993 | 860.8606 | $11.18 | |
ETH | <0.01% | $0.01281 | 873.0324 | $11.18 | |
ETH | <0.01% | $0.012527 | 881.4024 | $11.04 | |
ETH | <0.01% | $0.590396 | 18.6936 | $11.04 | |
ETH | <0.01% | $0.048863 | 225.7348 | $11.03 | |
ETH | <0.01% | $0.362431 | 30.3589 | $11 | |
ETH | <0.01% | $18.23 | 0.6026 | $10.99 | |
ETH | <0.01% | $0.000025 | 428,296.0648 | $10.81 | |
ETH | <0.01% | $0.00541 | 1,991.1005 | $10.77 | |
ETH | <0.01% | $0.009893 | 1,084.4643 | $10.73 | |
ETH | <0.01% | <$0.000001 | 2,706,672,739.1248 | $10.72 | |
ETH | <0.01% | $0.000014 | 776,880.7041 | $10.55 | |
ETH | <0.01% | $0.035928 | 293.2831 | $10.54 | |
ETH | <0.01% | $0.000232 | 45,261.2122 | $10.51 | |
ETH | <0.01% | $0.000021 | 493,532.8424 | $10.48 | |
ETH | <0.01% | $0.045007 | 232.1263 | $10.45 | |
ETH | <0.01% | $0.013621 | 759.0685 | $10.34 | |
ETH | <0.01% | $0.169613 | 60.9329 | $10.34 | |
ETH | <0.01% | $0.009992 | 1,034.1378 | $10.33 | |
ETH | <0.01% | $0.152195 | 66.9803 | $10.19 | |
ETH | <0.01% | $0.022144 | 459.8354 | $10.18 | |
ETH | <0.01% | $0.01409 | 720.3933 | $10.15 | |
ETH | <0.01% | $11.39 | 0.8895 | $10.13 | |
ETH | <0.01% | $0.084329 | 119.8699 | $10.11 | |
ETH | <0.01% | $0.004988 | 2,024.5204 | $10.1 | |
ETH | <0.01% | $0.000347 | 28,952.8415 | $10.05 | |
ETH | <0.01% | $0.012353 | 810.8989 | $10.02 | |
ETH | <0.01% | $0.091615 | 108.7424 | $9.96 | |
ETH | <0.01% | <$0.000001 | 3,212,863,361.5348 | $9.92 | |
ETH | <0.01% | $0.000125 | 78,902.3544 | $9.89 | |
ETH | <0.01% | $0.324252 | 30.1823 | $9.79 | |
ETH | <0.01% | $0.998298 | 9.7361 | $9.72 | |
ETH | <0.01% | $6.67 | 1.4542 | $9.7 | |
ETH | <0.01% | $8.24 | 1.1771 | $9.7 | |
ETH | <0.01% | $4.83 | 2 | $9.66 | |
ETH | <0.01% | $0.999552 | 9.6475 | $9.64 | |
ETH | <0.01% | $0.015596 | 616.0386 | $9.61 | |
ETH | <0.01% | $0.000002 | 5,873,585.2208 | $9.6 | |
ETH | <0.01% | $0.157665 | 60.8894 | $9.6 | |
ETH | <0.01% | $0.071085 | 134.4555 | $9.56 | |
ETH | <0.01% | <$0.000001 | 277,383,207.6335 | $9.54 | |
ETH | <0.01% | $0.035037 | 268.0479 | $9.39 | |
ETH | <0.01% | <$0.000001 | 7,051,145,496.6987 | $9.38 | |
ETH | <0.01% | $0.000007 | 1,386,855.8646 | $9.33 | |
ETH | <0.01% | $0.00 | 32,668.3787 | $0.00 | |
ETH | <0.01% | $0.009546 | 969.5814 | $9.26 | |
ETH | <0.01% | $0.537199 | 17.2234 | $9.25 | |
ETH | <0.01% | $1.29 | 7.1779 | $9.25 | |
ETH | <0.01% | $2.68 | 3.4401 | $9.22 | |
ETH | <0.01% | <$0.000001 | 1,865,003,159.7317 | $9.18 | |
ETH | <0.01% | $0.000003 | 3,624,484.4879 | $9.17 | |
ETH | <0.01% | $0.000811 | 11,265.8242 | $9.14 | |
ETH | <0.01% | <$0.000001 | 33,346,215.1694 | $9.05 | |
ETH | <0.01% | $0.27282 | 33.0863 | $9.03 | |
ETH | <0.01% | <$0.000001 | 990,961,621.5772 | $9.01 | |
ETH | <0.01% | $1.04 | 8.6231 | $8.97 | |
ETH | <0.01% | $0.010979 | 812.1225 | $8.92 | |
ETH | <0.01% | $0.000006 | 1,530,393.5793 | $8.89 | |
ETH | <0.01% | $0.004676 | 1,900.2094 | $8.89 | |
ETH | <0.01% | $0.00 | 1,054.4163 | $0.00 | |
ETH | <0.01% | $0.888114 | 9.9903 | $8.87 | |
ETH | <0.01% | $0.000029 | 308,721.2131 | $8.81 | |
ETH | <0.01% | $0.030716 | 286.5495 | $8.8 | |
ETH | <0.01% | $0.003975 | 2,192.2127 | $8.71 | |
ETH | <0.01% | $0.023263 | 372.3848 | $8.66 | |
ETH | <0.01% | $1 | 8.6606 | $8.66 | |
ETH | <0.01% | $0.012845 | 667.2701 | $8.57 | |
ETH | <0.01% | $435.62 | 0.0197 | $8.57 | |
ETH | <0.01% | <$0.000001 | 17,456,522,817.9088 | $8.48 | |
ETH | <0.01% | $0.003572 | 2,373.4375 | $8.48 | |
ETH | <0.01% | <$0.000001 | 14,531,256,979.2924 | $8.44 | |
ETH | <0.01% | $0.000241 | 34,868.523 | $8.39 | |
ETH | <0.01% | $0.00091 | 9,200.1113 | $8.37 | |
ETH | <0.01% | $4,427.22 | 0.00188944 | $8.36 | |
ETH | <0.01% | $0.150622 | 55.3227 | $8.33 | |
ETH | <0.01% | $0.072123 | 114.5292 | $8.26 | |
ETH | <0.01% | <$0.000001 | 28,869,642.5283 | $8.22 | |
ETH | <0.01% | $0.000187 | 43,982.6164 | $8.21 | |
ETH | <0.01% | <$0.000001 | 19,478,158.708 | $8.17 | |
ETH | <0.01% | $0.003553 | 2,299.1301 | $8.17 | |
ETH | <0.01% | $0.00144 | 5,668.0068 | $8.16 | |
ETH | <0.01% | $0.005901 | 1,379.4294 | $8.14 | |
ETH | <0.01% | $0.00064 | 12,707.9939 | $8.13 | |
ETH | <0.01% | <$0.000001 | 11,904,799,822.58 | $8.11 | |
ETH | <0.01% | $0.06454 | 124.7318 | $8.05 | |
ETH | <0.01% | $0.077924 | 103.1742 | $8.04 | |
ETH | <0.01% | <$0.000001 | 25,274,357,839,729.324 | $8.02 | |
ETH | <0.01% | $0.051733 | 154.8681 | $8.01 | |
ETH | <0.01% | <$0.000001 | 1,618,164,273.244 | $7.99 | |
ETH | <0.01% | $0.05424 | 146.0252 | $7.92 | |
ETH | <0.01% | $0.048709 | 162.3208 | $7.91 | |
ETH | <0.01% | $0.004661 | 1,688.188 | $7.87 | |
ETH | <0.01% | $0.000126 | 61,778.3523 | $7.77 | |
ETH | <0.01% | $0.000115 | 66,663.1905 | $7.66 | |
ETH | <0.01% | $0.011131 | 682.5069 | $7.6 | |
ETH | <0.01% | $0.114871 | 65.9323 | $7.57 | |
ETH | <0.01% | $0.006055 | 1,247.6889 | $7.56 | |
ETH | <0.01% | $0.024928 | 299.9833 | $7.48 | |
ETH | <0.01% | $0.007007 | 1,067.0756 | $7.48 | |
ETH | <0.01% | $0.008028 | 931.0818 | $7.47 | |
ETH | <0.01% | <$0.000001 | 27,995,818,605.2506 | $7.42 | |
ETH | <0.01% | <$0.000001 | 2,420,919,147.7106 | $7.37 | |
ETH | <0.01% | $0.015528 | 471.8838 | $7.33 | |
ETH | <0.01% | $0.001737 | 4,148.4019 | $7.21 | |
ETH | <0.01% | $0.020068 | 359.0911 | $7.21 | |
ETH | <0.01% | $0.050136 | 141.6731 | $7.1 | |
ETH | <0.01% | $0.002138 | 3,317.9611 | $7.09 | |
ETH | <0.01% | <$0.000001 | 2,476,920,520.5636 | $7.07 | |
ETH | <0.01% | $0.000092 | 77,062.7257 | $7.06 | |
ETH | <0.01% | $0.001306 | 5,400.5442 | $7.05 | |
ETH | <0.01% | $0.011807 | 596.9725 | $7.05 | |
ETH | <0.01% | $0.113439 | 61.9027 | $7.02 | |
ETH | <0.01% | $0.154377 | 45.3431 | $7 | |
ETH | <0.01% | $0.593631 | 11.7441 | $6.97 | |
ETH | <0.01% | $0.001482 | 4,676.5756 | $6.93 | |
ETH | <0.01% | $0.036538 | 189.3446 | $6.92 | |
ETH | <0.01% | $0.00041 | 16,718.3244 | $6.86 | |
ETH | <0.01% | $0.000516 | 13,276.4982 | $6.85 | |
ETH | <0.01% | $0.019234 | 355.9981 | $6.85 | |
ETH | <0.01% | $0.001845 | 3,710.6258 | $6.85 | |
ETH | <0.01% | $0.000002 | 4,554,421.2586 | $6.83 | |
ETH | <0.01% | $0.08185 | 83.3121 | $6.82 | |
ETH | <0.01% | $0.000026 | 263,925.6299 | $6.81 | |
ETH | <0.01% | $0.02609 | 260.0761 | $6.79 | |
ETH | <0.01% | $0.002275 | 2,974.5381 | $6.77 | |
ETH | <0.01% | $0.00093 | 7,271.7578 | $6.76 | |
ETH | <0.01% | <$0.000001 | 53,749,614.7862 | $6.76 | |
ETH | <0.01% | $0.013918 | 483.2177 | $6.73 | |
ETH | <0.01% | <$0.000001 | 62,787,781.095 | $6.68 | |
ETH | <0.01% | $0.070453 | 94.4045 | $6.65 | |
ETH | <0.01% | $0.000234 | 28,374.1646 | $6.64 | |
ETH | <0.01% | $0.355338 | 18.6352 | $6.62 | |
ETH | <0.01% | $0.002705 | 2,428.5682 | $6.57 | |
ETH | <0.01% | $0.005397 | 1,216.0605 | $6.56 | |
ETH | <0.01% | $0.007604 | 861.4639 | $6.55 | |
ETH | <0.01% | $0.014267 | 458.2797 | $6.54 | |
ETH | <0.01% | $0.143913 | 45.366 | $6.53 | |
ETH | <0.01% | $0.084778 | 76.6806 | $6.5 | |
ETH | <0.01% | $0.00122 | 5,308.9605 | $6.48 | |
ETH | <0.01% | $0.000841 | 7,605.1689 | $6.39 | |
ETH | <0.01% | $0.021235 | 300.5605 | $6.38 | |
ETH | <0.01% | $0.000007 | 961,753.8136 | $6.34 | |
ETH | <0.01% | $0.000002 | 3,440,327.8793 | $6.33 | |
ETH | <0.01% | $340.5 | 0.0186 | $6.32 | |
ETH | <0.01% | $0.776873 | 8.1073 | $6.3 | |
ETH | <0.01% | $0.005001 | 1,258.9492 | $6.3 | |
ETH | <0.01% | $0.00797 | 789.7829 | $6.29 | |
ETH | <0.01% | $0.072972 | 86.0477 | $6.28 | |
ETH | <0.01% | $0.00287 | 2,181.9353 | $6.26 | |
ETH | <0.01% | $0.12077 | 51.8032 | $6.26 | |
ETH | <0.01% | $0.004963 | 1,254.0483 | $6.22 | |
ETH | <0.01% | $0.549403 | 11.3219 | $6.22 | |
ETH | <0.01% | $0.084487 | 73.4826 | $6.21 | |
ETH | <0.01% | $0.002985 | 2,071.1886 | $6.18 | |
ETH | <0.01% | $0.000175 | 35,343.0182 | $6.18 | |
ETH | <0.01% | $0.118546 | 51.8275 | $6.14 | |
ETH | <0.01% | $0.001179 | 5,190.4254 | $6.12 | |
ETH | <0.01% | $0.003949 | 1,547.0227 | $6.11 | |
ETH | <0.01% | $0.000004 | 1,533,495.1828 | $6.07 | |
ETH | <0.01% | $0.003457 | 1,746.0843 | $6.04 | |
ETH | <0.01% | $0.052085 | 113.8567 | $5.93 | |
ETH | <0.01% | $0.000668 | 8,817.1224 | $5.89 | |
ETH | <0.01% | $0.002673 | 2,199.9323 | $5.88 | |
ETH | <0.01% | $0.014641 | 401.4875 | $5.88 | |
ETH | <0.01% | $0.00 | 15.6396 | $0.00 | |
ETH | <0.01% | $0.000254 | 23,039.292 | $5.84 | |
ETH | <0.01% | $1.02 | 5.7368 | $5.83 | |
ETH | <0.01% | $0.000656 | 8,889.8586 | $5.83 | |
ETH | <0.01% | $0.000112 | 51,642.6341 | $5.81 | |
ETH | <0.01% | <$0.000001 | 708,158,192.8601 | $5.8 | |
ETH | <0.01% | $0.000096 | 60,072.1003 | $5.79 | |
ETH | <0.01% | $0.001814 | 3,178.6421 | $5.77 | |
ETH | <0.01% | $0.062251 | 90.5712 | $5.64 | |
ETH | <0.01% | $0.018665 | 296.3017 | $5.53 | |
ETH | <0.01% | $0.000328 | 16,857.3035 | $5.53 | |
ETH | <0.01% | <$0.000001 | 3,346,737,249.941 | $5.52 | |
ETH | <0.01% | <$0.000001 | 102,477,094.9592 | $5.52 | |
ETH | <0.01% | $0.001392 | 3,960.3235 | $5.51 | |
ETH | <0.01% | $0.01619 | 338.9539 | $5.49 | |
ETH | <0.01% | $0.000309 | 17,719.7607 | $5.47 | |
ETH | <0.01% | $0.001321 | 4,138.7673 | $5.47 | |
ETH | <0.01% | <$0.000001 | 6,248,746,619.1649 | $5.45 | |
ETH | <0.01% | $0.031608 | 172.1123 | $5.44 | |
ETH | <0.01% | $0.452235 | 12.0284 | $5.44 | |
ETH | <0.01% | $0.000001 | 8,963,006.033 | $5.44 | |
ETH | <0.01% | $0.001506 | 3,578.0042 | $5.39 | |
ETH | <0.01% | $0.003927 | 1,365.8768 | $5.36 | |
ETH | <0.01% | $0.007745 | 689.733 | $5.34 | |
ETH | <0.01% | $116,327 | 0.00004588 | $5.34 | |
ETH | <0.01% | $3.7 | 1.442 | $5.34 | |
ETH | <0.01% | $0.07184 | 74.1557 | $5.33 | |
ETH | <0.01% | $0.002184 | 2,424.6858 | $5.3 | |
ETH | <0.01% | $0.154197 | 34.2249 | $5.28 | |
ETH | <0.01% | $0.00343 | 1,533.5968 | $5.26 | |
ETH | <0.01% | $0.019539 | 268.8983 | $5.25 | |
ETH | <0.01% | $61.07 | 0.0858 | $5.24 | |
ETH | <0.01% | $0.003608 | 1,440.833 | $5.2 | |
ETH | <0.01% | $0.00039 | 13,241.8375 | $5.17 | |
ETH | <0.01% | $0.002887 | 1,788.2069 | $5.16 | |
ETH | <0.01% | $0.003052 | 1,691.0093 | $5.16 | |
ETH | <0.01% | $0.010223 | 504.7276 | $5.16 | |
ETH | <0.01% | $0.000297 | 17,356.4424 | $5.16 | |
ETH | <0.01% | $0.000548 | 9,207.9201 | $5.05 | |
ETH | <0.01% | $0.096223 | 52.4145 | $5.04 | |
ETH | <0.01% | $0.001338 | 3,719.1193 | $4.98 | |
ETH | <0.01% | <$0.000001 | 2,485,902,742,805.3857 | $4.88 | |
ETH | <0.01% | $0.000007 | 746,048.6441 | $4.88 | |
ETH | <0.01% | $0.000007 | 683,436.9614 | $4.81 | |
ETH | <0.01% | $0.025017 | 191.8718 | $4.8 | |
ETH | <0.01% | $0.002515 | 1,905.6793 | $4.79 | |
ETH | <0.01% | $0.155097 | 30.8715 | $4.79 | |
ETH | <0.01% | $164.24 | 0.0289 | $4.75 | |
ETH | <0.01% | $0.000157 | 30,024.2458 | $4.73 | |
ETH | <0.01% | $0.858119 | 5.4949 | $4.72 | |
ETH | <0.01% | $0.002783 | 1,691.9794 | $4.71 | |
ETH | <0.01% | $0.438145 | 10.7273 | $4.7 | |
ETH | <0.01% | $0.000102 | 45,864.2306 | $4.7 | |
ETH | <0.01% | $4,350.71 | 0.0010791 | $4.69 | |
ETH | <0.01% | $0.000018 | 260,332.5524 | $4.69 | |
ETH | <0.01% | $0.355823 | 13.1016 | $4.66 | |
ETH | <0.01% | $0.003835 | 1,212.6465 | $4.65 | |
ETH | <0.01% | $0.000098 | 47,113.2511 | $4.62 | |
ETH | <0.01% | $0.254879 | 18.0648 | $4.6 | |
ETH | <0.01% | $0.003118 | 1,470.6701 | $4.59 | |
ETH | <0.01% | $0.000009 | 512,507.6369 | $4.58 | |
ETH | <0.01% | $0.164597 | 27.697 | $4.56 | |
ETH | <0.01% | $0.046456 | 98.0093 | $4.55 | |
ETH | <0.01% | $0.001381 | 3,270.4241 | $4.52 | |
ETH | <0.01% | $0.356494 | 12.6637 | $4.51 | |
ETH | <0.01% | $0.065699 | 68.5644 | $4.5 | |
ETH | <0.01% | $0.000009 | 508,791.907 | $4.46 | |
ETH | <0.01% | $0.002577 | 1,721.5019 | $4.44 | |
ETH | <0.01% | $0.000931 | 4,747.511 | $4.42 | |
ETH | <0.01% | $0.000092 | 47,437.036 | $4.38 | |
ETH | <0.01% | $0.001729 | 2,531.5324 | $4.38 | |
ETH | <0.01% | $0.015457 | 282.6134 | $4.37 | |
ETH | <0.01% | $0.000168 | 25,980.346 | $4.35 | |
ETH | <0.01% | $0.038524 | 112.4174 | $4.33 | |
ETH | <0.01% | $0.128347 | 33.6922 | $4.32 | |
ETH | <0.01% | $0.014837 | 285.9051 | $4.24 | |
ETH | <0.01% | <$0.000001 | 9,101,492.5614 | $4.22 | |
ETH | <0.01% | $0.500555 | 8.4359 | $4.22 | |
ETH | <0.01% | $0.000005 | 848,128.9431 | $4.22 | |
ETH | <0.01% | $0.999129 | 4.2117 | $4.21 | |
ETH | <0.01% | $119,374 | 0.00003459 | $4.13 | |
ETH | <0.01% | $0.048358 | 85.2562 | $4.12 | |
ETH | <0.01% | $0.984786 | 4.1669 | $4.1 | |
ETH | <0.01% | $0.000036 | 111,887.2978 | $4.08 | |
ETH | <0.01% | $0.0007 | 5,734.7267 | $4.01 | |
ETH | <0.01% | $0.000011 | 358,152.5571 | $3.96 | |
ETH | <0.01% | $0.075898 | 52.1815 | $3.96 | |
ETH | <0.01% | $0.000133 | 29,669.7695 | $3.96 | |
ETH | <0.01% | $0.001934 | 2,043.0251 | $3.95 | |
ETH | <0.01% | $4,670.34 | 0.00083596 | $3.9 | |
ETH | <0.01% | <$0.000001 | 630,584,698.7126 | $3.88 | |
ETH | <0.01% | $0.199402 | 19.4159 | $3.87 | |
ETH | <0.01% | <$0.000001 | 35,338,487,337.8333 | $3.86 | |
ETH | <0.01% | $4,676.11 | 0.00082052 | $3.84 | |
ETH | <0.01% | $0.160088 | 23.775 | $3.81 | |
ETH | <0.01% | $0.010909 | 345.2289 | $3.77 | |
ETH | <0.01% | $0.054384 | 68.4257 | $3.72 | |
ETH | <0.01% | $0.128858 | 28.8547 | $3.72 | |
ETH | <0.01% | $0.00377 | 985.3639 | $3.71 | |
ETH | <0.01% | <$0.000001 | 53,014,311,499.9771 | $3.71 | |
ETH | <0.01% | $0.002349 | 1,578.3213 | $3.71 | |
ETH | <0.01% | $0.177436 | 20.8923 | $3.71 | |
ETH | <0.01% | $0.994266 | 3.722 | $3.7 | |
ETH | <0.01% | <$0.000001 | 71,466,934.9015 | $3.69 | |
ETH | <0.01% | $0.022533 | 163.4502 | $3.68 | |
ETH | <0.01% | $0.00724 | 502.5644 | $3.64 | |
ETH | <0.01% | $0.386378 | 9.3823 | $3.63 | |
ETH | <0.01% | $0.050189 | 72.1118 | $3.62 | |
ETH | <0.01% | $0.012625 | 286.3922 | $3.62 | |
ETH | <0.01% | $0.002088 | 1,728.3767 | $3.61 | |
ETH | <0.01% | $0.329951 | 10.8938 | $3.59 | |
ETH | <0.01% | $0.00342 | 1,047.6251 | $3.58 | |
ETH | <0.01% | $0.000154 | 23,211.1163 | $3.58 | |
ETH | <0.01% | $0.355429 | 10.0069 | $3.56 | |
ETH | <0.01% | <$0.000001 | 11,810,077.7859 | $3.56 | |
ETH | <0.01% | $0.281749 | 12.5762 | $3.54 | |
ETH | <0.01% | $1.8 | 1.9615 | $3.54 | |
ETH | <0.01% | $0.00033 | 10,671.5065 | $3.52 | |
ETH | <0.01% | $0.000466 | 7,544.7082 | $3.51 | |
ETH | <0.01% | $0.009716 | 356.8617 | $3.47 | |
ETH | <0.01% | $0.318442 | 10.8608 | $3.46 | |
ETH | <0.01% | $1.75 | 1.9808 | $3.46 | |
ETH | <0.01% | $0.014167 | 241.7452 | $3.42 | |
ETH | <0.01% | $0.00016 | 21,402.4432 | $3.42 | |
ETH | <0.01% | $0.021344 | 159.6326 | $3.41 | |
ETH | <0.01% | $0.000006 | 524,898.7227 | $3.36 | |
ETH | <0.01% | $0.000042 | 78,696.8982 | $3.31 | |
ETH | <0.01% | $0.999338 | 3.3007 | $3.3 | |
ETH | <0.01% | $0.000232 | 14,096.8789 | $3.27 | |
ETH | <0.01% | $0.00081 | 3,973.5762 | $3.22 | |
ETH | <0.01% | $0.138537 | 23.0359 | $3.19 | |
ETH | <0.01% | $0.000118 | 27,123.0415 | $3.19 | |
ETH | <0.01% | $0.037034 | 85.9246 | $3.18 | |
ETH | <0.01% | $0.013114 | 241.6263 | $3.17 | |
ETH | <0.01% | $0.014007 | 224.4224 | $3.14 | |
ETH | <0.01% | $0.047878 | 65.3518 | $3.13 | |
ETH | <0.01% | $0.000054 | 57,524.9843 | $3.1 | |
ETH | <0.01% | $0.08031 | 38.4884 | $3.09 | |
ETH | <0.01% | $1.3 | 2.3705 | $3.08 | |
ETH | <0.01% | $0.000001 | 4,905,631.1679 | $3.06 | |
ETH | <0.01% | $0.000424 | 7,194.7587 | $3.05 | |
ETH | <0.01% | <$0.000001 | 348,064,262,870.8053 | $3.04 | |
ETH | <0.01% | <$0.000001 | 13,612,918.6735 | $3.04 | |
ETH | <0.01% | <$0.000001 | 8,426,740,669.2188 | $3 | |
ETH | <0.01% | $5.06 | 0.5922 | $3 | |
ETH | <0.01% | $0.0005 | 5,986.3054 | $2.99 | |
ETH | <0.01% | $0.000647 | 4,597.2521 | $2.97 | |
ETH | <0.01% | $0.238629 | 12.4231 | $2.96 | |
ETH | <0.01% | $0.007044 | 419.0356 | $2.95 | |
ETH | <0.01% | <$0.000001 | 7,651,225,535.3608 | $2.95 | |
ETH | <0.01% | $0.000185 | 15,912.1611 | $2.94 | |
ETH | <0.01% | $0.000462 | 6,356.8438 | $2.94 | |
ETH | <0.01% | $1,075.19 | 0.00273081 | $2.94 | |
ETH | <0.01% | $0.08786 | 33.2244 | $2.92 | |
ETH | <0.01% | $8.6 | 0.3392 | $2.92 | |
ETH | <0.01% | $0.000441 | 6,564.6197 | $2.89 | |
ETH | <0.01% | <$0.000001 | 31,298,801.7041 | $2.88 | |
ETH | <0.01% | $0.070377 | 40.478 | $2.85 | |
ETH | <0.01% | $0.000499 | 5,627.43 | $2.81 | |
ETH | <0.01% | $0.00001 | 278,428.9428 | $2.79 | |
ETH | <0.01% | $0.002743 | 1,011.2746 | $2.77 | |
ETH | <0.01% | $1.02 | 2.7271 | $2.77 | |
ETH | <0.01% | $0.01503 | 181.9129 | $2.73 | |
ETH | <0.01% | $1.01 | 2.6952 | $2.73 | |
ETH | <0.01% | $1.18 | 2.3094 | $2.73 | |
ETH | <0.01% | $0.014991 | 180.9197 | $2.71 | |
ETH | <0.01% | $0.010813 | 249.8062 | $2.7 | |
ETH | <0.01% | $0.001746 | 1,547.2867 | $2.7 | |
ETH | <0.01% | $0.00969 | 278.5284 | $2.7 | |
ETH | <0.01% | $0.000179 | 14,952.9977 | $2.68 | |
ETH | <0.01% | $0.00028 | 9,547.1212 | $2.67 | |
ETH | <0.01% | $0.000096 | 27,782.2967 | $2.67 | |
ETH | <0.01% | $0.006911 | 381.1248 | $2.63 | |
ETH | <0.01% | $0.000787 | 3,338.6152 | $2.63 | |
ETH | <0.01% | $1.16 | 2.2626 | $2.62 | |
ETH | <0.01% | $0.002286 | 1,128.7095 | $2.58 | |
ETH | <0.01% | $0.000471 | 5,385.354 | $2.53 | |
ETH | <0.01% | <$0.000001 | 1,670,646,406.9205 | $2.52 | |
ETH | <0.01% | <$0.000001 | 14,281,808.322 | $2.52 | |
ETH | <0.01% | $0.002492 | 1,009.2436 | $2.51 | |
ETH | <0.01% | $0.007849 | 318.7075 | $2.5 | |
ETH | <0.01% | $0.096552 | 25.8418 | $2.5 | |
ETH | <0.01% | $0.001639 | 1,512.8794 | $2.48 | |
ETH | <0.01% | $0.003494 | 706.5258 | $2.47 | |
ETH | <0.01% | $0.004622 | 533.4803 | $2.47 | |
ETH | <0.01% | $0.109591 | 22.1191 | $2.42 | |
ETH | <0.01% | $0.000264 | 9,169.9628 | $2.42 | |
ETH | <0.01% | <$0.000001 | 6,702,715,786.5803 | $2.4 | |
ETH | <0.01% | $0.010656 | 225.2426 | $2.4 | |
ETH | <0.01% | <$0.000001 | 12,741,570.9891 | $2.4 | |
ETH | <0.01% | $0.030231 | 79.142 | $2.39 | |
ETH | <0.01% | $0.205961 | 11.6075 | $2.39 | |
ETH | <0.01% | $0.00066 | 3,619.2575 | $2.39 | |
ETH | <0.01% | $0.017065 | 138.1719 | $2.36 | |
ETH | <0.01% | $0.000052 | 45,620.2098 | $2.36 | |
ETH | <0.01% | $0.000015 | 157,715.2533 | $2.35 | |
ETH | <0.01% | $0.000048 | 48,530.2161 | $2.34 | |
ETH | <0.01% | $0.0082 | 285.5763 | $2.34 | |
ETH | <0.01% | $0.000787 | 2,952.9739 | $2.32 | |
ETH | <0.01% | $0.000192 | 12,102.7493 | $2.32 | |
ETH | <0.01% | $0.000037 | 61,909.8796 | $2.31 | |
ETH | <0.01% | <$0.000001 | 13,802,065,093.0045 | $2.31 | |
ETH | <0.01% | $0.002674 | 862.9449 | $2.31 | |
ETH | <0.01% | $0.000998 | 2,268.2426 | $2.26 | |
ETH | <0.01% | $0.000229 | 9,886.8291 | $2.26 | |
ETH | <0.01% | $0.004411 | 507.922 | $2.24 | |
ETH | <0.01% | $0.024692 | 89.9656 | $2.22 | |
ETH | <0.01% | <$0.000001 | 54,682,866.8866 | $2.21 | |
ETH | <0.01% | $0.145819 | 15.1354 | $2.21 | |
ETH | <0.01% | $0.000001 | 2,890,666.8683 | $2.2 | |
ETH | <0.01% | $0.001974 | 1,109.1373 | $2.19 | |
ETH | <0.01% | $0.000641 | 3,413.276 | $2.19 | |
ETH | <0.01% | $1,791.75 | 0.0012214 | $2.19 | |
ETH | <0.01% | $0.01159 | 187.9933 | $2.18 | |
ETH | <0.01% | <$0.000001 | 6,804,912.3237 | $2.18 | |
ETH | <0.01% | $0.017101 | 127.2105 | $2.18 | |
ETH | <0.01% | $0.000169 | 12,825.4892 | $2.16 | |
ETH | <0.01% | $0.000223 | 9,697.9914 | $2.16 | |
ETH | <0.01% | $0.30254 | 7.1194 | $2.15 | |
ETH | <0.01% | <$0.000001 | 6,128,271.7931 | $2.15 | |
ETH | <0.01% | $120,336 | 0.00001778 | $2.14 | |
ETH | <0.01% | $2.36 | 0.9006 | $2.13 | |
ETH | <0.01% | $0.007507 | 282.8094 | $2.12 | |
ETH | <0.01% | $0.002599 | 813.6978 | $2.11 | |
ETH | <0.01% | $113,233 | 0.00001854 | $2.1 | |
ETH | <0.01% | $0.00012 | 17,511.1461 | $2.1 | |
ETH | <0.01% | $0.699131 | 2.9923 | $2.09 | |
ETH | <0.01% | $0.000178 | 11,713.4756 | $2.09 | |
ETH | <0.01% | $2.08 | 1.0007 | $2.08 | |
ETH | <0.01% | $0.052843 | 39.2968 | $2.08 | |
ETH | <0.01% | $0.010439 | 198.3206 | $2.07 | |
ETH | <0.01% | $6.78 | 0.3051 | $2.07 | |
ETH | <0.01% | $0.000013 | 160,434.99 | $2.07 | |
ETH | <0.01% | $0.000286 | 7,212.0996 | $2.06 | |
ETH | <0.01% | $0.038035 | 54.1222 | $2.06 | |
ETH | <0.01% | $3.97 | 0.5156 | $2.05 | |
ETH | <0.01% | $0.01716 | 118.9347 | $2.04 | |
ETH | <0.01% | $0.008029 | 253.2026 | $2.03 | |
ETH | <0.01% | $0.01484 | 136.7269 | $2.03 | |
ETH | <0.01% | $0.000056 | 36,354.868 | $2.03 | |
ETH | <0.01% | $0.000319 | 6,352.944 | $2.03 | |
ETH | <0.01% | $21.81 | 0.0929 | $2.03 | |
ETH | <0.01% | $0.000081 | 24,971.7397 | $2.02 | |
ETH | <0.01% | $0.035755 | 56.0794 | $2.01 | |
ETH | <0.01% | $29.84 | 0.067 | $2 | |
ETH | <0.01% | $0.001187 | 1,678.7871 | $1.99 | |
ETH | <0.01% | $0.032467 | 61.2843 | $1.99 | |
ETH | <0.01% | $0.002621 | 756.916 | $1.98 | |
ETH | <0.01% | $0.00179 | 1,106.8143 | $1.98 | |
ETH | <0.01% | $0.007452 | 265.7667 | $1.98 | |
ETH | <0.01% | $0.07864 | 25.1113 | $1.97 | |
ETH | <0.01% | $0.004358 | 452.3313 | $1.97 | |
ETH | <0.01% | $0.000354 | 5,545.5249 | $1.96 | |
ETH | <0.01% | $0.000003 | 667,753.5804 | $1.94 | |
ETH | <0.01% | $0.023957 | 81.0876 | $1.94 | |
ETH | <0.01% | $0.162717 | 11.9331 | $1.94 | |
ETH | <0.01% | $0.028695 | 67.6471 | $1.94 | |
ETH | <0.01% | $0.015987 | 120.6057 | $1.93 | |
ETH | <0.01% | $0.000003 | 549,059.5223 | $1.92 | |
ETH | <0.01% | $0.006586 | 291.3481 | $1.92 | |
ETH | <0.01% | $0.000246 | 7,811.6599 | $1.92 | |
ETH | <0.01% | $4,559.3 | 0.00041979 | $1.91 | |
ETH | <0.01% | $0.000129 | 14,847.5036 | $1.91 | |
ETH | <0.01% | <$0.000001 | 6,506,345.6083 | $1.91 | |
ETH | <0.01% | $0.000627 | 3,007.4832 | $1.89 | |
ETH | <0.01% | $0.001796 | 1,044.5797 | $1.88 | |
ETH | <0.01% | $1.28 | 1.4633 | $1.87 | |
ETH | <0.01% | $0.030125 | 61.9928 | $1.87 | |
ETH | <0.01% | $3.87 | 0.4813 | $1.86 | |
ETH | <0.01% | $255.97 | 0.00726504 | $1.86 | |
ETH | <0.01% | $0.000018 | 104,079.6576 | $1.86 | |
ETH | <0.01% | $0.030751 | 60.2431 | $1.85 | |
ETH | <0.01% | $0.071678 | 25.665 | $1.84 | |
ETH | <0.01% | <$0.000001 | 5,510,447.4805 | $1.83 | |
ETH | <0.01% | $0.001971 | 923.4779 | $1.82 | |
ETH | <0.01% | $0.00098 | 1,854.1956 | $1.82 | |
ETH | <0.01% | $0.011589 | 156.273 | $1.81 | |
ETH | <0.01% | $0.000092 | 19,637.6093 | $1.81 | |
ETH | <0.01% | $0.903983 | 2 | $1.81 | |
ETH | <0.01% | $89.15 | 0.0202 | $1.8 | |
ETH | <0.01% | $0.007102 | 252.4475 | $1.79 | |
ETH | <0.01% | <$0.000001 | 1,127,981,633.6933 | $1.79 | |
ETH | <0.01% | $0.006462 | 277.2006 | $1.79 | |
ETH | <0.01% | $0.000003 | 649,288.6913 | $1.79 | |
ETH | <0.01% | $0.020496 | 85.9443 | $1.76 | |
ETH | <0.01% | $0.426402 | 4.1156 | $1.75 | |
ETH | <0.01% | $0.000007 | 240,324.2767 | $1.75 | |
ETH | <0.01% | $0.178578 | 9.806 | $1.75 | |
ETH | <0.01% | $0.069722 | 25.0888 | $1.75 | |
ETH | <0.01% | $0.001414 | 1,225.5679 | $1.73 | |
ETH | <0.01% | $0.000736 | 2,355.0365 | $1.73 | |
ETH | <0.01% | $0.002051 | 841.9004 | $1.73 | |
ETH | <0.01% | $0.000597 | 2,889.2265 | $1.72 | |
ETH | <0.01% | $0.000014 | 124,602.2123 | $1.7 | |
ETH | <0.01% | $0.325204 | 5.2108 | $1.69 | |
ETH | <0.01% | $0.000144 | 11,623.9695 | $1.67 | |
ETH | <0.01% | $0.000057 | 29,202.6018 | $1.67 | |
ETH | <0.01% | $0.000601 | 2,761.6293 | $1.66 | |
ETH | <0.01% | $0.400178 | 4.1401 | $1.66 | |
ETH | <0.01% | <$0.000001 | 1,406,462,010.0148 | $1.65 | |
ETH | <0.01% | $0.000105 | 15,820.1519 | $1.65 | |
ETH | <0.01% | $0.024119 | 67.9118 | $1.64 | |
ETH | <0.01% | $0.000381 | 4,266.1807 | $1.62 | |
ETH | <0.01% | $0.002405 | 670.0932 | $1.61 | |
ETH | <0.01% | $0.00206 | 781.7793 | $1.61 | |
ETH | <0.01% | <$0.000001 | 25,450,194,140.8413 | $1.61 | |
ETH | <0.01% | $0.000679 | 2,366.3628 | $1.61 | |
ETH | <0.01% | $0.004345 | 365.9343 | $1.59 | |
ETH | <0.01% | $0.057363 | 27.7159 | $1.59 | |
ETH | <0.01% | $0.12186 | 12.9734 | $1.58 | |
ETH | <0.01% | $0.792994 | 1.9864 | $1.58 | |
ETH | <0.01% | $0.001723 | 907.2691 | $1.56 | |
ETH | <0.01% | $1.39 | 1.1183 | $1.55 | |
ETH | <0.01% | $2.04 | 0.7543 | $1.54 | |
ETH | <0.01% | $0.00043 | 3,556.0554 | $1.53 | |
ETH | <0.01% | $0.003224 | 474.3311 | $1.53 | |
ETH | <0.01% | $0.110249 | 13.8227 | $1.52 | |
ETH | <0.01% | $0.006954 | 217.5398 | $1.51 | |
ETH | <0.01% | $0.007028 | 213.8608 | $1.5 | |
ETH | <0.01% | $0.002715 | 552.6031 | $1.5 | |
ETH | <0.01% | $0.545711 | 2.7463 | $1.5 | |
ETH | <0.01% | $0.222928 | 6.6971 | $1.49 | |
ETH | <0.01% | $0.000028 | 54,097.0806 | $1.49 | |
ETH | <0.01% | $0.000017 | 86,531.3957 | $1.49 | |
ETH | <0.01% | $0.006361 | 232.6862 | $1.48 | |
ETH | <0.01% | $0.021838 | 67.5864 | $1.48 | |
ETH | <0.01% | $0.015971 | 92.3645 | $1.48 | |
ETH | <0.01% | $0.00001 | 150,172.2556 | $1.47 | |
ETH | <0.01% | $0.097869 | 14.9112 | $1.46 | |
ETH | <0.01% | $5.55 | 0.2608 | $1.45 | |
ETH | <0.01% | <$0.000001 | 4,497,976.9778 | $1.44 | |
ETH | <0.01% | $0.000218 | 6,609.6462 | $1.44 | |
ETH | <0.01% | $0.069636 | 20.5025 | $1.43 | |
ETH | <0.01% | $0.529435 | 2.6951 | $1.43 | |
ETH | <0.01% | $18.06 | 0.0787 | $1.42 | |
ETH | <0.01% | $0.027138 | 52.206 | $1.42 | |
ETH | <0.01% | $120,987 | 0.00001166 | $1.41 | |
ETH | <0.01% | $0.000001 | 1,086,705.5421 | $1.4 | |
ETH | <0.01% | $0.127213 | 11.005 | $1.4 | |
ETH | <0.01% | <$0.000001 | 31,658,429.9207 | $1.4 | |
ETH | <0.01% | $0.019743 | 70.4073 | $1.39 | |
ETH | <0.01% | $0.006202 | 224.1285 | $1.39 | |
ETH | <0.01% | $0.029212 | 47.4749 | $1.39 | |
ETH | <0.01% | $5,326.78 | 0.00025828 | $1.38 | |
ETH | <0.01% | $0.000006 | 241,660.6072 | $1.38 | |
ETH | <0.01% | $0.000071 | 19,261.1741 | $1.37 | |
ETH | <0.01% | $2.17 | 0.6286 | $1.37 | |
ETH | <0.01% | $0.007781 | 173.1162 | $1.35 | |
ETH | <0.01% | $1.91 | 0.7035 | $1.34 | |
ETH | <0.01% | $0.000483 | 2,763.9174 | $1.33 | |
ETH | <0.01% | $0.000001 | 1,022,286.5841 | $1.33 | |
ETH | <0.01% | $0.012044 | 109.5579 | $1.32 | |
ETH | <0.01% | $0.003851 | 341.8543 | $1.32 | |
ETH | <0.01% | $0.003212 | 409.7979 | $1.32 | |
ETH | <0.01% | $0.000649 | 2,028.1493 | $1.32 | |
ETH | <0.01% | $0.00 | 0.1031 | $0.00 | |
ETH | <0.01% | <$0.000001 | 1,247,905,012.2602 | $1.31 | |
ETH | <0.01% | $0.020381 | 64.3222 | $1.31 | |
ETH | <0.01% | $0.162825 | 8.0357 | $1.31 | |
ETH | <0.01% | $0.137328 | 9.5246 | $1.31 | |
ETH | <0.01% | $0.000024 | 55,073.6862 | $1.31 | |
ETH | <0.01% | <$0.000001 | 2,062,302,585.3792 | $1.31 | |
ETH | <0.01% | $0.027808 | 46.7402 | $1.3 | |
ETH | <0.01% | $0.000002 | 788,054.1991 | $1.29 | |
ETH | <0.01% | $0.001385 | 931.4516 | $1.29 | |
ETH | <0.01% | $0.009672 | 132.9615 | $1.29 | |
ETH | <0.01% | $0.004004 | 317.166 | $1.27 | |
ETH | <0.01% | $0.006446 | 196.6903 | $1.27 | |
ETH | <0.01% | $0.001887 | 670.501 | $1.27 | |
ETH | <0.01% | $0.284279 | 4.4458 | $1.26 | |
ETH | <0.01% | $0.000574 | 2,202.2124 | $1.26 | |
ETH | <0.01% | $0.017101 | 73.4364 | $1.26 | |
ETH | <0.01% | $0.024859 | 50.3426 | $1.25 | |
ETH | <0.01% | <$0.000001 | 5,660,650.9004 | $1.24 | |
ETH | <0.01% | $0.138195 | 8.9354 | $1.23 | |
ETH | <0.01% | $0.000056 | 22,101.9249 | $1.23 | |
ETH | <0.01% | $0.258256 | 4.7595 | $1.23 | |
ETH | <0.01% | $0.000481 | 2,556.2901 | $1.23 | |
ETH | <0.01% | $0.000345 | 3,554.8734 | $1.23 | |
ETH | <0.01% | <$0.000001 | 521,432,957.0277 | $1.22 | |
ETH | <0.01% | $0.191424 | 6.3655 | $1.22 | |
ETH | <0.01% | $0.717866 | 1.686 | $1.21 | |
ETH | <0.01% | $0.000009 | 130,291.9077 | $1.2 | |
ETH | <0.01% | $0.029861 | 40.0296 | $1.2 | |
ETH | <0.01% | $0.002225 | 527.4117 | $1.17 | |
ETH | <0.01% | <$0.000001 | 11,382,865.0158 | $1.17 | |
ETH | <0.01% | $0.999624 | 1.156 | $1.16 | |
ETH | <0.01% | $0.058031 | 19.9067 | $1.16 | |
ETH | <0.01% | $1.34 | 0.863 | $1.16 | |
ETH | <0.01% | $121,014 | 0.00000952 | $1.15 | |
ETH | <0.01% | $1.16 | 0.992 | $1.15 | |
ETH | <0.01% | $0.000217 | 5,274.7205 | $1.14 | |
ETH | <0.01% | $0.018452 | 61.5136 | $1.14 | |
ETH | <0.01% | $0.000234 | 4,846.4883 | $1.13 | |
ETH | <0.01% | $0.000067 | 16,810.8182 | $1.13 | |
ETH | <0.01% | $0.024502 | 45.8314 | $1.12 | |
ETH | <0.01% | $0.199753 | 5.6005 | $1.12 | |
ETH | <0.01% | $0.000094 | 11,895.5501 | $1.12 | |
ETH | <0.01% | $0.000335 | 3,301.9594 | $1.11 | |
ETH | <0.01% | <$0.000001 | 2,115,423,480.6865 | $1.1 | |
ETH | <0.01% | $26.58 | 0.0409 | $1.09 | |
ETH | <0.01% | $0.000357 | 3,047.4356 | $1.09 | |
ETH | <0.01% | <$0.000001 | 1,706,098,356.0693 | $1.08 | |
ETH | <0.01% | $0.006938 | 155.7685 | $1.08 | |
ETH | <0.01% | $0.166951 | 6.4443 | $1.08 | |
ETH | <0.01% | $0.226502 | 4.7299 | $1.07 | |
ETH | <0.01% | $0.812129 | 1.3186 | $1.07 | |
ETH | <0.01% | $0.00094 | 1,130.9923 | $1.06 | |
ETH | <0.01% | $0.000433 | 2,450.8759 | $1.06 | |
ETH | <0.01% | $3.1 | 0.3415 | $1.06 | |
ETH | <0.01% | $0.000541 | 1,942.9848 | $1.05 | |
ETH | <0.01% | $0.003816 | 273.1381 | $1.04 | |
ETH | <0.01% | $0.001766 | 585.5777 | $1.03 | |
ETH | <0.01% | $0.001867 | 552.8818 | $1.03 | |
ETH | <0.01% | $0.004123 | 249.6885 | $1.03 | |
ETH | <0.01% | $0.002146 | 477.3962 | $1.02 | |
ETH | <0.01% | $0.06906 | 14.791 | $1.02 | |
ETH | <0.01% | $121,513 | 0.00000838 | $1.02 | |
ETH | <0.01% | $0.037046 | 27.4566 | $1.02 | |
ETH | <0.01% | $0.000001 | 1,302,409.8262 | $1.01 | |
ETH | <0.01% | $0.030219 | 33.521 | $1.01 | |
ETH | <0.01% | $0.003495 | 289.2712 | $1.01 | |
ETH | <0.01% | $0.000096 | 10,539.9556 | $1.01 | |
ETH | <0.01% | $4.52 | 0.221 | $0.9989 | |
ETH | <0.01% | $0.000895 | 1,111.6898 | $0.9949 | |
ETH | <0.01% | $0.000209 | 4,763.3232 | $0.9941 | |
ETH | <0.01% | $0.001525 | 650.7628 | $0.9925 | |
ETH | <0.01% | $0.019018 | 51.6774 | $0.9827 | |
ETH | <0.01% | $0.001498 | 654.4598 | $0.9801 | |
ETH | <0.01% | $3.04 | 0.3214 | $0.9761 | |
ETH | <0.01% | $0.020009 | 48.5969 | $0.9723 | |
ETH | <0.01% | $0.000267 | 3,615.657 | $0.964 | |
ETH | <0.01% | $0.008244 | 115.7404 | $0.9541 | |
ETH | <0.01% | $1.02 | 0.9221 | $0.9358 | |
ETH | <0.01% | $0.00185 | 503.1882 | $0.931 | |
ETH | <0.01% | $0.000035 | 26,896 | $0.9292 | |
ETH | <0.01% | $0.087892 | 10.5011 | $0.9229 | |
ETH | <0.01% | $0.000016 | 57,108.2822 | $0.9205 | |
ETH | <0.01% | <$0.000001 | 1,443,198,614.6423 | $0.9199 | |
ETH | <0.01% | $0.000001 | 1,281,112.9827 | $0.9185 | |
ETH | <0.01% | $0.008105 | 113.0766 | $0.9165 | |
ETH | <0.01% | $0.000005 | 169,634.4231 | $0.9071 | |
ETH | <0.01% | $0.011081 | 81.5606 | $0.9037 | |
ETH | <0.01% | $0.000343 | 2,632.4072 | $0.9024 | |
ETH | <0.01% | $0.002004 | 450.0782 | $0.9019 | |
ETH | <0.01% | $0.000002 | 451,253.0479 | $0.9008 | |
ETH | <0.01% | $0.000001 | 794,386.888 | $0.8976 | |
ETH | <0.01% | $0.000003 | 266,738 | $0.8962 | |
ETH | <0.01% | $0.001639 | 546.6531 | $0.8962 | |
ETH | <0.01% | $0.000818 | 1,083.5491 | $0.8868 | |
ETH | <0.01% | $0.009076 | 97.3319 | $0.8834 | |
ETH | <0.01% | $0.00491 | 179.5488 | $0.8815 | |
ETH | <0.01% | $0.001091 | 806.6493 | $0.8804 | |
ETH | <0.01% | $0.395625 | 2.214 | $0.8759 | |
ETH | <0.01% | $0.001727 | 503.7266 | $0.8697 | |
ETH | <0.01% | <$0.000001 | 104,177,823.6093 | $0.8643 | |
ETH | <0.01% | $0.000194 | 4,430.5919 | $0.8592 | |
ETH | <0.01% | $1 | 0.8554 | $0.857 | |
ETH | <0.01% | $0.014067 | 60.7681 | $0.8548 | |
ETH | <0.01% | $0.000001 | 1,542,418.6098 | $0.8522 | |
ETH | <0.01% | $0.09002 | 9.4407 | $0.8498 | |
ETH | <0.01% | $0.000187 | 4,519 | $0.847 | |
ETH | <0.01% | $10.4 | 0.0813 | $0.8458 | |
ETH | <0.01% | $0.000032 | 26,489.4702 | $0.8399 | |
ETH | <0.01% | $0.006414 | 130.6903 | $0.8382 | |
ETH | <0.01% | $0.036629 | 22.8052 | $0.8353 | |
ETH | <0.01% | $0.003436 | 242.9744 | $0.8347 | |
ETH | <0.01% | $0.013452 | 61.1739 | $0.8228 | |
ETH | <0.01% | $62.89 | 0.0128 | $0.8077 | |
ETH | <0.01% | $0.000809 | 997.945 | $0.8068 | |
ETH | <0.01% | $0.000075 | 10,701.7344 | $0.8008 | |
ETH | <0.01% | $0.013439 | 59.5756 | $0.8006 | |
ETH | <0.01% | $0.257515 | 3.1042 | $0.7993 | |
ETH | <0.01% | $0.009666 | 82.6456 | $0.7988 | |
ETH | <0.01% | $0.998212 | 0.7999 | $0.7984 | |
ETH | <0.01% | $0.000039 | 20,464.8156 | $0.7946 | |
ETH | <0.01% | $0.001962 | 402.3066 | $0.7894 | |
ETH | <0.01% | $0.001895 | 415.1166 | $0.7866 | |
ETH | <0.01% | $0.000168 | 4,682.0891 | $0.7856 | |
ETH | <0.01% | $0.026251 | 29.8713 | $0.7841 | |
ETH | <0.01% | $0.004225 | 185.3915 | $0.7833 | |
ETH | <0.01% | <$0.000001 | 2,469,634.1724 | $0.7805 | |
ETH | <0.01% | $0.201508 | 3.8657 | $0.7789 | |
ETH | <0.01% | $0.001878 | 414.4271 | $0.7782 | |
ETH | <0.01% | $1.18 | 0.6544 | $0.7721 | |
ETH | <0.01% | $0.011449 | 67.4384 | $0.7721 | |
ETH | <0.01% | $0.000016 | 47,080.184 | $0.7707 | |
ETH | <0.01% | $0.001947 | 392.1409 | $0.7633 | |
ETH | <0.01% | $0.602906 | 1.2595 | $0.7593 | |
ETH | <0.01% | $0.026518 | 28.6056 | $0.7585 | |
ETH | <0.01% | $0.000372 | 2,033.581 | $0.7563 | |
ETH | <0.01% | $0.000041 | 18,426.9823 | $0.7556 | |
ETH | <0.01% | $0.000756 | 996.6494 | $0.7533 | |
ETH | <0.01% | $1.48 | 0.5084 | $0.7523 | |
ETH | <0.01% | $0.054976 | 13.6085 | $0.7481 | |
ETH | <0.01% | $0.008382 | 89.2127 | $0.7478 | |
ETH | <0.01% | $0.000819 | 903.6879 | $0.7402 | |
ETH | <0.01% | $0.000233 | 3,162.3497 | $0.736 | |
ETH | <0.01% | $0.00068 | 1,081.082 | $0.7353 | |
ETH | <0.01% | $0.351354 | 2.0806 | $0.731 | |
ETH | <0.01% | $0.001069 | 681.2489 | $0.7279 | |
ETH | <0.01% | $0.052803 | 13.7072 | $0.7237 | |
ETH | <0.01% | $0.000351 | 2,059.8769 | $0.722 | |
ETH | <0.01% | $0.004456 | 161.7616 | $0.7208 | |
ETH | <0.01% | <$0.000001 | 4,017,168,841.9638 | $0.7203 | |
ETH | <0.01% | <$0.000001 | 1,725,020,976.154 | $0.7166 | |
ETH | <0.01% | $0.014217 | 50.3733 | $0.7161 | |
ETH | <0.01% | $0.003176 | 224.98 | $0.7146 | |
ETH | <0.01% | <$0.000001 | 2,375,107,246.3926 | $0.7134 | |
ETH | <0.01% | $0.000079 | 9,011.439 | $0.7122 | |
ETH | <0.01% | $0.000441 | 1,611.1735 | $0.7107 | |
ETH | <0.01% | $0.037488 | 18.6975 | $0.7009 | |
ETH | <0.01% | $0.001099 | 635.0807 | $0.698 | |
ETH | <0.01% | $0.000002 | 388,470.9676 | $0.6953 | |
ETH | <0.01% | $0.024395 | 28.4999 | $0.6952 | |
ETH | <0.01% | $0.003203 | 214.8295 | $0.688 | |
ETH | <0.01% | $0.002195 | 313.3176 | $0.6878 | |
ETH | <0.01% | $0.000038 | 17,944.6995 | $0.6874 | |
ETH | <0.01% | $0.008717 | 78.6663 | $0.6857 | |
ETH | <0.01% | $0.251177 | 2.7194 | $0.683 | |
ETH | <0.01% | $0.000054 | 12,594.3933 | $0.6817 | |
ETH | <0.01% | $0.013733 | 49.625 | $0.6814 | |
ETH | <0.01% | <$0.000001 | 724,889,165.556 | $0.6781 | |
ETH | <0.01% | $0.041044 | 16.4886 | $0.6767 | |
ETH | <0.01% | $0.00013 | 5,197.7703 | $0.6742 | |
ETH | <0.01% | <$0.000001 | 416,191,105,498.456 | $0.6732 | |
ETH | <0.01% | $0.000462 | 1,456.7131 | $0.6725 | |
ETH | <0.01% | $0.00205 | 327.687 | $0.6719 | |
ETH | <0.01% | $1 | 0.6656 | $0.6659 | |
ETH | <0.01% | $0.001471 | 450.9374 | $0.6634 | |
ETH | <0.01% | $0.99943 | 0.6628 | $0.6624 | |
ETH | <0.01% | $0.000329 | 2,000.377 | $0.6578 | |
ETH | <0.01% | $0.000611 | 1,073.0699 | $0.6555 | |
ETH | <0.01% | $0.001358 | 482.2831 | $0.6551 | |
ETH | <0.01% | $0.000612 | 1,061.2235 | $0.649 | |
ETH | <0.01% | $0.042709 | 15.1304 | $0.6462 | |
ETH | <0.01% | $0.001762 | 365.9186 | $0.6446 | |
ETH | <0.01% | $0.063298 | 10.1245 | $0.6408 | |
ETH | <0.01% | $0.001193 | 536.9132 | $0.6405 | |
ETH | <0.01% | $0.000145 | 4,391.9079 | $0.6369 | |
ETH | <0.01% | $0.000356 | 1,781.7096 | $0.6348 | |
ETH | <0.01% | $0.653163 | 0.9646 | $0.63 | |
ETH | <0.01% | $0.000673 | 932.2206 | $0.6271 | |
ETH | <0.01% | $0.005146 | 121.6364 | $0.6259 | |
ETH | <0.01% | $0.020528 | 30.2302 | $0.6205 | |
ETH | <0.01% | $0.014069 | 44.0411 | $0.6196 | |
ETH | <0.01% | $0.087379 | 7.0692 | $0.6176 | |
ETH | <0.01% | $0.0607 | 10.1753 | $0.6176 | |
ETH | <0.01% | <$0.000001 | 3,642,533.8023 | $0.617 | |
ETH | <0.01% | $0.001083 | 567.8483 | $0.6147 | |
ETH | <0.01% | $0.456004 | 1.3312 | $0.607 | |
ETH | <0.01% | <$0.000001 | 50,231,565.9405 | $0.6068 | |
ETH | <0.01% | $0.000302 | 1,931.5012 | $0.584 | |
ETH | <0.01% | $0.001813 | 321.564 | $0.583 | |
ETH | <0.01% | $0.415733 | 1.3894 | $0.5776 | |
ETH | <0.01% | $0.000134 | 4,307.3767 | $0.5755 | |
ETH | <0.01% | $0.000143 | 4,017.9329 | $0.5752 | |
ETH | <0.01% | <$0.000001 | 37,490,644,650.8056 | $0.5724 | |
ETH | <0.01% | $0.000017 | 32,726.3446 | $0.5687 | |
ETH | <0.01% | $0.0005 | 1,129.3977 | $0.5642 | |
ETH | <0.01% | $0.393813 | 1.4254 | $0.5613 | |
ETH | <0.01% | $0.006515 | 85.8261 | $0.5591 | |
ETH | <0.01% | $0.000098 | 5,682.9305 | $0.5574 | |
ETH | <0.01% | $0.000066 | 8,370.4463 | $0.5521 | |
ETH | <0.01% | $0.52547 | 1.0504 | $0.5519 | |
ETH | <0.01% | $0.021969 | 25.1006 | $0.5514 | |
ETH | <0.01% | $0.000011 | 50,033.9923 | $0.5513 | |
ETH | <0.01% | $0.000027 | 20,194.6091 | $0.5512 | |
ETH | <0.01% | $0.049177 | 11.204 | $0.5509 | |
ETH | <0.01% | $0.000772 | 710.2317 | $0.5482 | |
ETH | <0.01% | $0.003873 | 138.6385 | $0.5369 | |
ETH | <0.01% | $0.029303 | 18.2561 | $0.5349 | |
ETH | <0.01% | $4.77 | 0.112 | $0.5343 | |
ETH | <0.01% | $0.046465 | 11.4605 | $0.5325 | |
ETH | <0.01% | $0.023147 | 22.6652 | $0.5246 | |
ETH | <0.01% | $0.02785 | 18.7106 | $0.521 | |
ETH | <0.01% | <$0.000001 | 96,971,168.1253 | $0.5206 | |
ETH | <0.01% | $0.001409 | 368.7211 | $0.5193 | |
ETH | <0.01% | $461.74 | 0.00111376 | $0.5142 | |
ETH | <0.01% | $0.002919 | 175.2875 | $0.5117 | |
ETH | <0.01% | $0.000001 | 481,569 | $0.5104 | |
ETH | <0.01% | $0.000032 | 16,063.6207 | $0.51 | |
ETH | <0.01% | $0.000672 | 757.1401 | $0.5091 | |
ETH | <0.01% | <$0.000001 | 1,914,021.1899 | $0.5079 | |
ETH | <0.01% | $0.016339 | 31 | $0.5065 | |
ETH | <0.01% | $0.999495 | 0.5018 | $0.5015 | |
ETH | <0.01% | $0.002849 | 174.8967 | $0.4982 | |
ETH | <0.01% | $0.547842 | 0.9082 | $0.4975 | |
ETH | <0.01% | $0.005708 | 86.0918 | $0.4914 | |
ETH | <0.01% | <$0.000001 | 340,173,358.5276 | $0.4908 | |
ETH | <0.01% | $0.005431 | 90.3211 | $0.4905 | |
ETH | <0.01% | $0.192929 | 2.5403 | $0.49 | |
ETH | <0.01% | $0.00131 | 369.405 | $0.4839 | |
ETH | <0.01% | $0.000262 | 1,841.848 | $0.4833 | |
ETH | <0.01% | $0.752542 | 0.6407 | $0.4821 | |
ETH | <0.01% | $0.00 | 0.00002696 | $0.00 | |
ETH | <0.01% | $0.002672 | 178.1568 | $0.4759 | |
ETH | <0.01% | $0.006414 | 74.1773 | $0.4758 | |
ETH | <0.01% | <$0.000001 | 3,427,176,160.7775 | $0.4746 | |
ETH | <0.01% | <$0.000001 | 6,775,156,765,095.8818 | $0.4744 | |
ETH | <0.01% | $0.0112 | 42.2765 | $0.4735 | |
ETH | <0.01% | $0.002356 | 199.9564 | $0.4711 | |
ETH | <0.01% | <$0.000001 | 2,136,447.5993 | $0.4698 | |
ETH | <0.01% | $0.000093 | 5,018.3448 | $0.4673 | |
ETH | <0.01% | <$0.000001 | 1,386,239,875.3586 | $0.467 | |
ETH | <0.01% | $0.000001 | 847,822.2606 | $0.467 | |
ETH | <0.01% | $0.001598 | 292.0806 | $0.4667 | |
ETH | <0.01% | $0.005571 | 83.1433 | $0.4632 | |
ETH | <0.01% | $0.000865 | 534.6021 | $0.4623 | |
ETH | <0.01% | <$0.000001 | 505,134,872.7708 | $0.4617 | |
ETH | <0.01% | $0.000007 | 67,572.2573 | $0.4567 | |
ETH | <0.01% | $0.000785 | 575.1084 | $0.4511 | |
ETH | <0.01% | $0.632263 | 0.7105 | $0.4492 | |
ETH | <0.01% | $0.003837 | 115.2368 | $0.4422 | |
ETH | <0.01% | $0.071451 | 6.1811 | $0.4416 | |
ETH | <0.01% | $0.000005 | 84,456.0545 | $0.438 | |
ETH | <0.01% | $0.003998 | 108.9504 | $0.4356 | |
ETH | <0.01% | $0.000673 | 646.5064 | $0.4348 | |
ETH | <0.01% | $2.54 | 0.1713 | $0.4347 | |
ETH | <0.01% | $0.000138 | 3,139.9518 | $0.4332 | |
ETH | <0.01% | $0.000145 | 2,976.9083 | $0.431 | |
ETH | <0.01% | $0.000012 | 34,762.9014 | $0.4307 | |
ETH | <0.01% | $0.000408 | 1,054.6007 | $0.4298 | |
ETH | <0.01% | $0.000078 | 5,484.0499 | $0.4286 | |
ETH | <0.01% | $0.005278 | 80.9541 | $0.4272 | |
ETH | <0.01% | $0.063286 | 6.7477 | $0.427 | |
ETH | <0.01% | $0.008844 | 48.2715 | $0.4269 | |
ETH | <0.01% | $0.007747 | 55.0119 | $0.4261 | |
ETH | <0.01% | $0.018256 | 22.9443 | $0.4188 | |
ETH | <0.01% | <$0.000001 | 55,944,242.1881 | $0.4185 | |
ETH | <0.01% | $0.000001 | 367,093.0049 | $0.4184 | |
ETH | <0.01% | $0.011987 | 34.8851 | $0.4181 | |
ETH | <0.01% | $0.01818 | 22.8771 | $0.4158 | |
ETH | <0.01% | $0.00023 | 1,799.6863 | $0.4136 | |
ETH | <0.01% | <$0.000001 | 217,017,757.3937 | $0.4136 | |
ETH | <0.01% | $0.000767 | 538.1835 | $0.413 | |
ETH | <0.01% | $0.00017 | 2,430.901 | $0.4125 | |
ETH | <0.01% | $0.000903 | 452.5891 | $0.4085 | |
ETH | <0.01% | <$0.000001 | 1,689,865.9231 | $0.4048 | |
ETH | <0.01% | $0.002228 | 181.3333 | $0.4039 | |
ETH | <0.01% | $2.32 | 0.1735 | $0.4024 | |
ETH | <0.01% | $0.003199 | 125.6345 | $0.4018 | |
ETH | <0.01% | $0.003861 | 103.9341 | $0.4012 | |
ETH | <0.01% | <$0.000001 | 2,429,990.9636 | $0.3998 | |
ETH | <0.01% | $0.032279 | 12.3802 | $0.3996 | |
ETH | <0.01% | $0.002179 | 182.2882 | $0.3971 | |
ETH | <0.01% | $0.004003 | 99.0407 | $0.3964 | |
ETH | <0.01% | $10.41 | 0.038 | $0.3956 | |
ETH | <0.01% | $0.01002 | 39.0789 | $0.3915 | |
ETH | <0.01% | $0.999477 | 0.3913 | $0.391 | |
ETH | <0.01% | $0.004136 | 94.2325 | $0.3897 | |
ETH | <0.01% | $0.007129 | 54.5036 | $0.3885 | |
ETH | <0.01% | $0.001842 | 210.4866 | $0.3876 | |
ETH | <0.01% | $0.002195 | 175.3965 | $0.385 | |
ETH | <0.01% | $0.000552 | 690.6155 | $0.3815 | |
ETH | <0.01% | <$0.000001 | 10,533,138 | $0.3778 | |
ETH | <0.01% | $0.000025 | 14,884.9336 | $0.3777 | |
ETH | <0.01% | $0.000039 | 9,647.5988 | $0.3747 | |
ETH | <0.01% | $0.001937 | 192.9736 | $0.3737 | |
ETH | <0.01% | $0.000194 | 1,923.3321 | $0.3735 | |
ETH | <0.01% | $0.000078 | 4,768.3539 | $0.3709 | |
ETH | <0.01% | $0.013942 | 26.4964 | $0.3694 | |
ETH | <0.01% | $0.020264 | 18.1331 | $0.3674 | |
ETH | <0.01% | $0.002027 | 180.6119 | $0.3661 | |
ETH | <0.01% | $0.000183 | 1,994.7696 | $0.3658 | |
ETH | <0.01% | $169.45 | 0.00215931 | $0.3658 | |
ETH | <0.01% | $0.036889 | 9.8952 | $0.365 | |
ETH | <0.01% | $0.000266 | 1,365.8061 | $0.3633 | |
ETH | <0.01% | $0.000306 | 1,168.8848 | $0.3581 | |
ETH | <0.01% | $0.036316 | 9.7683 | $0.3547 | |
ETH | <0.01% | $0.040016 | 8.8654 | $0.3547 | |
ETH | <0.01% | $0.000243 | 1,443 | $0.3502 | |
ETH | <0.01% | <$0.000001 | 5,295,741.0075 | $0.3485 | |
ETH | <0.01% | $0.004566 | 76.1238 | $0.3475 | |
ETH | <0.01% | $0.000682 | 504.3368 | $0.3441 | |
ETH | <0.01% | $155.24 | 0.00218916 | $0.3398 | |
ETH | <0.01% | $0.030714 | 11.023 | $0.3385 | |
ETH | <0.01% | $0.000903 | 372.783 | $0.3367 | |
ETH | <0.01% | <$0.000001 | 6,344,839,168.1778 | $0.3359 | |
ETH | <0.01% | $0.1267 | 2.6496 | $0.3357 | |
ETH | <0.01% | $0.011428 | 29.0952 | $0.3324 | |
ETH | <0.01% | $0.196479 | 1.6864 | $0.3313 | |
ETH | <0.01% | $43.67 | 0.007573 | $0.3306 | |
ETH | <0.01% | $0.636245 | 0.5068 | $0.3224 | |
ETH | <0.01% | $0.000075 | 4,278.7253 | $0.321 | |
ETH | <0.01% | $0.021279 | 15.0321 | $0.3198 | |
ETH | <0.01% | $0.003304 | 96.5566 | $0.319 | |
ETH | <0.01% | $0.000601 | 530.1789 | $0.3188 | |
ETH | <0.01% | $0.000079 | 4,035.2529 | $0.3168 | |
ETH | <0.01% | $0.000221 | 1,434.1718 | $0.3165 | |
ETH | <0.01% | <$0.000001 | 394,134,045.8401 | $0.3142 | |
ETH | <0.01% | $0.017394 | 17.9312 | $0.3118 | |
ETH | <0.01% | $0.004789 | 64.0641 | $0.3068 | |
ETH | <0.01% | $0.010239 | 29.8578 | $0.3057 | |
ETH | <0.01% | $0.001151 | 264.7429 | $0.3046 | |
ETH | <0.01% | $0.009988 | 30.3797 | $0.3034 | |
ETH | <0.01% | $0.000108 | 2,801.1594 | $0.3034 | |
ETH | <0.01% | $0.000108 | 2,800.1594 | $0.3033 | |
ETH | <0.01% | $0.003274 | 91.3295 | $0.2989 | |
ETH | <0.01% | $0.000026 | 11,463.5446 | $0.2959 | |
ETH | <0.01% | $0.000426 | 694.6998 | $0.2959 | |
ETH | <0.01% | $0.074426 | 3.9755 | $0.2958 | |
ETH | <0.01% | $0.000046 | 6,438.0823 | $0.2949 | |
ETH | <0.01% | <$0.000001 | 103,354,027.4755 | $0.291 | |
ETH | <0.01% | $0.019814 | 14.6619 | $0.2905 | |
ETH | <0.01% | <$0.000001 | 100,540,100.0875 | $0.289 | |
ETH | <0.01% | $0.006092 | 47.209 | $0.2875 | |
ETH | <0.01% | $0.048995 | 5.8696 | $0.2875 | |
ETH | <0.01% | $0.00 | 1.2931 | $0.00 | |
ETH | <0.01% | $0.001331 | 214.2459 | $0.285 | |
ETH | <0.01% | $0.000352 | 810.5639 | $0.285 | |
ETH | <0.01% | $0.000923 | 307.7702 | $0.2841 | |
ETH | <0.01% | $0.101332 | 2.7992 | $0.2836 | |
ETH | <0.01% | $0.000107 | 2,633.6447 | $0.2817 | |
ETH | <0.01% | $0.002134 | 130.7345 | $0.279 | |
ETH | <0.01% | $0.000132 | 2,098.1739 | $0.2773 | |
ETH | <0.01% | $0.093134 | 2.9631 | $0.2759 | |
ETH | <0.01% | $0.005952 | 46.3685 | $0.2759 | |
ETH | <0.01% | $0.000065 | 4,256.9272 | $0.2747 | |
ETH | <0.01% | $0.000007 | 40,899.1234 | $0.2723 | |
ETH | <0.01% | $0.009759 | 27.7685 | $0.271 | |
ETH | <0.01% | $0.000927 | 289.7122 | $0.2686 | |
ETH | <0.01% | $0.000268 | 993.3936 | $0.2664 | |
ETH | <0.01% | $0.009355 | 28.318 | $0.2649 | |
ETH | <0.01% | $0.000669 | 394.6296 | $0.2639 | |
ETH | <0.01% | $0.00005 | 5,244.1986 | $0.2639 | |
ETH | <0.01% | $0.000464 | 568.9715 | $0.2638 | |
ETH | <0.01% | <$0.000001 | 81,088,019.5697 | $0.2634 | |
ETH | <0.01% | $0.27299 | 0.9647 | $0.2633 | |
ETH | <0.01% | $0.004804 | 54.1866 | $0.2602 | |
ETH | <0.01% | $0.000031 | 8,370.4276 | $0.2568 | |
ETH | <0.01% | $0.000002 | 135,890.1483 | $0.2554 | |
ETH | <0.01% | $0.000219 | 1,154.966 | $0.2527 | |
ETH | <0.01% | $0.002202 | 113.5967 | $0.2501 | |
ETH | <0.01% | $0.002858 | 87.4843 | $0.25 | |
ETH | <0.01% | $0.000003 | 76,347.8246 | $0.2497 | |
ETH | <0.01% | $0.234938 | 1.0601 | $0.249 | |
ETH | <0.01% | $3.27 | 0.0762 | $0.249 | |
ETH | <0.01% | $0.000762 | 321.894 | $0.2451 | |
ETH | <0.01% | $0.000019 | 12,779.5536 | $0.244 | |
ETH | <0.01% | $0.000219 | 1,112.7363 | $0.2439 | |
ETH | <0.01% | $0.000222 | 1,095.8228 | $0.243 | |
ETH | <0.01% | $0.085956 | 2.8202 | $0.2424 | |
ETH | <0.01% | $0.004955 | 48.7251 | $0.2414 | |
ETH | <0.01% | $0.000192 | 1,259.7088 | $0.2413 | |
ETH | <0.01% | $0.004408 | 54.3994 | $0.2397 | |
ETH | <0.01% | $0.052973 | 4.5212 | $0.2395 | |
ETH | <0.01% | <$0.000001 | 1,086,447.2081 | $0.2383 | |
ETH | <0.01% | $0.006648 | 35.861 | $0.2383 | |
ETH | <0.01% | $0.000289 | 821.1452 | $0.2369 | |
ETH | <0.01% | $0.00123 | 192.5192 | $0.2368 | |
ETH | <0.01% | $0.018488 | 12.7727 | $0.2361 | |
ETH | <0.01% | $0.001382 | 169.7041 | $0.2345 | |
ETH | <0.01% | $1.44 | 0.1627 | $0.2342 | |
ETH | <0.01% | $0.001311 | 177.2508 | $0.2323 | |
ETH | <0.01% | $0.009891 | 23.415 | $0.2316 | |
ETH | <0.01% | $276.93 | 0.00083308 | $0.2307 | |
ETH | <0.01% | $0.000111 | 2,060.8273 | $0.2294 | |
ETH | <0.01% | $0.000029 | 7,947.6545 | $0.2273 | |
ETH | <0.01% | $0.000315 | 716.3345 | $0.2254 | |
ETH | <0.01% | $0.002298 | 98.1155 | $0.2254 | |
ETH | <0.01% | $0.003822 | 58.7788 | $0.2246 | |
ETH | <0.01% | $0.00006 | 3,713.6823 | $0.2243 | |
ETH | <0.01% | $0.00 | 2,307.8599 | $0.00 | |
ETH | <0.01% | $0.001113 | 200.0338 | $0.2226 | |
ETH | <0.01% | $0.009222 | 23.8685 | $0.2201 | |
ETH | <0.01% | $0.023596 | 9.2971 | $0.2193 | |
ETH | <0.01% | $0.041118 | 5.2637 | $0.2164 | |
ETH | <0.01% | $0.00258 | 83.5193 | $0.2155 | |
ETH | <0.01% | $0.000271 | 790.2251 | $0.2144 | |
ETH | <0.01% | $0.000172 | 1,241.4664 | $0.2131 | |
ETH | <0.01% | $0.080016 | 2.6591 | $0.2127 | |
ETH | <0.01% | $123.88 | 0.00171264 | $0.2121 | |
ETH | <0.01% | $0.002895 | 73.0834 | $0.2115 | |
ETH | <0.01% | $0.000082 | 2,569.152 | $0.2109 | |
ETH | <0.01% | $0.000002 | 96,700.3392 | $0.2098 | |
ETH | <0.01% | $0.000355 | 587.7403 | $0.2087 | |
ETH | <0.01% | $0.000293 | 708.9494 | $0.2073 | |
ETH | <0.01% | $0.000542 | 377.5219 | $0.2046 | |
ETH | <0.01% | $12.85 | 0.0159 | $0.2044 | |
ETH | <0.01% | $0.010395 | 19.5411 | $0.2031 | |
ETH | <0.01% | $0.000056 | 3,599.6457 | $0.2025 | |
ETH | <0.01% | $0.02981 | 6.7719 | $0.2018 | |
ETH | <0.01% | $0.375391 | 0.534 | $0.2004 | |
ETH | <0.01% | $0.00101 | 198.2883 | $0.2003 | |
ETH | <0.01% | $0.000422 | 474.231 | $0.2001 | |
ETH | <0.01% | $0.029438 | 6.7837 | $0.1996 | |
ETH | <0.01% | $0.010327 | 19.2883 | $0.1991 | |
ETH | <0.01% | $0.025559 | 7.7574 | $0.1982 | |
ETH | <0.01% | $0.000318 | 610.7032 | $0.1944 | |
ETH | <0.01% | <$0.000001 | 270,760,048.6317 | $0.1922 | |
ETH | <0.01% | $0.006667 | 28.7208 | $0.1914 | |
ETH | <0.01% | $4,791.65 | 0.00003989 | $0.1911 | |
ETH | <0.01% | $0.001768 | 107.0828 | $0.1893 | |
ETH | <0.01% | $0.008247 | 22.7003 | $0.1872 | |
ETH | <0.01% | $0.009539 | 19.5306 | $0.1862 | |
ETH | <0.01% | $0.00 | 8,987.7063 | $0.00 | |
ETH | <0.01% | $0.008192 | 22.5613 | $0.1848 | |
ETH | <0.01% | $0.004252 | 43.3634 | $0.1843 | |
ETH | <0.01% | $1.7 | 0.1082 | $0.1838 | |
ETH | <0.01% | $0.000041 | 4,476.0383 | $0.1815 | |
ETH | <0.01% | $0.026411 | 6.8419 | $0.1806 | |
ETH | <0.01% | $0.003108 | 57.8799 | $0.1798 | |
ETH | <0.01% | $0.000241 | 744.5285 | $0.1797 | |
ETH | <0.01% | $0.010216 | 17.296 | $0.1766 | |
ETH | <0.01% | $0.00117 | 150.1019 | $0.1756 | |
ETH | <0.01% | $0.000299 | 584.0306 | $0.1748 | |
ETH | <0.01% | $9.64 | 0.0181 | $0.1744 | |
ETH | <0.01% | $0.002311 | 75.1333 | $0.1736 | |
ETH | <0.01% | $0.016204 | 10.6751 | $0.1729 | |
ETH | <0.01% | $0.000102 | 1,685.0662 | $0.1713 | |
ETH | <0.01% | $0.000096 | 1,776.2386 | $0.1706 | |
ETH | <0.01% | $0.000171 | 994.1158 | $0.1704 | |
ETH | <0.01% | $0.033272 | 5.1185 | $0.1703 | |
ETH | <0.01% | <$0.000001 | 1,116,370.6183 | $0.17 | |
ETH | <0.01% | $0.000052 | 3,254.6054 | $0.169 | |
ETH | <0.01% | $0.000166 | 1,017.3387 | $0.1688 | |
ETH | <0.01% | $0.001246 | 135.4049 | $0.1687 | |
ETH | <0.01% | $0.000728 | 230.0152 | $0.1674 | |
ETH | <0.01% | $0.000608 | 271.4119 | $0.1649 | |
ETH | <0.01% | $0.261591 | 0.6299 | $0.1647 | |
ETH | <0.01% | $0.004685 | 35.0525 | $0.1642 | |
ETH | <0.01% | $0.07538 | 2.1685 | $0.1634 | |
ETH | <0.01% | $0.000102 | 1,589.0172 | $0.1625 | |
ETH | <0.01% | $0.00003 | 5,374.3783 | $0.1624 | |
ETH | <0.01% | $522.5 | 0.00031061 | $0.1622 | |
ETH | <0.01% | $0.142648 | 1.1342 | $0.1617 | |
ETH | <0.01% | $0.277877 | 0.5768 | $0.1602 | |
ETH | <0.01% | $0.003832 | 41.7536 | $0.1599 | |
ETH | <0.01% | $0.019213 | 8.2907 | $0.1592 | |
ETH | <0.01% | $0.000282 | 554.6582 | $0.1564 | |
ETH | <0.01% | $0.000712 | 218.0759 | $0.1552 | |
ETH | <0.01% | <$0.000001 | 25,571,875,420.2715 | $0.1551 | |
ETH | <0.01% | $0.00006 | 2,572.9009 | $0.1531 | |
ETH | <0.01% | $0.008091 | 18.853 | $0.1525 | |
ETH | <0.01% | $0.001401 | 108.5055 | $0.152 | |
ETH | <0.01% | $0.033377 | 4.5479 | $0.1517 | |
ETH | <0.01% | $0.001105 | 136.9199 | $0.1512 | |
ETH | <0.01% | $0.143395 | 1.0522 | $0.1508 | |
ETH | <0.01% | $0.000016 | 9,411.8831 | $0.1497 | |
ETH | <0.01% | $0.000106 | 1,415.3401 | $0.1495 | |
ETH | <0.01% | $1.08 | 0.1376 | $0.1488 | |
ETH | <0.01% | $0.000297 | 500.6276 | $0.1487 | |
ETH | <0.01% | $0.000001 | 115,191.3692 | $0.1485 | |
ETH | <0.01% | $0.183464 | 0.8092 | $0.1484 | |
ETH | <0.01% | $0.000138 | 1,077.0317 | $0.1481 | |
ETH | <0.01% | $0.002072 | 70.9641 | $0.147 | |
ETH | <0.01% | $0.000249 | 588.9002 | $0.1467 | |
ETH | <0.01% | $0.000206 | 710.4033 | $0.1463 | |
ETH | <0.01% | $0.000936 | 156.242 | $0.1462 | |
ETH | <0.01% | $7.68 | 0.0189 | $0.1454 | |
ETH | <0.01% | $0.001084 | 132.8313 | $0.144 | |
ETH | <0.01% | $0.000034 | 4,244.3681 | $0.1436 | |
ETH | <0.01% | $0.990889 | 0.1434 | $0.142 | |
ETH | <0.01% | $0.174818 | 0.8117 | $0.1418 | |
ETH | <0.01% | $0.000039 | 3,624.096 | $0.1417 | |
ETH | <0.01% | <$0.000001 | 790,561.9654 | $0.1414 | |
ETH | <0.01% | $68.74 | 0.00205622 | $0.1413 | |
ETH | <0.01% | $0.000218 | 644.0814 | $0.1402 | |
ETH | <0.01% | $0.001084 | 128.8904 | $0.1396 | |
ETH | <0.01% | $0.01828 | 7.6334 | $0.1395 | |
ETH | <0.01% | $0.000843 | 165.277 | $0.1392 | |
ETH | <0.01% | $0.164285 | 0.847 | $0.1391 | |
ETH | <0.01% | $0.000001 | 201,558.2227 | $0.139 | |
ETH | <0.01% | $0.00018 | 768.0382 | $0.1382 | |
ETH | <0.01% | $0.027912 | 4.9404 | $0.1378 | |
ETH | <0.01% | $0.00425 | 32.4193 | $0.1377 | |
ETH | <0.01% | $0.011422 | 12.0536 | $0.1376 | |
ETH | <0.01% | $0.00001 | 13,932.3723 | $0.1368 | |
ETH | <0.01% | $0.001256 | 108.137 | $0.1358 | |
ETH | <0.01% | $0.000001 | 238,516.5905 | $0.1343 | |
ETH | <0.01% | $0.000355 | 378.0452 | $0.1343 | |
ETH | <0.01% | $0.000221 | 605.9131 | $0.1337 | |
ETH | <0.01% | $0.955726 | 0.1382 | $0.132 | |
ETH | <0.01% | $0.000115 | 1,150.9268 | $0.1319 | |
ETH | <0.01% | $0.020254 | 6.4866 | $0.1313 | |
ETH | <0.01% | $0.000021 | 6,323.2545 | $0.1307 | |
ETH | <0.01% | $0.000002 | 69,317.938 | $0.1305 | |
ETH | <0.01% | $0.00318 | 40.9848 | $0.1303 | |
ETH | <0.01% | $2.27 | 0.0569 | $0.1289 | |
ETH | <0.01% | $0.000409 | 315 | $0.1287 | |
ETH | <0.01% | $0.000746 | 172.2923 | $0.1285 | |
ETH | <0.01% | $0.030342 | 4.2371 | $0.1285 | |
ETH | <0.01% | $0.009128 | 14.0623 | $0.1283 | |
ETH | <0.01% | $0.029869 | 4.2978 | $0.1283 | |
ETH | <0.01% | $0.809261 | 0.1585 | $0.1282 | |
ETH | <0.01% | $0.046828 | 2.7344 | $0.128 | |
ETH | <0.01% | $0.013844 | 9.2138 | $0.1275 | |
ETH | <0.01% | $0.066333 | 1.9207 | $0.1274 | |
ETH | <0.01% | $0.64497 | 0.1974 | $0.1273 | |
ETH | <0.01% | $0.002357 | 53.9197 | $0.1271 | |
ETH | <0.01% | $0.00019 | 663.5705 | $0.1258 | |
ETH | <0.01% | $0.000228 | 541.2532 | $0.1235 | |
ETH | <0.01% | $0.128187 | 0.956 | $0.1225 | |
ETH | <0.01% | <$0.000001 | 4,152,925,827,961,683 | $0.1204 | |
ETH | <0.01% | <$0.000001 | 1,102,273.3244 | $0.1202 | |
ETH | <0.01% | $0.950201 | 0.1263 | $0.12 | |
ETH | <0.01% | $0.000046 | 2,609.6963 | $0.119 | |
ETH | <0.01% | $0.02623 | 4.53 | $0.1188 | |
ETH | <0.01% | $0.000007 | 18,109.2936 | $0.1187 | |
ETH | <0.01% | $0.000048 | 2,473.6448 | $0.1181 | |
ETH | <0.01% | $0.00006 | 1,960.301 | $0.1177 | |
ETH | <0.01% | $0.068938 | 1.7044 | $0.1174 | |
ETH | <0.01% | $0.000295 | 397.448 | $0.1171 | |
ETH | <0.01% | $0.002625 | 44.5971 | $0.117 | |
ETH | <0.01% | $0.007604 | 15.3001 | $0.1163 | |
ETH | <0.01% | $0.000029 | 3,928.5685 | $0.1145 | |
ETH | <0.01% | $0.006624 | 17.223 | $0.114 | |
ETH | <0.01% | $0.000001 | 102,169.1774 | $0.1134 | |
ETH | <0.01% | $0.000458 | 245.7739 | $0.1125 | |
ETH | <0.01% | $0.006939 | 16.1368 | $0.1119 | |
ETH | <0.01% | $0.000507 | 220.0547 | $0.1115 | |
ETH | <0.01% | $0.000317 | 350.7397 | $0.1113 | |
ETH | <0.01% | $0.000059 | 1,885.5372 | $0.1112 | |
ETH | <0.01% | $0.00394 | 28.1287 | $0.1108 | |
ETH | <0.01% | <$0.000001 | 371,139.7411 | $0.1098 | |
ETH | <0.01% | $0.000075 | 1,452.8554 | $0.109 | |
ETH | <0.01% | $0.004459 | 24.4402 | $0.1089 | |
ETH | <0.01% | $0.00179 | 60.8105 | $0.1088 | |
ETH | <0.01% | $0.000027 | 4,051.3578 | $0.1088 | |
ETH | <0.01% | $0.001499 | 72.0231 | $0.1079 | |
ETH | <0.01% | $8.95 | 0.0121 | $0.1079 | |
ETH | <0.01% | $0.022058 | 4.8891 | $0.1078 | |
ETH | <0.01% | <$0.000001 | 597,770.9858 | $0.1075 | |
ETH | <0.01% | $0.000034 | 3,164.5676 | $0.1074 | |
ETH | <0.01% | $0.003588 | 29.9399 | $0.1074 | |
ETH | <0.01% | $0.000192 | 557.241 | $0.107 | |
ETH | <0.01% | $1 | 0.1055 | $0.1056 | |
ETH | <0.01% | $0.001079 | 96.1936 | $0.1037 | |
ETH | <0.01% | $0.00129 | 80.1265 | $0.1033 | |
ETH | <0.01% | $0.007949 | 12.8581 | $0.1022 | |
ETH | <0.01% | $0.000322 | 316.9751 | $0.102 | |
ETH | <0.01% | $0.000099 | 1,024.7964 | $0.1017 | |
ETH | <0.01% | $0.001368 | 74.1894 | $0.1015 | |
ETH | <0.01% | $0.000028 | 3,660.1874 | $0.1015 | |
ETH | <0.01% | $0.000001 | 181,297.5698 | $0.101 | |
ETH | <0.01% | <$0.000001 | 471,401.2717 | $0.1007 | |
BSC | 2.60% | $1.86 | 6,627.4227 | $12,353.88 | |
BSC | <0.01% | $0.000001 | 3,744,539.0837 | $3.26 | |
BSC | <0.01% | $0.000009 | 191,103.1317 | $1.69 | |
BSC | <0.01% | $0.002363 | 111.9455 | $0.2645 | |
BSC | <0.01% | $0.005504 | 25.664 | $0.1412 | |
BASE | 0.02% | <$0.000001 | 16,329,037,678.6616 | $89.81 | |
BASE | <0.01% | $0.018421 | 424.943 | $7.83 | |
BASE | <0.01% | $0.001733 | 4,324.6182 | $7.49 | |
BASE | <0.01% | $0.000092 | 77,062.7257 | $7.06 | |
BASE | <0.01% | $0.00 | 1,021.3757 | $0.00 | |
BASE | <0.01% | $0.000021 | 103,878 | $2.17 | |
BASE | <0.01% | $0.004056 | 236.1252 | $0.9576 | |
BASE | <0.01% | $0.000005 | 200,008.4138 | $0.938 | |
BASE | <0.01% | $0.00012 | 6,519.6 | $0.7822 | |
BASE | <0.01% | $0.000454 | 1,331.6998 | $0.6049 | |
BASE | <0.01% | <$0.000001 | 11,111,888 | $0.2111 | |
BASE | <0.01% | $0.000032 | 3,674 | $0.1169 | |
POL | <0.01% | $0.016235 | 439.0461 | $7.13 | |
POL | <0.01% | $0.00819 | 52.8517 | $0.4328 | |
AVAX | <0.01% | $0.087042 | 45.3942 | $3.95 | |
ARB | <0.01% | $0.0035 | 900 | $3.15 | |
FRAXTAL | <0.01% | $2.16 | 0.000000001676 | <$0.000001 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.