More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 185,191 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Swap Eth | 410846542 | 1 min ago | IN | 0.0166 ETH | 0.0000003 | ||||
| Withdraw ETH | 410846464 | 1 min ago | IN | 0 ETH | 0.00000034 | ||||
| Withdraw | 410846463 | 1 min ago | IN | 0 ETH | 0.00000054 | ||||
| Swap Eth | 410846046 | 3 mins ago | IN | 0.005 ETH | 0.0000003 | ||||
| Withdraw | 410845295 | 6 mins ago | IN | 0 ETH | 0.00000071 | ||||
| Swap | 410845023 | 7 mins ago | IN | 0 ETH | 0.00000068 | ||||
| Withdraw ETH | 410844100 | 11 mins ago | IN | 0 ETH | 0.00000037 | ||||
| Swap | 410843955 | 12 mins ago | IN | 0 ETH | 0.00000063 | ||||
| Transfer | 410843945 | 12 mins ago | IN | 0.00489808 ETH | 0.00000021 | ||||
| Withdraw | 410842308 | 19 mins ago | IN | 0 ETH | 0.00000071 | ||||
| Withdraw | 410841355 | 23 mins ago | IN | 0 ETH | 0.00000071 | ||||
| Withdraw | 410840586 | 26 mins ago | IN | 0 ETH | 0.00000072 | ||||
| Withdraw | 410840396 | 27 mins ago | IN | 0 ETH | 0.00000054 | ||||
| Withdraw | 410840372 | 27 mins ago | IN | 0 ETH | 0.00000071 | ||||
| Withdraw | 410839065 | 32 mins ago | IN | 0 ETH | 0.00000054 | ||||
| Withdraw | 410836802 | 41 mins ago | IN | 0 ETH | 0.00000055 | ||||
| Swap | 410836245 | 44 mins ago | IN | 0 ETH | 0.00000071 | ||||
| Transfer | 410834995 | 49 mins ago | IN | 0.00824243 ETH | 0.00000021 | ||||
| Withdraw | 410834795 | 50 mins ago | IN | 0 ETH | 0.00000071 | ||||
| Withdraw | 410833939 | 53 mins ago | IN | 0 ETH | 0.00000054 | ||||
| Swap Eth | 410833920 | 53 mins ago | IN | 0.01604973 ETH | 0.00000031 | ||||
| Withdraw | 410832832 | 58 mins ago | IN | 0 ETH | 0.00000054 | ||||
| Withdraw | 410832516 | 1 hr ago | IN | 0 ETH | 0.00000054 | ||||
| Withdraw ETH | 410830635 | 1 hr ago | IN | 0 ETH | 0.00000059 | ||||
| Swap Eth | 410827909 | 1 hr ago | IN | 0.0096 ETH | 0.00000031 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 410846464 | 1 min ago | 0.02478 ETH | ||||
| 410845964 | 3 mins ago | 0.0297375 ETH | ||||
| 410845120 | 7 mins ago | 0.82472 ETH | ||||
| 410844100 | 11 mins ago | 0.039606 ETH | ||||
| 410830635 | 1 hr ago | 0.012967 ETH | ||||
| 410826102 | 1 hr ago | 0.110218 ETH | ||||
| 410824321 | 1 hr ago | 0.019801 ETH | ||||
| 410808415 | 2 hrs ago | 0.006036 ETH | ||||
| 410806251 | 2 hrs ago | 0.009898 ETH | ||||
| 410805730 | 2 hrs ago | 1.984259 ETH | ||||
| 410800092 | 3 hrs ago | 0.004909 ETH | ||||
| 410798309 | 3 hrs ago | 0.037715 ETH | ||||
| 410792801 | 3 hrs ago | 0.005016 ETH | ||||
| 410784433 | 4 hrs ago | 0.176525 ETH | ||||
| 410781309 | 4 hrs ago | 0.031924 ETH | ||||
| 410778228 | 4 hrs ago | 0.113611 ETH | ||||
| 410776406 | 4 hrs ago | 0.019801 ETH | ||||
| 410765531 | 5 hrs ago | 0.03047 ETH | ||||
| 410737765 | 7 hrs ago | 0.031384 ETH | ||||
| 410731687 | 7 hrs ago | 0.008908 ETH | ||||
| 410720336 | 8 hrs ago | 0.00683962 ETH | ||||
| 410717771 | 8 hrs ago | 0.019801 ETH | ||||
| 410710635 | 9 hrs ago | 0.01090375 ETH | ||||
| 410709713 | 9 hrs ago | 0.009898 ETH | ||||
| 410704632 | 9 hrs ago | 0.005674 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Bridgers
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
istanbul EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./lib/TransferHelper.sol";
contract Bridgers is ReentrancyGuard, Ownable {
using SafeMath for uint256;
string public name;
string public symbol;
event Swap(
address fromToken,
string toToken,
address sender,
string destination,
uint256 fromAmount,
uint256 minReturnAmount
);
event SwapEth(
string toToken,
address sender,
string destination,
uint256 fromAmount,
uint256 minReturnAmount
);
event WithdrawETH(uint256 amount);
event Withdtraw(address token, uint256 amount);
constructor() {
name = "Bridgers1.1";
symbol = "Bridgers";
}
function swap(
address fromToken,
string memory toToken,
string memory destination,
uint256 fromAmount,
uint256 minReturnAmount
) external nonReentrant {
require(fromToken != address(0), "FROMTOKEN_CANT_T_BE_0");
require(fromAmount > 0, "FROM_TOKEN_AMOUNT_MUST_BE_MORE_THAN_0");
uint256 _inputAmount;
uint256 _fromTokenBalanceOrigin = IERC20(fromToken).balanceOf(address(this));
TransferHelper.safeTransferFrom(fromToken, msg.sender, address(this), fromAmount);
uint256 _fromTokenBalanceNew = IERC20(fromToken).balanceOf(address(this));
_inputAmount = _fromTokenBalanceNew.sub(_fromTokenBalanceOrigin);
require(_inputAmount > 0, "NO_FROM_TOKEN_TRANSFER_TO_THIS_CONTRACT");
emit Swap(fromToken, toToken, msg.sender, destination, fromAmount, minReturnAmount);
}
function swapEth(string memory toToken, string memory destination, uint256 minReturnAmount
) external payable nonReentrant {
uint256 _ethAmount = msg.value;
require(_ethAmount > 0, "ETH_AMOUNT_MUST_BE_MORE_THAN_0");
emit SwapEth(toToken, msg.sender, destination, _ethAmount, minReturnAmount);
}
function withdrawETH(address destination, uint256 amount) external onlyOwner {
require(destination != address(0), "DESTINATION_CANNT_BE_0_ADDRESS");
uint256 balance = address(this).balance;
require(balance >= amount, "AMOUNT_CANNT_MORE_THAN_BALANCE");
TransferHelper.safeTransferETH(destination, amount);
emit WithdrawETH(amount);
}
function withdraw(address token, address destination, uint256 amount) external onlyOwner {
require(destination != address(0), "DESTINATION_CANNT_BE_0_ADDRESS");
require(token != address(0), "TOKEN_MUST_NOT_BE_0");
uint256 balance = IERC20(token).balanceOf(address(this));
require(balance >= amount, "AMOUNT_CANNT_MORE_THAN_BALANCE");
TransferHelper.safeTransfer(token, destination, amount);
emit Withdtraw(token, amount);
}
receive() external payable {}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
library TransferHelper {
function safeApprove(address token, address to, uint value) internal {
// bytes4(keccak256(bytes('approve(address,uint256)')));
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: APPROVE_FAILED');
}
function safeTransfer(address token, address to, uint value) internal {
// bytes4(keccak256(bytes('transfer(address,uint256)')));
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FAILED');
}
function safeTransferFrom(address token, address from, address to, uint value) internal {
// bytes4(keccak256(bytes('transferFrom(address,address,uint256)')));
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FROM_FAILED');
}
function safeTransferETH(address to, uint value) internal {
(bool success,) = to.call{value:value}(new bytes(0));
require(success, 'TransferHelper: ETH_TRANSFER_FAILED');
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^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.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_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 {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "istanbul",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"fromToken","type":"address"},{"indexed":false,"internalType":"string","name":"toToken","type":"string"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"string","name":"destination","type":"string"},{"indexed":false,"internalType":"uint256","name":"fromAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"minReturnAmount","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"toToken","type":"string"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"string","name":"destination","type":"string"},{"indexed":false,"internalType":"uint256","name":"fromAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"minReturnAmount","type":"uint256"}],"name":"SwapEth","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdtraw","type":"event"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"fromToken","type":"address"},{"internalType":"string","name":"toToken","type":"string"},{"internalType":"string","name":"destination","type":"string"},{"internalType":"uint256","name":"fromAmount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"toToken","type":"string"},{"internalType":"string","name":"destination","type":"string"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"}],"name":"swapEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040523480156200001157600080fd5b50600160005562000022336200008f565b60408051808201909152600b8082526a4272696467657273312e3160a81b60209092019182526200005691600291620000e1565b5060408051808201909152600880825267427269646765727360c01b60209092019182526200008891600391620000e1565b50620001c4565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ef9062000187565b90600052602060002090601f0160209004810192826200011357600085556200015e565b82601f106200012e57805160ff19168380011785556200015e565b828001600101855582156200015e579182015b828111156200015e57825182559160200191906001019062000141565b506200016c92915062000170565b5090565b5b808211156200016c576000815560010162000171565b600181811c908216806200019c57607f821691505b60208210811415620001be57634e487b7160e01b600052602260045260246000fd5b50919050565b61119780620001d46000396000f3fe60806040526004361061008a5760003560e01c80638da5cb5b116100595780638da5cb5b1461010b57806395d89b41146101335780639ddf93bb14610148578063d9caed1214610168578063f2fde38b1461018857600080fd5b806306fdde031461009657806316b3b4c2146100c15780634782f779146100d6578063715018a6146100f657600080fd5b3661009157005b600080fd5b3480156100a257600080fd5b506100ab6101a8565b6040516100b8919061102c565b60405180910390f35b6100d46100cf366004610f0f565b610236565b005b3480156100e257600080fd5b506100d46100f1366004610ec6565b61032b565b34801561010257600080fd5b506100d461043e565b34801561011757600080fd5b506001546040516001600160a01b0390911681526020016100b8565b34801561013f57600080fd5b506100ab610474565b34801561015457600080fd5b506100d4610163366004610e43565b610481565b34801561017457600080fd5b506100d4610183366004610e08565b610747565b34801561019457600080fd5b506100d46101a3366004610dee565b610932565b600280546101b590611110565b80601f01602080910402602001604051908101604052809291908181526020018280546101e190611110565b801561022e5780601f106102035761010080835404028352916020019161022e565b820191906000526020600020905b81548152906001019060200180831161021157829003601f168201915b505050505081565b6002600054141561028e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260005534806102e15760405162461bcd60e51b815260206004820152601e60248201527f4554485f414d4f554e545f4d5553545f42455f4d4f52455f5448414e5f3000006044820152606401610285565b7f4e96fb90a89341a56db7ad2bbf04c715bbf20be6a9a9e764671f718c4697649a843385848660405161031895949392919061103f565b60405180910390a1505060016000555050565b6001546001600160a01b031633146103555760405162461bcd60e51b815260040161028590611088565b6001600160a01b0382166103ab5760405162461bcd60e51b815260206004820152601e60248201527f44455354494e4154494f4e5f43414e4e545f42455f305f4144445245535300006044820152606401610285565b47818110156103fc5760405162461bcd60e51b815260206004820152601e60248201527f414d4f554e545f43414e4e545f4d4f52455f5448414e5f42414c414e434500006044820152606401610285565b61040683836109cd565b6040518281527f94effa14ea3a1ef396fa2fd829336d1597f1d76b548c26bfa2332869706638af9060200160405180910390a1505050565b6001546001600160a01b031633146104685760405162461bcd60e51b815260040161028590611088565b6104726000610a9b565b565b600380546101b590611110565b600260005414156104d45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610285565b60026000556001600160a01b0385166105275760405162461bcd60e51b8152602060048201526015602482015274046524f4d544f4b454e5f43414e545f545f42455f3605c1b6044820152606401610285565b600082116105855760405162461bcd60e51b815260206004820152602560248201527f46524f4d5f544f4b454e5f414d4f554e545f4d5553545f42455f4d4f52455f54604482015264048414e5f360dc1b6064820152608401610285565b6040516370a0823160e01b815230600482015260009081906001600160a01b038816906370a082319060240160206040518083038186803b1580156105c957600080fd5b505afa1580156105dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106019190610f79565b905061060f87333087610aed565b6040516370a0823160e01b81523060048201526000906001600160a01b038916906370a082319060240160206040518083038186803b15801561065157600080fd5b505afa158015610665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106899190610f79565b90506106958183610c1d565b9250600083116106f75760405162461bcd60e51b815260206004820152602760248201527f4e4f5f46524f4d5f544f4b454e5f5452414e534645525f544f5f544849535f4360448201526613d395149050d560ca1b6064820152608401610285565b7f45f377f845e1cc76ae2c08f990e15d58bcb732db46f92a4852b956580c3a162f88883389898960405161073096959493929190610fd9565b60405180910390a150506001600055505050505050565b6001546001600160a01b031633146107715760405162461bcd60e51b815260040161028590611088565b6001600160a01b0382166107c75760405162461bcd60e51b815260206004820152601e60248201527f44455354494e4154494f4e5f43414e4e545f42455f305f4144445245535300006044820152606401610285565b6001600160a01b0383166108135760405162461bcd60e51b81526020600482015260136024820152720544f4b454e5f4d5553545f4e4f545f42455f3606c1b6044820152606401610285565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a082319060240160206040518083038186803b15801561085557600080fd5b505afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190610f79565b9050818110156108df5760405162461bcd60e51b815260206004820152601e60248201527f414d4f554e545f43414e4e545f4d4f52455f5448414e5f42414c414e434500006044820152606401610285565b6108ea848484610c30565b604080516001600160a01b0386168152602081018490527f7bf0873174a9cc6b28e039b52e74903dd59d650205f32748e3c3dd6b9918ea87910160405180910390a150505050565b6001546001600160a01b0316331461095c5760405162461bcd60e51b815260040161028590611088565b6001600160a01b0381166109c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610285565b6109ca81610a9b565b50565b604080516000808252602082019092526001600160a01b0384169083906040516109f79190610fbd565b60006040518083038185875af1925050503d8060008114610a34576040519150601f19603f3d011682016040523d82523d6000602084013e610a39565b606091505b5050905080610a965760405162461bcd60e51b815260206004820152602360248201527f5472616e7366657248656c7065723a204554485f5452414e534645525f46414960448201526213115160ea1b6064820152608401610285565b505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b1790529151600092839290881691610b519190610fbd565b6000604051808303816000865af19150503d8060008114610b8e576040519150601f19603f3d011682016040523d82523d6000602084013e610b93565b606091505b5091509150818015610bbd575080511580610bbd575080806020019051810190610bbd9190610eef565b610c155760405162461bcd60e51b8152602060048201526024808201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f46416044820152631253115160e21b6064820152608401610285565b505050505050565b6000610c2982846110bd565b9392505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1790529151600092839290871691610c8c9190610fbd565b6000604051808303816000865af19150503d8060008114610cc9576040519150601f19603f3d011682016040523d82523d6000602084013e610cce565b606091505b5091509150818015610cf8575080511580610cf8575080806020019051810190610cf89190610eef565b610d445760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c4544006044820152606401610285565b5050505050565b80356001600160a01b0381168114610d6257600080fd5b919050565b600082601f830112610d77578081fd5b813567ffffffffffffffff80821115610d9257610d9261114b565b604051601f8301601f19908116603f01168101908282118183101715610dba57610dba61114b565b81604052838152866020858801011115610dd2578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215610dff578081fd5b610c2982610d4b565b600080600060608486031215610e1c578182fd5b610e2584610d4b565b9250610e3360208501610d4b565b9150604084013590509250925092565b600080600080600060a08688031215610e5a578081fd5b610e6386610d4b565b9450602086013567ffffffffffffffff80821115610e7f578283fd5b610e8b89838a01610d67565b95506040880135915080821115610ea0578283fd5b50610ead88828901610d67565b9598949750949560608101359550608001359392505050565b60008060408385031215610ed8578182fd5b610ee183610d4b565b946020939093013593505050565b600060208284031215610f00578081fd5b81518015158114610c29578182fd5b600080600060608486031215610f23578283fd5b833567ffffffffffffffff80821115610f3a578485fd5b610f4687838801610d67565b94506020860135915080821115610f5b578384fd5b50610f6886828701610d67565b925050604084013590509250925092565b600060208284031215610f8a578081fd5b5051919050565b60008151808452610fa98160208601602086016110e0565b601f01601f19169290920160200192915050565b60008251610fcf8184602087016110e0565b9190910192915050565b600060018060a01b03808916835260c06020840152610ffb60c0840189610f91565b818816604085015283810360608501526110158188610f91565b608085019690965250505060a00152949350505050565b602081526000610c296020830184610f91565b60a08152600061105260a0830188610f91565b6001600160a01b038716602084015282810360408401526110738187610f91565b60608401959095525050608001529392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000828210156110db57634e487b7160e01b81526011600452602481fd5b500390565b60005b838110156110fb5781810151838201526020016110e3565b8381111561110a576000848401525b50505050565b600181811c9082168061112457607f821691505b6020821081141561114557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fdfea26469706673582212205530008249784a4e99b1a54661b55c1360dfbeff9f2713c7087982a53ccb55a264736f6c63430008040033
Deployed Bytecode
0x60806040526004361061008a5760003560e01c80638da5cb5b116100595780638da5cb5b1461010b57806395d89b41146101335780639ddf93bb14610148578063d9caed1214610168578063f2fde38b1461018857600080fd5b806306fdde031461009657806316b3b4c2146100c15780634782f779146100d6578063715018a6146100f657600080fd5b3661009157005b600080fd5b3480156100a257600080fd5b506100ab6101a8565b6040516100b8919061102c565b60405180910390f35b6100d46100cf366004610f0f565b610236565b005b3480156100e257600080fd5b506100d46100f1366004610ec6565b61032b565b34801561010257600080fd5b506100d461043e565b34801561011757600080fd5b506001546040516001600160a01b0390911681526020016100b8565b34801561013f57600080fd5b506100ab610474565b34801561015457600080fd5b506100d4610163366004610e43565b610481565b34801561017457600080fd5b506100d4610183366004610e08565b610747565b34801561019457600080fd5b506100d46101a3366004610dee565b610932565b600280546101b590611110565b80601f01602080910402602001604051908101604052809291908181526020018280546101e190611110565b801561022e5780601f106102035761010080835404028352916020019161022e565b820191906000526020600020905b81548152906001019060200180831161021157829003601f168201915b505050505081565b6002600054141561028e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260005534806102e15760405162461bcd60e51b815260206004820152601e60248201527f4554485f414d4f554e545f4d5553545f42455f4d4f52455f5448414e5f3000006044820152606401610285565b7f4e96fb90a89341a56db7ad2bbf04c715bbf20be6a9a9e764671f718c4697649a843385848660405161031895949392919061103f565b60405180910390a1505060016000555050565b6001546001600160a01b031633146103555760405162461bcd60e51b815260040161028590611088565b6001600160a01b0382166103ab5760405162461bcd60e51b815260206004820152601e60248201527f44455354494e4154494f4e5f43414e4e545f42455f305f4144445245535300006044820152606401610285565b47818110156103fc5760405162461bcd60e51b815260206004820152601e60248201527f414d4f554e545f43414e4e545f4d4f52455f5448414e5f42414c414e434500006044820152606401610285565b61040683836109cd565b6040518281527f94effa14ea3a1ef396fa2fd829336d1597f1d76b548c26bfa2332869706638af9060200160405180910390a1505050565b6001546001600160a01b031633146104685760405162461bcd60e51b815260040161028590611088565b6104726000610a9b565b565b600380546101b590611110565b600260005414156104d45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610285565b60026000556001600160a01b0385166105275760405162461bcd60e51b8152602060048201526015602482015274046524f4d544f4b454e5f43414e545f545f42455f3605c1b6044820152606401610285565b600082116105855760405162461bcd60e51b815260206004820152602560248201527f46524f4d5f544f4b454e5f414d4f554e545f4d5553545f42455f4d4f52455f54604482015264048414e5f360dc1b6064820152608401610285565b6040516370a0823160e01b815230600482015260009081906001600160a01b038816906370a082319060240160206040518083038186803b1580156105c957600080fd5b505afa1580156105dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106019190610f79565b905061060f87333087610aed565b6040516370a0823160e01b81523060048201526000906001600160a01b038916906370a082319060240160206040518083038186803b15801561065157600080fd5b505afa158015610665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106899190610f79565b90506106958183610c1d565b9250600083116106f75760405162461bcd60e51b815260206004820152602760248201527f4e4f5f46524f4d5f544f4b454e5f5452414e534645525f544f5f544849535f4360448201526613d395149050d560ca1b6064820152608401610285565b7f45f377f845e1cc76ae2c08f990e15d58bcb732db46f92a4852b956580c3a162f88883389898960405161073096959493929190610fd9565b60405180910390a150506001600055505050505050565b6001546001600160a01b031633146107715760405162461bcd60e51b815260040161028590611088565b6001600160a01b0382166107c75760405162461bcd60e51b815260206004820152601e60248201527f44455354494e4154494f4e5f43414e4e545f42455f305f4144445245535300006044820152606401610285565b6001600160a01b0383166108135760405162461bcd60e51b81526020600482015260136024820152720544f4b454e5f4d5553545f4e4f545f42455f3606c1b6044820152606401610285565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a082319060240160206040518083038186803b15801561085557600080fd5b505afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190610f79565b9050818110156108df5760405162461bcd60e51b815260206004820152601e60248201527f414d4f554e545f43414e4e545f4d4f52455f5448414e5f42414c414e434500006044820152606401610285565b6108ea848484610c30565b604080516001600160a01b0386168152602081018490527f7bf0873174a9cc6b28e039b52e74903dd59d650205f32748e3c3dd6b9918ea87910160405180910390a150505050565b6001546001600160a01b0316331461095c5760405162461bcd60e51b815260040161028590611088565b6001600160a01b0381166109c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610285565b6109ca81610a9b565b50565b604080516000808252602082019092526001600160a01b0384169083906040516109f79190610fbd565b60006040518083038185875af1925050503d8060008114610a34576040519150601f19603f3d011682016040523d82523d6000602084013e610a39565b606091505b5050905080610a965760405162461bcd60e51b815260206004820152602360248201527f5472616e7366657248656c7065723a204554485f5452414e534645525f46414960448201526213115160ea1b6064820152608401610285565b505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b1790529151600092839290881691610b519190610fbd565b6000604051808303816000865af19150503d8060008114610b8e576040519150601f19603f3d011682016040523d82523d6000602084013e610b93565b606091505b5091509150818015610bbd575080511580610bbd575080806020019051810190610bbd9190610eef565b610c155760405162461bcd60e51b8152602060048201526024808201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f46416044820152631253115160e21b6064820152608401610285565b505050505050565b6000610c2982846110bd565b9392505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1790529151600092839290871691610c8c9190610fbd565b6000604051808303816000865af19150503d8060008114610cc9576040519150601f19603f3d011682016040523d82523d6000602084013e610cce565b606091505b5091509150818015610cf8575080511580610cf8575080806020019051810190610cf89190610eef565b610d445760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c4544006044820152606401610285565b5050505050565b80356001600160a01b0381168114610d6257600080fd5b919050565b600082601f830112610d77578081fd5b813567ffffffffffffffff80821115610d9257610d9261114b565b604051601f8301601f19908116603f01168101908282118183101715610dba57610dba61114b565b81604052838152866020858801011115610dd2578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215610dff578081fd5b610c2982610d4b565b600080600060608486031215610e1c578182fd5b610e2584610d4b565b9250610e3360208501610d4b565b9150604084013590509250925092565b600080600080600060a08688031215610e5a578081fd5b610e6386610d4b565b9450602086013567ffffffffffffffff80821115610e7f578283fd5b610e8b89838a01610d67565b95506040880135915080821115610ea0578283fd5b50610ead88828901610d67565b9598949750949560608101359550608001359392505050565b60008060408385031215610ed8578182fd5b610ee183610d4b565b946020939093013593505050565b600060208284031215610f00578081fd5b81518015158114610c29578182fd5b600080600060608486031215610f23578283fd5b833567ffffffffffffffff80821115610f3a578485fd5b610f4687838801610d67565b94506020860135915080821115610f5b578384fd5b50610f6886828701610d67565b925050604084013590509250925092565b600060208284031215610f8a578081fd5b5051919050565b60008151808452610fa98160208601602086016110e0565b601f01601f19169290920160200192915050565b60008251610fcf8184602087016110e0565b9190910192915050565b600060018060a01b03808916835260c06020840152610ffb60c0840189610f91565b818816604085015283810360608501526110158188610f91565b608085019690965250505060a00152949350505050565b602081526000610c296020830184610f91565b60a08152600061105260a0830188610f91565b6001600160a01b038716602084015282810360408401526110738187610f91565b60608401959095525050608001529392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000828210156110db57634e487b7160e01b81526011600452602481fd5b500390565b60005b838110156110fb5781810151838201526020016110e3565b8381111561110a576000848401525b50505050565b600181811c9082168061112457607f821691505b6020821081141561114557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fdfea26469706673582212205530008249784a4e99b1a54661b55c1360dfbeff9f2713c7087982a53ccb55a264736f6c63430008040033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 18.51% | $3,145.86 | 68.5479 | $215,641.84 | |
| ETH | 10.02% | $0.99993 | 116,767.7623 | $116,759.59 | |
| ETH | 9.45% | $1 | 110,091.788 | $110,091.79 | |
| ETH | 9.19% | $0.004808 | 22,265,545.0573 | $107,050.29 | |
| ETH | 2.26% | $0.999694 | 26,363.404 | $26,355.34 | |
| ETH | 1.47% | $89,712 | 0.1912 | $17,156.25 | |
| ETH | 0.84% | $0.315896 | 30,894.4414 | $9,759.43 | |
| ETH | 0.43% | $0.224196 | 22,144.4657 | $4,964.7 | |
| ETH | 0.35% | $0.139244 | 29,604.4202 | $4,122.24 | |
| ETH | 0.29% | $0.000008 | 417,765,698.6127 | $3,404.79 | |
| ETH | 0.29% | $3,145.86 | 1.073 | $3,375.47 | |
| ETH | 0.23% | $0.000004 | 633,867,638.468 | $2,731.97 | |
| ETH | 0.20% | $194.41 | 11.9086 | $2,315.14 | |
| ETH | 0.18% | $0.064581 | 33,037.0218 | $2,133.56 | |
| ETH | 0.17% | $5.4 | 357.8461 | $1,932.37 | |
| ETH | 0.15% | $0.02674 | 65,129.1522 | $1,741.54 | |
| ETH | 0.14% | $0.999754 | 1,640.0591 | $1,639.66 | |
| ETH | 0.12% | $13.62 | 104.0791 | $1,417.56 | |
| ETH | 0.11% | $4,357.78 | 0.2982 | $1,299.58 | |
| ETH | 0.11% | $0.999513 | 1,270.1983 | $1,269.58 | |
| ETH | 0.11% | $77.57 | 15.8429 | $1,228.93 | |
| ETH | 0.10% | $0.996703 | 1,208.3849 | $1,204.4 | |
| ETH | 0.08% | $0.280283 | 3,489.1904 | $977.96 | |
| ETH | 0.07% | $3,500.79 | 0.2428 | $850.09 | |
| ETH | 0.06% | $4,347.23 | 0.1567 | $681.41 | |
| ETH | 0.05% | $0.438501 | 1,384.4429 | $607.08 | |
| ETH | 0.05% | $0.000045 | 13,145,702.9917 | $597.74 | |
| ETH | 0.05% | $0.166407 | 3,561.4115 | $592.64 | |
| ETH | 0.05% | $0.303867 | 1,905.8546 | $579.13 | |
| ETH | 0.05% | $10.57 | 52.696 | $557 | |
| ETH | 0.04% | $0.271786 | 1,814.2844 | $493.1 | |
| ETH | 0.03% | $0.135177 | 2,739.3029 | $370.29 | |
| ETH | 0.03% | $0.579316 | 638.5186 | $369.9 | |
| ETH | 0.03% | $0.2481 | 1,178.9753 | $292.5 | |
| ETH | 0.02% | $20.26 | 13.9223 | $282.06 | |
| ETH | 0.02% | $0.381442 | 678.7334 | $258.9 | |
| ETH | 0.02% | $0.128093 | 1,867.1657 | $239.17 | |
| ETH | 0.02% | $0.000063 | 3,340,294.9769 | $209.3 | |
| ETH | 0.02% | $3.58 | 57.1394 | $204.56 | |
| ETH | 0.02% | $1.31 | 149.3851 | $195.69 | |
| ETH | 0.02% | $0.953806 | 190.8095 | $182 | |
| ETH | 0.02% | $0.041815 | 4,319.6309 | $180.62 | |
| ETH | 0.01% | $0.821218 | 202.7484 | $166.5 | |
| ETH | 0.01% | $0.040662 | 3,903.4246 | $158.72 | |
| ETH | 0.01% | $0.449789 | 292.8397 | $131.72 | |
| ETH | 0.01% | $2.12 | 55.1806 | $116.98 | |
| ETH | <0.01% | $0.001984 | 53,176.4909 | $105.5 | |
| ETH | <0.01% | $0.032607 | 2,716.7291 | $88.59 | |
| ETH | <0.01% | $0.141439 | 575.3338 | $81.37 | |
| ETH | <0.01% | $0.238001 | 295.0724 | $70.23 | |
| ETH | <0.01% | $1.17 | 52 | $60.84 | |
| ETH | <0.01% | $0.996836 | 61 | $60.81 | |
| ETH | <0.01% | $2.58 | 22.0345 | $56.85 | |
| ETH | <0.01% | $0.001663 | 32,708.5747 | $54.4 | |
| ETH | <0.01% | $0.999508 | 51 | $50.97 | |
| ETH | <0.01% | $0.209022 | 224.6451 | $46.96 | |
| ETH | <0.01% | $0.012949 | 3,362.8015 | $43.55 | |
| ETH | <0.01% | $0.006974 | 6,116.9647 | $42.66 | |
| ETH | <0.01% | $0.044361 | 845.1914 | $37.49 | |
| ETH | <0.01% | $0.00294 | 12,452.6744 | $36.62 | |
| ETH | <0.01% | $0.984626 | 36.6791 | $36.12 | |
| ETH | <0.01% | $0.009272 | 3,844.926 | $35.65 | |
| ETH | <0.01% | $0.239416 | 134.4473 | $32.19 | |
| ETH | <0.01% | $0.300269 | 104.0527 | $31.24 | |
| ETH | <0.01% | $0.116158 | 233.3363 | $27.1 | |
| ETH | <0.01% | $0.035006 | 713.1765 | $24.97 | |
| ETH | <0.01% | $1.46 | 15.1508 | $22.12 | |
| ETH | <0.01% | $0.083167 | 254.6174 | $21.18 | |
| ETH | <0.01% | $28.5 | 0.7293 | $20.79 | |
| ETH | <0.01% | $0.134788 | 149.9857 | $20.22 | |
| ETH | <0.01% | $0.001432 | 13,892.7566 | $19.89 | |
| ETH | <0.01% | $0.000532 | 34,374.5181 | $18.29 | |
| ETH | <0.01% | $0.027471 | 560.1673 | $15.39 | |
| ETH | <0.01% | $19.14 | 0.7662 | $14.66 | |
| ETH | <0.01% | $0.779532 | 17.6409 | $13.75 | |
| ETH | <0.01% | $0.007175 | 1,802.3219 | $12.93 | |
| ETH | <0.01% | $10.55 | 1.1277 | $11.9 | |
| ETH | <0.01% | $0.729003 | 16.032 | $11.69 | |
| ETH | <0.01% | $0.001065 | 9,980.023 | $10.62 | |
| ETH | <0.01% | $0.245866 | 40.5582 | $9.97 | |
| ETH | <0.01% | $1.17 | 7.6988 | $9.01 | |
| ETH | <0.01% | $0.43094 | 17.0693 | $7.36 | |
| ETH | <0.01% | $0.00 | 7.28 | $0.00 | |
| ETH | <0.01% | $0.010118 | 688.9282 | $6.97 | |
| ETH | <0.01% | $0.999326 | 6.819 | $6.81 | |
| ETH | <0.01% | $0.182549 | 29.9419 | $5.47 | |
| ETH | <0.01% | $0.380196 | 10.0929 | $3.84 | |
| ETH | <0.01% | $0.024575 | 130.1975 | $3.2 | |
| ETH | <0.01% | $0.001254 | 2,476.6868 | $3.11 | |
| ETH | <0.01% | $0.001982 | 1,531.868 | $3.04 | |
| ETH | <0.01% | $0.000042 | 59,358.7398 | $2.47 | |
| ETH | <0.01% | $0.550819 | 4.4696 | $2.46 | |
| ETH | <0.01% | <$0.000001 | 567,585,842.5499 | $2.15 | |
| ETH | <0.01% | $0.599943 | 3.396 | $2.04 | |
| ETH | <0.01% | $58.68 | 0.0249 | $1.46 | |
| ETH | <0.01% | $0.010296 | 83.6404 | $0.8611 | |
| ETH | <0.01% | $0.000097 | 8,218.6079 | $0.7999 | |
| ETH | <0.01% | $0.026089 | 29.9947 | $0.7825 | |
| ETH | <0.01% | $0.005982 | 104.4964 | $0.625 | |
| ETH | <0.01% | $0.000005 | 111,463.1807 | $0.6119 | |
| ETH | <0.01% | $0.000008 | 74,802.6454 | $0.6036 | |
| ETH | <0.01% | $0.000003 | 100,000 | $0.2789 | |
| ETH | <0.01% | $0.000826 | 333.7333 | $0.2755 | |
| ETH | <0.01% | <$0.000001 | 110,798,585.077 | $0.2684 | |
| ETH | <0.01% | $11.89 | 0.0154 | $0.1833 | |
| ETH | <0.01% | <$0.000001 | 95,840,163.559 | $0.1644 | |
| BSC | 8.58% | $890.53 | 112.3182 | $100,022.39 | |
| BSC | 6.94% | $1 | 80,849.1134 | $80,849.11 | |
| BSC | 3.88% | $890.66 | 50.8189 | $45,262.54 | |
| BSC | 1.94% | $0.99995 | 22,634.355 | $22,633.22 | |
| BSC | 1.88% | $89,851.9 | 0.2434 | $21,869.2 | |
| BSC | 1.39% | $0.340076 | 47,572.1225 | $16,178.12 | |
| BSC | 0.88% | $0.933103 | 10,965.4316 | $10,231.87 | |
| BSC | 0.54% | $2 | 3,146.3047 | $6,283.33 | |
| BSC | 0.51% | $0.994662 | 5,973.0697 | $5,941.19 | |
| BSC | 0.44% | $2.18 | 2,350.4379 | $5,123.95 | |
| BSC | 0.37% | $0.004806 | 897,643.0408 | $4,313.98 | |
| BSC | 0.34% | $0.999896 | 3,991.8032 | $3,991.39 | |
| BSC | 0.29% | $3,144.76 | 1.0882 | $3,422.22 | |
| BSC | 0.29% | $2 | 1,671.2385 | $3,339.58 | |
| BSC | 0.24% | $13.62 | 205.7499 | $2,802.01 | |
| BSC | 0.23% | $5.4 | 502.4285 | $2,713.42 | |
| BSC | 0.22% | $0.010346 | 248,292.69 | $2,568.9 | |
| BSC | 0.22% | $0.999611 | 2,560.1091 | $2,559.11 | |
| BSC | 0.18% | $13.23 | 158.231 | $2,092.83 | |
| BSC | 0.09% | $0.11181 | 8,953.6914 | $1,001.11 | |
| BSC | 0.08% | $405.87 | 2.4056 | $976.37 | |
| BSC | 0.04% | <$0.000001 | 57,090,973,251.951 | $513.36 | |
| BSC | 0.04% | $3.6 | 138.2711 | $497.78 | |
| BSC | 0.04% | $0.136716 | 3,594.4473 | $491.42 | |
| BSC | 0.04% | $0.116819 | 3,784.2972 | $442.08 | |
| BSC | 0.03% | $0.000324 | 1,225,644 | $397.63 | |
| BSC | 0.03% | <$0.000001 | 1,922,985,562,377.0522 | $384.6 | |
| BSC | 0.03% | $0.000003 | 131,340,605.2762 | $374.78 | |
| BSC | 0.02% | $0.011354 | 18,637.9525 | $211.61 | |
| BSC | 0.02% | $0.03351 | 5,545.6077 | $185.83 | |
| BSC | 0.01% | $0.000609 | 252,369.7003 | $153.76 | |
| BSC | 0.01% | $0.000029 | 5,131,274.6265 | $146.91 | |
| BSC | 0.01% | $0.998881 | 139.938 | $139.78 | |
| BSC | 0.01% | $0.000071 | 1,768,387.3599 | $124.95 | |
| BSC | <0.01% | <$0.000001 | 110,618,765,847.2486 | $110.62 | |
| BSC | <0.01% | $0.000012 | 9,149,354.6806 | $109.98 | |
| BSC | <0.01% | <$0.000001 | 2,351,701,921,788 | $86.72 | |
| BSC | <0.01% | <$0.000001 | 4,138,318,570.8695 | $84.81 | |
| BSC | <0.01% | $0.178724 | 347.0642 | $62.03 | |
| BSC | <0.01% | $0.033003 | 1,503.3797 | $49.62 | |
| BSC | <0.01% | $0.089398 | 520.721 | $46.55 | |
| BSC | <0.01% | $0.00077 | 57,682.684 | $44.4 | |
| BSC | <0.01% | $0.53759 | 73.2713 | $39.39 | |
| BSC | <0.01% | $0.00 | 1,201,303.8824 | $0.00 | |
| BSC | <0.01% | $0.027488 | 1,111.5968 | $30.56 | |
| BSC | <0.01% | $0.025331 | 1,034.1309 | $26.2 | |
| BSC | <0.01% | $0.007358 | 3,397.1447 | $25 | |
| BSC | <0.01% | $5.3 | 4.3376 | $22.99 | |
| BSC | <0.01% | $0.046535 | 464.8106 | $21.63 | |
| BSC | <0.01% | $0.031588 | 656.5947 | $20.74 | |
| BSC | <0.01% | $1.08 | 17 | $18.39 | |
| BSC | <0.01% | <$0.000001 | 71,432,114,600.8182 | $12.93 | |
| BSC | <0.01% | $0.143449 | 86.5362 | $12.41 | |
| BSC | <0.01% | $0.291995 | 40.42 | $11.8 | |
| BSC | <0.01% | $0.025202 | 431.0313 | $10.86 | |
| BSC | <0.01% | <$0.000001 | 86,173,916.7379 | $10.32 | |
| BSC | <0.01% | $0.000005 | 1,667,265.7028 | $9.02 | |
| BSC | <0.01% | $0.00287 | 2,938.295 | $8.43 | |
| BSC | <0.01% | $0.000003 | 2,757,743.7328 | $8.08 | |
| BSC | <0.01% | $0.133109 | 54.8946 | $7.31 | |
| BSC | <0.01% | $0.000635 | 11,267.8718 | $7.16 | |
| BSC | <0.01% | $0.000657 | 10,210.3798 | $6.71 | |
| BSC | <0.01% | <$0.000001 | 167,685,741,415.7341 | $6.62 | |
| BSC | <0.01% | $0.000061 | 106,482.7039 | $6.48 | |
| BSC | <0.01% | $0.25699 | 22.82 | $5.86 | |
| BSC | <0.01% | $0.001171 | 4,718.348 | $5.53 | |
| BSC | <0.01% | $0.069916 | 77.8148 | $5.44 | |
| BSC | <0.01% | <$0.000001 | 1,288,345,740,615.4414 | $5.32 | |
| BSC | <0.01% | $0.016057 | 321.2409 | $5.16 | |
| BSC | <0.01% | $0.116697 | 27.5554 | $3.22 | |
| BSC | <0.01% | <$0.000001 | 1,499,156,900.5386 | $2.55 | |
| BSC | <0.01% | <$0.000001 | 6,035,793.5205 | $2.32 | |
| BSC | <0.01% | $0.125669 | 17.9835 | $2.26 | |
| BSC | <0.01% | $0.810166 | 2.6673 | $2.16 | |
| BSC | <0.01% | $0.000585 | 3,580.8515 | $2.09 | |
| BSC | <0.01% | $0.011994 | 167.0107 | $2 | |
| BSC | <0.01% | $0.04768 | 41.8331 | $1.99 | |
| BSC | <0.01% | $0.000895 | 2,017.7778 | $1.81 | |
| BSC | <0.01% | $0.015149 | 109.117 | $1.65 | |
| BSC | <0.01% | $0.125125 | 10.4559 | $1.31 | |
| BSC | <0.01% | $0.015518 | 80.7309 | $1.25 | |
| BSC | <0.01% | $0.207742 | 5.6181 | $1.17 | |
| BSC | <0.01% | $0.000158 | 6,566.1781 | $1.04 | |
| BSC | <0.01% | $0.000114 | 7,459.3875 | $0.8479 | |
| BSC | <0.01% | $0.000067 | 12,166.3149 | $0.8179 | |
| BSC | <0.01% | $0.269612 | 2.3377 | $0.6302 | |
| BSC | <0.01% | $0.00036 | 1,560.9932 | $0.5625 | |
| BSC | <0.01% | $0.00 | 1,742.9915 | $0.00 | |
| BSC | <0.01% | $0.000087 | 4,801.4313 | $0.4183 | |
| BSC | <0.01% | $0.000015 | 18,923.1809 | $0.2743 | |
| BSC | <0.01% | $0.0016 | 119.0024 | $0.1903 | |
| BSC | <0.01% | $0.000811 | 226.2672 | $0.1836 | |
| BSC | <0.01% | $0.000029 | 5,977.421 | $0.1751 | |
| BSC | <0.01% | $0.00 | 83.9132 | $0.00 | |
| BSC | <0.01% | $0.000002 | 50,000 | $0.1169 | |
| ARB | 1.76% | $1 | 20,531.7785 | $20,531.78 | |
| ARB | 0.96% | $3,145.9 | 3.5559 | $11,186.42 | |
| ARB | 0.65% | $0.99993 | 7,581.04 | $7,580.51 | |
| ARB | 0.47% | $0.00 | 2,000,000 | $0.00 | |
| ARB | 0.47% | $0.208752 | 25,984.4972 | $5,424.32 | |
| ARB | 0.13% | $89,712 | 0.0171 | $1,533.96 | |
| ARB | 0.12% | $3,145.32 | 0.4484 | $1,410.39 | |
| ARB | 0.05% | $2.12 | 254.9916 | $540.58 | |
| ARB | <0.01% | $8.6 | 8.8483 | $76.1 | |
| ARB | <0.01% | $0.99993 | 2 | $2 | |
| POL | 3.20% | $0.999807 | 37,277.8882 | $37,270.69 | |
| POL | 0.65% | $0.999949 | 7,630.4018 | $7,630.01 | |
| POL | 0.30% | $0.120192 | 29,307.19 | $3,522.49 | |
| POL | 0.29% | $3,144.76 | 1.088 | $3,421.35 | |
| POL | 0.02% | $0.999949 | 285.8003 | $285.79 | |
| POL | 0.01% | $0.999569 | 134.4675 | $134.41 | |
| POL | <0.01% | <$0.000001 | 388,462,438.8142 | $1.83 | |
| POL | <0.01% | $0.000193 | 6,311.098 | $1.22 | |
| OP | 0.89% | $3,145.86 | 3.3068 | $10,402.76 | |
| OP | 0.88% | $1 | 10,303.7425 | $10,303.74 | |
| OP | 0.49% | $0.999876 | 5,752.0349 | $5,751.32 | |
| OP | 0.48% | $0.999876 | 5,587.2252 | $5,586.53 | |
| OP | 0.18% | $3,145.11 | 0.6701 | $2,107.66 | |
| OP | 0.08% | $0.309481 | 2,861.6277 | $885.62 | |
| OP | <0.01% | $0.578245 | 31.4397 | $18.18 | |
| OP | <0.01% | $0.012006 | 416.7423 | $5 | |
| AVAX | 1.06% | $1 | 12,366.622 | $12,368.41 | |
| AVAX | 0.62% | $0.99995 | 7,172.6478 | $7,172.29 | |
| AVAX | 0.30% | $1 | 3,525.2091 | $3,525.72 | |
| AVAX | 0.11% | $0.999896 | 1,256.3404 | $1,256.21 | |
| AVAX | 0.10% | $0.99995 | 1,190.7852 | $1,190.73 | |
| AVAX | 0.05% | $13.22 | 42.6535 | $563.82 | |
| AVAX | <0.01% | $8.6 | 9.1997 | $79.12 | |
| AVAX | <0.01% | $0.06771 | 464.7075 | $31.47 | |
| AVAX | <0.01% | $0.046338 | 361.9116 | $16.77 | |
| AVAX | <0.01% | $0.003451 | 3,578.3422 | $12.35 | |
| BASE | 0.03% | $3,144.82 | 0.1061 | $333.67 | |
| BASE | <0.01% | $0.999876 | 37.1407 | $37.14 | |
| BASE | <0.01% | $0.019895 | 320 | $6.37 | |
| BASE | <0.01% | $0.001274 | 346.6131 | $0.4416 | |
| BASE | <0.01% | $0.001946 | 143.3 | $0.2789 | |
| OPBNB | <0.01% | $890.23 | 0.00001 | $0.008902 |
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.