Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 215934472 | 607 days ago | 0.00148802 ETH | ||||
| 215934472 | 607 days ago | 0.00148802 ETH | ||||
| 215931277 | 607 days ago | 0.0015 ETH | ||||
| 215931277 | 607 days ago | 0.0015 ETH | ||||
| 215929976 | 607 days ago | 0.00260681 ETH | ||||
| 215929976 | 607 days ago | 0.00260681 ETH | ||||
| 215888618 | 607 days ago | 0.01768902 ETH | ||||
| 215888618 | 607 days ago | 0.01768902 ETH | ||||
| 215888516 | 607 days ago | 0.00099201 ETH | ||||
| 215888516 | 607 days ago | 0.00099201 ETH | ||||
| 215888351 | 607 days ago | 0.001 ETH | ||||
| 215888351 | 607 days ago | 0.001 ETH | ||||
| 215882057 | 607 days ago | 0.001 ETH | ||||
| 215882057 | 607 days ago | 0.001 ETH | ||||
| 215871629 | 607 days ago | 0.0005 ETH | ||||
| 215871629 | 607 days ago | 0.0005 ETH | ||||
| 215849105 | 607 days ago | 0.001 ETH | ||||
| 215849105 | 607 days ago | 0.001 ETH | ||||
| 215827741 | 607 days ago | 0.00100056 ETH | ||||
| 215827741 | 607 days ago | 0.00100056 ETH | ||||
| 215826936 | 607 days ago | 0.59947703 ETH | ||||
| 215826936 | 607 days ago | 0.59947703 ETH | ||||
| 215826434 | 607 days ago | 0.34812322 ETH | ||||
| 215826434 | 607 days ago | 0.34812322 ETH | ||||
| 215820257 | 607 days ago | 0.00320485 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CamelotExchangeRouter
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 10 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity >0.7.5;
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// Paraswap's Camelot router
contract CamelotExchangeRouter {
using SafeMath for uint256;
/*solhint-disable var-name-mixedcase*/
address private constant ETH_IDENTIFIER = address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE);
// Pool bits are 255-161: fee, 160: direction flag, 159-0: address
uint256 private constant FEE_OFFSET = 161;
uint256 private constant DIRECTION_FLAG = 0x0000000000000000000000010000000000000000000000000000000000000000;
/*solhint-enable var-name-mixedcase */
/*solhint-disable no-empty-blocks */
receive() external payable {}
/*solhint-enable no-empty-blocks */
function swap(
address tokenIn,
uint256 amountIn,
uint256 amountOutMin,
address weth,
uint256[] calldata pools
) external payable returns (uint256 tokensBought) {
return _swap(tokenIn, amountIn, amountOutMin, weth, pools);
}
function _swap(
address tokenIn,
uint256 amountIn,
uint256 amountOutMin,
address weth,
uint256[] memory pools
) private returns (uint256 tokensBought) {
uint256 pairs = pools.length;
require(pairs != 0, "At least one pool required");
bool tokensBoughtEth;
if (tokenIn == ETH_IDENTIFIER) {
require(amountIn == msg.value, "Incorrect amount of ETH sent");
IWETH(weth).deposit{ value: msg.value }();
require(IWETH(weth).transfer(address(pools[0]), msg.value));
} else {
TransferHelper.safeTransferFrom(tokenIn, msg.sender, address(pools[0]), amountIn);
tokensBoughtEth = weth != address(0);
}
tokensBought = amountIn;
for (uint256 i = 0; i < pairs; ++i) {
uint256 p = pools[i];
address pool = address(uint160(p));
bool direction = p & DIRECTION_FLAG == 0;
address tokenA = direction ? ICamelotPair(pool).token0() : ICamelotPair(pool).token1();
tokensBought = ICamelotPair(pool).getAmountOut(tokensBought, tokenA);
(uint256 amount0Out, uint256 amount1Out) = direction
? (uint256(0), tokensBought)
: (tokensBought, uint256(0));
ICamelotPair(pool).swap(
amount0Out,
amount1Out,
i + 1 == pairs ? (tokensBoughtEth ? address(this) : msg.sender) : address(pools[i + 1]),
""
);
}
if (tokensBoughtEth) {
IWETH(weth).withdraw(tokensBought);
TransferHelper.safeTransferETH(msg.sender, tokensBought);
}
require(tokensBought >= amountOutMin, "UniswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT");
}
}
abstract contract IWETH is IERC20 {
function deposit() external payable virtual;
function withdraw(uint256 amount) external virtual;
}
interface ICamelotPair {
function getAmountOut(uint256, address) external view returns (uint256);
function token0() external returns (address);
function token1() external returns (address);
function swap(
uint256 amount0Out,
uint256 amount1Out,
address to,
bytes calldata data
) external;
function stableSwap() external returns (bool);
}
library TransferHelper {
/// @notice Transfers tokens from the targeted address to the given destination
/// @notice Errors with 'STF' if transfer fails
/// @param token The contract address of the token to be transferred
/// @param from The originating address from which the tokens will be transferred
/// @param to The destination address of the transfer
/// @param value The amount to be transferred
function safeTransferFrom(
address token,
address from,
address to,
uint256 value
) internal {
(bool success, bytes memory data) =
token.call(abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'STF');
}
/// @notice Transfers tokens from msg.sender to a recipient
/// @dev Errors with ST if transfer fails
/// @param token The contract address of the token which will be transferred
/// @param to The recipient of the transfer
/// @param value The value of the transfer
function safeTransfer(
address token,
address to,
uint256 value
) internal {
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.transfer.selector, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'ST');
}
/// @notice Approves the stipulated contract to spend the given allowance in the given token
/// @dev Errors with 'SA' if transfer fails
/// @param token The contract address of the token to be approved
/// @param to The target of the approval
/// @param value The amount of the given token the target will be allowed to spend
function safeApprove(
address token,
address to,
uint256 value
) internal {
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.approve.selector, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'SA');
}
/// @notice Transfers ETH to the recipient address
/// @dev Fails with `STE`
/// @param to The destination of the transfer
/// @param value The value to be transferred
function safeTransferETH(address to, uint256 value) internal {
(bool success, ) = to.call{value: value}(new bytes(0));
require(success, 'STE');
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.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.7.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;
}
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 10
},
"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":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address","name":"weth","type":"address"},{"internalType":"uint256[]","name":"pools","type":"uint256[]"}],"name":"swap","outputs":[{"internalType":"uint256","name":"tokensBought","type":"uint256"}],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405234801561001057600080fd5b506108ef806100206000396000f3fe6080604052600436106100225760003560e01c806391a32b691461002e57610029565b3661002957005b600080fd5b6100c0600480360360a081101561004457600080fd5b6001600160a01b038235811692602081013592604082013592606083013516919081019060a081016080820135600160201b81111561008257600080fd5b82018360208201111561009457600080fd5b803590602001918460208302840111600160201b831117156100b557600080fd5b5090925090506100d2565b60408051918252519081900360200190f35b60006101148787878787878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061011f92505050565b979650505050505050565b805160009080610173576040805162461bcd60e51b815260206004820152601a602482015279105d081b19585cdd081bdb99481c1bdbdb081c995c5d5a5c995960321b604482015290519081900360640190fd5b60006001600160a01b03881673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156102e6573487146101ed576040805162461bcd60e51b815260206004820152601c60248201527b125b98dbdc9c9958dd08185b5bdd5b9d081bd988115512081cd95b9d60221b604482015290519081900360640190fd5b846001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561022857600080fd5b505af115801561023c573d6000803e3d6000fd5b5050505050846001600160a01b031663a9059cbb8560008151811061025d57fe5b6020026020010151346040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156102ac57600080fd5b505af11580156102c0573d6000803e3d6000fd5b505050506040513d60208110156102d657600080fd5b50516102e157600080fd5b610314565b6103068833866000815181106102f857fe5b60200260200101518a610642565b506001600160a01b03841615155b86925060005b8281101561058957600085828151811061033057fe5b6020908102919091010151905080600160a01b8116156000816103b957826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561038857600080fd5b505af115801561039c573d6000803e3d6000fd5b505050506040513d60208110156103b257600080fd5b5051610421565b826001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156103f457600080fd5b505af1158015610408573d6000803e3d6000fd5b505050506040513d602081101561041e57600080fd5b50515b9050826001600160a01b031663f140a35a89836040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b15801561047857600080fd5b505afa15801561048c573d6000803e3d6000fd5b505050506040513d60208110156104a257600080fd5b50519750600080836104b6578960006104ba565b60008a5b91509150846001600160a01b031663022c0d9f83838c8b600101146104f5578e8b600101815181106104e857fe5b6020026020010151610502565b8b6105005733610502565b305b6040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b0316815260200180602001828103825260008152602001945050505050600060405180830381600087803b15801561056057600080fd5b505af1158015610574573d6000803e3d6000fd5b5050505050505050505080600101905061031a565b5080156105f857846001600160a01b0316632e1a7d4d846040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156105d657600080fd5b505af11580156105ea573d6000803e3d6000fd5b505050506105f8338461079a565b858310156106375760405162461bcd60e51b815260040180806020018281038252602b81526020018061088f602b913960400191505060405180910390fd5b505095945050505050565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b178152925182516000948594938a169392918291908083835b602083106106c65780518252601f1990920191602091820191016106a7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610728576040519150601f19603f3d011682016040523d82523d6000602084013e61072d565b606091505b509150915081801561075b57508051158061075b575080806020019051602081101561075857600080fd5b50515b610792576040805162461bcd60e51b815260206004820152600360248201526229aa2360e91b604482015290519081900360640190fd5b505050505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b602083106107e65780518252601f1990920191602091820191016107c7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610848576040519150601f19603f3d011682016040523d82523d6000602084013e61084d565b606091505b5050905080610889576040805162461bcd60e51b815260206004820152600360248201526253544560e81b604482015290519081900360640190fd5b50505056fe556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54a2646970667358221220006803e14c8a62f0764709e6cd759625f6b8158511781ac5c0835df36c55e3f764736f6c63430007060033
Deployed Bytecode
0x6080604052600436106100225760003560e01c806391a32b691461002e57610029565b3661002957005b600080fd5b6100c0600480360360a081101561004457600080fd5b6001600160a01b038235811692602081013592604082013592606083013516919081019060a081016080820135600160201b81111561008257600080fd5b82018360208201111561009457600080fd5b803590602001918460208302840111600160201b831117156100b557600080fd5b5090925090506100d2565b60408051918252519081900360200190f35b60006101148787878787878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061011f92505050565b979650505050505050565b805160009080610173576040805162461bcd60e51b815260206004820152601a602482015279105d081b19585cdd081bdb99481c1bdbdb081c995c5d5a5c995960321b604482015290519081900360640190fd5b60006001600160a01b03881673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156102e6573487146101ed576040805162461bcd60e51b815260206004820152601c60248201527b125b98dbdc9c9958dd08185b5bdd5b9d081bd988115512081cd95b9d60221b604482015290519081900360640190fd5b846001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561022857600080fd5b505af115801561023c573d6000803e3d6000fd5b5050505050846001600160a01b031663a9059cbb8560008151811061025d57fe5b6020026020010151346040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156102ac57600080fd5b505af11580156102c0573d6000803e3d6000fd5b505050506040513d60208110156102d657600080fd5b50516102e157600080fd5b610314565b6103068833866000815181106102f857fe5b60200260200101518a610642565b506001600160a01b03841615155b86925060005b8281101561058957600085828151811061033057fe5b6020908102919091010151905080600160a01b8116156000816103b957826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561038857600080fd5b505af115801561039c573d6000803e3d6000fd5b505050506040513d60208110156103b257600080fd5b5051610421565b826001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156103f457600080fd5b505af1158015610408573d6000803e3d6000fd5b505050506040513d602081101561041e57600080fd5b50515b9050826001600160a01b031663f140a35a89836040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b15801561047857600080fd5b505afa15801561048c573d6000803e3d6000fd5b505050506040513d60208110156104a257600080fd5b50519750600080836104b6578960006104ba565b60008a5b91509150846001600160a01b031663022c0d9f83838c8b600101146104f5578e8b600101815181106104e857fe5b6020026020010151610502565b8b6105005733610502565b305b6040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b0316815260200180602001828103825260008152602001945050505050600060405180830381600087803b15801561056057600080fd5b505af1158015610574573d6000803e3d6000fd5b5050505050505050505080600101905061031a565b5080156105f857846001600160a01b0316632e1a7d4d846040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156105d657600080fd5b505af11580156105ea573d6000803e3d6000fd5b505050506105f8338461079a565b858310156106375760405162461bcd60e51b815260040180806020018281038252602b81526020018061088f602b913960400191505060405180910390fd5b505095945050505050565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b178152925182516000948594938a169392918291908083835b602083106106c65780518252601f1990920191602091820191016106a7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610728576040519150601f19603f3d011682016040523d82523d6000602084013e61072d565b606091505b509150915081801561075b57508051158061075b575080806020019051602081101561075857600080fd5b50515b610792576040805162461bcd60e51b815260206004820152600360248201526229aa2360e91b604482015290519081900360640190fd5b505050505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b602083106107e65780518252601f1990920191602091820191016107c7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610848576040519150601f19603f3d011682016040523d82523d6000602084013e61084d565b606091505b5050905080610889576040805162461bcd60e51b815260206004820152600360248201526253544560e81b604482015290519081900360640190fd5b50505056fe556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54a2646970667358221220006803e14c8a62f0764709e6cd759625f6b8158511781ac5c0835df36c55e3f764736f6c63430007060033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.