Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
(+1 Pending)
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| 0x691cf4d947892554605710bb4ef31a54588cd5baa80f3bd0868e410ecd311ea3 | Transfer | (pending) | 3 days ago | IN | 0 ETH | (Pending) |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PMMAdapter
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 1 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
interface IPMMProtocolOld {
struct OrderRFQOld {
uint256 rfqId; // 0x00
uint256 expiry; // 0x20
address makerAsset; // 0x40
address takerAsset; // 0x60
address makerAddress; // 0x80
uint256 makerAmount; // 0xa0
uint256 takerAmount; // 0xc0
bool usePermit2; // 0xe0;
}
function fillOrderRFQTo(
OrderRFQOld memory order,
bytes calldata signature,
uint256 flagsAndAmount,
address target
) external returns (uint256, uint256, bytes32);
}
interface IPMMProtocol {
struct OrderRFQ {
uint256 rfqId; // 0x00
uint256 expiry; // 0x20
address makerAsset; // 0x40
address takerAsset; // 0x60
address makerAddress; // 0x80
uint256 makerAmount; // 0xa0
uint256 takerAmount; // 0xc0
bool usePermit2; // 0xe0;
bytes permit2Signature; // 0xf0;
bytes32 permit2Witness;
string permit2WitnessType;
}
function fillOrderRFQTo(
OrderRFQ memory order,
bytes calldata signature,
uint256 flagsAndAmount,
address target
) external returns (uint256, uint256, bytes32);
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
contract PMMAdapter {
using Strings for uint256;
uint256 internal constant ORIGIN_PAYER =
0x3ca20afc2ccc0000000000000000000000000000000000000000000000000000;
uint256 constant ADDRESS_MASK = 0x000000000000000000000000ffffffffffffffffffffffffffffffffffffffff;
enum SignatureType {
EIP712,
EIP1271
}
constructor() {}
function _PMMSwap(
address to,
address pool,
bytes memory moreInfo,
uint256 payerOrigin
) internal {
(bytes memory orderInfo, bytes memory signature, uint256 signatureType, uint256 orderType) = abi.decode(moreInfo, (bytes, bytes, uint256, uint256));
if (orderType == 1) {
_executeOldOrder(to, pool, orderInfo, signature, signatureType, payerOrigin);
} else {
_executeNewOrder(to, pool, orderInfo, signature, signatureType, payerOrigin);
}
}
function _executeOldOrder(
address to,
address pool,
bytes memory orderInfo,
bytes memory signature,
uint256 signatureType,
uint256 payerOrigin
) internal {
IPMMProtocolOld.OrderRFQOld memory order = abi.decode(orderInfo, (IPMMProtocolOld.OrderRFQOld));
uint256 flagsAndAmount;
{
uint256 amount = IERC20(order.takerAsset).balanceOf(address(this));
if (amount > order.takerAmount) {
amount = order.takerAmount;
}
require(amount > 0, "Zero balance of PMM adapter");
SafeERC20.safeApprove(IERC20(order.takerAsset), pool, amount);
flagsAndAmount = (signatureType == uint256(SignatureType.EIP1271) ? 1 << 254 : 0) + amount;
}
_call(
pool,
abi.encodeWithSelector(
IPMMProtocolOld.fillOrderRFQTo.selector,
order,
signature,
flagsAndAmount,
to
),
order.rfqId
);
_handleRefund(order.takerAsset, payerOrigin);
}
function _executeNewOrder(
address to,
address pool,
bytes memory orderInfo,
bytes memory signature,
uint256 signatureType,
uint256 payerOrigin
) internal {
IPMMProtocol.OrderRFQ memory order = abi.decode(orderInfo, (IPMMProtocol.OrderRFQ));
uint256 flagsAndAmount;
{
uint256 amount = IERC20(order.takerAsset).balanceOf(address(this));
if (amount > order.takerAmount) {
amount = order.takerAmount;
}
require(amount > 0, "Zero balance of PMM adapter");
SafeERC20.safeApprove(IERC20(order.takerAsset), pool, amount);
flagsAndAmount = (signatureType == uint256(SignatureType.EIP1271) ? 1 << 254 : 0) + amount;
}
_call(
pool,
abi.encodeWithSelector(
IPMMProtocol.fillOrderRFQTo.selector,
order,
signature,
flagsAndAmount,
to
),
order.rfqId
);
_handleRefund(order.takerAsset, payerOrigin);
}
function _handleRefund(address takerAsset, uint256 payerOrigin) internal {
address _payerOrigin;
if ((payerOrigin & ORIGIN_PAYER) == ORIGIN_PAYER) {
_payerOrigin = address(uint160(uint256(payerOrigin) & ADDRESS_MASK));
}
uint256 amountLeft = IERC20(takerAsset).balanceOf(address(this));
if (amountLeft > 0 && _payerOrigin != address(0)) {
SafeERC20.safeTransfer(
IERC20(takerAsset),
_payerOrigin,
amountLeft
);
}
}
function sellBase(
address to,
address pool,
bytes memory moreInfo
) external {
uint256 payerOrigin;
assembly {
let size := calldatasize()
payerOrigin := calldataload(sub(size, 32))
}
_PMMSwap(to, pool, moreInfo, payerOrigin);
}
function sellQuote(
address to,
address pool,
bytes memory moreInfo
) external {
uint256 payerOrigin;
assembly {
let size := calldatasize()
payerOrigin := calldataload(sub(size, 32))
}
_PMMSwap(to, pool, moreInfo, payerOrigin);
}
function _call(address target, bytes memory data, uint256 rfqId) internal {
(bool success, bytes memory result) = target.call(data);
if (success) {
return;
}
if (result.length < 4) {
// revert("RFQ: Unknown error");
revert(
string(
abi.encodePacked("RFQ: Unknown error ", rfqId.toString())
)
);
}
bytes4 selector;
assembly {
selector := mload(add(result, 0x20))
}
// All cases tested - grouped in scoped blocks to prevent stack too deep
{
if (selector == 0x7d0bdf81) {
// RFQ_InvalidMsgValue(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_InvalidMsgValue ", rfqId.toString())
)
);
} else if (selector == 0x1952c5f3) {
// RFQ_ETHTransferFailed(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_ETHTransferFailed ", rfqId.toString())
)
);
} else if (selector == 0x8fde5c60) {
// RFQ_ZeroTargetIsForbidden(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_ZeroTargetIsForbidden ", rfqId.toString())
)
);
} else if (selector == 0x87a26f41) {
// RFQ_BadSignature(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_BadSignature ", rfqId.toString())
)
);
} else if (selector == 0x84935d57) {
// RFQ_OrderExpired(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_OrderExpired ", rfqId.toString())
)
);
}
}
{
if (selector == 0x48872c38) {
// RFQ_MakerAmountExceeded(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_MakerAmountExceeded ", rfqId.toString())
)
);
} else if (selector == 0x51c6158e) {
// RFQ_TakerAmountExceeded(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_TakerAmountExceeded ", rfqId.toString())
)
);
} else if (selector == 0x94d42471) {
// RFQ_SwapWithZeroAmount(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_SwapWithZeroAmount ", rfqId.toString())
)
);
} else if (selector == 0x6fe432b3) {
// RFQ_InvalidatedOrder(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_InvalidatedOrder ", rfqId.toString())
)
);
} else if (selector == 0xf4a08977) {
// RFQ_EthDepositRejected()
// Won't be triggerred here unless `data` is empty
revert("RFQ_EthDepositRejected");
}
}
{
if (selector == 0xf4059071) {
// SafeTransferFromFailed()
revert(
string(
abi.encodePacked("RFQ_SafeTransferFromFailed ", rfqId.toString())
)
);
} else if (selector == 0x8112e119) {
// Permit2TransferAmountTooHigh()
revert(
string(
abi.encodePacked("RFQ_Permit2TransferAmountTooHigh ", rfqId.toString())
)
);
} else if (selector == 0xfb7f5079) {
// SafeTransferFailed()
revert(
string(
abi.encodePacked("RFQ_SafeTransferFailed ", rfqId.toString())
)
);
} else if (selector == 0x19be9a90) {
// ForceApproveFailed()
revert(
string(
abi.encodePacked("RFQ_ForceApproveFailed ", rfqId.toString())
)
);
} else if (selector == 0x8216cd1c) {
// SafeIncreaseAllowanceFailed()
revert(
string(
abi.encodePacked("RFQ_SafeIncreaseAllowanceFailed ", rfqId.toString())
)
);
}
}
{
if (selector == 0x840bdf26) {
// SafeDecreaseAllowanceFailed()
revert(
string(
abi.encodePacked("RFQ_SafeDecreaseAllowanceFailed ", rfqId.toString())
)
);
} else if (selector == 0x68275857) {
// SafePermitBadLength()
revert(
string(
abi.encodePacked("RFQ_SafePermitBadLength ", rfqId.toString())
)
);
} else if (selector == 0xc6f643b2) {
// RFQ_AmountTooLarge(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_AmountTooLarge ", rfqId.toString())
)
);
} else if (selector == 0xa1475d7b) {
// RFQ_SettlementAmountTooSmall(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_SettlementAmountTooSmall ", rfqId.toString())
)
);
} else if (selector == 0x589584f5) {
// RFQ_OrderAlreadyCancelledOrUsed(uint256 rfqId);
revert(
string(
abi.encodePacked("RFQ_OrderAlreadyCancelledOrUsed ", rfqId.toString())
)
);
} else {
revert(
string(
abi.encodePacked("RFQ_Failed ", rfqId.toString())
)
);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/IERC20Permit.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 Address for address;
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
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'
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));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @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");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
/**
* @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).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// 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 cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return
success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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");
(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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}{
"remappings": [
"@ensdomains/=node_modules/@ensdomains/",
"@openzeppelin/=node_modules/@openzeppelin/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"eth-gas-reporter/=node_modules/eth-gas-reporter/",
"forge-std/=lib/forge-std/src/",
"hardhat/=node_modules/hardhat/",
"@dex/=contracts/8/",
"@uniswap/=node_modules/@uniswap/",
"@zetachain/=node_modules/@zetachain/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/"
],
"optimizer": {
"enabled": true,
"runs": 1
},
"metadata": {
"useLiteralContent": true,
"bytecodeHash": "ipfs"
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "london",
"viaIR": false
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"pool","type":"address"},{"internalType":"bytes","name":"moreInfo","type":"bytes"}],"name":"sellBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"pool","type":"address"},{"internalType":"bytes","name":"moreInfo","type":"bytes"}],"name":"sellQuote","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b506119ba806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806330e6ae311461003b5780636f7929f21461003b575b600080fd5b61004e610049366004610ea0565b610050565b005b601f1936013561006284848484610068565b50505050565b600080600080858060200190518101906100829190610fad565b9350935093509350806001036100a5576100a088888686868a6100bd565b6100b3565b6100b388888686868a610223565b5050505050505050565b6000848060200190518101906100d39190611040565b905060008082606001516001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161010891906110fa565b602060405180830381865afa158015610125573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610149919061110e565b90508260c0015181111561015e575060c08201515b600081116101875760405162461bcd60e51b815260040161017e90611127565b60405180910390fd5b61019683606001518983610339565b80600186146101a65760006101ac565b600160fe1b5b6101b6919061115c565b9150506102158763a806e57e60e01b8488858d6040516024016101dc94939291906111a9565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091528451610479565b6100b382606001518461094b565b6000848060200190518101906102399190611246565b905060008082606001516001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161026e91906110fa565b602060405180830381865afa15801561028b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102af919061110e565b90508260c001518111156102c4575060c08201515b600081116102e45760405162461bcd60e51b815260040161017e90611127565b6102f383606001518983610339565b8060018614610303576000610309565b600160fe1b5b610313919061115c565b91505061021587631d5898f460e01b8488858d6040516024016101dc9493929190611355565b8015806103b35750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561038d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b1919061110e565b155b61041e5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161017e565b6104748363095ea7b360e01b848460405160240161043d92919061144b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610a05565b505050565b600080846001600160a01b0316846040516104949190611464565b6000604051808303816000865af19150503d80600081146104d1576040519150601f19603f3d011682016040523d82523d6000602084013e6104d6565b606091505b509150915081156104e8575050505050565b600481511015610531576104fb83610ada565b60405160200161050b9190611480565b60408051601f198184030181529082905262461bcd60e51b825261017e916004016114bb565b60208101516001600160e01b03198116637d0bdf8160e01b036105675761055784610ada565b60405160200161050b91906114d5565b6001600160e01b03198116631952c5f360e01b036105985761058884610ada565b60405160200161050b9190611511565b6001600160e01b0319811663047ef2e360e51b036105c9576105b984610ada565b60405160200161050b919061154f565b6001600160e01b031981166387a26f4160e01b036105fa576105ea84610ada565b60405160200161050b9190611591565b6001600160e01b031981166384935d5760e01b0361062b5761061b84610ada565b60405160200161050b91906115ca565b6001600160e01b03198116630910e58760e31b0361065c5761064c84610ada565b60405160200161050b91906115f6565b6001600160e01b031981166328e30ac760e11b0361068d5761067d84610ada565b60405160200161050b9190611636565b6001600160e01b031981166394d4247160e01b036106be576106ae84610ada565b60405160200161050b9190611669565b6001600160e01b03198116636fe432b360e01b036106ef576106df84610ada565b60405160200161050b91906116a8565b6001600160e01b0319811663f4a0897760e01b036107485760405162461bcd60e51b815260206004820152601660248201527514919457d15d1a11195c1bdcda5d14995a9958dd195960521b604482015260640161017e565b6001600160e01b0319811663f405907160e01b036107795761076984610ada565b60405160200161050b91906116e5565b6001600160e01b03198116638112e11960e01b036107aa5761079a84610ada565b60405160200161050b9190611728565b6001600160e01b0319811663fb7f507960e01b036107db576107cb84610ada565b60405160200161050b9190611777565b6001600160e01b0319811663019be9a960e41b0361080c576107fc84610ada565b60405160200161050b91906117a9565b6001600160e01b03198116632085b34760e21b0361083d5761082d84610ada565b60405160200161050b91906117db565b6001600160e01b03198116634205ef9360e11b0361086e5761085e84610ada565b60405160200161050b9190611820565b6001600160e01b03198116636827585760e01b0361089f5761088f84610ada565b60405160200161050b9190611858565b6001600160e01b0319811663637b21d960e11b036108d0576108c084610ada565b60405160200161050b919061188b565b6001600160e01b0319811663a1475d7b60e01b03610901576108f184610ada565b60405160200161050b91906118b9565b6001600160e01b0319811663589584f560e01b036109325761092284610ada565b60405160200161050b91906118fe565b61093b84610ada565b60405160200161050b9190611936565b6000650f2882bf0b3360d21b8083160361096b57506001600160a01b0381165b6040516370a0823160e01b81526000906001600160a01b038516906370a082319061099a9030906004016110fa565b602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db919061110e565b90506000811180156109f557506001600160a01b03821615155b1561006257610062848383610b6c565b6000610a5a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b8b9092919063ffffffff16565b9050805160001480610a7b575080806020019051810190610a7b9190611969565b6104745760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161017e565b60606000610ae783610ba2565b60010190506000816001600160401b03811115610b0657610b06610e0a565b6040519080825280601f01601f191660200182016040528015610b30576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610b3a57509392505050565b6104748363a9059cbb60e01b848460405160240161043d92919061144b565b6060610b9a8484600085610c79565b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610be15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310610c0b576904ee2d6d415b85acef8160201b830492506020015b662386f26fc100008310610c2957662386f26fc10000830492506010015b6305f5e1008310610c41576305f5e100830492506008015b6127108310610c5557612710830492506004015b60648310610c67576064830492506002015b600a8310610c73576001015b92915050565b606082471015610cda5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161017e565b600080866001600160a01b03168587604051610cf69190611464565b60006040518083038185875af1925050503d8060008114610d33576040519150601f19603f3d011682016040523d82523d6000602084013e610d38565b606091505b5091509150610d4987838387610d54565b979650505050505050565b60608315610dc3578251600003610dbc576001600160a01b0385163b610dbc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161017e565b5081610b9a565b610b9a8383815115610dd85781518083602001fd5b8060405162461bcd60e51b815260040161017e91906114bb565b6001600160a01b0381168114610e0757600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b60405161016081016001600160401b0381118282101715610e4357610e43610e0a565b60405290565b604051601f8201601f191681016001600160401b0381118282101715610e7157610e71610e0a565b604052919050565b60006001600160401b03821115610e9257610e92610e0a565b50601f01601f191660200190565b600080600060608486031215610eb557600080fd5b8335610ec081610df2565b92506020840135610ed081610df2565b915060408401356001600160401b03811115610eeb57600080fd5b8401601f81018613610efc57600080fd5b8035610f0f610f0a82610e79565b610e49565b818152876020838501011115610f2457600080fd5b816020840160208301376000602083830101528093505050509250925092565b60005b83811015610f5f578181015183820152602001610f47565b50506000910152565b600082601f830112610f7957600080fd5b8151610f87610f0a82610e79565b818152846020838601011115610f9c57600080fd5b610b9a826020830160208701610f44565b60008060008060808587031215610fc357600080fd5b84516001600160401b0380821115610fda57600080fd5b610fe688838901610f68565b95506020870151915080821115610ffc57600080fd5b5061100987828801610f68565b604087015160609097015195989097509350505050565b805161102b81610df2565b919050565b8051801515811461102b57600080fd5b600061010080838503121561105457600080fd5b604051908101906001600160401b038211818310171561107657611076610e0a565b8160405283518152602084015160208201526040840151915061109882610df2565b8160408201526110aa60608501611020565b60608201526110bb60808501611020565b608082015260a084015160a082015260c084015160c08201526110e060e08501611030565b60e0820152949350505050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b60006020828403121561112057600080fd5b5051919050565b6020808252601b908201527a2d32b937903130b630b731b29037b3102826a69030b230b83a32b960291b604082015260600190565b80820180821115610c7357634e487b7160e01b600052601160045260246000fd5b60008151808452611195816020860160208601610f44565b601f01601f19169290920160200192915050565b60006101608651835260208701516020840152604087015160018060a01b0380821660408601528060608a01511660608601528060808a0151166080860152505060a087015160a084015260c087015160c084015260e087015161121160e085018215159052565b50806101008401526112258184018761117d565b9150508361012083015261123d6101408301846110ed565b95945050505050565b60006020828403121561125857600080fd5b81516001600160401b038082111561126f57600080fd5b90830190610160828603121561128457600080fd5b61128c610e20565b82518152602083015160208201526112a660408401611020565b60408201526112b760608401611020565b60608201526112c860808401611020565b608082015260a083015160a082015260c083015160c08201526112ed60e08401611030565b60e0820152610100808401518381111561130657600080fd5b61131288828701610f68565b828401525050610120808401518183015250610140808401518381111561133857600080fd5b61134488828701610f68565b918301919091525095945050505050565b6080815284516080820152602085015160a08201526000604086015161137e60c08401826110ed565b50606086015161139160e08401826110ed565b5060808601516101006113a6818501836110ed565b60a08801519150610120828186015260c08901519250610140838187015260e08a015193506101606113db8188018615159052565b838b0151945080610180880152506113f76101e087018561117d565b918a01516101a0870152890151858203607f19016101c08701529092509050611420828261117d565b9150508281036020840152611435818761117d565b91505083604083015261123d60608301846110ed565b6001600160a01b03929092168252602082015260400190565b60008251611476818460208701610f44565b9190910192915050565b7202923289d102ab735b737bbb71032b93937b91606d1b8152600082516114ae816013850160208701610f44565b9190910160130192915050565b6020815260006114ce602083018461117d565b9392505050565b730292328afa4b73b30b634b226b9b3ab30b63ab2960651b815260008251611504816014850160208701610f44565b9190910160140192915050565b750292328afa2aa242a3930b739b332b92330b4b632b2160551b815260008251611542816016850160208701610f44565b9190910160160192915050565b790292328afad32b937aa30b933b2ba24b9a337b93134b23232b7160351b81526000825161158481601a850160208701610f44565b91909101601a0192915050565b700292328afa130b229b4b3b730ba3ab9329607d1b8152600082516115bd816011850160208701610f44565b9190910160110192915050565b700292328afa7b93232b922bc3834b932b21607d1b8152600082516115bd816011850160208701610f44565b770292328afa6b0b5b2b920b6b7bab73a22bc31b2b2b232b2160451b815260008251611629816018850160208701610f44565b9190910160180192915050565b770292328afaa30b5b2b920b6b7bab73a22bc31b2b2b232b2160451b815260008251611629816018850160208701610f44565b760292328afa9bbb0b82bb4ba342d32b937a0b6b7bab73a1604d1b81526000825161169b816017850160208701610f44565b9190910160170192915050565b740292328afa4b73b30b634b230ba32b227b93232b91605d1b8152600082516116d8816015850160208701610f44565b9190910160150192915050565b7a0292328afa9b0b332aa3930b739b332b9233937b6a330b4b632b21602d1b81526000825161171b81601b850160208701610f44565b91909101601b0192915050565b7f5246515f5065726d6974325472616e73666572416d6f756e74546f6f486967688152600160fd1b60208201526000825161176a816021850160208701610f44565b9190910160210192915050565b760292328afa9b0b332aa3930b739b332b92330b4b632b21604d1b81526000825161169b816017850160208701610f44565b760292328afa337b931b2a0b8383937bb32a330b4b632b21604d1b81526000825161169b816017850160208701610f44565b7f5246515f53616665496e637265617365416c6c6f77616e63654661696c656420815260008251611813816020850160208701610f44565b9190910160200192915050565b7f5246515f536166654465637265617365416c6c6f77616e63654661696c656420815260008251611813816020850160208701610f44565b770292328afa9b0b332a832b936b4ba2130b22632b733ba34160451b815260008251611629816018850160208701610f44565b720292328afa0b6b7bab73a2a37b7a630b933b29606d1b8152600082516114ae816013850160208701610f44565b7f5246515f536574746c656d656e74416d6f756e74546f6f536d616c6c200000008152600082516118f181601d850160208701610f44565b91909101601d0192915050565b7f5246515f4f72646572416c726561647943616e63656c6c65644f725573656420815260008251611813816020850160208701610f44565b6a0292328afa330b4b632b2160ad1b81526000825161195c81600b850160208701610f44565b91909101600b0192915050565b60006020828403121561197b57600080fd5b6114ce8261103056fea2646970667358221220b6f3554381dcafa657891f44b9088503f17009e98b8f44a6b44cc27d205ff84464736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100365760003560e01c806330e6ae311461003b5780636f7929f21461003b575b600080fd5b61004e610049366004610ea0565b610050565b005b601f1936013561006284848484610068565b50505050565b600080600080858060200190518101906100829190610fad565b9350935093509350806001036100a5576100a088888686868a6100bd565b6100b3565b6100b388888686868a610223565b5050505050505050565b6000848060200190518101906100d39190611040565b905060008082606001516001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161010891906110fa565b602060405180830381865afa158015610125573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610149919061110e565b90508260c0015181111561015e575060c08201515b600081116101875760405162461bcd60e51b815260040161017e90611127565b60405180910390fd5b61019683606001518983610339565b80600186146101a65760006101ac565b600160fe1b5b6101b6919061115c565b9150506102158763a806e57e60e01b8488858d6040516024016101dc94939291906111a9565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091528451610479565b6100b382606001518461094b565b6000848060200190518101906102399190611246565b905060008082606001516001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161026e91906110fa565b602060405180830381865afa15801561028b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102af919061110e565b90508260c001518111156102c4575060c08201515b600081116102e45760405162461bcd60e51b815260040161017e90611127565b6102f383606001518983610339565b8060018614610303576000610309565b600160fe1b5b610313919061115c565b91505061021587631d5898f460e01b8488858d6040516024016101dc9493929190611355565b8015806103b35750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561038d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b1919061110e565b155b61041e5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161017e565b6104748363095ea7b360e01b848460405160240161043d92919061144b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610a05565b505050565b600080846001600160a01b0316846040516104949190611464565b6000604051808303816000865af19150503d80600081146104d1576040519150601f19603f3d011682016040523d82523d6000602084013e6104d6565b606091505b509150915081156104e8575050505050565b600481511015610531576104fb83610ada565b60405160200161050b9190611480565b60408051601f198184030181529082905262461bcd60e51b825261017e916004016114bb565b60208101516001600160e01b03198116637d0bdf8160e01b036105675761055784610ada565b60405160200161050b91906114d5565b6001600160e01b03198116631952c5f360e01b036105985761058884610ada565b60405160200161050b9190611511565b6001600160e01b0319811663047ef2e360e51b036105c9576105b984610ada565b60405160200161050b919061154f565b6001600160e01b031981166387a26f4160e01b036105fa576105ea84610ada565b60405160200161050b9190611591565b6001600160e01b031981166384935d5760e01b0361062b5761061b84610ada565b60405160200161050b91906115ca565b6001600160e01b03198116630910e58760e31b0361065c5761064c84610ada565b60405160200161050b91906115f6565b6001600160e01b031981166328e30ac760e11b0361068d5761067d84610ada565b60405160200161050b9190611636565b6001600160e01b031981166394d4247160e01b036106be576106ae84610ada565b60405160200161050b9190611669565b6001600160e01b03198116636fe432b360e01b036106ef576106df84610ada565b60405160200161050b91906116a8565b6001600160e01b0319811663f4a0897760e01b036107485760405162461bcd60e51b815260206004820152601660248201527514919457d15d1a11195c1bdcda5d14995a9958dd195960521b604482015260640161017e565b6001600160e01b0319811663f405907160e01b036107795761076984610ada565b60405160200161050b91906116e5565b6001600160e01b03198116638112e11960e01b036107aa5761079a84610ada565b60405160200161050b9190611728565b6001600160e01b0319811663fb7f507960e01b036107db576107cb84610ada565b60405160200161050b9190611777565b6001600160e01b0319811663019be9a960e41b0361080c576107fc84610ada565b60405160200161050b91906117a9565b6001600160e01b03198116632085b34760e21b0361083d5761082d84610ada565b60405160200161050b91906117db565b6001600160e01b03198116634205ef9360e11b0361086e5761085e84610ada565b60405160200161050b9190611820565b6001600160e01b03198116636827585760e01b0361089f5761088f84610ada565b60405160200161050b9190611858565b6001600160e01b0319811663637b21d960e11b036108d0576108c084610ada565b60405160200161050b919061188b565b6001600160e01b0319811663a1475d7b60e01b03610901576108f184610ada565b60405160200161050b91906118b9565b6001600160e01b0319811663589584f560e01b036109325761092284610ada565b60405160200161050b91906118fe565b61093b84610ada565b60405160200161050b9190611936565b6000650f2882bf0b3360d21b8083160361096b57506001600160a01b0381165b6040516370a0823160e01b81526000906001600160a01b038516906370a082319061099a9030906004016110fa565b602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db919061110e565b90506000811180156109f557506001600160a01b03821615155b1561006257610062848383610b6c565b6000610a5a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b8b9092919063ffffffff16565b9050805160001480610a7b575080806020019051810190610a7b9190611969565b6104745760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161017e565b60606000610ae783610ba2565b60010190506000816001600160401b03811115610b0657610b06610e0a565b6040519080825280601f01601f191660200182016040528015610b30576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610b3a57509392505050565b6104748363a9059cbb60e01b848460405160240161043d92919061144b565b6060610b9a8484600085610c79565b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610be15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310610c0b576904ee2d6d415b85acef8160201b830492506020015b662386f26fc100008310610c2957662386f26fc10000830492506010015b6305f5e1008310610c41576305f5e100830492506008015b6127108310610c5557612710830492506004015b60648310610c67576064830492506002015b600a8310610c73576001015b92915050565b606082471015610cda5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161017e565b600080866001600160a01b03168587604051610cf69190611464565b60006040518083038185875af1925050503d8060008114610d33576040519150601f19603f3d011682016040523d82523d6000602084013e610d38565b606091505b5091509150610d4987838387610d54565b979650505050505050565b60608315610dc3578251600003610dbc576001600160a01b0385163b610dbc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161017e565b5081610b9a565b610b9a8383815115610dd85781518083602001fd5b8060405162461bcd60e51b815260040161017e91906114bb565b6001600160a01b0381168114610e0757600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b60405161016081016001600160401b0381118282101715610e4357610e43610e0a565b60405290565b604051601f8201601f191681016001600160401b0381118282101715610e7157610e71610e0a565b604052919050565b60006001600160401b03821115610e9257610e92610e0a565b50601f01601f191660200190565b600080600060608486031215610eb557600080fd5b8335610ec081610df2565b92506020840135610ed081610df2565b915060408401356001600160401b03811115610eeb57600080fd5b8401601f81018613610efc57600080fd5b8035610f0f610f0a82610e79565b610e49565b818152876020838501011115610f2457600080fd5b816020840160208301376000602083830101528093505050509250925092565b60005b83811015610f5f578181015183820152602001610f47565b50506000910152565b600082601f830112610f7957600080fd5b8151610f87610f0a82610e79565b818152846020838601011115610f9c57600080fd5b610b9a826020830160208701610f44565b60008060008060808587031215610fc357600080fd5b84516001600160401b0380821115610fda57600080fd5b610fe688838901610f68565b95506020870151915080821115610ffc57600080fd5b5061100987828801610f68565b604087015160609097015195989097509350505050565b805161102b81610df2565b919050565b8051801515811461102b57600080fd5b600061010080838503121561105457600080fd5b604051908101906001600160401b038211818310171561107657611076610e0a565b8160405283518152602084015160208201526040840151915061109882610df2565b8160408201526110aa60608501611020565b60608201526110bb60808501611020565b608082015260a084015160a082015260c084015160c08201526110e060e08501611030565b60e0820152949350505050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b60006020828403121561112057600080fd5b5051919050565b6020808252601b908201527a2d32b937903130b630b731b29037b3102826a69030b230b83a32b960291b604082015260600190565b80820180821115610c7357634e487b7160e01b600052601160045260246000fd5b60008151808452611195816020860160208601610f44565b601f01601f19169290920160200192915050565b60006101608651835260208701516020840152604087015160018060a01b0380821660408601528060608a01511660608601528060808a0151166080860152505060a087015160a084015260c087015160c084015260e087015161121160e085018215159052565b50806101008401526112258184018761117d565b9150508361012083015261123d6101408301846110ed565b95945050505050565b60006020828403121561125857600080fd5b81516001600160401b038082111561126f57600080fd5b90830190610160828603121561128457600080fd5b61128c610e20565b82518152602083015160208201526112a660408401611020565b60408201526112b760608401611020565b60608201526112c860808401611020565b608082015260a083015160a082015260c083015160c08201526112ed60e08401611030565b60e0820152610100808401518381111561130657600080fd5b61131288828701610f68565b828401525050610120808401518183015250610140808401518381111561133857600080fd5b61134488828701610f68565b918301919091525095945050505050565b6080815284516080820152602085015160a08201526000604086015161137e60c08401826110ed565b50606086015161139160e08401826110ed565b5060808601516101006113a6818501836110ed565b60a08801519150610120828186015260c08901519250610140838187015260e08a015193506101606113db8188018615159052565b838b0151945080610180880152506113f76101e087018561117d565b918a01516101a0870152890151858203607f19016101c08701529092509050611420828261117d565b9150508281036020840152611435818761117d565b91505083604083015261123d60608301846110ed565b6001600160a01b03929092168252602082015260400190565b60008251611476818460208701610f44565b9190910192915050565b7202923289d102ab735b737bbb71032b93937b91606d1b8152600082516114ae816013850160208701610f44565b9190910160130192915050565b6020815260006114ce602083018461117d565b9392505050565b730292328afa4b73b30b634b226b9b3ab30b63ab2960651b815260008251611504816014850160208701610f44565b9190910160140192915050565b750292328afa2aa242a3930b739b332b92330b4b632b2160551b815260008251611542816016850160208701610f44565b9190910160160192915050565b790292328afad32b937aa30b933b2ba24b9a337b93134b23232b7160351b81526000825161158481601a850160208701610f44565b91909101601a0192915050565b700292328afa130b229b4b3b730ba3ab9329607d1b8152600082516115bd816011850160208701610f44565b9190910160110192915050565b700292328afa7b93232b922bc3834b932b21607d1b8152600082516115bd816011850160208701610f44565b770292328afa6b0b5b2b920b6b7bab73a22bc31b2b2b232b2160451b815260008251611629816018850160208701610f44565b9190910160180192915050565b770292328afaa30b5b2b920b6b7bab73a22bc31b2b2b232b2160451b815260008251611629816018850160208701610f44565b760292328afa9bbb0b82bb4ba342d32b937a0b6b7bab73a1604d1b81526000825161169b816017850160208701610f44565b9190910160170192915050565b740292328afa4b73b30b634b230ba32b227b93232b91605d1b8152600082516116d8816015850160208701610f44565b9190910160150192915050565b7a0292328afa9b0b332aa3930b739b332b9233937b6a330b4b632b21602d1b81526000825161171b81601b850160208701610f44565b91909101601b0192915050565b7f5246515f5065726d6974325472616e73666572416d6f756e74546f6f486967688152600160fd1b60208201526000825161176a816021850160208701610f44565b9190910160210192915050565b760292328afa9b0b332aa3930b739b332b92330b4b632b21604d1b81526000825161169b816017850160208701610f44565b760292328afa337b931b2a0b8383937bb32a330b4b632b21604d1b81526000825161169b816017850160208701610f44565b7f5246515f53616665496e637265617365416c6c6f77616e63654661696c656420815260008251611813816020850160208701610f44565b9190910160200192915050565b7f5246515f536166654465637265617365416c6c6f77616e63654661696c656420815260008251611813816020850160208701610f44565b770292328afa9b0b332a832b936b4ba2130b22632b733ba34160451b815260008251611629816018850160208701610f44565b720292328afa0b6b7bab73a2a37b7a630b933b29606d1b8152600082516114ae816013850160208701610f44565b7f5246515f536574746c656d656e74416d6f756e74546f6f536d616c6c200000008152600082516118f181601d850160208701610f44565b91909101601d0192915050565b7f5246515f4f72646572416c726561647943616e63656c6c65644f725573656420815260008251611813816020850160208701610f44565b6a0292328afa330b4b632b2160ad1b81526000825161195c81600b850160208701610f44565b91909101600b0192915050565b60006020828403121561197b57600080fd5b6114ce8261103056fea2646970667358221220b6f3554381dcafa657891f44b9088503f17009e98b8f44a6b44cc27d205ff84464736f6c63430008110033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 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.