Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| 0x6101a060 | 21772404 | 421 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PWNSimpleLoanElasticChainlinkProposal
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 200 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { MultiToken } from "MultiToken/MultiToken.sol";
import { Math } from "openzeppelin/utils/math/Math.sol";
import {
Chainlink,
IChainlinkFeedRegistryLike,
IChainlinkAggregatorLike
} from "pwn/loan/lib/Chainlink.sol";
import { PWNSimpleLoan } from "pwn/loan/terms/simple/loan/PWNSimpleLoan.sol";
import { PWNSimpleLoanProposal } from "pwn/loan/terms/simple/proposal/PWNSimpleLoanProposal.sol";
import { safeFetchDecimals } from "pwn/loan/utils/safeFetchDecimals.sol";
/**
* @title PWN Simple Loan Elastic Chainlink Proposal
* @notice Contract for creating and accepting elastic loan proposals using Chainlink oracles.
* Proposals are elastic, which means that they are not tied to a specific collateral or credit amount.
* The amount of collateral and credit is specified during the proposal acceptance.
*/
contract PWNSimpleLoanElasticChainlinkProposal is PWNSimpleLoanProposal {
using Chainlink for IChainlinkFeedRegistryLike;
using Chainlink for IChainlinkAggregatorLike;
string public constant VERSION = "1.0";
uint256 public constant MAX_INTERMEDIARY_DENOMINATIONS = 2;
/**
* @notice Loan to value denominator. It is used to calculate collateral amount from credit amount.
*/
uint256 public constant LOAN_TO_VALUE_DENOMINATOR = 1e4;
/**
* @dev EIP-712 simple proposal struct type hash.
*/
bytes32 public constant PROPOSAL_TYPEHASH = keccak256(
"Proposal(uint8 collateralCategory,address collateralAddress,uint256 collateralId,bool checkCollateralStateFingerprint,bytes32 collateralStateFingerprint,address creditAddress,address[] feedIntermediaryDenominations,bool[] feedInvertFlags,uint256 loanToValue,uint256 minCreditAmount,uint256 availableCreditLimit,bytes32 utilizedCreditId,uint256 fixedInterestAmount,uint24 accruingInterestAPR,uint32 durationOrDate,uint40 expiration,address allowedAcceptor,address proposer,bytes32 proposerSpecHash,bool isOffer,uint256 refinancingLoanId,uint256 nonceSpace,uint256 nonce,address loanContract)"
);
/**
* @notice Construct defining an elastic chainlink proposal.
* @param collateralCategory Category of an asset used as a collateral (0 == ERC20, 1 == ERC721, 2 == ERC1155).
* @param collateralAddress Address of an asset used as a collateral.
* @param collateralId Token id of an asset used as a collateral, in case of ERC20 should be 0.
* @param checkCollateralStateFingerprint If true, the collateral state fingerprint will be checked during proposal acceptance.
* @param collateralStateFingerprint Fingerprint of a collateral state. It is used to check if a collateral is in a valid state.
* @param creditAddress Address of an asset which is lended to a borrower.
* @param feedIntermediaryDenominations List of intermediary price feeds that will be fetched to get to the collateral asset denominator.
* @param feedInvertFlags List of flags indicating if price feeds exist only for inverted base and quote assets.
* @param loanToValue Loan to value ratio with 4 decimals. E.g., 6231 == 0.6231 == 62.31%.
* @param minCreditAmount Minimum amount of tokens which can be borrowed using the proposal.
* @param availableCreditLimit Available credit limit for the proposal. It is the maximum amount of tokens which can be borrowed using the proposal. If non-zero, proposal can be accepted more than once, until the credit limit is reached.
* @param utilizedCreditId Id of utilized credit. Can be shared between multiple proposals.
* @param fixedInterestAmount Fixed interest amount in credit tokens. It is the minimum amount of interest which has to be paid by a borrower.
* @param accruingInterestAPR Accruing interest APR with 2 decimals.
* @param durationOrDate Duration of a loan in seconds. If the value is greater than 10^9, it is treated as a timestamp of a loan end.
* @param expiration Proposal expiration timestamp in seconds.
* @param allowedAcceptor Address that is allowed to accept proposal. If the address is zero address, anybody can accept the proposal.
* @param proposer Address of a proposal signer. If `isOffer` is true, the proposer is the lender. If `isOffer` is false, the proposer is the borrower.
* @param proposerSpecHash Hash of a proposer specific data, which must be provided during a loan creation.
* @param isOffer If true, the proposal is an offer. If false, the proposal is a request.
* @param refinancingLoanId Id of a loan which is refinanced by this proposal. If the id is 0 and `isOffer` is true, the proposal can refinance any loan.
* @param nonceSpace Nonce space of a proposal nonce. All nonces in the same space can be revoked at once.
* @param nonce Additional value to enable identical proposals in time. Without it, it would be impossible to make again proposal, which was once revoked. Can be used to create a group of proposals, where accepting one will make others in the group invalid.
* @param loanContract Address of a loan contract that will create a loan from the proposal.
*/
struct Proposal {
MultiToken.Category collateralCategory;
address collateralAddress;
uint256 collateralId;
bool checkCollateralStateFingerprint;
bytes32 collateralStateFingerprint;
address creditAddress;
address[] feedIntermediaryDenominations;
bool[] feedInvertFlags;
uint256 loanToValue;
uint256 minCreditAmount;
uint256 availableCreditLimit;
bytes32 utilizedCreditId;
uint256 fixedInterestAmount;
uint24 accruingInterestAPR;
uint32 durationOrDate;
uint40 expiration;
address allowedAcceptor;
address proposer;
bytes32 proposerSpecHash;
bool isOffer;
uint256 refinancingLoanId;
uint256 nonceSpace;
uint256 nonce;
address loanContract;
}
/**
* @notice Construct defining proposal concrete values.
* @param creditAmount Amount of credit to be borrowed.
*/
struct ProposalValues {
uint256 creditAmount;
}
/**
* @notice Chainlink feed registry contract.
*/
IChainlinkFeedRegistryLike public immutable chainlinkFeedRegistry;
/**
* @notice Chainlink feed for L2 Sequencer uptime.
* @dev Must be address(0) for L1s.
*/
IChainlinkAggregatorLike public immutable l2SequencerUptimeFeed;
/**
* @notice WETH address.
* @dev WETH price is fetched from the ETH price feed.
*/
address public immutable WETH;
/**
* @notice Emitted when a proposal is made via an on-chain transaction.
*/
event ProposalMade(bytes32 indexed proposalHash, address indexed proposer, Proposal proposal);
/**
* @notice Thrown when proposal has no minimum credit amount set.
*/
error MinCreditAmountNotSet();
/**
* @notice Thrown when proposal credit amount is insufficient.
*/
error InsufficientCreditAmount(uint256 current, uint256 limit);
/**
* @notice Thrown when intermediary denominations are out of bounds.
*/
error IntermediaryDenominationsOutOfBounds(uint256 current, uint256 limit);
constructor(
address _hub,
address _revokedNonce,
address _config,
address _utilizedCredit,
address _chainlinkFeedRegistry,
address _l2SequencerUptimeFeed,
address _weth
) PWNSimpleLoanProposal(_hub, _revokedNonce, _config, _utilizedCredit, "PWNSimpleLoanElasticChainlinkProposal", VERSION) {
chainlinkFeedRegistry = IChainlinkFeedRegistryLike(_chainlinkFeedRegistry);
l2SequencerUptimeFeed = IChainlinkAggregatorLike(_l2SequencerUptimeFeed);
WETH = _weth;
}
/**
* @notice Get an proposal hash according to EIP-712
* @param proposal Proposal struct to be hashed.
* @return Proposal struct hash.
*/
function getProposalHash(Proposal calldata proposal) public view returns (bytes32) {
return _getProposalHash(PROPOSAL_TYPEHASH, _erc712EncodeProposal(proposal));
}
/**
* @notice Make an on-chain proposal.
* @dev Function will mark a proposal hash as proposed.
* @param proposal Proposal struct containing all needed proposal data.
* @return proposalHash Proposal hash.
*/
function makeProposal(Proposal calldata proposal) external returns (bytes32 proposalHash) {
proposalHash = getProposalHash(proposal);
_makeProposal(proposalHash, proposal.proposer);
emit ProposalMade(proposalHash, proposal.proposer, proposal);
}
/**
* @notice Encode proposal data.
* @param proposal Proposal struct to be encoded.
* @param proposalValues ProposalValues struct to be encoded.
* @return Encoded proposal data.
*/
function encodeProposalData(
Proposal memory proposal,
ProposalValues memory proposalValues
) external pure returns (bytes memory) {
return abi.encode(proposal, proposalValues);
}
/**
* @notice Decode proposal data.
* @param proposalData Encoded proposal data.
* @return Decoded proposal struct.
* @return Decoded proposal values struct.
*/
function decodeProposalData(bytes memory proposalData) public pure returns (Proposal memory, ProposalValues memory) {
return abi.decode(proposalData, (Proposal, ProposalValues));
}
/**
* @notice Compute collateral amount from credit amount, LTV, and Chainlink price feeds.
* @param creditAddress Address of credit token.
* @param creditAmount Amount of credit.
* @param collateralAddress Address of collateral token.
* @param feedIntermediaryDenominations List of intermediary price feeds that will be fetched to get to the collateral asset denominator.
* @param feedInvertFlags List of flags indicating if price feeds exist only for inverted base and quote assets.
* @param loanToValue Loan to value ratio with 4 decimals. E.g., 6231 == 0.6231 == 62.31%.
* @return Amount of collateral.
*/
function getCollateralAmount(
address creditAddress,
uint256 creditAmount,
address collateralAddress,
address[] memory feedIntermediaryDenominations,
bool[] memory feedInvertFlags,
uint256 loanToValue
) public view returns (uint256) {
// check L2 sequencer uptime if necessary
l2SequencerUptimeFeed.checkSequencerUptime();
// don't allow more than 2 intermediary denominations
if (feedIntermediaryDenominations.length > MAX_INTERMEDIARY_DENOMINATIONS) {
revert IntermediaryDenominationsOutOfBounds({
current: feedIntermediaryDenominations.length,
limit: MAX_INTERMEDIARY_DENOMINATIONS
});
}
// fetch credit asset price with collateral asset as denomination
// Note: use ETH price feed for WETH asset due to absence of WETH price feed
(uint256 price, uint8 priceDecimals) = chainlinkFeedRegistry.fetchCreditPriceWithCollateralDenomination({
creditAsset: creditAddress == WETH ? Chainlink.ETH : creditAddress,
collateralAsset: collateralAddress == WETH ? Chainlink.ETH : collateralAddress,
feedIntermediaryDenominations: feedIntermediaryDenominations,
feedInvertFlags: feedInvertFlags
});
// fetch asset decimals
uint256 creditDecimals = safeFetchDecimals(creditAddress);
uint256 collateralDecimals = safeFetchDecimals(collateralAddress);
if (collateralDecimals > creditDecimals) {
creditAmount *= 10 ** (collateralDecimals - creditDecimals);
}
uint256 collateralAmount = Math.mulDiv(creditAmount, price, 10 ** priceDecimals);
collateralAmount = Math.mulDiv(collateralAmount, LOAN_TO_VALUE_DENOMINATOR, loanToValue);
if (collateralDecimals < creditDecimals) {
collateralAmount /= 10 ** (creditDecimals - collateralDecimals);
}
return collateralAmount;
}
/**
* @inheritdoc PWNSimpleLoanProposal
*/
function acceptProposal(
address acceptor,
uint256 refinancingLoanId,
bytes calldata proposalData,
bytes32[] calldata proposalInclusionProof,
bytes calldata signature
) override external returns (bytes32 proposalHash, PWNSimpleLoan.Terms memory loanTerms) {
// Decode proposal data
(Proposal memory proposal, ProposalValues memory proposalValues) = decodeProposalData(proposalData);
// Make proposal hash
proposalHash = _getProposalHash(PROPOSAL_TYPEHASH, _erc712EncodeProposal(proposal));
// Check min credit amount
if (proposal.minCreditAmount == 0) {
revert MinCreditAmountNotSet();
}
// Check sufficient credit amount
if (proposalValues.creditAmount < proposal.minCreditAmount) {
revert InsufficientCreditAmount({ current: proposalValues.creditAmount, limit: proposal.minCreditAmount });
}
// Calculate collateral amount
uint256 collateralAmount = getCollateralAmount(
proposal.creditAddress,
proposalValues.creditAmount,
proposal.collateralAddress,
proposal.feedIntermediaryDenominations,
proposal.feedInvertFlags,
proposal.loanToValue
);
// Try to accept proposal
_acceptProposal(
acceptor,
refinancingLoanId,
proposalHash,
proposalInclusionProof,
signature,
ProposalBase({
collateralAddress: proposal.collateralAddress,
collateralId: proposal.collateralId,
checkCollateralStateFingerprint: proposal.checkCollateralStateFingerprint,
collateralStateFingerprint: proposal.collateralStateFingerprint,
creditAmount: proposalValues.creditAmount,
availableCreditLimit: proposal.availableCreditLimit,
utilizedCreditId: proposal.utilizedCreditId,
expiration: proposal.expiration,
allowedAcceptor: proposal.allowedAcceptor,
proposer: proposal.proposer,
isOffer: proposal.isOffer,
refinancingLoanId: proposal.refinancingLoanId,
nonceSpace: proposal.nonceSpace,
nonce: proposal.nonce,
loanContract: proposal.loanContract
})
);
// Create loan terms object
loanTerms = PWNSimpleLoan.Terms({
lender: proposal.isOffer ? proposal.proposer : acceptor,
borrower: proposal.isOffer ? acceptor : proposal.proposer,
duration: _getLoanDuration(proposal.durationOrDate),
collateral: MultiToken.Asset({
category: proposal.collateralCategory,
assetAddress: proposal.collateralAddress,
id: proposal.collateralId,
amount: collateralAmount
}),
credit: MultiToken.ERC20({
assetAddress: proposal.creditAddress,
amount: proposalValues.creditAmount
}),
fixedInterestAmount: proposal.fixedInterestAmount,
accruingInterestAPR: proposal.accruingInterestAPR,
lenderSpecHash: proposal.isOffer ? proposal.proposerSpecHash : bytes32(0),
borrowerSpecHash: proposal.isOffer ? bytes32(0) : proposal.proposerSpecHash
});
}
/**
* @notice Encode proposal data for EIP-712.
* @param proposal Proposal struct to be encoded.
* @return encodedProposal Encoded proposal data.
*/
function _erc712EncodeProposal(Proposal memory proposal) internal pure returns (bytes memory encodedProposal) {
encodedProposal = abi.encode(
proposal.collateralCategory,
proposal.collateralAddress,
proposal.collateralId,
proposal.checkCollateralStateFingerprint,
proposal.collateralStateFingerprint,
proposal.creditAddress,
keccak256(abi.encodePacked(proposal.feedIntermediaryDenominations)),
keccak256(abi.encodePacked(proposal.feedInvertFlags)),
proposal.loanToValue,
proposal.minCreditAmount,
proposal.availableCreditLimit,
proposal.utilizedCreditId
);
encodedProposal = abi.encodePacked(
encodedProposal,
abi.encode(
proposal.fixedInterestAmount,
proposal.accruingInterestAPR,
proposal.durationOrDate,
proposal.expiration,
proposal.allowedAcceptor,
proposal.proposer,
proposal.proposerSpecHash,
proposal.isOffer,
proposal.refinancingLoanId,
proposal.nonceSpace,
proposal.nonce,
proposal.loanContract
)
);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import { IERC20 } from "openzeppelin/interfaces/IERC20.sol";
import { IERC721 } from "openzeppelin/interfaces/IERC721.sol";
import { IERC1155 } from "openzeppelin/interfaces/IERC1155.sol";
import { IERC20Permit } from "openzeppelin/token/ERC20/extensions/IERC20Permit.sol";
import { SafeERC20 } from "openzeppelin/token/ERC20/utils/SafeERC20.sol";
import { ERC165Checker } from "openzeppelin/utils/introspection/ERC165Checker.sol";
import { ICryptoKitties } from "multitoken/interfaces/ICryptoKitties.sol";
import { IMultiTokenCategoryRegistry } from "multitoken/interfaces/IMultiTokenCategoryRegistry.sol";
/**
* @title MultiToken library
* @dev Library for handling various token standards (ERC20, ERC721, ERC1155, CryptoKitties) in a single contract.
*/
library MultiToken {
using ERC165Checker for address;
using SafeERC20 for IERC20;
bytes4 public constant ERC20_INTERFACE_ID = 0x36372b07;
bytes4 public constant ERC721_INTERFACE_ID = 0x80ac58cd;
bytes4 public constant ERC1155_INTERFACE_ID = 0xd9b67a26;
bytes4 public constant CRYPTO_KITTIES_INTERFACE_ID = 0x9a20483d;
/**
* @notice A reserved value for a category not registered.
*/
uint8 public constant CATEGORY_NOT_REGISTERED = type(uint8).max;
/**
* @title Category
* @dev Enum representation Asset category.
*/
enum Category {
ERC20,
ERC721,
ERC1155,
CryptoKitties
}
/**
* @title Asset
* @param category Corresponding asset category.
* @param assetAddress Address of the token contract defining the asset.
* @param id TokenID of an NFT or 0.
* @param amount Amount of fungible tokens or 0 -> 1.
*/
struct Asset {
Category category;
address assetAddress;
uint256 id;
uint256 amount;
}
/**
* @notice Thrown when unsupported category is used.
* @param categoryValue Value of the unsupported category.
*/
error UnsupportedCategory(uint8 categoryValue);
/*----------------------------------------------------------*|
|* # FACTORY FUNCTIONS *|
|*----------------------------------------------------------*/
/**
* @notice Factory function for creating an ERC20 asset.
* @param assetAddress Address of the token contract defining the asset.
* @param amount Amount of fungible tokens.
* @return Asset struct representing the ERC20 asset.
*/
function ERC20(address assetAddress, uint256 amount) internal pure returns (Asset memory) {
return Asset(Category.ERC20, assetAddress, 0, amount);
}
/**
* @notice Factory function for creating an ERC721 asset.
* @param assetAddress Address of the token contract defining the asset.
* @param id Token id of an NFT.
* @return Asset struct representing the ERC721 asset.
*/
function ERC721(address assetAddress, uint256 id) internal pure returns (Asset memory) {
return Asset(Category.ERC721, assetAddress, id, 0);
}
/**
* @notice Factory function for creating an ERC1155 asset.
* @param assetAddress Address of the token contract defining the asset.
* @param id Token id of an SFT.
* @param amount Amount of semifungible tokens.
* @return Asset struct representing the ERC1155 asset.
*/
function ERC1155(address assetAddress, uint256 id, uint256 amount) internal pure returns (Asset memory) {
return Asset(Category.ERC1155, assetAddress, id, amount);
}
/**
* @notice Factory function for creating an ERC1155 NFT asset.
* @param assetAddress Address of the token contract defining the asset.
* @param id Token id of an NFT.
* @return Asset struct representing the ERC1155 NFT asset.
*/
function ERC1155(address assetAddress, uint256 id) internal pure returns (Asset memory) {
return Asset(Category.ERC1155, assetAddress, id, 0);
}
/**
* @notice Factory function for creating a CryptoKitties asset.
* @param assetAddress Address of the token contract defining the asset.
* @param id Token id of a CryptoKitty.
* @return Asset struct representing the CryptoKitties asset.
*/
function CryptoKitties(address assetAddress, uint256 id) internal pure returns (Asset memory) {
return Asset(Category.CryptoKitties, assetAddress, id, 0);
}
/*----------------------------------------------------------*|
|* # TRANSFER ASSET *|
|*----------------------------------------------------------*/
/**
* @notice Wrapping function for `transferFrom` calls on various token interfaces.
* @dev If `source` is `address(this)`, function `transfer` is called instead of `transferFrom` for ERC20 category.
* @param asset Struct defining all necessary context of a token.
* @param source Account/address that provided the allowance.
* @param dest Destination address.
*/
function transferAssetFrom(Asset memory asset, address source, address dest) internal {
_transferAssetFrom(asset, source, dest, false);
}
/**
* @notice Wrapping function for `safeTransferFrom` calls on various token interfaces.
* @dev If `source` is `address(this)`, function `transfer` is called instead of `transferFrom` for ERC20 category.
* @param asset Struct defining all necessary context of a token.
* @param source Account/address that provided the allowance.
* @param dest Destination address.
*/
function safeTransferAssetFrom(Asset memory asset, address source, address dest) internal {
_transferAssetFrom(asset, source, dest, true);
}
function _transferAssetFrom(Asset memory asset, address source, address dest, bool isSafe) private {
if (asset.category == Category.ERC20) {
if (source == address(this))
IERC20(asset.assetAddress).safeTransfer(dest, asset.amount);
else
IERC20(asset.assetAddress).safeTransferFrom(source, dest, asset.amount);
} else if (asset.category == Category.ERC721) {
if (!isSafe)
IERC721(asset.assetAddress).transferFrom(source, dest, asset.id);
else
IERC721(asset.assetAddress).safeTransferFrom(source, dest, asset.id, "");
} else if (asset.category == Category.ERC1155) {
IERC1155(asset.assetAddress).safeTransferFrom(source, dest, asset.id, asset.amount == 0 ? 1 : asset.amount, "");
} else if (asset.category == Category.CryptoKitties) {
if (source == address(this))
ICryptoKitties(asset.assetAddress).transfer(dest, asset.id);
else
ICryptoKitties(asset.assetAddress).transferFrom(source, dest, asset.id);
} else {
revert("MultiToken: Unsupported category");
}
}
/**
* @notice Get amount of asset that would be transferred.
* @dev NFTs (ERC721, CryptoKitties & ERC1155 with amount 0) with return 1.
* Fungible tokens will return its amount (ERC20 with 0 amount is valid).
* In combination with `balanceOf` can be used to check successful asset transfer.
* @param asset Struct defining all necessary context of a token.
* @return Number of tokens that would be transferred of the asset.
*/
function getTransferAmount(Asset memory asset) internal pure returns (uint256) {
if (asset.category == Category.ERC20)
return asset.amount;
else if (asset.category == Category.ERC1155 && asset.amount > 0)
return asset.amount;
else // Return 1 for ERC721, CryptoKitties and ERC1155 used as NFTs (amount = 0)
return 1;
}
/*----------------------------------------------------------*|
|* # TRANSFER ASSET CALLDATA *|
|*----------------------------------------------------------*/
/**
* @notice Wrapping function for `transferFrom` calladata on various token interfaces.
* @dev If `fromSender` is true, function `transfer` is returned instead of `transferFrom` for ERC20 category.
* @param asset Struct defining all necessary context of a token.
* @param source Account/address that provided the allowance.
* @param dest Destination address.
*/
function transferAssetFromCalldata(Asset memory asset, address source, address dest, bool fromSender) pure internal returns (bytes memory) {
return _transferAssetFromCalldata(asset, source, dest, fromSender, false);
}
/**
* @notice Wrapping function for `safeTransferFrom` calladata on various token interfaces.
* @dev If `fromSender` is true, function `transfer` is returned instead of `transferFrom` for ERC20 category.
* @param asset Struct defining all necessary context of a token.
* @param source Account/address that provided the allowance.
* @param dest Destination address.
*/
function safeTransferAssetFromCalldata(Asset memory asset, address source, address dest, bool fromSender) pure internal returns (bytes memory) {
return _transferAssetFromCalldata(asset, source, dest, fromSender, true);
}
function _transferAssetFromCalldata(Asset memory asset, address source, address dest, bool fromSender, bool isSafe) pure private returns (bytes memory) {
if (asset.category == Category.ERC20) {
if (fromSender) {
return abi.encodeWithSignature(
"transfer(address,uint256)", dest, asset.amount
);
} else {
return abi.encodeWithSignature(
"transferFrom(address,address,uint256)", source, dest, asset.amount
);
}
} else if (asset.category == Category.ERC721) {
if (!isSafe) {
return abi.encodeWithSignature(
"transferFrom(address,address,uint256)", source, dest, asset.id
);
} else {
return abi.encodeWithSignature(
"safeTransferFrom(address,address,uint256,bytes)", source, dest, asset.id, ""
);
}
} else if (asset.category == Category.ERC1155) {
return abi.encodeWithSignature(
"safeTransferFrom(address,address,uint256,uint256,bytes)", source, dest, asset.id, asset.amount == 0 ? 1 : asset.amount, ""
);
} else if (asset.category == Category.CryptoKitties) {
if (fromSender) {
return abi.encodeWithSignature(
"transfer(address,uint256)", dest, asset.id
);
} else {
return abi.encodeWithSignature(
"transferFrom(address,address,uint256)", source, dest, asset.id
);
}
} else {
revert("MultiToken: Unsupported category");
}
}
/*----------------------------------------------------------*|
|* # PERMIT *|
|*----------------------------------------------------------*/
/**
* @notice Wrapping function for granting approval via permit signature.
* @param asset Struct defining all necessary context of a token.
* @param owner Account/address that signed the permit.
* @param spender Account/address that would be granted approval to `asset`.
* @param permitData Data about permit deadline (uint256) and permit signature (64/65 bytes).
* Deadline and signature should be pack encoded together.
* Signature can be standard (65 bytes) or compact (64 bytes) defined in EIP-2098.
*/
function permit(Asset memory asset, address owner, address spender, bytes memory permitData) internal {
if (asset.category == Category.ERC20) {
// Parse deadline and permit signature parameters
uint256 deadline;
bytes32 r;
bytes32 s;
uint8 v;
// Parsing signature parameters used from OpenZeppelins ECDSA library
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/83277ff916ac4f58fec072b8f28a252c1245c2f1/contracts/utils/cryptography/ECDSA.sol
// Deadline (32 bytes) + standard signature data (65 bytes) -> 97 bytes
if (permitData.length == 97) {
assembly {
deadline := mload(add(permitData, 0x20))
r := mload(add(permitData, 0x40))
s := mload(add(permitData, 0x60))
v := byte(0, mload(add(permitData, 0x80)))
}
}
// Deadline (32 bytes) + compact signature data (64 bytes) -> 96 bytes
else if (permitData.length == 96) {
bytes32 vs;
assembly {
deadline := mload(add(permitData, 0x20))
r := mload(add(permitData, 0x40))
vs := mload(add(permitData, 0x60))
}
s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
v = uint8((uint256(vs) >> 255) + 27);
} else {
revert("MultiToken::Permit: Invalid permit length");
}
// Call permit with parsed parameters
IERC20Permit(asset.assetAddress).permit(owner, spender, asset.amount, deadline, v, r, s);
} else {
// Currently supporting only ERC20 signed approvals via ERC2612
revert("MultiToken::Permit: Unsupported category");
}
}
/*----------------------------------------------------------*|
|* # BALANCE OF *|
|*----------------------------------------------------------*/
/**
* @notice Wrapping function for checking balances on various token interfaces.
* @param asset Struct defining all necessary context of a token.
* @param target Target address to be checked.
*/
function balanceOf(Asset memory asset, address target) internal view returns (uint256) {
if (asset.category == Category.ERC20) {
return IERC20(asset.assetAddress).balanceOf(target);
} else if (asset.category == Category.ERC721) {
return IERC721(asset.assetAddress).ownerOf(asset.id) == target ? 1 : 0;
} else if (asset.category == Category.ERC1155) {
return IERC1155(asset.assetAddress).balanceOf(target, asset.id);
} else if (asset.category == Category.CryptoKitties) {
return ICryptoKitties(asset.assetAddress).ownerOf(asset.id) == target ? 1 : 0;
} else {
revert("MultiToken: Unsupported category");
}
}
/*----------------------------------------------------------*|
|* # APPROVE ASSET *|
|*----------------------------------------------------------*/
/**
* @notice Wrapping function for `approve` calls on various token interfaces.
* @dev By using `safeApprove` for ERC20, caller can set allowance to 0 or from 0.
* Cannot set non-zero value if allowance is also non-zero.
* @param asset Struct defining all necessary context of a token.
* @param target Account/address that would be granted approval to `asset`.
*/
function approveAsset(Asset memory asset, address target) internal {
if (asset.category == Category.ERC20) {
IERC20(asset.assetAddress).safeApprove(target, asset.amount);
} else if (asset.category == Category.ERC721) {
IERC721(asset.assetAddress).approve(target, asset.id);
} else if (asset.category == Category.ERC1155) {
IERC1155(asset.assetAddress).setApprovalForAll(target, true);
} else if (asset.category == Category.CryptoKitties) {
ICryptoKitties(asset.assetAddress).approve(target, asset.id);
} else {
revert("MultiToken: Unsupported category");
}
}
/*----------------------------------------------------------*|
|* # ASSET CHECKS *|
|*----------------------------------------------------------*/
/**
* @notice Checks that provided asset is contract, has correct format and stated category via MultiTokenCategoryRegistry and ERC165 checks.
* @dev Fungible tokens (ERC20) have to have id = 0.
* NFT (ERC721, CryptoKitties) tokens have to have amount = 0.
* Correct asset category is determined via ERC165.
* The check assumes, that asset contract implements only one token standard at a time.
* @param registry Category registry contract.
* @param asset Asset that is examined.
* @return True if asset has correct format and category.
*/
function isValid(Asset memory asset, IMultiTokenCategoryRegistry registry) internal view returns (bool) {
return _checkCategory(asset, registry) && _checkFormat(asset);
}
/**
* @notice Checks that provided asset is contract, has correct format and stated category via ERC165 checks.
* @dev Fungible tokens (ERC20) have to have id = 0.
* NFT (ERC721, CryptoKitties) tokens have to have amount = 0.
* Correct asset category is determined via ERC165.
* The check assumes, that asset contract implements only one token standard at a time.
* @param asset Asset that is examined.
* @return True if asset has correct format and category.
*/
function isValid(Asset memory asset) internal view returns (bool) {
return _checkCategoryViaERC165(asset) && _checkFormat(asset);
}
/**
* @notice Checks that provided asset is contract and stated category is correct via MultiTokenCategoryRegistry and ERC165 checks.
* @dev Will fallback to ERC165 checks if asset is not registered in the category registry.
* The check assumes, that asset contract implements only one token standard at a time.
* @param registry Category registry contract.
* @param asset Asset that is examined.
* @return True if assets stated category is correct.
*/
function _checkCategory(Asset memory asset, IMultiTokenCategoryRegistry registry) internal view returns (bool) {
// Check if asset is registered in the category registry
uint8 categoryValue = registry.registeredCategoryValue(asset.assetAddress);
if (categoryValue != CATEGORY_NOT_REGISTERED)
return uint8(asset.category) == categoryValue;
return _checkCategoryViaERC165(asset);
}
/**
* @notice Checks that provided asset is contract and stated category is correct via ERC165 checks.
* @dev The check assumes, that asset contract implements only one token standard at a time.
* @param asset Asset that is examined.
* @return True if assets stated category is correct.
*/
function _checkCategoryViaERC165(Asset memory asset) internal view returns (bool) {
if (asset.category == Category.ERC20) {
// ERC20 has optional ERC165 implementation
if (asset.assetAddress.supportsERC165()) {
// If contract implements ERC165 and returns true for ERC20 intefrace id, consider it a correct category
if (asset.assetAddress.supportsERC165InterfaceUnchecked(ERC20_INTERFACE_ID))
return true;
// If contract implements ERC165, it has to return false for ERC721, ERC1155, and CryptoKitties interface ids
return
!asset.assetAddress.supportsERC165InterfaceUnchecked(ERC721_INTERFACE_ID) &&
!asset.assetAddress.supportsERC165InterfaceUnchecked(ERC1155_INTERFACE_ID) &&
!asset.assetAddress.supportsERC165InterfaceUnchecked(CRYPTO_KITTIES_INTERFACE_ID);
} else {
// In case token doesn't implement ERC165, its safe to assume that provided category is correct,
// because any other category has to implement ERC165.
// Check that asset address is contract
// Note: Asset address will return code length 0, if this code is called from the constructor.
return asset.assetAddress.code.length > 0;
}
} else if (asset.category == Category.ERC721) {
// Check ERC721 via ERC165
return asset.assetAddress.supportsInterface(ERC721_INTERFACE_ID);
} else if (asset.category == Category.ERC1155) {
// Check ERC1155 via ERC165
return asset.assetAddress.supportsInterface(ERC1155_INTERFACE_ID);
} else if (asset.category == Category.CryptoKitties) {
// Check CryptoKitties via ERC165
return asset.assetAddress.supportsInterface(CRYPTO_KITTIES_INTERFACE_ID);
} else {
revert UnsupportedCategory(uint8(asset.category));
}
}
/**
* @notice Checks that provided asset has correct format.
* @dev Fungible tokens (ERC20) have to have id = 0.
* NFT (ERC721, CryptoKitties) tokens have to have amount = 0.
* Correct asset category is determined via ERC165.
* @param asset Asset that is examined.
* @return True asset struct has correct format.
*/
function _checkFormat(Asset memory asset) internal pure returns (bool) {
if (asset.category == Category.ERC20) {
// Id must be 0 for ERC20
if (asset.id != 0) return false;
} else if (asset.category == Category.ERC721) {
// Amount must be 0 for ERC721
if (asset.amount != 0) return false;
} else if (asset.category == Category.ERC1155) {
// No format check for ERC1155
} else if (asset.category == Category.CryptoKitties) {
// Amount must be 0 for CryptoKitties
if (asset.amount != 0) return false;
} else {
revert UnsupportedCategory(uint8(asset.category));
}
return true;
}
/**
* @notice Compare two assets, ignoring their amounts.
* @param asset First asset to examine.
* @param otherAsset Second asset to examine.
* @return True if both structs represents the same asset.
*/
function isSameAs(Asset memory asset, Asset memory otherAsset) internal pure returns (bool) {
return
asset.category == otherAsset.category &&
asset.assetAddress == otherAsset.assetAddress &&
asset.id == otherAsset.id;
}
}// 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: GPL-3.0-only
pragma solidity 0.8.16;
import { Math } from "openzeppelin/utils/math/Math.sol";
import { IChainlinkAggregatorLike } from "pwn/interfaces/IChainlinkAggregatorLike.sol";
import { IChainlinkFeedRegistryLike } from "pwn/interfaces/IChainlinkFeedRegistryLike.sol";
library Chainlink {
/**
* @notice Maximum Chainlink feed price age.
*/
uint256 public constant MAX_CHAINLINK_FEED_PRICE_AGE = 1 days;
/**
* @notice Grace period time for L2 Sequencer uptime feed.
*/
uint256 public constant L2_GRACE_PERIOD = 10 minutes;
/**
* @notice Chainlink address of ETH asset.
*/
address public constant ETH = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
/**
* @notice Throw when Chainlink feed returns negative price.
*/
error ChainlinkFeedReturnedNegativePrice(address feed, int256 price, uint256 updatedAt);
/**
* @notice Throw when Chainlink feed price is too old.
*/
error ChainlinkFeedPriceTooOld(address feed, uint256 updatedAt);
/**
* @notice Throw when feed invert array is not exactly one item longer than intermediary feed array.
*/
error ChainlinkInvalidInputLenghts();
/**
* @notice Throw when L2 Sequencer uptime feed returns that the sequencer is down.
*/
error L2SequencerDown();
/**
* @notice Throw when L2 Sequencer uptime feed grace period is not over.
*/
error GracePeriodNotOver(uint256 timeSinceUp, uint256 gracePeriod);
/**
* @notice Checks the uptime status of the L2 sequencer.
* @dev This function reverts if the sequencer is down or if the grace period is not over.
* @param l2SequencerUptimeFeed The Chainlink feed that provides the sequencer uptime status.
*/
function checkSequencerUptime(IChainlinkAggregatorLike l2SequencerUptimeFeed) internal view {
if (address(l2SequencerUptimeFeed) != address(0)) {
(, int256 answer, uint256 startedAt,,) = l2SequencerUptimeFeed.latestRoundData();
if (answer == 1) {
// sequencer is down
revert L2SequencerDown();
}
uint256 timeSinceUp = block.timestamp - startedAt;
if (timeSinceUp <= L2_GRACE_PERIOD) {
// grace period is not over
revert GracePeriodNotOver({ timeSinceUp: timeSinceUp, gracePeriod: L2_GRACE_PERIOD });
}
}
}
/**
* @notice Fetches the prices of the credit with collateral assets as denomination.
* @dev `feedInvertFlags` array must be exactly one item longer than `feedIntermediaryDenominations`.
* @param feedRegistry The Chainlink feed registry contract that provides the price feeds.
* @param creditAsset The address of the credit asset.
* @param collateralAsset The address of the collateral asset.
* @param feedIntermediaryDenominations List of intermediary price feeds that will be fetched to get to the collateral asset denominator.
* @param feedInvertFlags List of flags indicating if price feeds exist only for inverted base and quote assets.
* @return The price of the credit assets denominated in collateral assets.
* @return The price decimals.
*/
function fetchCreditPriceWithCollateralDenomination(
IChainlinkFeedRegistryLike feedRegistry,
address creditAsset,
address collateralAsset,
address[] memory feedIntermediaryDenominations,
bool[] memory feedInvertFlags
) internal view returns (uint256, uint8) {
if (feedInvertFlags.length != feedIntermediaryDenominations.length + 1) {
revert ChainlinkInvalidInputLenghts();
}
// initial state
uint256 price = 1;
uint8 priceDecimals = 0;
// iterate until collateral asset is denominator
for (uint256 i; i < feedInvertFlags.length; ++i) {
(price, priceDecimals) = convertPriceDenomination({
feedRegistry: feedRegistry,
currentPrice: price,
currentDecimals: priceDecimals,
currentDenomination: i == 0 ? creditAsset : feedIntermediaryDenominations[i - 1],
nextDenomination: i == feedIntermediaryDenominations.length ? collateralAsset : feedIntermediaryDenominations[i],
nextInvert: feedInvertFlags[i]
});
}
return (price, priceDecimals);
}
/**
* @notice Convert price denomination.
* @param feedRegistry The Chainlink feed registry contract that provides the price feeds.
* @param currentPrice Price of an asset denominated in `currentDenomination`.
* @param currentDecimals Decimals of the current price.
* @param currentDenomination Address of the current denomination.
* @param nextDenomination Address of the denomination to convert the current price to.
* @param nextInvert Flag, if intermediary price feed exists only with inverted base and quote assets.
* @return nextPrice Price of an asset denomination in `nextDenomination`.
* @return nextDecimals Decimals of the next price.
*/
function convertPriceDenomination(
IChainlinkFeedRegistryLike feedRegistry,
uint256 currentPrice,
uint8 currentDecimals,
address currentDenomination,
address nextDenomination,
bool nextInvert
) internal view returns (uint256 nextPrice, uint8 nextDecimals) {
// fetch convert price
(uint256 intermediaryPrice, uint8 intermediaryDecimals) = fetchPrice({
feedRegistry: feedRegistry,
asset: nextInvert ? nextDenomination : currentDenomination,
denomination: nextInvert ? currentDenomination : nextDenomination
});
// sync decimals
(currentPrice, intermediaryPrice, nextDecimals)
= syncDecimalsUp(currentPrice, currentDecimals, intermediaryPrice, intermediaryDecimals);
// compute price with new denomination
if (nextInvert) {
nextPrice = Math.mulDiv(currentPrice, 10 ** nextDecimals, intermediaryPrice);
} else {
nextPrice = Math.mulDiv(currentPrice, intermediaryPrice, 10 ** nextDecimals);
}
return (nextPrice, nextDecimals);
}
/**
* @notice Fetch price from Chainlink feed.
* @param feedRegistry The Chainlink feed registry contract that provides the price feeds.
* @param asset Address of an asset.
* @param denomination Address of a denomination asset.
* @return price Price of an asset.
* @return decimals Decimals of a price.
*/
function fetchPrice(IChainlinkFeedRegistryLike feedRegistry, address asset, address denomination)
internal
view
returns (uint256, uint8)
{
IChainlinkAggregatorLike feed = feedRegistry.getFeed(asset, denomination);
// Note: registry reverts with "Feed not found" for no registered feed
(, int256 price,, uint256 updatedAt,) = feed.latestRoundData();
if (price < 0) {
revert ChainlinkFeedReturnedNegativePrice({ feed: address(feed), price: price, updatedAt: updatedAt });
}
if (block.timestamp - updatedAt > MAX_CHAINLINK_FEED_PRICE_AGE) {
revert ChainlinkFeedPriceTooOld({ feed: address(feed), updatedAt: updatedAt });
}
return (uint256(price), feed.decimals());
}
/**
* @notice Sync price decimals to the higher one.
* @param price1 Price one to be scaled.
* @param decimals1 Decimals of the price one.
* @param price2 Price two to be scaled.
* @param decimals2 Decimals of the price two.
* @return Synced price one.
* @return Synced price two.
* @return Synced price decimals.
*/
function syncDecimalsUp(uint256 price1, uint8 decimals1, uint256 price2, uint8 decimals2)
internal
pure
returns (uint256, uint256, uint8)
{
uint8 syncedDecimals;
if (decimals1 > decimals2) {
syncedDecimals = decimals1;
price2 *= 10 ** (decimals1 - decimals2);
} else {
syncedDecimals = decimals2;
price1 *= 10 ** (decimals2 - decimals1);
}
return (price1, price2, syncedDecimals);
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { MultiToken, IMultiTokenCategoryRegistry } from "MultiToken/MultiToken.sol";
import { ReentrancyGuard } from "openzeppelin/security/ReentrancyGuard.sol";
import { Math } from "openzeppelin/utils/math/Math.sol";
import { SafeCast } from "openzeppelin/utils/math/SafeCast.sol";
import { PWNConfig } from "pwn/config/PWNConfig.sol";
import { PWNHub } from "pwn/hub/PWNHub.sol";
import { PWNHubTags } from "pwn/hub/PWNHubTags.sol";
import { IERC5646 } from "pwn/interfaces/IERC5646.sol";
import { IPoolAdapter } from "pwn/interfaces/IPoolAdapter.sol";
import { IPWNLoanMetadataProvider } from "pwn/interfaces/IPWNLoanMetadataProvider.sol";
import { PWNFeeCalculator } from "pwn/loan/lib/PWNFeeCalculator.sol";
import { PWNSignatureChecker } from "pwn/loan/lib/PWNSignatureChecker.sol";
import { PWNSimpleLoanProposal } from "pwn/loan/terms/simple/proposal/PWNSimpleLoanProposal.sol";
import { PWNLOAN } from "pwn/loan/token/PWNLOAN.sol";
import { PWNVault } from "pwn/loan/vault/PWNVault.sol";
import { PWNRevokedNonce } from "pwn/nonce/PWNRevokedNonce.sol";
import { Expired, AddressMissingHubTag } from "pwn/PWNErrors.sol";
/**
* @title PWN Simple Loan
* @notice Contract managing a simple loan in PWN protocol.
* @dev Acts as a vault for every loan created by this contract.
*/
contract PWNSimpleLoan is PWNVault, ReentrancyGuard, IERC5646, IPWNLoanMetadataProvider {
using MultiToken for address;
string public constant VERSION = "1.3";
/*----------------------------------------------------------*|
|* # VARIABLES & CONSTANTS DEFINITIONS *|
|*----------------------------------------------------------*/
uint32 public constant MIN_LOAN_DURATION = 10 minutes;
uint40 public constant MAX_ACCRUING_INTEREST_APR = 16e6; // 160,000 APR (with 2 decimals)
uint256 public constant ACCRUING_INTEREST_APR_DECIMALS = 1e2;
uint256 public constant MINUTES_IN_YEAR = 525_600; // Note: Assuming 365 days in a year
uint256 public constant ACCRUING_INTEREST_APR_DENOMINATOR = ACCRUING_INTEREST_APR_DECIMALS * MINUTES_IN_YEAR * 100;
uint256 public constant MAX_EXTENSION_DURATION = 90 days;
uint256 public constant MIN_EXTENSION_DURATION = 1 days;
bytes32 public constant EXTENSION_PROPOSAL_TYPEHASH = keccak256(
"ExtensionProposal(uint256 loanId,address compensationAddress,uint256 compensationAmount,uint40 duration,uint40 expiration,address proposer,uint256 nonceSpace,uint256 nonce)"
);
bytes32 public immutable DOMAIN_SEPARATOR = keccak256(abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256("PWNSimpleLoan"),
keccak256(abi.encodePacked(VERSION)),
block.chainid,
address(this)
));
PWNHub public immutable hub;
PWNLOAN public immutable loanToken;
PWNConfig public immutable config;
PWNRevokedNonce public immutable revokedNonce;
IMultiTokenCategoryRegistry public immutable categoryRegistry;
/**
* @notice Struct defining a simple loan terms.
* @dev This struct is created by proposal contracts and never stored.
* @param lender Address of a lender.
* @param borrower Address of a borrower.
* @param duration Loan duration in seconds.
* @param collateral Asset used as a loan collateral. For a definition see { MultiToken dependency lib }.
* @param credit Asset used as a loan credit. For a definition see { MultiToken dependency lib }.
* @param fixedInterestAmount Fixed interest amount in credit asset tokens. It is the minimum amount of interest which has to be paid by a borrower.
* @param accruingInterestAPR Accruing interest APR with 2 decimals.
* @param lenderSpecHash Hash of a lender specification.
* @param borrowerSpecHash Hash of a borrower specification.
*/
struct Terms {
address lender;
address borrower;
uint32 duration;
MultiToken.Asset collateral;
MultiToken.Asset credit;
uint256 fixedInterestAmount;
uint24 accruingInterestAPR;
bytes32 lenderSpecHash;
bytes32 borrowerSpecHash;
}
/**
* @notice Loan proposal specification during loan creation.
* @param proposalContract Address of a loan proposal contract.
* @param proposalData Encoded proposal data that is passed to the loan proposal contract.
* @param proposalInclusionProof Inclusion proof of the proposal in the proposal contract.
* @param signature Signature of the proposal.
*/
struct ProposalSpec {
address proposalContract;
bytes proposalData;
bytes32[] proposalInclusionProof;
bytes signature;
}
/**
* @notice Lender specification during loan creation.
* @param sourceOfFunds Address of a source of funds. This can be the lenders address, if the loan is funded directly,
* or a pool address from with the funds are withdrawn on the lenders behalf.
*/
struct LenderSpec {
address sourceOfFunds;
}
/**
* @notice Caller specification during loan creation.
* @param refinancingLoanId Id of a loan to be refinanced. 0 if creating a new loan.
* @param revokeNonce Flag if the callers nonce should be revoked.
* @param nonce Callers nonce to be revoked. Nonce is revoked from the current nonce space.
*/
struct CallerSpec {
uint256 refinancingLoanId;
bool revokeNonce;
uint256 nonce;
}
/**
* @notice Struct defining a simple loan.
* @param status 0 == none/dead || 2 == running/accepted offer/accepted request || 3 == paid back || 4 == expired.
* @param creditAddress Address of an asset used as a loan credit.
* @param originalSourceOfFunds Address of a source of funds that was used to fund the loan.
* @param startTimestamp Unix timestamp (in seconds) of a start date.
* @param defaultTimestamp Unix timestamp (in seconds) of a default date.
* @param borrower Address of a borrower.
* @param originalLender Address of a lender that funded the loan.
* @param accruingInterestAPR Accruing interest APR with 2 decimals.
* @param fixedInterestAmount Fixed interest amount in credit asset tokens.
* It is the minimum amount of interest which has to be paid by a borrower.
* This property is reused to store the final interest amount if the loan is repaid and waiting to be claimed.
* @param principalAmount Principal amount in credit asset tokens.
* @param collateral Asset used as a loan collateral. For a definition see { MultiToken dependency lib }.
*/
struct LOAN {
uint8 status;
address creditAddress;
address originalSourceOfFunds;
uint40 startTimestamp;
uint40 defaultTimestamp;
address borrower;
address originalLender;
uint24 accruingInterestAPR;
uint256 fixedInterestAmount;
uint256 principalAmount;
MultiToken.Asset collateral;
}
/**
* Mapping of all LOAN data by loan id.
*/
mapping (uint256 => LOAN) private LOANs;
/**
* @notice Struct defining a loan extension proposal that can be signed by a borrower or a lender.
* @param loanId Id of a loan to be extended.
* @param compensationAddress Address of a compensation asset.
* @param compensationAmount Amount of a compensation asset that a borrower has to pay to a lender.
* @param duration Duration of the extension in seconds.
* @param expiration Unix timestamp (in seconds) of an expiration date.
* @param proposer Address of a proposer that signed the extension proposal.
* @param nonceSpace Nonce space of the extension proposal nonce.
* @param nonce Nonce of the extension proposal.
*/
struct ExtensionProposal {
uint256 loanId;
address compensationAddress;
uint256 compensationAmount;
uint40 duration;
uint40 expiration;
address proposer;
uint256 nonceSpace;
uint256 nonce;
}
/**
* Mapping of extension proposals made via on-chain transaction by extension hash.
*/
mapping (bytes32 => bool) public extensionProposalsMade;
/*----------------------------------------------------------*|
|* # EVENTS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Emitted when a new loan in created.
*/
event LOANCreated(uint256 indexed loanId, bytes32 indexed proposalHash, address indexed proposalContract, uint256 refinancingLoanId, Terms terms, LenderSpec lenderSpec, bytes extra);
/**
* @notice Emitted when a loan is paid back.
*/
event LOANPaidBack(uint256 indexed loanId);
/**
* @notice Emitted when a repaid or defaulted loan is claimed.
*/
event LOANClaimed(uint256 indexed loanId, bool indexed defaulted);
/**
* @notice Emitted when a LOAN token holder extends a loan.
*/
event LOANExtended(uint256 indexed loanId, uint40 originalDefaultTimestamp, uint40 extendedDefaultTimestamp);
/**
* @notice Emitted when a loan extension proposal is made.
*/
event ExtensionProposalMade(bytes32 indexed extensionHash, address indexed proposer, ExtensionProposal proposal);
/*----------------------------------------------------------*|
|* # ERRORS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Thrown when managed loan is running.
*/
error LoanNotRunning();
/**
* @notice Thrown when manged loan is still running.
*/
error LoanRunning();
/**
* @notice Thrown when managed loan is repaid.
*/
error LoanRepaid();
/**
* @notice Thrown when managed loan is not repaid.
*/
error LoanNotRepaid();
/**
* @notice Thrown when managed loan is defaulted.
*/
error LoanDefaulted(uint40 timestap);
/**
* @notice Thrown when loan doesn't exist.
*/
error NonExistingLoan();
/**
* @notice Thrown when caller is not a LOAN token holder.
*/
error CallerNotLOANTokenHolder();
/**
* @notice Thrown when refinancing loan terms have different borrower than the original loan.
*/
error RefinanceBorrowerMismatch(address currentBorrower, address newBorrower);
/**
* @notice Thrown when refinancing loan terms have different credit asset than the original loan.
*/
error RefinanceCreditMismatch();
/**
* @notice Thrown when refinancing loan terms have different collateral asset than the original loan.
*/
error RefinanceCollateralMismatch();
/**
* @notice Thrown when hash of provided lender spec doesn't match the one in loan terms.
*/
error InvalidLenderSpecHash(bytes32 current, bytes32 expected);
/**
* @notice Thrown when loan duration is below the minimum.
*/
error InvalidDuration(uint256 current, uint256 limit);
/**
* @notice Thrown when accruing interest APR is above the maximum.
*/
error InterestAPROutOfBounds(uint256 current, uint256 limit);
/**
* @notice Thrown when caller is not a vault.
*/
error CallerNotVault();
/**
* @notice Thrown when pool based source of funds doesn't have a registered adapter.
*/
error InvalidSourceOfFunds(address sourceOfFunds);
/**
* @notice Thrown when caller is not a loan borrower or lender.
*/
error InvalidExtensionCaller();
/**
* @notice Thrown when signer is not a loan extension proposer.
*/
error InvalidExtensionSigner(address allowed, address current);
/**
* @notice Thrown when loan extension duration is out of bounds.
*/
error InvalidExtensionDuration(uint256 duration, uint256 limit);
/**
* @notice Thrown when MultiToken.Asset is invalid.
* @dev Could be because of invalid category, address, id or amount.
*/
error InvalidMultiTokenAsset(uint8 category, address addr, uint256 id, uint256 amount);
/**
* @notice Thrown when loan cannot be claimed on repayment.
*/
error LoanNotAutoclaimable();
/*----------------------------------------------------------*|
|* # CONSTRUCTOR *|
|*----------------------------------------------------------*/
constructor(
address _hub,
address _loanToken,
address _config,
address _revokedNonce,
address _categoryRegistry
) {
hub = PWNHub(_hub);
loanToken = PWNLOAN(_loanToken);
config = PWNConfig(_config);
revokedNonce = PWNRevokedNonce(_revokedNonce);
categoryRegistry = IMultiTokenCategoryRegistry(_categoryRegistry);
}
/*----------------------------------------------------------*|
|* # LENDER SPEC *|
|*----------------------------------------------------------*/
/**
* @notice Get hash of a lender specification.
* @param lenderSpec Lender specification struct.
* @return Hash of a lender specification.
*/
function getLenderSpecHash(LenderSpec calldata lenderSpec) public pure returns (bytes32) {
return keccak256(abi.encode(lenderSpec));
}
/*----------------------------------------------------------*|
|* # CREATE LOAN *|
|*----------------------------------------------------------*/
/**
* @notice Create a new loan.
* @dev The function assumes a prior token approval to a contract address.
* @param proposalSpec Proposal specification struct.
* @param lenderSpec Lender specification struct.
* @param callerSpec Caller specification struct.
* @param extra Auxiliary data that are emitted in the loan creation event. They are not used in the contract logic.
* @return loanId Id of the created LOAN token.
*/
function createLOAN(
ProposalSpec calldata proposalSpec,
LenderSpec calldata lenderSpec,
CallerSpec calldata callerSpec,
bytes calldata extra
) external nonReentrant returns (uint256 loanId) {
// Check provided proposal contract
if (!hub.hasTag(proposalSpec.proposalContract, PWNHubTags.LOAN_PROPOSAL)) {
revert AddressMissingHubTag({ addr: proposalSpec.proposalContract, tag: PWNHubTags.LOAN_PROPOSAL });
}
// Revoke nonce if needed
if (callerSpec.revokeNonce) {
revokedNonce.revokeNonce(msg.sender, callerSpec.nonce);
}
// When refinancing a loan, move the original loan to repaid state
if (callerSpec.refinancingLoanId != 0) {
LOAN storage loan = LOANs[callerSpec.refinancingLoanId];
_checkLoanCanBeRepaid(loan.status, loan.defaultTimestamp);
// Update loan to repaid state
_updateRepaidLoan(callerSpec.refinancingLoanId);
}
// Accept proposal and get loan terms
(bytes32 proposalHash, Terms memory loanTerms) = PWNSimpleLoanProposal(proposalSpec.proposalContract)
.acceptProposal({
acceptor: msg.sender,
refinancingLoanId: callerSpec.refinancingLoanId,
proposalData: proposalSpec.proposalData,
proposalInclusionProof: proposalSpec.proposalInclusionProof,
signature: proposalSpec.signature
});
// Check that provided lender spec is correct
if (msg.sender != loanTerms.lender && loanTerms.lenderSpecHash != getLenderSpecHash(lenderSpec)) {
revert InvalidLenderSpecHash({ current: loanTerms.lenderSpecHash, expected: getLenderSpecHash(lenderSpec) });
}
// Check minimum loan duration
if (loanTerms.duration < MIN_LOAN_DURATION) {
revert InvalidDuration({ current: loanTerms.duration, limit: MIN_LOAN_DURATION });
}
// Check maximum accruing interest APR
if (loanTerms.accruingInterestAPR > MAX_ACCRUING_INTEREST_APR) {
revert InterestAPROutOfBounds({ current: loanTerms.accruingInterestAPR, limit: MAX_ACCRUING_INTEREST_APR });
}
if (callerSpec.refinancingLoanId == 0) {
// Check loan credit and collateral validity
_checkValidAsset(loanTerms.credit);
_checkValidAsset(loanTerms.collateral);
} else {
// Check refinance loan terms
_checkRefinanceLoanTerms(callerSpec.refinancingLoanId, loanTerms);
}
// Create a new loan
loanId = _createLoan({
loanTerms: loanTerms,
lenderSpec: lenderSpec
});
emit LOANCreated({
loanId: loanId,
proposalHash: proposalHash,
proposalContract: proposalSpec.proposalContract,
refinancingLoanId: callerSpec.refinancingLoanId,
terms: loanTerms,
lenderSpec: lenderSpec,
extra: extra
});
// Settle the loan
if (callerSpec.refinancingLoanId == 0) {
// Transfer collateral to Vault and credit to borrower
_settleNewLoan(loanTerms, lenderSpec);
} else {
// Repay the original loan and transfer the surplus to the borrower if any
_settleLoanRefinance({
refinancingLoanId: callerSpec.refinancingLoanId,
loanTerms: loanTerms,
lenderSpec: lenderSpec
});
}
}
/**
* @notice Check if the loan terms are valid for refinancing.
* @dev The function will revert if the loan terms are not valid for refinancing.
* @param loanId Original loan id.
* @param loanTerms Refinancing loan terms struct.
*/
function _checkRefinanceLoanTerms(uint256 loanId, Terms memory loanTerms) private view {
LOAN storage loan = LOANs[loanId];
// Check that the credit asset is the same as in the original loan
// Note: Address check is enough because the asset has always ERC20 category and zero id.
// Amount can be different, but nonzero.
if (
loan.creditAddress != loanTerms.credit.assetAddress ||
loanTerms.credit.amount == 0
) revert RefinanceCreditMismatch();
// Check that the collateral is identical to the original one
if (
loan.collateral.category != loanTerms.collateral.category ||
loan.collateral.assetAddress != loanTerms.collateral.assetAddress ||
loan.collateral.id != loanTerms.collateral.id ||
loan.collateral.amount != loanTerms.collateral.amount
) revert RefinanceCollateralMismatch();
// Check that the borrower is the same as in the original loan
if (loan.borrower != loanTerms.borrower) {
revert RefinanceBorrowerMismatch({
currentBorrower: loan.borrower,
newBorrower: loanTerms.borrower
});
}
}
/**
* @notice Mint LOAN token and store loan data under loan id.
* @param loanTerms Loan terms struct.
* @param lenderSpec Lender specification struct.
*/
function _createLoan(
Terms memory loanTerms,
LenderSpec calldata lenderSpec
) private returns (uint256 loanId) {
// Mint LOAN token for lender
loanId = loanToken.mint(loanTerms.lender);
// Store loan data under loan id
LOAN storage loan = LOANs[loanId];
loan.status = 2;
loan.creditAddress = loanTerms.credit.assetAddress;
loan.originalSourceOfFunds = lenderSpec.sourceOfFunds;
loan.startTimestamp = uint40(block.timestamp);
loan.defaultTimestamp = uint40(block.timestamp) + loanTerms.duration;
loan.borrower = loanTerms.borrower;
loan.originalLender = loanTerms.lender;
loan.accruingInterestAPR = loanTerms.accruingInterestAPR;
loan.fixedInterestAmount = loanTerms.fixedInterestAmount;
loan.principalAmount = loanTerms.credit.amount;
loan.collateral = loanTerms.collateral;
}
/**
* @notice Transfer collateral to Vault and credit to borrower.
* @dev The function assumes a prior token approval to a contract address.
* @param loanTerms Loan terms struct.
*/
function _settleNewLoan(
Terms memory loanTerms,
LenderSpec calldata lenderSpec
) private {
// Transfer collateral to Vault
_pull(loanTerms.collateral, loanTerms.borrower);
// Lender is not the source of funds
if (lenderSpec.sourceOfFunds != loanTerms.lender) {
// Withdraw credit asset to the lender first
_withdrawCreditFromPool(loanTerms.credit, loanTerms, lenderSpec);
}
// Calculate fee amount and new loan amount
(uint256 feeAmount, uint256 newLoanAmount)
= PWNFeeCalculator.calculateFeeAmount(config.fee(), loanTerms.credit.amount);
// Note: `creditHelper` must not be used before updating the amount.
MultiToken.Asset memory creditHelper = loanTerms.credit;
// Collect fees
if (feeAmount > 0) {
creditHelper.amount = feeAmount;
_pushFrom(creditHelper, loanTerms.lender, config.feeCollector());
}
// Transfer credit to borrower
creditHelper.amount = newLoanAmount;
_pushFrom(creditHelper, loanTerms.lender, loanTerms.borrower);
}
/**
* @notice Settle the refinanced loan. If the new lender is the same as the current LOAN owner,
* the function will transfer only the surplus to the borrower, if any.
* If the new loan amount is not enough to cover the original loan, the borrower needs to contribute.
* The function assumes a prior token approval to a contract address.
* @param refinancingLoanId Id of a loan to be refinanced.
* @param loanTerms Loan terms struct.
* @param lenderSpec Lender specification struct.
*/
function _settleLoanRefinance(
uint256 refinancingLoanId,
Terms memory loanTerms,
LenderSpec calldata lenderSpec
) private {
LOAN storage loan = LOANs[refinancingLoanId];
address loanOwner = loanToken.ownerOf(refinancingLoanId);
uint256 repaymentAmount = loanRepaymentAmount(refinancingLoanId);
// Calculate fee amount and new loan amount
(uint256 feeAmount, uint256 newLoanAmount)
= PWNFeeCalculator.calculateFeeAmount(config.fee(), loanTerms.credit.amount);
uint256 common = Math.min(repaymentAmount, newLoanAmount);
uint256 surplus = newLoanAmount > repaymentAmount ? newLoanAmount - repaymentAmount : 0;
uint256 shortage = surplus > 0 ? 0 : repaymentAmount - newLoanAmount;
// Note: New lender will always transfer common loan amount to the Vault, except when:
// - the new lender is the current loan owner but not the original lender
// - the new lender is the current loan owner, is the original lender, and the new and original source of funds are equal
bool shouldTransferCommon =
loanTerms.lender != loanOwner ||
(loan.originalLender == loanOwner && loan.originalSourceOfFunds != lenderSpec.sourceOfFunds);
// Note: `creditHelper` must not be used before updating the amount.
MultiToken.Asset memory creditHelper = loanTerms.credit;
// Lender is not the source of funds
if (lenderSpec.sourceOfFunds != loanTerms.lender) {
// Withdraw credit asset to the lender first
creditHelper.amount = feeAmount + (shouldTransferCommon ? common : 0) + surplus;
_withdrawCreditFromPool(creditHelper, loanTerms, lenderSpec);
}
// Collect fees
if (feeAmount > 0) {
creditHelper.amount = feeAmount;
_pushFrom(creditHelper, loanTerms.lender, config.feeCollector());
}
// Transfer common amount to the Vault if necessary
if (shouldTransferCommon) {
creditHelper.amount = common;
_pull(creditHelper, loanTerms.lender);
}
// Handle the surplus or the shortage
if (surplus > 0) {
// New loan covers the whole original loan, transfer surplus to the borrower
creditHelper.amount = surplus;
_pushFrom(creditHelper, loanTerms.lender, loanTerms.borrower);
} else if (shortage > 0) {
// New loan covers only part of the original loan, borrower needs to contribute
creditHelper.amount = shortage;
_pull(creditHelper, loanTerms.borrower);
}
// Try to repay directly
try this.tryClaimRepaidLOAN({
loanId: refinancingLoanId,
creditAmount: (shouldTransferCommon ? common : 0) + shortage,
loanOwner: loanOwner
}) {} catch {
// Note: Safe transfer or supply to a pool can fail. In that case the LOAN token stays in repaid state and
// waits for the LOAN token owner to claim the repaid credit. Otherwise lender would be able to prevent
// anybody from repaying the loan.
// Transfer loan common to the Vault if necessary
// Shortage part is already in the Vault
if (!shouldTransferCommon) {
creditHelper.amount = common;
if (lenderSpec.sourceOfFunds != loanTerms.lender) {
// Lender is not the source of funds
// Withdraw credit asset to the lender first
_withdrawCreditFromPool(creditHelper, loanTerms, lenderSpec);
}
_pull(creditHelper, loanTerms.lender);
}
}
}
/**
* @notice Withdraw a credit asset from a pool to the Vault.
* @dev The function will revert if pool doesn't have registered pool adapter.
* @param credit Asset to be pulled from the pool.
* @param loanTerms Loan terms struct.
* @param lenderSpec Lender specification struct.
*/
function _withdrawCreditFromPool(
MultiToken.Asset memory credit,
Terms memory loanTerms,
LenderSpec calldata lenderSpec
) private {
IPoolAdapter poolAdapter = config.getPoolAdapter(lenderSpec.sourceOfFunds);
if (address(poolAdapter) == address(0)) {
revert InvalidSourceOfFunds({ sourceOfFunds: lenderSpec.sourceOfFunds });
}
if (credit.amount > 0) {
_withdrawFromPool(credit, poolAdapter, lenderSpec.sourceOfFunds, loanTerms.lender);
}
}
/*----------------------------------------------------------*|
|* # REPAY LOAN *|
|*----------------------------------------------------------*/
/**
* @notice Repay running loan.
* @dev Any address can repay a running loan, but a collateral will be transferred to a borrower address associated with the loan.
* If the LOAN token holder is the same as the original lender, the repayment credit asset will be
* transferred to the LOAN token holder directly. Otherwise it will transfer the repayment credit asset to
* a vault, waiting on a LOAN token holder to claim it. The function assumes a prior token approval to a contract address.
* @param loanId Id of a loan that is being repaid.
*/
function repayLOAN(uint256 loanId) external nonReentrant {
LOAN storage loan = LOANs[loanId];
_checkLoanCanBeRepaid(loan.status, loan.defaultTimestamp);
// Update loan to repaid state
_updateRepaidLoan(loanId);
// Transfer the repaid credit to the Vault
uint256 repaymentAmount = loanRepaymentAmount(loanId);
_pull(loan.creditAddress.ERC20(repaymentAmount), msg.sender);
// Transfer collateral back to borrower
_push(loan.collateral, loan.borrower);
// Try to repay directly
try this.tryClaimRepaidLOAN(loanId, repaymentAmount, loanToken.ownerOf(loanId)) {} catch {
// Note: Safe transfer or supply to a pool can fail. In that case leave the LOAN token in repaid state and
// wait for the LOAN token owner to claim the repaid credit. Otherwise lender would be able to prevent
// borrower from repaying the loan.
}
}
/**
* @notice Check if the loan can be repaid.
* @dev The function will revert if the loan cannot be repaid.
* @param status Loan status.
* @param defaultTimestamp Loan default timestamp.
*/
function _checkLoanCanBeRepaid(uint8 status, uint40 defaultTimestamp) private view {
// Check that loan exists and is not from a different loan contract
if (status == 0)
revert NonExistingLoan();
// Check that loan is running
if (status != 2)
revert LoanNotRunning();
// Check that loan is not defaulted
if (defaultTimestamp <= block.timestamp)
revert LoanDefaulted({ timestap: defaultTimestamp });
}
/**
* @notice Update loan to repaid state.
* @param loanId Id of a loan that is being repaid.
*/
function _updateRepaidLoan(uint256 loanId) private {
LOAN storage loan = LOANs[loanId];
// Move loan to repaid state and wait for the loan owner to claim the repaid credit
loan.status = 3;
// Update accrued interest amount
loan.fixedInterestAmount = _loanAccruedInterest(loan);
loan.accruingInterestAPR = 0;
// Note: Reusing `fixedInterestAmount` to store accrued interest at the time of repayment
// to have the value at the time of claim and stop accruing new interest.
emit LOANPaidBack({ loanId: loanId });
}
/*----------------------------------------------------------*|
|* # LOAN REPAYMENT AMOUNT *|
|*----------------------------------------------------------*/
/**
* @notice Calculate the loan repayment amount with fixed and accrued interest.
* @param loanId Id of a loan.
* @return Repayment amount.
*/
function loanRepaymentAmount(uint256 loanId) public view returns (uint256) {
LOAN storage loan = LOANs[loanId];
// Check non-existent loan
if (loan.status == 0) return 0;
// Return loan principal with accrued interest
return loan.principalAmount + _loanAccruedInterest(loan);
}
/**
* @notice Calculate the loan accrued interest.
* @param loan Loan data struct.
* @return Accrued interest amount.
*/
function _loanAccruedInterest(LOAN storage loan) private view returns (uint256) {
if (loan.accruingInterestAPR == 0)
return loan.fixedInterestAmount;
uint256 accruingMinutes = (block.timestamp - loan.startTimestamp) / 1 minutes;
uint256 accruedInterest = Math.mulDiv(
loan.principalAmount, uint256(loan.accruingInterestAPR) * accruingMinutes, ACCRUING_INTEREST_APR_DENOMINATOR
);
return loan.fixedInterestAmount + accruedInterest;
}
/*----------------------------------------------------------*|
|* # CLAIM LOAN *|
|*----------------------------------------------------------*/
/**
* @notice Claim a repaid or defaulted loan.
* @dev Only a LOAN token holder can claim a repaid or defaulted loan.
* Claim will transfer the repaid credit or collateral to a LOAN token holder address and burn the LOAN token.
* @param loanId Id of a loan that is being claimed.
*/
function claimLOAN(uint256 loanId) external nonReentrant {
LOAN storage loan = LOANs[loanId];
// Check that caller is LOAN token holder
if (loanToken.ownerOf(loanId) != msg.sender)
revert CallerNotLOANTokenHolder();
if (loan.status == 0)
// Loan is not existing or from a different loan contract
revert NonExistingLoan();
else if (loan.status == 3)
// Loan has been paid back
_settleLoanClaim({ loanId: loanId, loanOwner: msg.sender, defaulted: false });
else if (loan.status == 2 && loan.defaultTimestamp <= block.timestamp)
// Loan is running but expired
_settleLoanClaim({ loanId: loanId, loanOwner: msg.sender, defaulted: true });
else
// Loan is in wrong state
revert LoanRunning();
}
/**
* @notice Try to claim a repaid loan for the loan owner.
* @dev The function is called by the vault to repay a loan directly to the original lender or its source of funds
* if the loan owner is the original lender. If the transfer fails, the LOAN token will remain in repaid state
* and the LOAN token owner will be able to claim the repaid credit. Otherwise lender would be able to prevent
* borrower from repaying the loan.
* @param loanId Id of a loan that is being claimed.
* @param creditAmount Amount of a credit to be claimed.
* @param loanOwner Address of the LOAN token holder.
*/
function tryClaimRepaidLOAN(uint256 loanId, uint256 creditAmount, address loanOwner) external {
if (msg.sender != address(this))
revert CallerNotVault();
LOAN storage loan = LOANs[loanId];
// Loan must be in the repaid state
if (loan.status != 3)
revert LoanNotRepaid();
// If current loan owner is not original lender, the loan cannot be repaid directly, return without revert.
if (loan.originalLender != loanOwner)
revert LoanNotAutoclaimable();
// Note: The loan owner is the original lender at this point.
address destinationOfFunds = loan.originalSourceOfFunds;
MultiToken.Asset memory repaymentCredit = loan.creditAddress.ERC20(creditAmount);
// Delete loan data & burn LOAN token before calling safe transfer
_deleteLoan(loanId);
emit LOANClaimed({ loanId: loanId, defaulted: false });
// End here if the credit amount is zero
if (creditAmount == 0)
return;
// Note: Zero credit amount can happen when the loan is refinanced by the original lender.
// Repay the original lender
if (destinationOfFunds == loanOwner) {
_push(repaymentCredit, loanOwner);
} else {
IPoolAdapter poolAdapter = config.getPoolAdapter(destinationOfFunds);
// Check that pool has registered adapter
if (address(poolAdapter) == address(0)) {
// Note: Adapter can be unregistered during the loan lifetime, so the pool might not have an adapter.
// In that case, the loan owner will be able to claim the repaid credit.
revert InvalidSourceOfFunds({ sourceOfFunds: destinationOfFunds });
}
// Supply the repaid credit to the original pool
_supplyToPool(repaymentCredit, poolAdapter, destinationOfFunds, loanOwner);
}
// Note: If the transfer fails, the LOAN token will remain in repaid state and the LOAN token owner
// will be able to claim the repaid credit. Otherwise lender would be able to prevent borrower from
// repaying the loan.
}
/**
* @notice Settle the loan claim.
* @param loanId Id of a loan that is being claimed.
* @param loanOwner Address of the LOAN token holder.
* @param defaulted If the loan is defaulted.
*/
function _settleLoanClaim(uint256 loanId, address loanOwner, bool defaulted) private {
LOAN storage loan = LOANs[loanId];
// Store in memory before deleting the loan
MultiToken.Asset memory asset = defaulted
? loan.collateral
: loan.creditAddress.ERC20(loanRepaymentAmount(loanId));
// Delete loan data & burn LOAN token before calling safe transfer
_deleteLoan(loanId);
emit LOANClaimed({ loanId: loanId, defaulted: defaulted });
// Transfer asset to current LOAN token owner
_push(asset, loanOwner);
}
/**
* @notice Delete loan data and burn LOAN token.
* @param loanId Id of a loan that is being deleted.
*/
function _deleteLoan(uint256 loanId) private {
loanToken.burn(loanId);
delete LOANs[loanId];
}
/*----------------------------------------------------------*|
|* # EXTEND LOAN *|
|*----------------------------------------------------------*/
/**
* @notice Make an on-chain extension proposal.
* @param extension Extension proposal struct.
*/
function makeExtensionProposal(ExtensionProposal calldata extension) external {
// Check that caller is a proposer
if (msg.sender != extension.proposer)
revert InvalidExtensionSigner({ allowed: extension.proposer, current: msg.sender });
// Mark extension proposal as made
bytes32 extensionHash = getExtensionHash(extension);
extensionProposalsMade[extensionHash] = true;
emit ExtensionProposalMade(extensionHash, extension.proposer, extension);
}
/**
* @notice Extend loans default date with signed extension proposal signed by borrower or LOAN token owner.
* @dev The function assumes a prior token approval to a contract address.
* @param extension Extension proposal struct.
* @param signature Signature of the extension proposal.
*/
function extendLOAN(
ExtensionProposal calldata extension,
bytes calldata signature
) external nonReentrant {
LOAN storage loan = LOANs[extension.loanId];
// Check that loan is in the right state
if (loan.status == 0)
revert NonExistingLoan();
if (loan.status == 3) // cannot extend repaid loan
revert LoanRepaid();
// Check extension validity
bytes32 extensionHash = getExtensionHash(extension);
if (!extensionProposalsMade[extensionHash])
if (!PWNSignatureChecker.isValidSignatureNow(extension.proposer, extensionHash, signature))
revert PWNSignatureChecker.InvalidSignature({ signer: extension.proposer, digest: extensionHash });
// Check extension expiration
if (block.timestamp >= extension.expiration)
revert Expired({ current: block.timestamp, expiration: extension.expiration });
// Check extension nonce
if (!revokedNonce.isNonceUsable(extension.proposer, extension.nonceSpace, extension.nonce))
revert PWNRevokedNonce.NonceNotUsable({
addr: extension.proposer,
nonceSpace: extension.nonceSpace,
nonce: extension.nonce
});
// Check caller and signer
address loanOwner = loanToken.ownerOf(extension.loanId);
if (msg.sender == loanOwner) {
if (extension.proposer != loan.borrower) {
// If caller is loan owner, proposer must be borrower
revert InvalidExtensionSigner({
allowed: loan.borrower,
current: extension.proposer
});
}
} else if (msg.sender == loan.borrower) {
if (extension.proposer != loanOwner) {
// If caller is borrower, proposer must be loan owner
revert InvalidExtensionSigner({
allowed: loanOwner,
current: extension.proposer
});
}
} else {
// Caller must be loan owner or borrower
revert InvalidExtensionCaller();
}
// Check duration range
if (extension.duration < MIN_EXTENSION_DURATION)
revert InvalidExtensionDuration({
duration: extension.duration,
limit: MIN_EXTENSION_DURATION
});
if (extension.duration > MAX_EXTENSION_DURATION)
revert InvalidExtensionDuration({
duration: extension.duration,
limit: MAX_EXTENSION_DURATION
});
// Revoke extension proposal nonce
revokedNonce.revokeNonce(extension.proposer, extension.nonceSpace, extension.nonce);
// Update loan
uint40 originalDefaultTimestamp = loan.defaultTimestamp;
loan.defaultTimestamp = originalDefaultTimestamp + extension.duration;
// Emit event
emit LOANExtended({
loanId: extension.loanId,
originalDefaultTimestamp: originalDefaultTimestamp,
extendedDefaultTimestamp: loan.defaultTimestamp
});
// Skip compensation transfer if it's not set
if (extension.compensationAddress != address(0) && extension.compensationAmount > 0) {
MultiToken.Asset memory compensation = extension.compensationAddress.ERC20(extension.compensationAmount);
// Check compensation asset validity
_checkValidAsset(compensation);
// Transfer compensation to the loan owner
_pushFrom(compensation, loan.borrower, loanOwner);
}
}
/**
* @notice Get the hash of the extension struct.
* @param extension Extension proposal struct.
* @return Hash of the extension struct.
*/
function getExtensionHash(ExtensionProposal calldata extension) public view returns (bytes32) {
return keccak256(abi.encodePacked(
hex"1901",
DOMAIN_SEPARATOR,
keccak256(abi.encodePacked(
EXTENSION_PROPOSAL_TYPEHASH,
abi.encode(extension)
))
));
}
/*----------------------------------------------------------*|
|* # GET LOAN *|
|*----------------------------------------------------------*/
/**
* @notice Return a LOAN data struct associated with a loan id.
* @param loanId Id of a loan in question.
* @return status LOAN status.
* @return startTimestamp Unix timestamp (in seconds) of a loan creation date.
* @return defaultTimestamp Unix timestamp (in seconds) of a loan default date.
* @return borrower Address of a loan borrower.
* @return originalLender Address of a loan original lender.
* @return loanOwner Address of a LOAN token holder.
* @return accruingInterestAPR Accruing interest APR with 2 decimal places.
* @return fixedInterestAmount Fixed interest amount in credit asset tokens.
* @return credit Asset used as a loan credit. For a definition see { MultiToken dependency lib }.
* @return collateral Asset used as a loan collateral. For a definition see { MultiToken dependency lib }.
* @return originalSourceOfFunds Address of a source of funds for the loan. Original lender address, if the loan was funded directly, or a pool address from witch credit funds were withdrawn / borrowred.
* @return repaymentAmount Loan repayment amount in credit asset tokens.
*/
function getLOAN(uint256 loanId) external view returns (
uint8 status,
uint40 startTimestamp,
uint40 defaultTimestamp,
address borrower,
address originalLender,
address loanOwner,
uint24 accruingInterestAPR,
uint256 fixedInterestAmount,
MultiToken.Asset memory credit,
MultiToken.Asset memory collateral,
address originalSourceOfFunds,
uint256 repaymentAmount
) {
LOAN storage loan = LOANs[loanId];
status = _getLOANStatus(loanId);
startTimestamp = loan.startTimestamp;
defaultTimestamp = loan.defaultTimestamp;
borrower = loan.borrower;
originalLender = loan.originalLender;
loanOwner = loan.status != 0 ? loanToken.ownerOf(loanId) : address(0);
accruingInterestAPR = loan.accruingInterestAPR;
fixedInterestAmount = loan.fixedInterestAmount;
credit = loan.creditAddress.ERC20(loan.principalAmount);
collateral = loan.collateral;
originalSourceOfFunds = loan.originalSourceOfFunds;
repaymentAmount = loanRepaymentAmount(loanId);
}
/**
* @notice Return a LOAN status associated with a loan id.
* @param loanId Id of a loan in question.
* @return status LOAN status.
*/
function _getLOANStatus(uint256 loanId) private view returns (uint8) {
LOAN storage loan = LOANs[loanId];
return (loan.status == 2 && loan.defaultTimestamp <= block.timestamp) ? 4 : loan.status;
}
/*----------------------------------------------------------*|
|* # MultiToken *|
|*----------------------------------------------------------*/
/**
* @notice Check if the asset is valid with the MultiToken dependency lib and the category registry.
* @dev See MultiToken.isValid for more details.
* @param asset Asset to be checked.
* @return True if the asset is valid.
*/
function isValidAsset(MultiToken.Asset memory asset) public view returns (bool) {
return MultiToken.isValid(asset, categoryRegistry);
}
/**
* @notice Check if the asset is valid with the MultiToken lib and the category registry.
* @dev The function will revert if the asset is not valid.
* @param asset Asset to be checked.
*/
function _checkValidAsset(MultiToken.Asset memory asset) private view {
if (!isValidAsset(asset)) {
revert InvalidMultiTokenAsset({
category: uint8(asset.category),
addr: asset.assetAddress,
id: asset.id,
amount: asset.amount
});
}
}
/*----------------------------------------------------------*|
|* # IPWNLoanMetadataProvider *|
|*----------------------------------------------------------*/
/**
* @inheritdoc IPWNLoanMetadataProvider
*/
function loanMetadataUri() override external view returns (string memory) {
return config.loanMetadataUri(address(this));
}
/*----------------------------------------------------------*|
|* # ERC5646 *|
|*----------------------------------------------------------*/
/**
* @inheritdoc IERC5646
*/
function getStateFingerprint(uint256 tokenId) external view virtual override returns (bytes32) {
LOAN storage loan = LOANs[tokenId];
if (loan.status == 0)
return bytes32(0);
// The only mutable state properties are:
// - status: updated for expired loans based on block.timestamp
// - defaultTimestamp: updated when the loan is extended
// - fixedInterestAmount: updated when the loan is repaid and waiting to be claimed
// - accruingInterestAPR: updated when the loan is repaid and waiting to be claimed
// Others don't have to be part of the state fingerprint as it does not act as a token identification.
return keccak256(abi.encode(
_getLOANStatus(tokenId),
loan.defaultTimestamp,
loan.fixedInterestAmount,
loan.accruingInterestAPR
));
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { MerkleProof } from "openzeppelin/utils/cryptography/MerkleProof.sol";
import { ERC165Checker } from "openzeppelin/utils/introspection/ERC165Checker.sol";
import { PWNConfig, IStateFingerpringComputer } from "pwn/config/PWNConfig.sol";
import { PWNHub } from "pwn/hub/PWNHub.sol";
import { PWNHubTags } from "pwn/hub/PWNHubTags.sol";
import { IERC5646 } from "pwn/interfaces/IERC5646.sol";
import { PWNSignatureChecker } from "pwn/loan/lib/PWNSignatureChecker.sol";
import { PWNSimpleLoan } from "pwn/loan/terms/simple/loan/PWNSimpleLoan.sol";
import { PWNUtilizedCredit } from "pwn/utilized-credit/PWNUtilizedCredit.sol";
import { PWNRevokedNonce } from "pwn/nonce/PWNRevokedNonce.sol";
import { Expired, AddressMissingHubTag } from "pwn/PWNErrors.sol";
/**
* @title PWN Simple Loan Proposal Base Contract
* @notice Base contract of loan proposals that builds a simple loan terms.
*/
abstract contract PWNSimpleLoanProposal {
/*----------------------------------------------------------*|
|* # VARIABLES & CONSTANTS DEFINITIONS *|
|*----------------------------------------------------------*/
bytes32 public immutable DOMAIN_SEPARATOR;
bytes32 public immutable MULTIPROPOSAL_DOMAIN_SEPARATOR;
PWNHub public immutable hub;
PWNRevokedNonce public immutable revokedNonce;
PWNConfig public immutable config;
PWNUtilizedCredit public immutable utilizedCredit;
bytes32 public constant MULTIPROPOSAL_TYPEHASH = keccak256("Multiproposal(bytes32 multiproposalMerkleRoot)");
struct Multiproposal {
bytes32 multiproposalMerkleRoot;
}
struct ProposalBase {
address collateralAddress;
uint256 collateralId;
bool checkCollateralStateFingerprint;
bytes32 collateralStateFingerprint;
uint256 creditAmount;
uint256 availableCreditLimit;
bytes32 utilizedCreditId;
uint40 expiration;
address allowedAcceptor;
address proposer;
bool isOffer;
uint256 refinancingLoanId;
uint256 nonceSpace;
uint256 nonce;
address loanContract;
}
/**
* @dev Mapping of proposals made via on-chain transactions.
* Could be used by contract wallets instead of EIP-1271.
* (proposal hash => is made)
*/
mapping (bytes32 => bool) public proposalsMade;
/*----------------------------------------------------------*|
|* # ERRORS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Thrown when a caller is missing a required hub tag.
*/
error CallerNotLoanContract(address caller, address loanContract);
/**
* @notice Thrown when a state fingerprint computer is not registered.
*/
error MissingStateFingerprintComputer();
/**
* @notice Thrown when a proposed collateral state fingerprint doesn't match the current state.
*/
error InvalidCollateralStateFingerprint(bytes32 current, bytes32 proposed);
/**
* @notice Thrown when a caller is not a stated proposer.
*/
error CallerIsNotStatedProposer(address addr);
/**
* @notice Thrown when proposal acceptor and proposer are the same.
*/
error AcceptorIsProposer(address addr);
/**
* @notice Thrown when provided refinance loan id cannot be used.
*/
error InvalidRefinancingLoanId(uint256 refinancingLoanId);
/**
* @notice Thrown when caller is not allowed to accept a proposal.
*/
error CallerNotAllowedAcceptor(address current, address allowed);
/**
* @notice Thrown when a default date is in the past.
*/
error DefaultDateInPast(uint32 defaultDate, uint32 current);
/*----------------------------------------------------------*|
|* # CONSTRUCTOR *|
|*----------------------------------------------------------*/
constructor(
address _hub,
address _revokedNonce,
address _config,
address _utilizedCredit,
string memory name,
string memory version
) {
hub = PWNHub(_hub);
revokedNonce = PWNRevokedNonce(_revokedNonce);
config = PWNConfig(_config);
utilizedCredit = PWNUtilizedCredit(_utilizedCredit);
DOMAIN_SEPARATOR = keccak256(abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256(abi.encodePacked(name)),
keccak256(abi.encodePacked(version)),
block.chainid,
address(this)
));
MULTIPROPOSAL_DOMAIN_SEPARATOR = keccak256(abi.encode(
keccak256("EIP712Domain(string name)"),
keccak256("PWNMultiproposal")
));
}
/*----------------------------------------------------------*|
|* # EXTERNALS *|
|*----------------------------------------------------------*/
/**
* @notice Get a multiproposal hash according to EIP-712.
* @param multiproposal Multiproposal struct.
* @return Multiproposal hash.
*/
function getMultiproposalHash(Multiproposal memory multiproposal) public view returns (bytes32) {
return keccak256(abi.encodePacked(
hex"1901", MULTIPROPOSAL_DOMAIN_SEPARATOR, keccak256(abi.encodePacked(
MULTIPROPOSAL_TYPEHASH, abi.encode(multiproposal)
))
));
}
/**
* @notice Helper function for revoking a proposal nonce on behalf of a caller.
* @param nonceSpace Nonce space of a proposal nonce to be revoked.
* @param nonce Proposal nonce to be revoked.
*/
function revokeNonce(uint256 nonceSpace, uint256 nonce) external {
revokedNonce.revokeNonce(msg.sender, nonceSpace, nonce);
}
/**
* @notice Accept a proposal and create new loan terms.
* @dev Function can be called only by a loan contract with appropriate PWN Hub tag.
* @param acceptor Address of a proposal acceptor.
* @param refinancingLoanId Id of a loan to be refinanced. 0 if creating a new loan.
* @param proposalData Encoded proposal data with signature.
* @param proposalInclusionProof Multiproposal inclusion proof. Empty if single proposal.
* @return proposalHash Proposal hash.
* @return loanTerms Loan terms.
*/
function acceptProposal(
address acceptor,
uint256 refinancingLoanId,
bytes calldata proposalData,
bytes32[] calldata proposalInclusionProof,
bytes calldata signature
) virtual external returns (bytes32 proposalHash, PWNSimpleLoan.Terms memory loanTerms);
/*----------------------------------------------------------*|
|* # INTERNALS *|
|*----------------------------------------------------------*/
/**
* @notice Get a proposal hash according to EIP-712.
* @param encodedProposal Encoded proposal struct.
* @return Struct hash.
*/
function _getProposalHash(
bytes32 proposalTypehash,
bytes memory encodedProposal
) internal view returns (bytes32) {
return keccak256(abi.encodePacked(
hex"1901", DOMAIN_SEPARATOR, keccak256(abi.encodePacked(
proposalTypehash, encodedProposal
))
));
}
/**
* @notice Make an on-chain proposal.
* @dev Function will mark a proposal hash as proposed.
* @param proposalHash Proposal hash.
* @param proposer Address of a proposal proposer.
*/
function _makeProposal(bytes32 proposalHash, address proposer) internal {
if (msg.sender != proposer) {
revert CallerIsNotStatedProposer({ addr: proposer });
}
proposalsMade[proposalHash] = true;
}
/**
* @notice Get loan duration from a duration or date value.
* @param durationOrDate Duration or date value.
* @return Loan duration.
*/
function _getLoanDuration(uint32 durationOrDate) internal view returns (uint32) {
if (durationOrDate <= 1e9) {
// Value is duration
return durationOrDate;
} else if (durationOrDate > block.timestamp) {
// Value is date
return uint32(uint256(durationOrDate) - block.timestamp);
} else {
revert DefaultDateInPast({ defaultDate: durationOrDate, current: uint32(block.timestamp) });
}
}
/**
* @notice Try to accept proposal base.
* @param acceptor Address of a proposal acceptor.
* @param refinancingLoanId Refinancing loan ID.
* @param proposalHash Proposal hash.
* @param proposalInclusionProof Multiproposal inclusion proof. Empty if single proposal.
* @param signature Signature of a proposal.
* @param proposal Proposal base struct.
*/
function _acceptProposal(
address acceptor,
uint256 refinancingLoanId,
bytes32 proposalHash,
bytes32[] calldata proposalInclusionProof,
bytes calldata signature,
ProposalBase memory proposal
) internal {
// Check loan contract
if (msg.sender != proposal.loanContract) {
revert CallerNotLoanContract({ caller: msg.sender, loanContract: proposal.loanContract });
}
if (!hub.hasTag(proposal.loanContract, PWNHubTags.ACTIVE_LOAN)) {
revert AddressMissingHubTag({ addr: proposal.loanContract, tag: PWNHubTags.ACTIVE_LOAN });
}
// Check proposal signature or that it was made on-chain
if (proposalInclusionProof.length == 0) {
// Single proposal signature
if (!proposalsMade[proposalHash]) {
if (!PWNSignatureChecker.isValidSignatureNow(proposal.proposer, proposalHash, signature)) {
revert PWNSignatureChecker.InvalidSignature({ signer: proposal.proposer, digest: proposalHash });
}
}
} else {
// Multiproposal signature
bytes32 multiproposalHash = getMultiproposalHash(
Multiproposal({
multiproposalMerkleRoot: MerkleProof.processProofCalldata({
proof: proposalInclusionProof,
leaf: proposalHash
})
})
);
if (!PWNSignatureChecker.isValidSignatureNow(proposal.proposer, multiproposalHash, signature)) {
revert PWNSignatureChecker.InvalidSignature({ signer: proposal.proposer, digest: multiproposalHash });
}
}
// Check proposer is not acceptor
if (proposal.proposer == acceptor) {
revert AcceptorIsProposer({ addr: acceptor});
}
// Check refinancing proposal
if (refinancingLoanId == 0) {
if (proposal.refinancingLoanId != 0) {
revert InvalidRefinancingLoanId({ refinancingLoanId: proposal.refinancingLoanId });
}
} else {
if (refinancingLoanId != proposal.refinancingLoanId) {
if (proposal.refinancingLoanId != 0 || !proposal.isOffer) {
revert InvalidRefinancingLoanId({ refinancingLoanId: proposal.refinancingLoanId });
}
}
}
// Check proposal is not expired
if (block.timestamp >= proposal.expiration) {
revert Expired({ current: block.timestamp, expiration: proposal.expiration });
}
// Check proposal is not revoked
if (!revokedNonce.isNonceUsable(proposal.proposer, proposal.nonceSpace, proposal.nonce)) {
revert PWNRevokedNonce.NonceNotUsable({
addr: proposal.proposer,
nonceSpace: proposal.nonceSpace,
nonce: proposal.nonce
});
}
// Check propsal is accepted by an allowed address
if (proposal.allowedAcceptor != address(0) && acceptor != proposal.allowedAcceptor) {
revert CallerNotAllowedAcceptor({ current: acceptor, allowed: proposal.allowedAcceptor });
}
if (proposal.availableCreditLimit == 0) {
// Revoke nonce if credit limit is 0, proposal can be accepted only once
revokedNonce.revokeNonce(proposal.proposer, proposal.nonceSpace, proposal.nonce);
} else {
// Update utilized credit
// Note: This will revert if utilized credit would exceed the available credit limit
utilizedCredit.utilizeCredit(
proposal.proposer, proposal.utilizedCreditId, proposal.creditAmount, proposal.availableCreditLimit
);
}
// Check collateral state fingerprint if needed
if (proposal.checkCollateralStateFingerprint) {
bytes32 currentFingerprint;
IStateFingerpringComputer computer = config.getStateFingerprintComputer(proposal.collateralAddress);
if (address(computer) != address(0)) {
// Asset has registered computer
currentFingerprint = computer.computeStateFingerprint({
token: proposal.collateralAddress, tokenId: proposal.collateralId
});
} else if (ERC165Checker.supportsInterface(proposal.collateralAddress, type(IERC5646).interfaceId)) {
// Asset implements ERC5646
currentFingerprint = IERC5646(proposal.collateralAddress).getStateFingerprint(proposal.collateralId);
} else {
// Asset is not implementing ERC5646 and no computer is registered
revert MissingStateFingerprintComputer();
}
if (proposal.collateralStateFingerprint != currentFingerprint) {
// Fingerprint mismatch
revert InvalidCollateralStateFingerprint({
current: currentFingerprint,
proposed: proposal.collateralStateFingerprint
});
}
}
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
function safeFetchDecimals(address asset) view returns (uint256) {
(bool success, bytes memory returndata) = asset.staticcall(abi.encodeWithSignature("decimals()"));
if (!success || returndata.length == 0) {
return 0;
}
return abi.decode(returndata, (uint256));
}// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol) pragma solidity ^0.8.0; import "../token/ERC721/IERC721.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1155.sol) pragma solidity ^0.8.0; import "../token/ERC1155/IERC1155.sol";
// 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.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/introspection/ERC165Checker.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Library used to query support of an interface declared via {IERC165}.
*
* Note that these functions return the actual result of the query: they do not
* `revert` if an interface is not supported. It is up to the caller to decide
* what to do in these cases.
*/
library ERC165Checker {
// As per the EIP-165 spec, no interface should ever match 0xffffffff
bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;
/**
* @dev Returns true if `account` supports the {IERC165} interface.
*/
function supportsERC165(address account) internal view returns (bool) {
// Any contract that implements ERC165 must explicitly indicate support of
// InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid
return
supportsERC165InterfaceUnchecked(account, type(IERC165).interfaceId) &&
!supportsERC165InterfaceUnchecked(account, _INTERFACE_ID_INVALID);
}
/**
* @dev Returns true if `account` supports the interface defined by
* `interfaceId`. Support for {IERC165} itself is queried automatically.
*
* See {IERC165-supportsInterface}.
*/
function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {
// query support of both ERC165 as per the spec and support of _interfaceId
return supportsERC165(account) && supportsERC165InterfaceUnchecked(account, interfaceId);
}
/**
* @dev Returns a boolean array where each value corresponds to the
* interfaces passed in and whether they're supported or not. This allows
* you to batch check interfaces for a contract where your expectation
* is that some interfaces may not be supported.
*
* See {IERC165-supportsInterface}.
*
* _Available since v3.4._
*/
function getSupportedInterfaces(
address account,
bytes4[] memory interfaceIds
) internal view returns (bool[] memory) {
// an array of booleans corresponding to interfaceIds and whether they're supported or not
bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);
// query support of ERC165 itself
if (supportsERC165(account)) {
// query support of each interface in interfaceIds
for (uint256 i = 0; i < interfaceIds.length; i++) {
interfaceIdsSupported[i] = supportsERC165InterfaceUnchecked(account, interfaceIds[i]);
}
}
return interfaceIdsSupported;
}
/**
* @dev Returns true if `account` supports all the interfaces defined in
* `interfaceIds`. Support for {IERC165} itself is queried automatically.
*
* Batch-querying can lead to gas savings by skipping repeated checks for
* {IERC165} support.
*
* See {IERC165-supportsInterface}.
*/
function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {
// query support of ERC165 itself
if (!supportsERC165(account)) {
return false;
}
// query support of each interface in interfaceIds
for (uint256 i = 0; i < interfaceIds.length; i++) {
if (!supportsERC165InterfaceUnchecked(account, interfaceIds[i])) {
return false;
}
}
// all interfaces supported
return true;
}
/**
* @notice Query if a contract implements an interface, does not check ERC165 support
* @param account The address of the contract to query for support of an interface
* @param interfaceId The interface identifier, as specified in ERC-165
* @return true if the contract at account indicates support of the interface with
* identifier interfaceId, false otherwise
* @dev Assumes that account contains a contract that supports ERC165, otherwise
* the behavior of this method is undefined. This precondition can be checked
* with {supportsERC165}.
*
* Some precompiled contracts will falsely indicate support for a given interface, so caution
* should be exercised when using this function.
*
* Interface identification is specified in ERC-165.
*/
function supportsERC165InterfaceUnchecked(address account, bytes4 interfaceId) internal view returns (bool) {
// prepare call
bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);
// perform static call
bool success;
uint256 returnSize;
uint256 returnValue;
assembly {
success := staticcall(30000, account, add(encodedParams, 0x20), mload(encodedParams), 0x00, 0x20)
returnSize := returndatasize()
returnValue := mload(0x00)
}
return success && returnSize >= 0x20 && returnValue > 0;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title CryptoKitties Interface
* @dev CryptoKitties Interface ID is 0x9a20483d.
*/
interface ICryptoKitties {
// Required methods
function totalSupply() external view returns (uint256 total);
function balanceOf(address _owner) external view returns (uint256 balance);
function ownerOf(uint256 _tokenId) external view returns (address owner);
function approve(address _to, uint256 _tokenId) external;
function transfer(address _to, uint256 _tokenId) external;
function transferFrom(address _from, address _to, uint256 _tokenId) external;
// Optional
function name() external view returns (string memory name);
function symbol() external view returns (string memory symbol);
function tokensOfOwner(address _owner) external view returns (uint256[] memory tokenIds);
function tokenMetadata(uint256 _tokenId, string memory _preferredTransport) external view returns (string memory infoUrl);
// Events
event Transfer(address from, address to, uint256 tokenId);
event Approval(address owner, address approved, uint256 tokenId);
// ERC-165 Compatibility (https://github.com/ethereum/EIPs/issues/165)
// Is not part of the interface id
function supportsInterface(bytes4 _interfaceID) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title MultiToken Category Registry Interface
* @notice Interface for the MultiToken Category Registry.
* @dev Category Registry Interface ID is 0xc37a4a01.
*/
interface IMultiTokenCategoryRegistry {
/**
* @notice Emitted when a category is registered for an asset address.
* @param assetAddress Address of an asset to which category is registered.
* @param category A raw value of a MultiToken Category registered for an asset.
*/
event CategoryRegistered(address indexed assetAddress, uint8 indexed category);
/**
* @notice Emitted when a category is unregistered for an asset address.
* @param assetAddress Address of an asset to which category is unregistered.
*/
event CategoryUnregistered(address indexed assetAddress);
/**
* @notice Register a MultiToken Category value to an asset address.
* @param assetAddress Address of an asset to which category is registered.
* @param category A raw value of a MultiToken Category to register for an asset.
*/
function registerCategoryValue(address assetAddress, uint8 category) external;
/**
* @notice Clear the stored category for the asset address.
* @param assetAddress Address of an asset to which category is unregistered.
*/
function unregisterCategoryValue(address assetAddress) external;
/**
* @notice Getter for a registered category value of a given asset address.
* @param assetAddress Address of an asset to which category is requested.
* @return Raw category value registered for the asset address.
*/
function registeredCategoryValue(address assetAddress) external view returns (uint8);
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
/**
* @title IChainlinkAggregatorLike
* @notice Chainlink Aggregator Interface.
*/
interface IChainlinkAggregatorLike {
/**
* @notice Get the number of decimals for the aggregator answers.
* @return Number of decimals.
*/
function decimals() external view returns (uint8);
/**
* @notice Get the description of the aggregator.
* @return Description of the aggregator.
*/
function description() external view returns (string memory);
/**
* @notice Get the latest round data for the aggregator.
* @return roundId The round ID from the aggregator for which the data was retrieved combined with a phase to ensure that round IDs get larger as time moves forward.
* @return answer The answer for the latest round.
* @return startedAt The timestamp when the round was started. (Only some AggregatorV3Interface implementations return meaningful values).
* @return updatedAt The timestamp when the round last was updated (i.e. answer was last computed).
* @return answeredInRound The round ID of the round in which the answer was computed. (Only some AggregatorV3Interface implementations return meaningful values).
*/
function latestRoundData() external view returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { IChainlinkAggregatorLike } from "pwn/interfaces/IChainlinkAggregatorLike.sol";
/**
* @title IChainlinkFeedRegistryLike
* @notice Chainlink Feed Registry Interface.
*/
interface IChainlinkFeedRegistryLike {
/**
* @notice Get the Chainlink aggregator for a given base and quote asset.
* @param base Base asset address.
* @param quote Quote asset address.
* @return aggregator Chainlink aggregator for the given base and quote asset.
*/
function getFeed(address base, address quote) external view returns (IChainlinkAggregatorLike aggregator);
/**
* @notice Allows an owner to begin transferring ownership to a new address,
* pending.
*/
function transferOwnership(address to) external;
/**
* @notice Allows an ownership transfer to be completed by the recipient.
*/
function acceptOwnership() external;
/**
* @notice Propose a new Chainlink aggregator for a given base and quote asset.
* @param base Base asset address.
* @param quote Quote asset address.
* @param aggregator Chainlink aggregator address.
*/
function proposeFeed(address base, address quote, address aggregator) external;
/**
* @notice Confirm a new Chainlink aggregator for a given base and quote asset.
* @param base Base asset address.
* @param quote Quote asset address.
* @param aggregator Chainlink aggregator address.
*/
function confirmFeed(address base, address quote, address aggregator) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such 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.
*
* Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
* all math on `uint256` and `int256` and then downcasting.
*/
library SafeCast {
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
* Counterpart to Solidity's `uint248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toUint248(uint256 value) internal pure returns (uint248) {
require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits");
return uint248(value);
}
/**
* @dev Returns the downcasted uint240 from uint256, reverting on
* overflow (when the input is greater than largest uint240).
*
* Counterpart to Solidity's `uint240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toUint240(uint256 value) internal pure returns (uint240) {
require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits");
return uint240(value);
}
/**
* @dev Returns the downcasted uint232 from uint256, reverting on
* overflow (when the input is greater than largest uint232).
*
* Counterpart to Solidity's `uint232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toUint232(uint256 value) internal pure returns (uint232) {
require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits");
return uint232(value);
}
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.2._
*/
function toUint224(uint256 value) internal pure returns (uint224) {
require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
return uint224(value);
}
/**
* @dev Returns the downcasted uint216 from uint256, reverting on
* overflow (when the input is greater than largest uint216).
*
* Counterpart to Solidity's `uint216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toUint216(uint256 value) internal pure returns (uint216) {
require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits");
return uint216(value);
}
/**
* @dev Returns the downcasted uint208 from uint256, reverting on
* overflow (when the input is greater than largest uint208).
*
* Counterpart to Solidity's `uint208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toUint208(uint256 value) internal pure returns (uint208) {
require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits");
return uint208(value);
}
/**
* @dev Returns the downcasted uint200 from uint256, reverting on
* overflow (when the input is greater than largest uint200).
*
* Counterpart to Solidity's `uint200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toUint200(uint256 value) internal pure returns (uint200) {
require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits");
return uint200(value);
}
/**
* @dev Returns the downcasted uint192 from uint256, reverting on
* overflow (when the input is greater than largest uint192).
*
* Counterpart to Solidity's `uint192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toUint192(uint256 value) internal pure returns (uint192) {
require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits");
return uint192(value);
}
/**
* @dev Returns the downcasted uint184 from uint256, reverting on
* overflow (when the input is greater than largest uint184).
*
* Counterpart to Solidity's `uint184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toUint184(uint256 value) internal pure returns (uint184) {
require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits");
return uint184(value);
}
/**
* @dev Returns the downcasted uint176 from uint256, reverting on
* overflow (when the input is greater than largest uint176).
*
* Counterpart to Solidity's `uint176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toUint176(uint256 value) internal pure returns (uint176) {
require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits");
return uint176(value);
}
/**
* @dev Returns the downcasted uint168 from uint256, reverting on
* overflow (when the input is greater than largest uint168).
*
* Counterpart to Solidity's `uint168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toUint168(uint256 value) internal pure returns (uint168) {
require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits");
return uint168(value);
}
/**
* @dev Returns the downcasted uint160 from uint256, reverting on
* overflow (when the input is greater than largest uint160).
*
* Counterpart to Solidity's `uint160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toUint160(uint256 value) internal pure returns (uint160) {
require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits");
return uint160(value);
}
/**
* @dev Returns the downcasted uint152 from uint256, reverting on
* overflow (when the input is greater than largest uint152).
*
* Counterpart to Solidity's `uint152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toUint152(uint256 value) internal pure returns (uint152) {
require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits");
return uint152(value);
}
/**
* @dev Returns the downcasted uint144 from uint256, reverting on
* overflow (when the input is greater than largest uint144).
*
* Counterpart to Solidity's `uint144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toUint144(uint256 value) internal pure returns (uint144) {
require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits");
return uint144(value);
}
/**
* @dev Returns the downcasted uint136 from uint256, reverting on
* overflow (when the input is greater than largest uint136).
*
* Counterpart to Solidity's `uint136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toUint136(uint256 value) internal pure returns (uint136) {
require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits");
return uint136(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v2.5._
*/
function toUint128(uint256 value) internal pure returns (uint128) {
require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
return uint128(value);
}
/**
* @dev Returns the downcasted uint120 from uint256, reverting on
* overflow (when the input is greater than largest uint120).
*
* Counterpart to Solidity's `uint120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toUint120(uint256 value) internal pure returns (uint120) {
require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits");
return uint120(value);
}
/**
* @dev Returns the downcasted uint112 from uint256, reverting on
* overflow (when the input is greater than largest uint112).
*
* Counterpart to Solidity's `uint112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toUint112(uint256 value) internal pure returns (uint112) {
require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits");
return uint112(value);
}
/**
* @dev Returns the downcasted uint104 from uint256, reverting on
* overflow (when the input is greater than largest uint104).
*
* Counterpart to Solidity's `uint104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toUint104(uint256 value) internal pure returns (uint104) {
require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits");
return uint104(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.2._
*/
function toUint96(uint256 value) internal pure returns (uint96) {
require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
return uint96(value);
}
/**
* @dev Returns the downcasted uint88 from uint256, reverting on
* overflow (when the input is greater than largest uint88).
*
* Counterpart to Solidity's `uint88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toUint88(uint256 value) internal pure returns (uint88) {
require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits");
return uint88(value);
}
/**
* @dev Returns the downcasted uint80 from uint256, reverting on
* overflow (when the input is greater than largest uint80).
*
* Counterpart to Solidity's `uint80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toUint80(uint256 value) internal pure returns (uint80) {
require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits");
return uint80(value);
}
/**
* @dev Returns the downcasted uint72 from uint256, reverting on
* overflow (when the input is greater than largest uint72).
*
* Counterpart to Solidity's `uint72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toUint72(uint256 value) internal pure returns (uint72) {
require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits");
return uint72(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v2.5._
*/
function toUint64(uint256 value) internal pure returns (uint64) {
require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
return uint64(value);
}
/**
* @dev Returns the downcasted uint56 from uint256, reverting on
* overflow (when the input is greater than largest uint56).
*
* Counterpart to Solidity's `uint56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toUint56(uint256 value) internal pure returns (uint56) {
require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits");
return uint56(value);
}
/**
* @dev Returns the downcasted uint48 from uint256, reverting on
* overflow (when the input is greater than largest uint48).
*
* Counterpart to Solidity's `uint48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toUint48(uint256 value) internal pure returns (uint48) {
require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits");
return uint48(value);
}
/**
* @dev Returns the downcasted uint40 from uint256, reverting on
* overflow (when the input is greater than largest uint40).
*
* Counterpart to Solidity's `uint40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toUint40(uint256 value) internal pure returns (uint40) {
require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits");
return uint40(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v2.5._
*/
function toUint32(uint256 value) internal pure returns (uint32) {
require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
return uint32(value);
}
/**
* @dev Returns the downcasted uint24 from uint256, reverting on
* overflow (when the input is greater than largest uint24).
*
* Counterpart to Solidity's `uint24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toUint24(uint256 value) internal pure returns (uint24) {
require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits");
return uint24(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v2.5._
*/
function toUint16(uint256 value) internal pure returns (uint16) {
require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v2.5._
*/
function toUint8(uint256 value) internal pure returns (uint8) {
require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*
* _Available since v3.0._
*/
function toUint256(int256 value) internal pure returns (uint256) {
require(value >= 0, "SafeCast: value must be positive");
return uint256(value);
}
/**
* @dev Returns the downcasted int248 from int256, reverting on
* overflow (when the input is less than smallest int248 or
* greater than largest int248).
*
* Counterpart to Solidity's `int248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toInt248(int256 value) internal pure returns (int248 downcasted) {
downcasted = int248(value);
require(downcasted == value, "SafeCast: value doesn't fit in 248 bits");
}
/**
* @dev Returns the downcasted int240 from int256, reverting on
* overflow (when the input is less than smallest int240 or
* greater than largest int240).
*
* Counterpart to Solidity's `int240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toInt240(int256 value) internal pure returns (int240 downcasted) {
downcasted = int240(value);
require(downcasted == value, "SafeCast: value doesn't fit in 240 bits");
}
/**
* @dev Returns the downcasted int232 from int256, reverting on
* overflow (when the input is less than smallest int232 or
* greater than largest int232).
*
* Counterpart to Solidity's `int232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toInt232(int256 value) internal pure returns (int232 downcasted) {
downcasted = int232(value);
require(downcasted == value, "SafeCast: value doesn't fit in 232 bits");
}
/**
* @dev Returns the downcasted int224 from int256, reverting on
* overflow (when the input is less than smallest int224 or
* greater than largest int224).
*
* Counterpart to Solidity's `int224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.7._
*/
function toInt224(int256 value) internal pure returns (int224 downcasted) {
downcasted = int224(value);
require(downcasted == value, "SafeCast: value doesn't fit in 224 bits");
}
/**
* @dev Returns the downcasted int216 from int256, reverting on
* overflow (when the input is less than smallest int216 or
* greater than largest int216).
*
* Counterpart to Solidity's `int216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toInt216(int256 value) internal pure returns (int216 downcasted) {
downcasted = int216(value);
require(downcasted == value, "SafeCast: value doesn't fit in 216 bits");
}
/**
* @dev Returns the downcasted int208 from int256, reverting on
* overflow (when the input is less than smallest int208 or
* greater than largest int208).
*
* Counterpart to Solidity's `int208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toInt208(int256 value) internal pure returns (int208 downcasted) {
downcasted = int208(value);
require(downcasted == value, "SafeCast: value doesn't fit in 208 bits");
}
/**
* @dev Returns the downcasted int200 from int256, reverting on
* overflow (when the input is less than smallest int200 or
* greater than largest int200).
*
* Counterpart to Solidity's `int200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toInt200(int256 value) internal pure returns (int200 downcasted) {
downcasted = int200(value);
require(downcasted == value, "SafeCast: value doesn't fit in 200 bits");
}
/**
* @dev Returns the downcasted int192 from int256, reverting on
* overflow (when the input is less than smallest int192 or
* greater than largest int192).
*
* Counterpart to Solidity's `int192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toInt192(int256 value) internal pure returns (int192 downcasted) {
downcasted = int192(value);
require(downcasted == value, "SafeCast: value doesn't fit in 192 bits");
}
/**
* @dev Returns the downcasted int184 from int256, reverting on
* overflow (when the input is less than smallest int184 or
* greater than largest int184).
*
* Counterpart to Solidity's `int184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toInt184(int256 value) internal pure returns (int184 downcasted) {
downcasted = int184(value);
require(downcasted == value, "SafeCast: value doesn't fit in 184 bits");
}
/**
* @dev Returns the downcasted int176 from int256, reverting on
* overflow (when the input is less than smallest int176 or
* greater than largest int176).
*
* Counterpart to Solidity's `int176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toInt176(int256 value) internal pure returns (int176 downcasted) {
downcasted = int176(value);
require(downcasted == value, "SafeCast: value doesn't fit in 176 bits");
}
/**
* @dev Returns the downcasted int168 from int256, reverting on
* overflow (when the input is less than smallest int168 or
* greater than largest int168).
*
* Counterpart to Solidity's `int168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toInt168(int256 value) internal pure returns (int168 downcasted) {
downcasted = int168(value);
require(downcasted == value, "SafeCast: value doesn't fit in 168 bits");
}
/**
* @dev Returns the downcasted int160 from int256, reverting on
* overflow (when the input is less than smallest int160 or
* greater than largest int160).
*
* Counterpart to Solidity's `int160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toInt160(int256 value) internal pure returns (int160 downcasted) {
downcasted = int160(value);
require(downcasted == value, "SafeCast: value doesn't fit in 160 bits");
}
/**
* @dev Returns the downcasted int152 from int256, reverting on
* overflow (when the input is less than smallest int152 or
* greater than largest int152).
*
* Counterpart to Solidity's `int152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toInt152(int256 value) internal pure returns (int152 downcasted) {
downcasted = int152(value);
require(downcasted == value, "SafeCast: value doesn't fit in 152 bits");
}
/**
* @dev Returns the downcasted int144 from int256, reverting on
* overflow (when the input is less than smallest int144 or
* greater than largest int144).
*
* Counterpart to Solidity's `int144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toInt144(int256 value) internal pure returns (int144 downcasted) {
downcasted = int144(value);
require(downcasted == value, "SafeCast: value doesn't fit in 144 bits");
}
/**
* @dev Returns the downcasted int136 from int256, reverting on
* overflow (when the input is less than smallest int136 or
* greater than largest int136).
*
* Counterpart to Solidity's `int136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toInt136(int256 value) internal pure returns (int136 downcasted) {
downcasted = int136(value);
require(downcasted == value, "SafeCast: value doesn't fit in 136 bits");
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v3.1._
*/
function toInt128(int256 value) internal pure returns (int128 downcasted) {
downcasted = int128(value);
require(downcasted == value, "SafeCast: value doesn't fit in 128 bits");
}
/**
* @dev Returns the downcasted int120 from int256, reverting on
* overflow (when the input is less than smallest int120 or
* greater than largest int120).
*
* Counterpart to Solidity's `int120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toInt120(int256 value) internal pure returns (int120 downcasted) {
downcasted = int120(value);
require(downcasted == value, "SafeCast: value doesn't fit in 120 bits");
}
/**
* @dev Returns the downcasted int112 from int256, reverting on
* overflow (when the input is less than smallest int112 or
* greater than largest int112).
*
* Counterpart to Solidity's `int112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toInt112(int256 value) internal pure returns (int112 downcasted) {
downcasted = int112(value);
require(downcasted == value, "SafeCast: value doesn't fit in 112 bits");
}
/**
* @dev Returns the downcasted int104 from int256, reverting on
* overflow (when the input is less than smallest int104 or
* greater than largest int104).
*
* Counterpart to Solidity's `int104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toInt104(int256 value) internal pure returns (int104 downcasted) {
downcasted = int104(value);
require(downcasted == value, "SafeCast: value doesn't fit in 104 bits");
}
/**
* @dev Returns the downcasted int96 from int256, reverting on
* overflow (when the input is less than smallest int96 or
* greater than largest int96).
*
* Counterpart to Solidity's `int96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.7._
*/
function toInt96(int256 value) internal pure returns (int96 downcasted) {
downcasted = int96(value);
require(downcasted == value, "SafeCast: value doesn't fit in 96 bits");
}
/**
* @dev Returns the downcasted int88 from int256, reverting on
* overflow (when the input is less than smallest int88 or
* greater than largest int88).
*
* Counterpart to Solidity's `int88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toInt88(int256 value) internal pure returns (int88 downcasted) {
downcasted = int88(value);
require(downcasted == value, "SafeCast: value doesn't fit in 88 bits");
}
/**
* @dev Returns the downcasted int80 from int256, reverting on
* overflow (when the input is less than smallest int80 or
* greater than largest int80).
*
* Counterpart to Solidity's `int80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toInt80(int256 value) internal pure returns (int80 downcasted) {
downcasted = int80(value);
require(downcasted == value, "SafeCast: value doesn't fit in 80 bits");
}
/**
* @dev Returns the downcasted int72 from int256, reverting on
* overflow (when the input is less than smallest int72 or
* greater than largest int72).
*
* Counterpart to Solidity's `int72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toInt72(int256 value) internal pure returns (int72 downcasted) {
downcasted = int72(value);
require(downcasted == value, "SafeCast: value doesn't fit in 72 bits");
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v3.1._
*/
function toInt64(int256 value) internal pure returns (int64 downcasted) {
downcasted = int64(value);
require(downcasted == value, "SafeCast: value doesn't fit in 64 bits");
}
/**
* @dev Returns the downcasted int56 from int256, reverting on
* overflow (when the input is less than smallest int56 or
* greater than largest int56).
*
* Counterpart to Solidity's `int56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toInt56(int256 value) internal pure returns (int56 downcasted) {
downcasted = int56(value);
require(downcasted == value, "SafeCast: value doesn't fit in 56 bits");
}
/**
* @dev Returns the downcasted int48 from int256, reverting on
* overflow (when the input is less than smallest int48 or
* greater than largest int48).
*
* Counterpart to Solidity's `int48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toInt48(int256 value) internal pure returns (int48 downcasted) {
downcasted = int48(value);
require(downcasted == value, "SafeCast: value doesn't fit in 48 bits");
}
/**
* @dev Returns the downcasted int40 from int256, reverting on
* overflow (when the input is less than smallest int40 or
* greater than largest int40).
*
* Counterpart to Solidity's `int40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toInt40(int256 value) internal pure returns (int40 downcasted) {
downcasted = int40(value);
require(downcasted == value, "SafeCast: value doesn't fit in 40 bits");
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v3.1._
*/
function toInt32(int256 value) internal pure returns (int32 downcasted) {
downcasted = int32(value);
require(downcasted == value, "SafeCast: value doesn't fit in 32 bits");
}
/**
* @dev Returns the downcasted int24 from int256, reverting on
* overflow (when the input is less than smallest int24 or
* greater than largest int24).
*
* Counterpart to Solidity's `int24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toInt24(int256 value) internal pure returns (int24 downcasted) {
downcasted = int24(value);
require(downcasted == value, "SafeCast: value doesn't fit in 24 bits");
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v3.1._
*/
function toInt16(int256 value) internal pure returns (int16 downcasted) {
downcasted = int16(value);
require(downcasted == value, "SafeCast: value doesn't fit in 16 bits");
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v3.1._
*/
function toInt8(int256 value) internal pure returns (int8 downcasted) {
downcasted = int8(value);
require(downcasted == value, "SafeCast: value doesn't fit in 8 bits");
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*
* _Available since v3.0._
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
return int256(value);
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { Ownable2StepUpgradeable } from "openzeppelin-upgradeable/access/Ownable2StepUpgradeable.sol";
import { IPoolAdapter } from "pwn/interfaces/IPoolAdapter.sol";
import { IStateFingerpringComputer } from "pwn/interfaces/IStateFingerpringComputer.sol";
/**
* @title PWN Config
* @notice Contract holding configurable values of PWN protocol.
* @dev Is intended to be used as a proxy via `TransparentUpgradeableProxy`.
*/
contract PWNConfig is Ownable2StepUpgradeable {
string internal constant VERSION = "1.3";
/*----------------------------------------------------------*|
|* # VARIABLES & CONSTANTS DEFINITIONS *|
|*----------------------------------------------------------*/
uint16 public constant MAX_FEE = 1000; // 10%
/**
* @notice Protocol fee value in basis points.
* @dev Value of 100 is 1% fee.
*/
uint16 public fee;
/**
* @notice Address that collects protocol fees.
*/
address public feeCollector;
/**
* @notice Mapping of a loan contract address to LOAN token metadata uri.
* @dev LOAN token minted by a loan contract will return metadata uri stored in this mapping.
* If there is no metadata uri for a loan contract, default metadata uri will be used stored under address(0).
*/
mapping (address => string) private _loanMetadataUri;
/**
* @notice Mapping holding registered state fingerprint computer to an asset.
*/
mapping (address => address) private _sfComputerRegistry;
/**
* @notice Mapping holding registered pool adapter to a pool address.
*/
mapping (address => address) private _poolAdapterRegistry;
/*----------------------------------------------------------*|
|* # EVENTS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Emitted when new fee value is set.
*/
event FeeUpdated(uint16 oldFee, uint16 newFee);
/**
* @notice Emitted when new fee collector address is set.
*/
event FeeCollectorUpdated(address oldFeeCollector, address newFeeCollector);
/**
* @notice Emitted when new LOAN token metadata uri is set.
*/
event LOANMetadataUriUpdated(address indexed loanContract, string newUri);
/**
* @notice Emitted when new default LOAN token metadata uri is set.
*/
event DefaultLOANMetadataUriUpdated(string newUri);
/*----------------------------------------------------------*|
|* # ERRORS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Thrown when registering a computer which does not support the asset it is registered for.
*/
error InvalidComputerContract(address computer, address asset);
/**
* @notice Thrown when trying to set a fee value higher than `MAX_FEE`.
*/
error InvalidFeeValue(uint256 fee, uint256 limit);
/**
* @notice Thrown when trying to set a fee collector to zero address.
*/
error ZeroFeeCollector();
/**
* @notice Thrown when trying to set a LOAN token metadata uri for zero address loan contract.
*/
error ZeroLoanContract();
/*----------------------------------------------------------*|
|* # CONSTRUCTOR *|
|*----------------------------------------------------------*/
constructor() Ownable2StepUpgradeable() {
// PWNConfig is used as a proxy. Use initializer to setup initial properties.
_disableInitializers();
_transferOwnership(address(0));
}
function initialize(address _owner, uint16 _fee, address _feeCollector) external initializer {
require(_owner != address(0), "Owner is zero address");
_transferOwnership(_owner);
_setFeeCollector(_feeCollector);
_setFee(_fee);
}
/*----------------------------------------------------------*|
|* # FEE MANAGEMENT *|
|*----------------------------------------------------------*/
/**
* @notice Set new protocol fee value.
* @param _fee New fee value in basis points. Value of 100 is 1% fee.
*/
function setFee(uint16 _fee) external onlyOwner {
_setFee(_fee);
}
/**
* @notice Internal implementation of setting new protocol fee value.
* @param _fee New fee value in basis points. Value of 100 is 1% fee.
*/
function _setFee(uint16 _fee) private {
if (_fee > MAX_FEE)
revert InvalidFeeValue({ fee: _fee, limit: MAX_FEE });
uint16 oldFee = fee;
fee = _fee;
emit FeeUpdated(oldFee, _fee);
}
/**
* @notice Set new fee collector address.
* @param _feeCollector New fee collector address.
*/
function setFeeCollector(address _feeCollector) external onlyOwner {
_setFeeCollector(_feeCollector);
}
/**
* @notice Internal implementation of setting new fee collector address.
* @param _feeCollector New fee collector address.
*/
function _setFeeCollector(address _feeCollector) private {
if (_feeCollector == address(0))
revert ZeroFeeCollector();
address oldFeeCollector = feeCollector;
feeCollector = _feeCollector;
emit FeeCollectorUpdated(oldFeeCollector, _feeCollector);
}
/*----------------------------------------------------------*|
|* # LOAN METADATA *|
|*----------------------------------------------------------*/
/**
* @notice Set a LOAN token metadata uri for a specific loan contract.
* @param loanContract Address of a loan contract.
* @param metadataUri New value of LOAN token metadata uri for given `loanContract`.
*/
function setLOANMetadataUri(address loanContract, string memory metadataUri) external onlyOwner {
if (loanContract == address(0))
// address(0) is used as a default metadata uri. Use `setDefaultLOANMetadataUri` to set default metadata uri.
revert ZeroLoanContract();
_loanMetadataUri[loanContract] = metadataUri;
emit LOANMetadataUriUpdated(loanContract, metadataUri);
}
/**
* @notice Set a default LOAN token metadata uri.
* @param metadataUri New value of default LOAN token metadata uri.
*/
function setDefaultLOANMetadataUri(string memory metadataUri) external onlyOwner {
_loanMetadataUri[address(0)] = metadataUri;
emit DefaultLOANMetadataUriUpdated(metadataUri);
}
/**
* @notice Return a LOAN token metadata uri base on a loan contract that minted the token.
* @param loanContract Address of a loan contract.
* @return uri Metadata uri for given loan contract.
*/
function loanMetadataUri(address loanContract) external view returns (string memory uri) {
uri = _loanMetadataUri[loanContract];
// If there is no metadata uri for a loan contract, use default metadata uri.
if (bytes(uri).length == 0)
uri = _loanMetadataUri[address(0)];
}
/*----------------------------------------------------------*|
|* # STATE FINGERPRINT COMPUTER *|
|*----------------------------------------------------------*/
/**
* @notice Returns the state fingerprint computer for a given asset.
* @param asset The asset for which the computer is requested.
* @return The computer for the given asset.
*/
function getStateFingerprintComputer(address asset) external view returns (IStateFingerpringComputer) {
return IStateFingerpringComputer(_sfComputerRegistry[asset]);
}
/**
* @notice Registers a state fingerprint computer for a given asset.
* @param asset The asset for which the computer is registered.
* @param computer The computer to be registered. Use address(0) to remove a computer.
*/
function registerStateFingerprintComputer(address asset, address computer) external onlyOwner {
if (computer != address(0))
if (!IStateFingerpringComputer(computer).supportsToken(asset))
revert InvalidComputerContract({ computer: computer, asset: asset });
_sfComputerRegistry[asset] = computer;
}
/*----------------------------------------------------------*|
|* # POOL ADAPTER *|
|*----------------------------------------------------------*/
/**
* @notice Returns the pool adapter for a given pool.
* @param pool The pool for which the adapter is requested.
* @return The adapter for the given pool.
*/
function getPoolAdapter(address pool) external view returns (IPoolAdapter) {
return IPoolAdapter(_poolAdapterRegistry[pool]);
}
/**
* @notice Registers a pool adapter for a given pool.
* @param pool The pool for which the adapter is registered.
* @param adapter The adapter to be registered.
*/
function registerPoolAdapter(address pool, address adapter) external onlyOwner {
_poolAdapterRegistry[pool] = adapter;
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { Ownable2Step } from "openzeppelin/access/Ownable2Step.sol";
/**
* @title PWN Hub
* @notice Connects PWN contracts together into protocol via tags.
*/
contract PWNHub is Ownable2Step {
/*----------------------------------------------------------*|
|* # VARIABLES & CONSTANTS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @dev Mapping of address tags. (contract address => tag => is tagged)
*/
mapping (address => mapping (bytes32 => bool)) private tags;
/*----------------------------------------------------------*|
|* # EVENTS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Emitted when tag is set for an address.
*/
event TagSet(address indexed _address, bytes32 indexed tag, bool hasTag);
/*----------------------------------------------------------*|
|* # ERRORS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Thrown when `PWNHub.setTags` inputs lengths are not equal.
*/
error InvalidInputData();
/*----------------------------------------------------------*|
|* # CONSTRUCTOR *|
|*----------------------------------------------------------*/
constructor() Ownable2Step() {
}
/*----------------------------------------------------------*|
|* # TAG MANAGEMENT *|
|*----------------------------------------------------------*/
/**
* @notice Set tag to an address.
* @dev Tag can be added or removed via this functions. Only callable by contract owner.
* @param _address Address to which a tag is set.
* @param tag Tag that is set to an `_address`.
* @param _hasTag Bool value if tag is added or removed.
*/
function setTag(address _address, bytes32 tag, bool _hasTag) public onlyOwner {
tags[_address][tag] = _hasTag;
emit TagSet(_address, tag, _hasTag);
}
/**
* @notice Set list of tags to an address.
* @dev Tags can be added or removed via this functions. Only callable by contract owner.
* @param _addresses List of addresses to which tags are set.
* @param _tags List of tags that are set to an `_address`.
* @param _hasTag Bool value if tags are added or removed.
*/
function setTags(address[] memory _addresses, bytes32[] memory _tags, bool _hasTag) external onlyOwner {
if (_addresses.length != _tags.length)
revert InvalidInputData();
uint256 length = _tags.length;
for (uint256 i; i < length;) {
setTag(_addresses[i], _tags[i], _hasTag);
unchecked { ++i; }
}
}
/*----------------------------------------------------------*|
|* # TAG GETTER *|
|*----------------------------------------------------------*/
/**
* @dev Return if an address is associated with a tag.
* @param _address Address that is examined for a `tag`.
* @param tag Tag that should an `_address` be associated with.
* @return True if given address has a tag.
*/
function hasTag(address _address, bytes32 tag) external view returns (bool) {
return tags[_address][tag];
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
library PWNHubTags {
string internal constant VERSION = "1.2";
/// @dev Address can mint LOAN tokens and create LOANs via loan factory contracts.
bytes32 internal constant ACTIVE_LOAN = keccak256("PWN_ACTIVE_LOAN");
/// @dev Address can call loan contracts to create and/or refinance a loan.
bytes32 internal constant LOAN_PROPOSAL = keccak256("PWN_LOAN_PROPOSAL");
/// @dev Address can revoke nonces on other addresses behalf.
bytes32 internal constant NONCE_MANAGER = keccak256("PWN_NONCE_MANAGER");
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
/**
* @title IERC5646
* @notice Interface of the ERC5646 standard, as defined in the https://eips.ethereum.org/EIPS/eip-5646.
*/
interface IERC5646 {
/**
* @notice Function to return current token state fingerprint.
* @param tokenId Id of a token state in question.
* @return Current token state fingerprint.
*/
function getStateFingerprint(uint256 tokenId) external view returns (bytes32);
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
/**
* @title IPoolAdapter
* @notice Interface for pool adapters used to withdraw and supply assets to the pool.
*/
interface IPoolAdapter {
/**
* @notice Withdraw an asset from the pool on behalf of the owner.
* @dev Withdrawn asset remains in the owner. Caller must have the ACTIVE_LOAN tag in the hub.
* @param pool The address of the pool from which the asset is withdrawn.
* @param owner The address of the owner from whom the asset is withdrawn.
* @param asset The address of the asset to withdraw.
* @param amount The amount of the asset to withdraw.
*/
function withdraw(address pool, address owner, address asset, uint256 amount) external;
/**
* @notice Supply an asset to the pool on behalf of the owner.
* @dev Need to transfer the asset to the adapter before calling this function.
* @param pool The address of the pool to which the asset is supplied.
* @param owner The address of the owner on whose behalf the asset is supplied.
* @param asset The address of the asset to supply.
* @param amount The amount of the asset to supply.
*/
function supply(address pool, address owner, address asset, uint256 amount) external;
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
/**
* @title IPWNLoanMetadataProvider
* @notice Interface for a provider of a LOAN token metadata.
* @dev Loan contracts should implement this interface.
*/
interface IPWNLoanMetadataProvider {
/**
* @notice Get a loan metadata uri for a LOAN token minted by this contract.
* @return LOAN token metadata uri.
*/
function loanMetadataUri() external view returns (string memory);
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { Math } from "openzeppelin/utils/math/Math.sol";
/**
* @title PWN Fee Calculator
* @notice Library that calculates fee amount for given loan amount.
*/
library PWNFeeCalculator {
string internal constant VERSION = "1.1";
/**
* @notice Compute fee amount.
* @param fee Fee value in basis points. Value of 100 is 1% fee.
* @param loanAmount Amount of an asset used as a loan credit.
* @return feeAmount Amount of a loan asset that represents a protocol fee.
* @return newLoanAmount New amount of a loan credit asset, after deducting protocol fee.
*/
function calculateFeeAmount(uint16 fee, uint256 loanAmount) internal pure returns (uint256 feeAmount, uint256 newLoanAmount) {
if (fee == 0)
return (0, loanAmount);
feeAmount = Math.mulDiv(loanAmount, fee, 1e4);
newLoanAmount = loanAmount - feeAmount;
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { ECDSA } from "openzeppelin/utils/cryptography/ECDSA.sol";
import { IERC1271 } from "openzeppelin/interfaces/IERC1271.sol";
/**
* @title PWN Signature Checker
* @notice Library to check if a given signature is valid for EOAs or contract accounts.
* @dev This library is a modification of an Open-Zeppelin `SignatureChecker` library extended by a support for EIP-2098 compact signatures.
*/
library PWNSignatureChecker {
string internal constant VERSION = "1.0";
/**
* @dev Thrown when signature length is not 64 nor 65 bytes.
*/
error InvalidSignatureLength(uint256 length);
/**
* @dev Thrown when signature is invalid.
*/
error InvalidSignature(address signer, bytes32 digest);
/**
* @dev Function will try to recover a signer of a given signature and check if is the same as given signer address.
* For a contract account signer address, function will check signature validity by calling `isValidSignature` function defined by EIP-1271.
* @param signer Address that should be a `hash` signer or a signature validator, in case of a contract account.
* @param hash Hash of a signed message that should validated.
* @param signature Signature of a signed `hash`. Could be empty for a contract account signature validation.
* Signature can be standard (65 bytes) or compact (64 bytes) defined by EIP-2098.
* @return True if a signature is valid.
*/
function isValidSignatureNow(
address signer,
bytes32 hash,
bytes memory signature
) internal view returns (bool) {
// Check that signature is valid for contract account
if (signer.code.length > 0) {
(bool success, bytes memory result) = signer.staticcall(
abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature)
);
return
success &&
result.length == 32 &&
abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector);
}
// Check that signature is valid for EOA
else {
bytes32 r;
bytes32 s;
uint8 v;
// Standard signature data (65 bytes)
if (signature.length == 65) {
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
}
// Compact signature data (64 bytes) - see EIP-2098
else if (signature.length == 64) {
bytes32 vs;
assembly {
r := mload(add(signature, 0x20))
vs := mload(add(signature, 0x40))
}
s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
v = uint8((uint256(vs) >> 255) + 27);
} else {
revert InvalidSignatureLength({ length: signature.length });
}
return signer == ECDSA.recover(hash, v, r, s);
}
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { ERC721 } from "openzeppelin/token/ERC721/ERC721.sol";
import { PWNHub } from "pwn/hub/PWNHub.sol";
import { PWNHubTags } from "pwn/hub/PWNHubTags.sol";
import { IERC5646 } from "pwn/interfaces/IERC5646.sol";
import { IPWNLoanMetadataProvider } from "pwn/interfaces/IPWNLoanMetadataProvider.sol";
/**
* @title PWN LOAN token
* @notice A LOAN token representing a loan in PWN protocol.
* @dev Token doesn't hold any loan logic, just an address of a loan contract that minted the LOAN token.
* PWN LOAN token is shared between all loan contracts.
*/
contract PWNLOAN is ERC721, IERC5646 {
/*----------------------------------------------------------*|
|* # VARIABLES & CONSTANTS DEFINITIONS *|
|*----------------------------------------------------------*/
PWNHub public immutable hub;
/**
* @dev Last used LOAN id. First LOAN id is 1. This value is incremental.
*/
uint256 public lastLoanId;
/**
* @dev Mapping of a LOAN id to a loan contract that minted the LOAN token.
*/
mapping (uint256 => address) public loanContract;
/*----------------------------------------------------------*|
|* # EVENTS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Emitted when a new LOAN token is minted.
*/
event LOANMinted(uint256 indexed loanId, address indexed loanContract, address indexed owner);
/**
* @notice Emitted when a LOAN token is burned.
*/
event LOANBurned(uint256 indexed loanId);
/*----------------------------------------------------------*|
|* # ERRORS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Thrown when `PWNLOAN.burn` caller is not a loan contract that minted the LOAN token.
*/
error InvalidLoanContractCaller();
/**
* @notice Thrown when caller is missing a PWN Hub tag.
*/
error CallerMissingHubTag(bytes32 tag);
/*----------------------------------------------------------*|
|* # MODIFIERS *|
|*----------------------------------------------------------*/
modifier onlyActiveLoan() {
if (!hub.hasTag(msg.sender, PWNHubTags.ACTIVE_LOAN))
revert CallerMissingHubTag({ tag: PWNHubTags.ACTIVE_LOAN });
_;
}
/*----------------------------------------------------------*|
|* # CONSTRUCTOR *|
|*----------------------------------------------------------*/
constructor(address _hub) ERC721("PWN LOAN", "LOAN") {
hub = PWNHub(_hub);
}
/*----------------------------------------------------------*|
|* # TOKEN LIFECYCLE *|
|*----------------------------------------------------------*/
/**
* @notice Mint a new LOAN token.
* @dev Only an address with associated `ACTIVE_LOAN` tag in PWN Hub can call this function.
* @param owner Address of a LOAN token receiver.
* @return loanId Id of a newly minted LOAN token.
*/
function mint(address owner) external onlyActiveLoan returns (uint256 loanId) {
loanId = ++lastLoanId;
loanContract[loanId] = msg.sender;
_mint(owner, loanId);
emit LOANMinted(loanId, msg.sender, owner);
}
/**
* @notice Burn a LOAN token.
* @dev Any address that is associated with given loan id can call this function.
* It is enabled to let deprecated loan contracts repay and claim existing loans.
* @param loanId Id of a LOAN token to be burned.
*/
function burn(uint256 loanId) external {
if (loanContract[loanId] != msg.sender)
revert InvalidLoanContractCaller();
delete loanContract[loanId];
_burn(loanId);
emit LOANBurned(loanId);
}
/*----------------------------------------------------------*|
|* # METADATA *|
|*----------------------------------------------------------*/
/**
* @notice Return a LOAN token metadata uri base on a loan contract that minted the token.
* @param tokenId Id of a LOAN token.
* @return Metadata uri for given token id (loan id).
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
return IPWNLoanMetadataProvider(loanContract[tokenId]).loanMetadataUri();
}
/*----------------------------------------------------------*|
|* # ERC5646 *|
|*----------------------------------------------------------*/
/**
* @dev See {IERC5646-getStateFingerprint}.
*/
function getStateFingerprint(uint256 tokenId) external view virtual override returns (bytes32) {
address _loanContract = loanContract[tokenId];
if (_loanContract == address(0))
return bytes32(0);
return IERC5646(_loanContract).getStateFingerprint(tokenId);
}
/*----------------------------------------------------------*|
|* # ERC165 *|
|*----------------------------------------------------------*/
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return super.supportsInterface(interfaceId) ||
interfaceId == type(IERC5646).interfaceId;
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { MultiToken } from "MultiToken/MultiToken.sol";
import { IERC721Receiver } from "openzeppelin/token/ERC721/IERC721Receiver.sol";
import { IERC1155Receiver, IERC165 } from "openzeppelin/token/ERC1155/IERC1155Receiver.sol";
import { IPoolAdapter } from "pwn/interfaces/IPoolAdapter.sol";
/**
* @title PWN Vault
* @notice Base contract for transferring and managing collateral and loan assets in PWN protocol.
* @dev Loan contracts inherits PWN Vault to act as a Vault for its loan type.
*/
abstract contract PWNVault is IERC721Receiver, IERC1155Receiver {
using MultiToken for MultiToken.Asset;
/*----------------------------------------------------------*|
|* # EVENTS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Emitted when asset transfer happens from an `origin` address to a vault.
*/
event VaultPull(MultiToken.Asset asset, address indexed origin);
/**
* @notice Emitted when asset transfer happens from a vault to a `beneficiary` address.
*/
event VaultPush(MultiToken.Asset asset, address indexed beneficiary);
/**
* @notice Emitted when asset transfer happens from an `origin` address to a `beneficiary` address.
*/
event VaultPushFrom(MultiToken.Asset asset, address indexed origin, address indexed beneficiary);
/**
* @notice Emitted when asset is withdrawn from a pool to an `owner` address.
*/
event PoolWithdraw(MultiToken.Asset asset, address indexed poolAdapter, address indexed pool, address indexed owner);
/**
* @notice Emitted when asset is supplied to a pool from a vault.
*/
event PoolSupply(MultiToken.Asset asset, address indexed poolAdapter, address indexed pool, address indexed owner);
/*----------------------------------------------------------*|
|* # ERRORS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Thrown when the Vault receives an asset that is not transferred by the Vault itself.
*/
error UnsupportedTransferFunction();
/**
* @notice Thrown when an asset transfer is incomplete.
*/
error IncompleteTransfer();
/**
* @notice Thrown when an asset transfer source and destination address are the same.
*/
error VaultTransferSameSourceAndDestination(address addr);
/*----------------------------------------------------------*|
|* # TRANSFER FUNCTIONS *|
|*----------------------------------------------------------*/
/**
* @notice Function pulling an asset into a vault.
* @dev The function assumes a prior token approval to a vault address.
* @param asset An asset construct - for a definition see { MultiToken dependency lib }.
* @param origin Borrower address that is transferring collateral to Vault or repaying a loan.
*/
function _pull(MultiToken.Asset memory asset, address origin) internal {
uint256 originalBalance = asset.balanceOf(address(this));
asset.transferAssetFrom(origin, address(this));
_checkTransfer({
asset: asset,
originalBalance: originalBalance,
checkedAddress: address(this),
counterPartyAddress: origin,
checkIncreasingBalance: true
});
emit VaultPull(asset, origin);
}
/**
* @notice Function pushing an asset from a vault to a recipient.
* @dev This is used for claiming a paid back loan or a defaulted collateral, or returning collateral to a borrower.
* @param asset An asset construct - for a definition see { MultiToken dependency lib }.
* @param beneficiary An address of a recipient of an asset.
*/
function _push(MultiToken.Asset memory asset, address beneficiary) internal {
uint256 originalBalance = asset.balanceOf(beneficiary);
asset.safeTransferAssetFrom(address(this), beneficiary);
_checkTransfer({
asset: asset,
originalBalance: originalBalance,
checkedAddress: beneficiary,
counterPartyAddress: address(this),
checkIncreasingBalance: true
});
emit VaultPush(asset, beneficiary);
}
/**
* @notice Function pushing an asset from an origin address to a beneficiary address.
* @dev The function assumes a prior token approval to a vault address.
* @param asset An asset construct - for a definition see { MultiToken dependency lib }.
* @param origin An address of a lender who is providing a loan asset.
* @param beneficiary An address of the recipient of an asset.
*/
function _pushFrom(MultiToken.Asset memory asset, address origin, address beneficiary) internal {
uint256 originalBalance = asset.balanceOf(beneficiary);
asset.safeTransferAssetFrom(origin, beneficiary);
_checkTransfer({
asset: asset,
originalBalance: originalBalance,
checkedAddress: beneficiary,
counterPartyAddress: origin,
checkIncreasingBalance: true
});
emit VaultPushFrom(asset, origin, beneficiary);
}
/**
* @notice Function withdrawing an asset from a Compound pool to the owner.
* @dev The function assumes a prior check for a valid pool address.
* @param asset An asset construct - for a definition see { MultiToken dependency lib }.
* @param poolAdapter An address of a pool adapter.
* @param pool An address of a pool.
* @param owner An address on which behalf the assets are withdrawn.
*/
function _withdrawFromPool(MultiToken.Asset memory asset, IPoolAdapter poolAdapter, address pool, address owner) internal {
uint256 originalBalance = asset.balanceOf(owner);
poolAdapter.withdraw(pool, owner, asset.assetAddress, asset.amount);
_checkTransfer({
asset: asset,
originalBalance: originalBalance,
checkedAddress: owner,
counterPartyAddress: pool,
checkIncreasingBalance: true
});
emit PoolWithdraw(asset, address(poolAdapter), pool, owner);
}
/**
* @notice Function supplying an asset to a pool from a vault via a pool adapter.
* @dev The function assumes a prior check for a valid pool address.
* Assuming pool will revert supply transaction if it fails.
* @param asset An asset construct - for a definition see { MultiToken dependency lib }.
* @param poolAdapter An address of a pool adapter.
* @param pool An address of a pool.
* @param owner An address on which behalf the asset is supplied.
*/
function _supplyToPool(MultiToken.Asset memory asset, IPoolAdapter poolAdapter, address pool, address owner) internal {
uint256 originalBalance = asset.balanceOf(address(this));
asset.transferAssetFrom(address(this), address(poolAdapter));
poolAdapter.supply(pool, owner, asset.assetAddress, asset.amount);
_checkTransfer({
asset: asset,
originalBalance: originalBalance,
checkedAddress: address(this),
counterPartyAddress: pool,
checkIncreasingBalance: false
});
// Note: Assuming pool will revert supply transaction if it fails.
emit PoolSupply(asset, address(poolAdapter), pool, owner);
}
function _checkTransfer(
MultiToken.Asset memory asset,
uint256 originalBalance,
address checkedAddress,
address counterPartyAddress,
bool checkIncreasingBalance
) private view {
if (checkedAddress == counterPartyAddress) {
revert VaultTransferSameSourceAndDestination({ addr: checkedAddress });
}
uint256 expectedBalance = checkIncreasingBalance
? originalBalance + asset.getTransferAmount()
: originalBalance - asset.getTransferAmount();
if (expectedBalance != asset.balanceOf(checkedAddress)) {
revert IncompleteTransfer();
}
}
/*----------------------------------------------------------*|
|* # ERC721/1155 RECEIVED HOOKS *|
|*----------------------------------------------------------*/
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* @return `IERC721Receiver.onERC721Received.selector` if transfer is allowed
*/
function onERC721Received(
address operator,
address /*from*/,
uint256 /*tokenId*/,
bytes calldata /*data*/
) override external view returns (bytes4) {
if (operator != address(this))
revert UnsupportedTransferFunction();
return IERC721Receiver.onERC721Received.selector;
}
/**
* @dev Handles the receipt of a single ERC1155 token type. This function is
* called at the end of a `safeTransferFrom` after the balance has been updated.
* To accept the transfer, this must return
* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* (i.e. 0xf23a6e61, or its own function selector).
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address /*from*/,
uint256 /*id*/,
uint256 /*value*/,
bytes calldata /*data*/
) override external view returns (bytes4) {
if (operator != address(this))
revert UnsupportedTransferFunction();
return IERC1155Receiver.onERC1155Received.selector;
}
/**
* @dev Handles the receipt of a multiple ERC1155 token types. This function
* is called at the end of a `safeBatchTransferFrom` after the balances have
* been updated. To accept the transfer(s), this must return
* `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* (i.e. 0xbc197c81, or its own function selector).
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address /*operator*/,
address /*from*/,
uint256[] calldata /*ids*/,
uint256[] calldata /*values*/,
bytes calldata /*data*/
) override external pure returns (bytes4) {
revert UnsupportedTransferFunction();
}
/*----------------------------------------------------------*|
|* # SUPPORTED INTERFACES *|
|*----------------------------------------------------------*/
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external pure virtual override returns (bool) {
return
interfaceId == type(IERC165).interfaceId ||
interfaceId == type(IERC721Receiver).interfaceId ||
interfaceId == type(IERC1155Receiver).interfaceId;
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { PWNHub } from "pwn/hub/PWNHub.sol";
import { PWNHubTags } from "pwn/hub/PWNHubTags.sol";
import { AddressMissingHubTag } from "pwn/PWNErrors.sol";
/**
* @title PWN Revoked Nonce
* @notice Contract holding revoked nonces.
*/
contract PWNRevokedNonce {
/*----------------------------------------------------------*|
|* # VARIABLES & CONSTANTS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Access tag that needs to be assigned to a caller in PWN Hub
* to call functions that revoke nonces on behalf of an owner.
*/
bytes32 public immutable accessTag;
/**
* @notice PWN Hub contract.
* @dev Addresses revoking nonces on behalf of an owner need to have an access tag in PWN Hub.
*/
PWNHub public immutable hub;
/**
* @notice Mapping of revoked nonces by an address. Every address has its own nonce space.
* (owner => nonce space => nonce => is revoked)
*/
mapping (address => mapping (uint256 => mapping (uint256 => bool))) private _revokedNonce;
/**
* @notice Mapping of current nonce space for an address.
*/
mapping (address => uint256) private _nonceSpace;
/*----------------------------------------------------------*|
|* # EVENTS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Emitted when a nonce is revoked.
*/
event NonceRevoked(address indexed owner, uint256 indexed nonceSpace, uint256 indexed nonce);
/**
* @notice Emitted when a nonce is revoked.
*/
event NonceSpaceRevoked(address indexed owner, uint256 indexed nonceSpace);
/*----------------------------------------------------------*|
|* # ERRORS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Thrown when trying to revoke a nonce that is already revoked.
*/
error NonceAlreadyRevoked(address addr, uint256 nonceSpace, uint256 nonce);
/**
* @notice Thrown when nonce is currently not usable.
* @dev Maybe nonce is revoked or not in the current nonce space.
*/
error NonceNotUsable(address addr, uint256 nonceSpace, uint256 nonce);
/*----------------------------------------------------------*|
|* # MODIFIERS *|
|*----------------------------------------------------------*/
modifier onlyWithHubTag() {
if (!hub.hasTag(msg.sender, accessTag))
revert AddressMissingHubTag({ addr: msg.sender, tag: accessTag });
_;
}
/*----------------------------------------------------------*|
|* # CONSTRUCTOR *|
|*----------------------------------------------------------*/
constructor(address _hub, bytes32 _accessTag) {
accessTag = _accessTag;
hub = PWNHub(_hub);
}
/*----------------------------------------------------------*|
|* # NONCE *|
|*----------------------------------------------------------*/
/**
* @notice Revoke callers nonce in the current nonce space.
* @param nonce Nonce to be revoked.
*/
function revokeNonce(uint256 nonce) external {
_revokeNonce(msg.sender, _nonceSpace[msg.sender], nonce);
}
/**
* @notice Revoke multiple caller nonces in the current nonce space.
* @param nonces List of nonces to be revoked.
*/
function revokeNonces(uint256[] calldata nonces) external {
uint256 nonceSpace = _nonceSpace[msg.sender];
for (uint256 i; i < nonces.length; ++i) {
_revokeNonce(msg.sender, nonceSpace, nonces[i]);
}
}
/**
* @notice Revoke caller nonce in a nonce space.
* @param nonceSpace Nonce space where a nonce will be revoked.
* @param nonce Nonce to be revoked.
*/
function revokeNonce(uint256 nonceSpace, uint256 nonce) external {
_revokeNonce(msg.sender, nonceSpace, nonce);
}
/**
* @notice Revoke a nonce in the current nonce space on behalf of an owner.
* @dev Only an address with associated access tag in PWN Hub can call this function.
* @param owner Owner address of a revoking nonce.
* @param nonce Nonce to be revoked.
*/
function revokeNonce(address owner, uint256 nonce) external onlyWithHubTag {
_revokeNonce(owner, _nonceSpace[owner], nonce);
}
/**
* @notice Revoke a nonce in a nonce space on behalf of an owner.
* @dev Only an address with associated access tag in PWN Hub can call this function.
* @param owner Owner address of a revoking nonce.
* @param nonceSpace Nonce space where a nonce will be revoked.
* @param nonce Nonce to be revoked.
*/
function revokeNonce(address owner, uint256 nonceSpace, uint256 nonce) external onlyWithHubTag {
_revokeNonce(owner, nonceSpace, nonce);
}
/**
* @notice Internal function to revoke a nonce in a nonce space.
*/
function _revokeNonce(address owner, uint256 nonceSpace, uint256 nonce) private {
if (_revokedNonce[owner][nonceSpace][nonce]) {
revert NonceAlreadyRevoked({ addr: owner, nonceSpace: nonceSpace, nonce: nonce });
}
_revokedNonce[owner][nonceSpace][nonce] = true;
emit NonceRevoked(owner, nonceSpace, nonce);
}
/**
* @notice Return true if owners nonce is revoked in the given nonce space.
* @dev Do not use this function to check if nonce is usable.
* Use `isNonceUsable` instead, which checks nonce space as well.
* @param owner Address of a nonce owner.
* @param nonceSpace Value of a nonce space.
* @param nonce Value of a nonce.
* @return True if nonce is revoked.
*/
function isNonceRevoked(address owner, uint256 nonceSpace, uint256 nonce) external view returns (bool) {
return _revokedNonce[owner][nonceSpace][nonce];
}
/**
* @notice Return true if owners nonce is usable. Nonce is usable if it is not revoked and in the current nonce space.
* @param owner Address of a nonce owner.
* @param nonceSpace Value of a nonce space.
* @param nonce Value of a nonce.
* @return True if nonce is usable.
*/
function isNonceUsable(address owner, uint256 nonceSpace, uint256 nonce) external view returns (bool) {
if (_nonceSpace[owner] != nonceSpace)
return false;
return !_revokedNonce[owner][nonceSpace][nonce];
}
/*----------------------------------------------------------*|
|* # NONCE SPACE *|
|*----------------------------------------------------------*/
/**
* @notice Revoke all nonces in the current nonce space and increment nonce space.
* @dev Caller is used as a nonce owner.
* @return New nonce space.
*/
function revokeNonceSpace() external returns (uint256) {
emit NonceSpaceRevoked(msg.sender, _nonceSpace[msg.sender]);
return ++_nonceSpace[msg.sender];
}
/**
* @notice Return current nonce space for an address.
* @param owner Address of a nonce owner.
* @return Current nonce space.
*/
function currentNonceSpace(address owner) external view returns (uint256) {
return _nonceSpace[owner];
}
}// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.16; /** * @notice Thrown when an address is missing a PWN Hub tag. */ error AddressMissingHubTag(address addr, bytes32 tag); /** * @notice Thrown when a proposal is expired. */ error Expired(uint256 current, uint256 expiration);
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The tree and the proofs can be generated using our
* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
* You will find a quickstart guide in the readme.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
* OpenZeppelin's JavaScript library generates merkle trees that are safe
* against this attack out of the box.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
* proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
* leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
* respectively.
*
* CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
* is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
* tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 proofLen = proof.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i]
? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
: proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
require(proofPos == proofLen, "MerkleProof: invalid multiproof");
unchecked {
return hashes[totalHashes - 1];
}
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 proofLen = proof.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i]
? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
: proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
require(proofPos == proofLen, "MerkleProof: invalid multiproof");
unchecked {
return hashes[totalHashes - 1];
}
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
import { PWNHub } from "pwn/hub/PWNHub.sol";
import { AddressMissingHubTag } from "pwn/PWNErrors.sol";
/**
* @title PWN Utilized Credit Contract
* @notice Contract holding utilized credit.
*/
contract PWNUtilizedCredit {
/*----------------------------------------------------------*|
|* # VARIABLES & CONSTANTS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Access tag that needs to be assigned to a caller in PWN Hub
* to call functions that update utilized credit.
*/
bytes32 public immutable accessTag;
/**
* @notice PWN Hub contract.
* @dev Addresses updating utilized credit need to have an access tag in PWN Hub.
*/
PWNHub public immutable hub;
/**
* @notice Mapping of credit utilized by an id with defined available credit limit.
* (owner => id => utilized credit)
*/
mapping (address => mapping (bytes32 => uint256)) public utilizedCredit;
/*----------------------------------------------------------*|
|* # ERRORS DEFINITIONS *|
|*----------------------------------------------------------*/
/**
* @notice Thrown when an id would exceed the available credit limit.
*/
error AvailableCreditLimitExceeded(address owner, bytes32 id, uint256 utilized, uint256 limit);
/*----------------------------------------------------------*|
|* # MODIFIERS *|
|*----------------------------------------------------------*/
modifier onlyWithHubTag() {
if (!hub.hasTag(msg.sender, accessTag))
revert AddressMissingHubTag({ addr: msg.sender, tag: accessTag });
_;
}
/*----------------------------------------------------------*|
|* # CONSTRUCTOR *|
|*----------------------------------------------------------*/
constructor(address _hub, bytes32 _accessTag) {
accessTag = _accessTag;
hub = PWNHub(_hub);
}
/*----------------------------------------------------------*|
|* # UTILIZED CREDIT *|
|*----------------------------------------------------------*/
/**
* @notice Update utilized credit for an owner with an id.
* @dev Function will revert if utilized credit would exceed the available credit limit.
* @param owner Owner of the utilized credit.
* @param id Id of the utilized credit.
* @param amount Amount to update utilized credit.
* @param limit Available credit limit.
*/
function utilizeCredit(address owner, bytes32 id, uint256 amount, uint256 limit) external onlyWithHubTag {
uint256 extendedAmount = utilizedCredit[owner][id] + amount;
if (extendedAmount > limit) {
revert AvailableCreditLimitExceeded({ owner: owner, id: id, utilized: extendedAmount, limit: limit });
}
utilizedCredit[owner][id] = extendedAmount;
}
}// 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.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/IERC1155.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155 is IERC165 {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(
address[] calldata accounts,
uint256[] calldata ids
) external view returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}// 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 v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)
pragma solidity ^0.8.0;
import "./OwnableUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership} and {acceptOwnership}.
*
* This module is used through inheritance. It will make available all functions
* from parent (Ownable).
*/
abstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {
address private _pendingOwner;
event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);
function __Ownable2Step_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable2Step_init_unchained() internal onlyInitializing {
}
/**
* @dev Returns the address of the pending owner.
*/
function pendingOwner() public view virtual returns (address) {
return _pendingOwner;
}
/**
* @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual override onlyOwner {
_pendingOwner = newOwner;
emit OwnershipTransferStarted(owner(), newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual override {
delete _pendingOwner;
super._transferOwnership(newOwner);
}
/**
* @dev The new owner accepts the ownership transfer.
*/
function acceptOwnership() public virtual {
address sender = _msgSender();
require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
_transferOwnership(sender);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.16;
/**
* @title IStateFingerpringComputer
* @notice State Fingerprint Computer Interface.
* @dev Contract can compute state fingerprint of several tokens as long as they share the same state structure.
*/
interface IStateFingerpringComputer {
/**
* @notice Compute current token state fingerprint for a given token.
* @param token Address of a token contract.
* @param tokenId Token id to compute state fingerprint for.
* @return Current token state fingerprint.
*/
function computeStateFingerprint(address token, uint256 tokenId) external view returns (bytes32);
/**
* @notice Check if the computer supports a given token address.
* @param token Address of a token contract.
* @return True if the computer supports the token address, false otherwise.
*/
function supportsToken(address token) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)
pragma solidity ^0.8.0;
import "./Ownable.sol";
/**
* @dev Contract module which provides access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership} and {acceptOwnership}.
*
* This module is used through inheritance. It will make available all functions
* from parent (Ownable).
*/
abstract contract Ownable2Step is Ownable {
address private _pendingOwner;
event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);
/**
* @dev Returns the address of the pending owner.
*/
function pendingOwner() public view virtual returns (address) {
return _pendingOwner;
}
/**
* @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual override onlyOwner {
_pendingOwner = newOwner;
emit OwnershipTransferStarted(owner(), newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual override {
delete _pendingOwner;
super._transferOwnership(newOwner);
}
/**
* @dev The new owner accepts the ownership transfer.
*/
function acceptOwnership() public virtual {
address sender = _msgSender();
require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
_transferOwnership(sender);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV // Deprecated in v4.8
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32")
mstore(0x1c, hash)
message := keccak256(0x00, 0x3c)
}
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, "\x19\x01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
data := keccak256(ptr, 0x42)
}
}
/**
* @dev Returns an Ethereum Signed Data with intended validator, created from a
* `validator` and `data` according to the version 0 of EIP-191.
*
* See {recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x00", validator, data));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC1271 standard signature validation method for
* contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
*
* _Available since v4.1._
*/
interface IERC1271 {
/**
* @dev Should return whether the signature provided is valid for the provided data
* @param hash Hash of the data to be signed
* @param signature Signature byte array associated with _data
*/
function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 tokenId) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += amount;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {
/**
* @dev Handles the receipt of a single ERC1155 token type. This function is
* called at the end of a `safeTransferFrom` after the balance has been updated.
*
* NOTE: To accept the transfer, this must return
* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* (i.e. 0xf23a6e61, or its own function selector).
*
* @param operator The address which initiated the transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param id The ID of the token being transferred
* @param value The amount of tokens being transferred
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
* @dev Handles the receipt of a multiple ERC1155 token types. This function
* is called at the end of a `safeBatchTransferFrom` after the balances have
* been updated.
*
* NOTE: To accept the transfer(s), this must return
* `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* (i.e. 0xbc197c81, or its own function selector).
*
* @param operator The address which initiated the batch transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param ids An array containing ids of each token being transferred (order and length must match values array)
* @param values An array containing amounts of each token being transferred (order and length must match ids array)
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// 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 v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// 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 AddressUpgradeable {
/**
* @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.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": [
"pwn/=src/",
"openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"openzeppelin/=lib/openzeppelin-contracts/contracts/",
"MultiToken/=lib/MultiToken/src/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"multitoken/=lib/MultiToken/src/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs"
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "london",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_hub","type":"address"},{"internalType":"address","name":"_revokedNonce","type":"address"},{"internalType":"address","name":"_config","type":"address"},{"internalType":"address","name":"_utilizedCredit","type":"address"},{"internalType":"address","name":"_chainlinkFeedRegistry","type":"address"},{"internalType":"address","name":"_l2SequencerUptimeFeed","type":"address"},{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"AcceptorIsProposer","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32","name":"tag","type":"bytes32"}],"name":"AddressMissingHubTag","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"CallerIsNotStatedProposer","type":"error"},{"inputs":[{"internalType":"address","name":"current","type":"address"},{"internalType":"address","name":"allowed","type":"address"}],"name":"CallerNotAllowedAcceptor","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"loanContract","type":"address"}],"name":"CallerNotLoanContract","type":"error"},{"inputs":[{"internalType":"address","name":"feed","type":"address"},{"internalType":"uint256","name":"updatedAt","type":"uint256"}],"name":"ChainlinkFeedPriceTooOld","type":"error"},{"inputs":[{"internalType":"address","name":"feed","type":"address"},{"internalType":"int256","name":"price","type":"int256"},{"internalType":"uint256","name":"updatedAt","type":"uint256"}],"name":"ChainlinkFeedReturnedNegativePrice","type":"error"},{"inputs":[],"name":"ChainlinkInvalidInputLenghts","type":"error"},{"inputs":[{"internalType":"uint32","name":"defaultDate","type":"uint32"},{"internalType":"uint32","name":"current","type":"uint32"}],"name":"DefaultDateInPast","type":"error"},{"inputs":[{"internalType":"uint256","name":"current","type":"uint256"},{"internalType":"uint256","name":"expiration","type":"uint256"}],"name":"Expired","type":"error"},{"inputs":[{"internalType":"uint256","name":"timeSinceUp","type":"uint256"},{"internalType":"uint256","name":"gracePeriod","type":"uint256"}],"name":"GracePeriodNotOver","type":"error"},{"inputs":[{"internalType":"uint256","name":"current","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"InsufficientCreditAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"current","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"IntermediaryDenominationsOutOfBounds","type":"error"},{"inputs":[{"internalType":"bytes32","name":"current","type":"bytes32"},{"internalType":"bytes32","name":"proposed","type":"bytes32"}],"name":"InvalidCollateralStateFingerprint","type":"error"},{"inputs":[{"internalType":"uint256","name":"refinancingLoanId","type":"uint256"}],"name":"InvalidRefinancingLoanId","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"bytes32","name":"digest","type":"bytes32"}],"name":"InvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"InvalidSignatureLength","type":"error"},{"inputs":[],"name":"L2SequencerDown","type":"error"},{"inputs":[],"name":"MinCreditAmountNotSet","type":"error"},{"inputs":[],"name":"MissingStateFingerprintComputer","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"nonceSpace","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"NonceNotUsable","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"proposalHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"proposer","type":"address"},{"components":[{"internalType":"enum MultiToken.Category","name":"collateralCategory","type":"uint8"},{"internalType":"address","name":"collateralAddress","type":"address"},{"internalType":"uint256","name":"collateralId","type":"uint256"},{"internalType":"bool","name":"checkCollateralStateFingerprint","type":"bool"},{"internalType":"bytes32","name":"collateralStateFingerprint","type":"bytes32"},{"internalType":"address","name":"creditAddress","type":"address"},{"internalType":"address[]","name":"feedIntermediaryDenominations","type":"address[]"},{"internalType":"bool[]","name":"feedInvertFlags","type":"bool[]"},{"internalType":"uint256","name":"loanToValue","type":"uint256"},{"internalType":"uint256","name":"minCreditAmount","type":"uint256"},{"internalType":"uint256","name":"availableCreditLimit","type":"uint256"},{"internalType":"bytes32","name":"utilizedCreditId","type":"bytes32"},{"internalType":"uint256","name":"fixedInterestAmount","type":"uint256"},{"internalType":"uint24","name":"accruingInterestAPR","type":"uint24"},{"internalType":"uint32","name":"durationOrDate","type":"uint32"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"address","name":"allowedAcceptor","type":"address"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"bytes32","name":"proposerSpecHash","type":"bytes32"},{"internalType":"bool","name":"isOffer","type":"bool"},{"internalType":"uint256","name":"refinancingLoanId","type":"uint256"},{"internalType":"uint256","name":"nonceSpace","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"loanContract","type":"address"}],"indexed":false,"internalType":"struct PWNSimpleLoanElasticChainlinkProposal.Proposal","name":"proposal","type":"tuple"}],"name":"ProposalMade","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOAN_TO_VALUE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_INTERMEDIARY_DENOMINATIONS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MULTIPROPOSAL_DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MULTIPROPOSAL_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROPOSAL_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"acceptor","type":"address"},{"internalType":"uint256","name":"refinancingLoanId","type":"uint256"},{"internalType":"bytes","name":"proposalData","type":"bytes"},{"internalType":"bytes32[]","name":"proposalInclusionProof","type":"bytes32[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"acceptProposal","outputs":[{"internalType":"bytes32","name":"proposalHash","type":"bytes32"},{"components":[{"internalType":"address","name":"lender","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint32","name":"duration","type":"uint32"},{"components":[{"internalType":"enum MultiToken.Category","name":"category","type":"uint8"},{"internalType":"address","name":"assetAddress","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct MultiToken.Asset","name":"collateral","type":"tuple"},{"components":[{"internalType":"enum MultiToken.Category","name":"category","type":"uint8"},{"internalType":"address","name":"assetAddress","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct MultiToken.Asset","name":"credit","type":"tuple"},{"internalType":"uint256","name":"fixedInterestAmount","type":"uint256"},{"internalType":"uint24","name":"accruingInterestAPR","type":"uint24"},{"internalType":"bytes32","name":"lenderSpecHash","type":"bytes32"},{"internalType":"bytes32","name":"borrowerSpecHash","type":"bytes32"}],"internalType":"struct PWNSimpleLoan.Terms","name":"loanTerms","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chainlinkFeedRegistry","outputs":[{"internalType":"contract IChainlinkFeedRegistryLike","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"config","outputs":[{"internalType":"contract PWNConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"proposalData","type":"bytes"}],"name":"decodeProposalData","outputs":[{"components":[{"internalType":"enum MultiToken.Category","name":"collateralCategory","type":"uint8"},{"internalType":"address","name":"collateralAddress","type":"address"},{"internalType":"uint256","name":"collateralId","type":"uint256"},{"internalType":"bool","name":"checkCollateralStateFingerprint","type":"bool"},{"internalType":"bytes32","name":"collateralStateFingerprint","type":"bytes32"},{"internalType":"address","name":"creditAddress","type":"address"},{"internalType":"address[]","name":"feedIntermediaryDenominations","type":"address[]"},{"internalType":"bool[]","name":"feedInvertFlags","type":"bool[]"},{"internalType":"uint256","name":"loanToValue","type":"uint256"},{"internalType":"uint256","name":"minCreditAmount","type":"uint256"},{"internalType":"uint256","name":"availableCreditLimit","type":"uint256"},{"internalType":"bytes32","name":"utilizedCreditId","type":"bytes32"},{"internalType":"uint256","name":"fixedInterestAmount","type":"uint256"},{"internalType":"uint24","name":"accruingInterestAPR","type":"uint24"},{"internalType":"uint32","name":"durationOrDate","type":"uint32"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"address","name":"allowedAcceptor","type":"address"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"bytes32","name":"proposerSpecHash","type":"bytes32"},{"internalType":"bool","name":"isOffer","type":"bool"},{"internalType":"uint256","name":"refinancingLoanId","type":"uint256"},{"internalType":"uint256","name":"nonceSpace","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"loanContract","type":"address"}],"internalType":"struct PWNSimpleLoanElasticChainlinkProposal.Proposal","name":"","type":"tuple"},{"components":[{"internalType":"uint256","name":"creditAmount","type":"uint256"}],"internalType":"struct PWNSimpleLoanElasticChainlinkProposal.ProposalValues","name":"","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"enum MultiToken.Category","name":"collateralCategory","type":"uint8"},{"internalType":"address","name":"collateralAddress","type":"address"},{"internalType":"uint256","name":"collateralId","type":"uint256"},{"internalType":"bool","name":"checkCollateralStateFingerprint","type":"bool"},{"internalType":"bytes32","name":"collateralStateFingerprint","type":"bytes32"},{"internalType":"address","name":"creditAddress","type":"address"},{"internalType":"address[]","name":"feedIntermediaryDenominations","type":"address[]"},{"internalType":"bool[]","name":"feedInvertFlags","type":"bool[]"},{"internalType":"uint256","name":"loanToValue","type":"uint256"},{"internalType":"uint256","name":"minCreditAmount","type":"uint256"},{"internalType":"uint256","name":"availableCreditLimit","type":"uint256"},{"internalType":"bytes32","name":"utilizedCreditId","type":"bytes32"},{"internalType":"uint256","name":"fixedInterestAmount","type":"uint256"},{"internalType":"uint24","name":"accruingInterestAPR","type":"uint24"},{"internalType":"uint32","name":"durationOrDate","type":"uint32"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"address","name":"allowedAcceptor","type":"address"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"bytes32","name":"proposerSpecHash","type":"bytes32"},{"internalType":"bool","name":"isOffer","type":"bool"},{"internalType":"uint256","name":"refinancingLoanId","type":"uint256"},{"internalType":"uint256","name":"nonceSpace","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"loanContract","type":"address"}],"internalType":"struct PWNSimpleLoanElasticChainlinkProposal.Proposal","name":"proposal","type":"tuple"},{"components":[{"internalType":"uint256","name":"creditAmount","type":"uint256"}],"internalType":"struct PWNSimpleLoanElasticChainlinkProposal.ProposalValues","name":"proposalValues","type":"tuple"}],"name":"encodeProposalData","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"creditAddress","type":"address"},{"internalType":"uint256","name":"creditAmount","type":"uint256"},{"internalType":"address","name":"collateralAddress","type":"address"},{"internalType":"address[]","name":"feedIntermediaryDenominations","type":"address[]"},{"internalType":"bool[]","name":"feedInvertFlags","type":"bool[]"},{"internalType":"uint256","name":"loanToValue","type":"uint256"}],"name":"getCollateralAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"multiproposalMerkleRoot","type":"bytes32"}],"internalType":"struct PWNSimpleLoanProposal.Multiproposal","name":"multiproposal","type":"tuple"}],"name":"getMultiproposalHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"enum MultiToken.Category","name":"collateralCategory","type":"uint8"},{"internalType":"address","name":"collateralAddress","type":"address"},{"internalType":"uint256","name":"collateralId","type":"uint256"},{"internalType":"bool","name":"checkCollateralStateFingerprint","type":"bool"},{"internalType":"bytes32","name":"collateralStateFingerprint","type":"bytes32"},{"internalType":"address","name":"creditAddress","type":"address"},{"internalType":"address[]","name":"feedIntermediaryDenominations","type":"address[]"},{"internalType":"bool[]","name":"feedInvertFlags","type":"bool[]"},{"internalType":"uint256","name":"loanToValue","type":"uint256"},{"internalType":"uint256","name":"minCreditAmount","type":"uint256"},{"internalType":"uint256","name":"availableCreditLimit","type":"uint256"},{"internalType":"bytes32","name":"utilizedCreditId","type":"bytes32"},{"internalType":"uint256","name":"fixedInterestAmount","type":"uint256"},{"internalType":"uint24","name":"accruingInterestAPR","type":"uint24"},{"internalType":"uint32","name":"durationOrDate","type":"uint32"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"address","name":"allowedAcceptor","type":"address"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"bytes32","name":"proposerSpecHash","type":"bytes32"},{"internalType":"bool","name":"isOffer","type":"bool"},{"internalType":"uint256","name":"refinancingLoanId","type":"uint256"},{"internalType":"uint256","name":"nonceSpace","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"loanContract","type":"address"}],"internalType":"struct PWNSimpleLoanElasticChainlinkProposal.Proposal","name":"proposal","type":"tuple"}],"name":"getProposalHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hub","outputs":[{"internalType":"contract PWNHub","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2SequencerUptimeFeed","outputs":[{"internalType":"contract IChainlinkAggregatorLike","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"enum MultiToken.Category","name":"collateralCategory","type":"uint8"},{"internalType":"address","name":"collateralAddress","type":"address"},{"internalType":"uint256","name":"collateralId","type":"uint256"},{"internalType":"bool","name":"checkCollateralStateFingerprint","type":"bool"},{"internalType":"bytes32","name":"collateralStateFingerprint","type":"bytes32"},{"internalType":"address","name":"creditAddress","type":"address"},{"internalType":"address[]","name":"feedIntermediaryDenominations","type":"address[]"},{"internalType":"bool[]","name":"feedInvertFlags","type":"bool[]"},{"internalType":"uint256","name":"loanToValue","type":"uint256"},{"internalType":"uint256","name":"minCreditAmount","type":"uint256"},{"internalType":"uint256","name":"availableCreditLimit","type":"uint256"},{"internalType":"bytes32","name":"utilizedCreditId","type":"bytes32"},{"internalType":"uint256","name":"fixedInterestAmount","type":"uint256"},{"internalType":"uint24","name":"accruingInterestAPR","type":"uint24"},{"internalType":"uint32","name":"durationOrDate","type":"uint32"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"address","name":"allowedAcceptor","type":"address"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"bytes32","name":"proposerSpecHash","type":"bytes32"},{"internalType":"bool","name":"isOffer","type":"bool"},{"internalType":"uint256","name":"refinancingLoanId","type":"uint256"},{"internalType":"uint256","name":"nonceSpace","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"loanContract","type":"address"}],"internalType":"struct PWNSimpleLoanElasticChainlinkProposal.Proposal","name":"proposal","type":"tuple"}],"name":"makeProposal","outputs":[{"internalType":"bytes32","name":"proposalHash","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"proposalsMade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonceSpace","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"revokeNonce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokedNonce","outputs":[{"internalType":"contract PWNRevokedNonce","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"utilizedCredit","outputs":[{"internalType":"contract PWNUtilizedCredit","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6101a06040523480156200001257600080fd5b5060405162003d2d38038062003d2d8339810160408190526200003591620001f6565b8686868660405180606001604052806025815260200162003d086025913960408051808201825260038152620312e360ec1b6020808301919091526001600160a01b0380891660c05287811660e05286811661010052851661012052915190917f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f91620000c5918591016200028b565b6040516020818303038152906040528051906020012082604051602001620000ee91906200028b565b60408051601f1981840301815282825280516020918201209083019490945281019190915260608101919091524660808201523060a082015260c00160408051808303601f1901815282825280516020918201206080527fb2178a58fb1eefb359ecfdd57bb19c0bdd0f4e6eed8547f46600e500ed111af3908301527fb63b40822cc79278afd8d1ce1a8006a4a298ec829d4d1610b69b2a4830c232709082015260600160408051601f19818403018152919052805160209091012060a0525050506001600160a01b039586166101405250505090821661016052166101805250620002bc92505050565b80516001600160a01b0381168114620001f157600080fd5b919050565b600080600080600080600060e0888a0312156200021257600080fd5b6200021d88620001d9565b96506200022d60208901620001d9565b95506200023d60408901620001d9565b94506200024d60608901620001d9565b93506200025d60808901620001d9565b92506200026d60a08901620001d9565b91506200027d60c08901620001d9565b905092959891949750929550565b6000825160005b81811015620002ae576020818601810151858301520162000292565b506000920191825250919050565b60805160a05160c05160e0516101005161012051610140516101605161018051613987620003816000396000818161038301528181610b1f0152610b740152600081816103aa0152610aba0152600081816103f80152610bd101526000818161027801526114bd0152600081816102d4015261154c015260008181610335015281816109740152818161129601526113e00152600081816102260152610f8b01526000818161035c01526109e70152600081816101ff0152610e6401526139876000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806379502c55116100c3578063ba76a6801161007c578063ba76a680146103a5578063d06a0d82146103cc578063e2394b08146103f3578063e81dba841461041a578063eff6ee4d1461042d578063ffa1ad741461043557600080fd5b806379502c55146102cf578063829d3770146102f6578063853b94a0146103095780639788ad5514610330578063abe9387814610357578063ad5c46481461037e57600080fd5b80633644e515116101155780633644e515146101fa578063365a86fc146102215780633db67fab146102605780634379dbad1461027357806351d5259c1461029a578063579bfc30146102ba57600080fd5b806301e83272146101525780631a2e4f831461017c5780631a3a4e51146101935780631da4c275146101a65780632d5d17fc146101d9575b600080fd5b61016561016036600461242c565b610457565b60405161017392919061257d565b60405180910390f35b61018561271081565b604051908152602001610173565b6101856101a136600461261d565b610788565b6101c96101b4366004612658565b60006020819052908152604090205460ff1681565b6040519015158152602001610173565b6101ec6101e7366004612702565b6107c5565b60405161017392919061280c565b6101857f000000000000000000000000000000000000000000000000000000000000000081565b6102487f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610173565b61018561026e36600461261d565b6108b1565b6102487f000000000000000000000000000000000000000000000000000000000000000081565b6102ad6102a8366004612d17565b610931565b6040516101739190612dcb565b6102cd6102c8366004612dde565b61095d565b005b6102487f000000000000000000000000000000000000000000000000000000000000000081565b610185610304366004612e00565b6109e3565b6101857fb11b3df6183cd24971e5da7838f641e16d335bf25f21303fc9be537fd3fd831981565b6102487f000000000000000000000000000000000000000000000000000000000000000081565b6101857f000000000000000000000000000000000000000000000000000000000000000081565b6102487f000000000000000000000000000000000000000000000000000000000000000081565b6102487f000000000000000000000000000000000000000000000000000000000000000081565b6101857f73af92d8ed4d3261ba61cd686d2f8a9cceb2563cc7c4c5355eb121316fc5358d81565b6102487f000000000000000000000000000000000000000000000000000000000000000081565b610185610428366004612e24565b610ab3565b610185600281565b6102ad604051806040016040528060038152602001620312e360ec1b81525081565b6000610461612339565b6000806104a38a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506107c592505050565b915091506104d97fb11b3df6183cd24971e5da7838f641e16d335bf25f21303fc9be537fd3fd83196104d484610ca3565b610e60565b935081610120015160000361050157604051636f0c8e4160e11b815260040160405180910390fd5b6101208201518151101561053e57805161012083015160405163d0b7539760e01b8152600481019290925260248201526044015b60405180910390fd5b60006105678360a00151836000015185602001518660c001518760e00151886101000151610ab3565b90506106518d8d878c8c8c8c604051806101e001604052808c602001516001600160a01b031681526020018c6040015181526020018c60600151151581526020018c6080015181526020018b6000015181526020018c610140015181526020018c610160015181526020018c6101e0015164ffffffffff1681526020018c61020001516001600160a01b031681526020018c61022001516001600160a01b031681526020018c6102600151151581526020018c610280015181526020018c6102a0015181526020018c6102c0015181526020018c6102e001516001600160a01b0316815250610ef1565b60405180610120016040528084610260015161066d578e610674565b8461022001515b6001600160a01b0316815260200184610260015161069757846102200151610699565b8e5b6001600160a01b031681526020016106b5856101c001516116ff565b63ffffffff1681526020016040518060800160405280866000015160038111156106e1576106e1612512565b815260200186602001516001600160a01b031681526020018660400151815260200184815250815260200161071e8560a001518560000151611762565b81526020018461018001518152602001846101a0015162ffffff16815260200184610260015161074f576000610756565b8461024001515b815260200184610260015161077057846102400151610773565b60005b81525093505050509850989650505050505050565b60006107bf7fb11b3df6183cd24971e5da7838f641e16d335bf25f21303fc9be537fd3fd83196104d46107ba85612ebe565b610ca3565b92915050565b604080516103008101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905260e0820152610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e08101829052610200810182905261022081018290526102408101829052610260810182905261028081018290526102a081018290526102c081018290526102e0810191909152604080516020810190915260008152828060200190518101906108a89190613015565b91509150915091565b60006108bc82610788565b90506108d9816108d461024085016102208601613205565b61179a565b6108eb61024083016102208401613205565b6001600160a01b0316817fa62ac4526c57de012f83edf020085de2c4e73bc9f96aebd6bfe11e0580b07f388460405161092491906132df565b60405180910390a3919050565b6060828260405160200161094692919061280c565b604051602081830303815290604052905092915050565b60405163f79924a960e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f79924a9906109ad9033908690869060040161350f565b600060405180830381600087803b1580156109c757600080fd5b505af11580156109db573d6000803e3d6000fd5b505050505050565b60007f00000000000000000000000000000000000000000000000000000000000000007f73af92d8ed4d3261ba61cd686d2f8a9cceb2563cc7c4c5355eb121316fc5358d83604051602001610a3b9151815260200190565b60408051601f1981840301815290829052610a599291602001613530565b60405160208183030381529060405280519060200120604051602001610a9692919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050919050565b6000610ae77f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166117ea565b600284511115610b17578351604051632553480760e11b8152600481019190915260026024820152604401610535565b600080610bfa7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168a6001600160a01b031614610b5c5789610b72565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614610bb15788610bc7565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee5b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016919089896118c8565b915091506000610c098a6119ab565b90506000610c16896119ab565b905081811115610c4257610c2a828261356c565b610c3590600a613663565b610c3f908b61366f565b99505b6000610c598b86610c5487600a61368e565b611a6d565b9050610c688161271089611a6d565b905082821015610c9457610c7c828461356c565b610c8790600a613663565b610c9190826136b3565b90505b9b9a5050505050505050505050565b6060816000015182602001518360400151846060015185608001518660a001518760c00151604051602001610cd891906136d5565b604051602081830303815290604052805190602001208860e00151604051602001610d039190613714565b604051602081830303815290604052805190602001208961010001518a61012001518b61014001518c6101600151604051602001610d4c9c9b9a99989796959493929190613740565b60408051601f19818403018152908290526101808401516101a08501516101c08601516101e08701516102008801516102208901516102408a01516102608b01516102808c01516102a08d01516102c08e01516102e08f01519b9d508d9c610e2c9c906020019b8c5262ffffff9a909a1660208c015263ffffffff9890981660408b015264ffffffffff9690961660608a01526001600160a01b0394851660808a015292841660a089015260c0880191909152151560e0870152610100860152610120850191909152610140840191909152166101608201526101800190565b60408051601f1981840301815290829052610e4a92916020016137b2565b6040516020818303038152906040529050919050565b60007f00000000000000000000000000000000000000000000000000000000000000008383604051602001610e96929190613530565b60405160208183030381529060405280519060200120604051602001610ed392919061190160f01b81526002810192909252602282015260420190565b60405160208183030381529060405280519060200120905092915050565b806101c001516001600160a01b0316336001600160a01b031614610f40576101c081015160405163a4ce7f2960e01b81523360048201526001600160a01b039091166024820152604401610535565b6101c081015160405163680cabbd60e11b81526001600160a01b0391821660048201527f9e56ea094d7a53440eef11fa42b63159fbf703b4ee579494a6ae85afc560359460248201527f00000000000000000000000000000000000000000000000000000000000000009091169063d019577a90604401602060405180830381865afa158015610fd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff891906137e1565b61104d576101c0810151604051630b92eb2560e11b81526001600160a01b0390911660048201527f9e56ea094d7a53440eef11fa42b63159fbf703b4ee579494a6ae85afc56035946024820152604401610535565b60008490036110ed5760008681526020819052604090205460ff166110e8576110b28161012001518785858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611b5d92505050565b6110e8576101208101516040516301d2d55760e31b81526001600160a01b03909116600482015260248101879052604401610535565b61118f565b600061110f604051806020016040528061110889898c611d01565b90526109e3565b90506111578261012001518286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611b5d92505050565b61118d576101208201516040516301d2d55760e31b81526001600160a01b03909116600482015260248101829052604401610535565b505b876001600160a01b03168161012001516001600160a01b0316036111d1576040516326ab1a1d60e11b81526001600160a01b0389166004820152602401610535565b8660000361120b576101608101511561120657806101600151604051637a4b6f9760e11b815260040161053591815260200190565b611254565b80610160015187146112545761016081015115158061122d5750806101400151155b1561125457806101600151604051637a4b6f9760e11b815260040161053591815260200190565b8060e0015164ffffffffff1642106112945760e081015160405163aa2fd92560e01b815242600482015264ffffffffff9091166024820152604401610535565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f291a62c826101200151836101800151846101a001516040518463ffffffff1660e01b81526004016112f39392919061350f565b602060405180830381865afa158015611310573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133491906137e1565b61136657806101200151816101800151826101a00151604051632108c30560e11b81526004016105359392919061350f565b6101008101516001600160a01b03161580159061139a57508061010001516001600160a01b0316886001600160a01b031614155b156113d257610100810151604051636075c95560e11b81526001600160a01b03808b1660048301529091166024820152604401610535565b8060a00151600003611474577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f79924a9826101200151836101800151846101a001516040518463ffffffff1660e01b815260040161143d9392919061350f565b600060405180830381600087803b15801561145757600080fd5b505af115801561146b573d6000803e3d6000fd5b5050505061151c565b61012081015160c0820151608083015160a0840151604051638f8ea94960e01b81526001600160a01b0394851660048201526024810193909352604483019190915260648201527f000000000000000000000000000000000000000000000000000000000000000090911690638f8ea94990608401600060405180830381600087803b15801561150357600080fd5b505af1158015611517573d6000803e3d6000fd5b505050505b8060400151156116f5578051604051630b7e49eb60e21b81526001600160a01b03918216600482015260009182917f000000000000000000000000000000000000000000000000000000000000000090911690632df927ac90602401602060405180830381865afa158015611595573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b991906137fe565b90506001600160a01b03811615611657578251602084015160405163ec2ce34560e01b81526001600160a01b0384169263ec2ce3459261160f926004016001600160a01b03929092168252602082015260400190565b602060405180830381865afa15801561162c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611650919061381b565b91506116be565b825161166a9063f511231560e01b611d4d565b156116a5578251602084015160405163f511231560e01b81526001600160a01b039092169163f51123159161160f9160040190815260200190565b60405163f3c0936360e01b815260040160405180910390fd5b818360600151146116f2576060830151604051633840fc0160e01b8152610535918491600401918252602082015260400190565b50505b5050505050505050565b6000633b9aca008263ffffffff1611611716575090565b428263ffffffff161115611734576107bf4263ffffffff841661356c565b60405163e5084aed60e01b815263ffffffff808416600483015242166024820152604401610535565b919050565b61176a612392565b506040805160808101825260008082526001600160a01b0394909416602082015290810192909252606082015290565b336001600160a01b038216146117ce57604051631144200360e31b81526001600160a01b0382166004820152602401610535565b506000908152602081905260409020805460ff19166001179055565b6001600160a01b038116156118c557600080826001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa15801561183a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185e919061384e565b505092509250508160010361188657604051631fcc003d60e31b815260040160405180910390fd5b6000611892824261356c565b905061025881116118c157604051631ea52c1d60e31b8152600481018290526102586024820152604401610535565b5050505b50565b600080835160016118d9919061389e565b8351146118f9576040516336cb02c760e01b815260040160405180910390fd5b60016000805b855181101561199c576119878a8484841561193d578a61192060018761356c565b81518110611930576119306138b1565b602002602001015161193f565b8c5b8b518614611966578b8681518110611959576119596138b1565b6020026020010151611968565b8c5b8b878151811061197a5761197a6138b1565b6020026020010151611d69565b9093509150611995816138c7565b90506118ff565b50909890975095505050505050565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b1790529051600091829182916001600160a01b038616916119f191906138e0565b600060405180830381855afa9150503d8060008114611a2c576040519150601f19603f3d011682016040523d82523d6000602084013e611a31565b606091505b5091509150811580611a4257508051155b15611a51575060009392505050565b80806020019051810190611a65919061381b565b949350505050565b6000808060001985870985870292508281108382030391505080600003611aa757838281611a9d57611a9d61369d565b0492505050611b56565b808411611aee5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b6044820152606401610535565b600084868809851960019081018716968790049682860381900495909211909303600082900391909104909201919091029190911760038402600290811880860282030280860282030280860282030280860282030280860282030280860290910302029150505b9392505050565b60006001600160a01b0384163b15611c5857600080856001600160a01b0316631626ba7e60e01b8686604051602401611b979291906138fc565b60408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909416939093179092529051611bd591906138e0565b600060405180830381855afa9150503d8060008114611c10576040519150601f19603f3d011682016040523d82523d6000602084013e611c15565b606091505b5091509150818015611c28575080516020145b8015611c4f57508051630b135d3f60e11b90611c4d908301602090810190840161381b565b145b92505050611b56565b60008060008451604103611c805750505060208201516040830151606084015160001a611cd7565b8451604003611cb957602085015160408601519093506001600160ff1b0381169250611cb160ff82901c601b61389e565b915050611cd7565b845160405163058676ad60e31b815260040161053591815260200190565b611ce386828585611deb565b6001600160a01b0316876001600160a01b0316149350505050611b56565b600081815b84811015611d4457611d3082878784818110611d2457611d246138b1565b90506020020135611e13565b915080611d3c816138c7565b915050611d06565b50949350505050565b6000611d5883611e42565b8015611b565750611b568383611e75565b600080600080611d918a86611d7e5788611d80565b875b87611d8b5788611efe565b89611efe565b91509150611da1898984846120bf565b919a5090935091508415611dcb57611dc489611dbe85600a61368e565b84611a6d565b9350611dde565b611ddb8983610c5486600a61368e565b93505b5050965096945050505050565b6000806000611dfc8787878761212b565b91509150611e09816121ef565b5095945050505050565b6000818310611e2f576000828152602084905260409020611b56565b6000838152602083905260409020611b56565b6000611e55826301ffc9a760e01b611e75565b80156107bf5750611e6e826001600160e01b0319611e75565b1592915050565b604080516001600160e01b03198316602480830191909152825180830390910181526044909101909152602080820180516001600160e01b03166301ffc9a760e01b178152825160009392849283928392918391908a617530fa92503d91506000519050828015611ee7575060208210155b8015611ef35750600081115b979650505050505050565b60405163d2edb6dd60e01b81526001600160a01b0383811660048301528281166024830152600091829182919087169063d2edb6dd90604401602060405180830381865afa158015611f54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f7891906137fe565b9050600080826001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fdf919061384e565b50935050925050600082121561200e5782828260405163db2ca65160e01b81526004016105359392919061350f565b6201518061201c824261356c565b111561204d57604051637b5a7a1760e11b81526001600160a01b038416600482015260248101829052604401610535565b81836001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561208c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b09190613915565b94509450505050935093915050565b6000806000808460ff168760ff1611156120fb5750856120df8582613938565b6120ea90600a61368e565b6120f4908761366f565b955061211f565b50836121078782613938565b61211290600a61368e565b61211c908961366f565b97505b96979496955050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561216257506000905060036121e6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156121b6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166121df576000600192509250506121e6565b9150600090505b94509492505050565b600081600481111561220357612203612512565b0361220b5750565b600181600481111561221f5761221f612512565b0361226c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610535565b600281600481111561228057612280612512565b036122cd5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610535565b60038160048111156122e1576122e1612512565b036118c55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610535565b60408051610120810182526000808252602082018190529181019190915260608101612363612392565b8152602001612370612392565b8152600060208201819052604082018190526060820181905260809091015290565b6040805160808101909152806000815260200160006001600160a01b0316815260200160008152602001600081525090565b6001600160a01b03811681146118c557600080fd5b803561175d816123c4565b60008083601f8401126123f657600080fd5b5081356001600160401b0381111561240d57600080fd5b60208301915083602082850101111561242557600080fd5b9250929050565b60008060008060008060008060a0898b03121561244857600080fd5b8835612453816123c4565b97506020890135965060408901356001600160401b038082111561247657600080fd5b6124828c838d016123e4565b909850965060608b013591508082111561249b57600080fd5b818b0191508b601f8301126124af57600080fd5b8135818111156124be57600080fd5b8c60208260051b85010111156124d357600080fd5b6020830196508095505060808b01359150808211156124f157600080fd5b506124fe8b828c016123e4565b999c989b5096995094979396929594505050565b634e487b7160e01b600052602160045260246000fd5b6004811061254657634e487b7160e01b600052602160045260246000fd5b9052565b612555828251612528565b6020818101516001600160a01b03169083015260408082015190830152606090810151910152565b82815281516001600160a01b03166020820152610200810160208301516001600160a01b038116604084015250604083015163ffffffff811660608401525060608301516125ce608084018261254a565b5060808301516101006125e38185018361254a565b60a085015161018085015260c085015162ffffff166101a085015260e08501516101c0850152909301516101e09092019190915292915050565b60006020828403121561262f57600080fd5b81356001600160401b0381111561264557600080fd5b82016103008185031215611b5657600080fd5b60006020828403121561266a57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b60405161030081016001600160401b03811182821017156126aa576126aa612671565b60405290565b604051602081016001600160401b03811182821017156126aa576126aa612671565b604051601f8201601f191681016001600160401b03811182821017156126fa576126fa612671565b604052919050565b6000602080838503121561271557600080fd5b82356001600160401b038082111561272c57600080fd5b818501915085601f83011261274057600080fd5b81358181111561275257612752612671565b612764601f8201601f191685016126d2565b9150808252868482850101111561277a57600080fd5b8084840185840137600090820190930192909252509392505050565b600081518084526020808501945080840160005b838110156127cf5781516001600160a01b0316875295820195908201906001016127aa565b509495945050505050565b600081518084526020808501945080840160005b838110156127cf5781511515875295820195908201906001016127ee565b6040815261281e604082018451612528565b6000602084015161283a60608401826001600160a01b03169052565b5060408401516080830152606084015180151560a084015250608084015160c083015260a08401516001600160a01b03811660e08401525060c08401516103006101008181860152612890610340860184612796565b925060e0870151610120603f1987860301818801526128af85836127da565b928901516101408881019190915290890151610160808901919091529089015161018080890191909152908901516101a080890191909152908901516101c0808901919091529089015192945090506101e06129118188018462ffffff169052565b9088015191506102009061292c8783018463ffffffff169052565b88015191506102206129468782018464ffffffffff169052565b90880151915061024090612964878301846001600160a01b03169052565b8801519150610260612980878201846001600160a01b03169052565b90880151610280878101919091529088015191506102a06129a48188018415159052565b908801516102c087810191909152908801516102e0808801919091529088015192860192909252508501516001600160a01b0316610320840152835160208401529050611b56565b600481106118c557600080fd5b803561175d816129ec565b80151581146118c557600080fd5b803561175d81612a04565b60006001600160401b03821115612a3657612a36612671565b5060051b60200190565b600082601f830112612a5157600080fd5b81356020612a66612a6183612a1d565b6126d2565b82815260059290921b84018101918181019086841115612a8557600080fd5b8286015b84811015612aa9578035612a9c816123c4565b8352918301918301612a89565b509695505050505050565b600082601f830112612ac557600080fd5b81356020612ad5612a6183612a1d565b82815260059290921b84018101918181019086841115612af457600080fd5b8286015b84811015612aa9578035612b0b81612a04565b8352918301918301612af8565b62ffffff811681146118c557600080fd5b803561175d81612b18565b63ffffffff811681146118c557600080fd5b803561175d81612b34565b64ffffffffff811681146118c557600080fd5b803561175d81612b51565b60006103008284031215612b8257600080fd5b612b8a612687565b9050612b95826129f9565b8152612ba3602083016123d9565b602082015260408201356040820152612bbe60608301612a12565b606082015260808201356080820152612bd960a083016123d9565b60a082015260c08201356001600160401b0380821115612bf857600080fd5b612c0485838601612a40565b60c084015260e0840135915080821115612c1d57600080fd5b50612c2a84828501612ab4565b60e083015250610100828101359082015261012080830135908201526101408083013590820152610160808301359082015261018080830135908201526101a0612c75818401612b29565b908201526101c0612c87838201612b46565b908201526101e0612c99838201612b64565b90820152610200612cab8382016123d9565b90820152610220612cbd8382016123d9565b908201526102408281013590820152610260612cda818401612a12565b9082015261028082810135908201526102a080830135908201526102c080830135908201526102e0612d0d8184016123d9565b9082015292915050565b6000808284036040811215612d2b57600080fd5b83356001600160401b03811115612d4157600080fd5b612d4d86828701612b6f565b9350506020601f1982011215612d6257600080fd5b50612d6b6126b0565b6020939093013583525092909150565b60005b83811015612d96578181015183820152602001612d7e565b50506000910152565b60008151808452612db7816020860160208601612d7b565b601f01601f19169290920160200192915050565b602081526000611b566020830184612d9f565b60008060408385031215612df157600080fd5b50508035926020909101359150565b600060208284031215612e1257600080fd5b612e1a6126b0565b9135825250919050565b60008060008060008060c08789031215612e3d57600080fd5b8635612e48816123c4565b9550602087013594506040870135612e5f816123c4565b935060608701356001600160401b0380821115612e7b57600080fd5b612e878a838b01612a40565b94506080890135915080821115612e9d57600080fd5b50612eaa89828a01612ab4565b92505060a087013590509295509295509295565b60006107bf3683612b6f565b805161175d816129ec565b805161175d816123c4565b805161175d81612a04565b600082601f830112612efc57600080fd5b81516020612f0c612a6183612a1d565b82815260059290921b84018101918181019086841115612f2b57600080fd5b8286015b84811015612aa9578051612f42816123c4565b8352918301918301612f2f565b600082601f830112612f6057600080fd5b81516020612f70612a6183612a1d565b82815260059290921b84018101918181019086841115612f8f57600080fd5b8286015b84811015612aa9578051612fa681612a04565b8352918301918301612f93565b805161175d81612b18565b805161175d81612b34565b805161175d81612b51565b600060208284031215612fe657600080fd5b604051602081018181106001600160401b038211171561300857613008612671565b6040529151825250919050565b6000806040838503121561302857600080fd5b82516001600160401b038082111561303f57600080fd5b90840190610300828703121561305457600080fd5b61305c612687565b61306583612eca565b815261307360208401612ed5565b60208201526040830151604082015261308e60608401612ee0565b6060820152608083015160808201526130a960a08401612ed5565b60a082015260c0830151828111156130c057600080fd5b6130cc88828601612eeb565b60c08301525060e0830151828111156130e457600080fd5b6130f088828601612f4f565b60e083015250610100838101519082015261012080840151908201526101408084015190820152610160808401519082015261018080840151908201526101a0915061313d828401612fb3565b828201526101c09150613151828401612fbe565b828201526101e09150613165828401612fc9565b828201526102009150613179828401612ed5565b82820152610220915061318d828401612ed5565b828201526102409150818301518282015261026091506131ae828401612ee0565b9181019190915261028082810151908201526102a080830151908201526102c080830151908201526102e0906131e5828401612ed5565b828201528094505050506131fc8460208501612fd4565b90509250929050565b60006020828403121561321757600080fd5b8135611b56816123c4565b6000808335601e1984360301811261323957600080fd5b83016020810192503590506001600160401b0381111561325857600080fd5b8060051b360382131561242557600080fd5b8183526000602080850194508260005b858110156127cf57813561328d816123c4565b6001600160a01b03168752958201959082019060010161327a565b8183526000602080850194508260005b858110156127cf5781356132cb81612a04565b1515875295820195908201906001016132b8565b602081526132f8602082016132f3846129f9565b612528565b6000613306602084016123d9565b6001600160a01b0381166040840152506040830135606083015261332c60608401612a12565b801515608084015250608083013560a083015261334b60a084016123d9565b6001600160a01b03811660c08401525061336860c0840184613222565b6103008060e08601526133806103208601838561326a565b925061338f60e0870187613222565b9250610100601f1987860301818801526133aa8585846132a8565b94506101209350808801358488015250506101408287013581870152610160925080870135838701525061018082870135818701526101a092508087013583870152506133f8828701612b29565b91506101c061340d8187018462ffffff169052565b613418818801612b46565b9250506101e061342f8187018463ffffffff169052565b61343a818801612b64565b9250506102006134528187018464ffffffffff169052565b61345d8188016123d9565b925050610220613477818701846001600160a01b03169052565b6134828188016123d9565b92505061024061349c818701846001600160a01b03169052565b61026092508087013583870152506134b5828701612a12565b91506102806134c78187018415159052565b6102a092508087013583870152506102c082870135818701526102e092508087013583870152506134f98287016123d9565b6001600160a01b03169401939093529392505050565b6001600160a01b039390931683526020830191909152604082015260600190565b82815260008251613548816020850160208701612d7b565b919091016020019392505050565b634e487b7160e01b600052601160045260246000fd5b818103818111156107bf576107bf613556565b600181815b808511156135ba5781600019048211156135a0576135a0613556565b808516156135ad57918102915b93841c9390800290613584565b509250929050565b6000826135d1575060016107bf565b816135de575060006107bf565b81600181146135f457600281146135fe5761361a565b60019150506107bf565b60ff84111561360f5761360f613556565b50506001821b6107bf565b5060208310610133831016604e8410600b841016171561363d575081810a6107bf565b613647838361357f565b806000190482111561365b5761365b613556565b029392505050565b6000611b5683836135c2565b600081600019048311821515161561368957613689613556565b500290565b6000611b5660ff8416836135c2565b634e487b7160e01b600052601260045260246000fd5b6000826136d057634e487b7160e01b600052601260045260246000fd5b500490565b815160009082906020808601845b838110156137085781516001600160a01b0316855293820193908201906001016136e3565b50929695505050505050565b815160009082906020808601845b83811015613708578151151585529382019390820190600101613722565b610180810161374f828f612528565b6001600160a01b039c8d166020830152604082019b909b5298151560608a015260808901979097529490981660a087015260c086019290925260e08501526101008401526101208301949094526101408201939093526101600191909152919050565b600083516137c4818460208801612d7b565b8351908301906137d8818360208801612d7b565b01949350505050565b6000602082840312156137f357600080fd5b8151611b5681612a04565b60006020828403121561381057600080fd5b8151611b56816123c4565b60006020828403121561382d57600080fd5b5051919050565b805169ffffffffffffffffffff8116811461175d57600080fd5b600080600080600060a0868803121561386657600080fd5b61386f86613834565b945060208601519350604086015192506060860151915061389260808701613834565b90509295509295909350565b808201808211156107bf576107bf613556565b634e487b7160e01b600052603260045260246000fd5b6000600182016138d9576138d9613556565b5060010190565b600082516138f2818460208701612d7b565b9190910192915050565b828152604060208201526000611a656040830184612d9f565b60006020828403121561392757600080fd5b815160ff81168114611b5657600080fd5b60ff82811682821603908111156107bf576107bf61355656fea2646970667358221220a16ed5c0701dad490402ba6ee4f3e8cff37886ed2d055b273a684365aca7714864736f6c6343000810003350574e53696d706c654c6f616e456c6173746963436861696e6c696e6b50726f706f73616c00000000000000000000000037807a2f031b3b44081f4b21500e5d70ebadadd5000000000000000000000000972204ff33348ee6889b2d0a3967db67d7b08e4c000000000000000000000000d52a2898d61636bb3eef0d145f05352ff543bdcc0000000000000000000000008e6f44dea3c11d69c63655bdecba25fa986bce9d0000000000000000000000008d5e90706e52a52853da9a14fa1c63889a4128510000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806379502c55116100c3578063ba76a6801161007c578063ba76a680146103a5578063d06a0d82146103cc578063e2394b08146103f3578063e81dba841461041a578063eff6ee4d1461042d578063ffa1ad741461043557600080fd5b806379502c55146102cf578063829d3770146102f6578063853b94a0146103095780639788ad5514610330578063abe9387814610357578063ad5c46481461037e57600080fd5b80633644e515116101155780633644e515146101fa578063365a86fc146102215780633db67fab146102605780634379dbad1461027357806351d5259c1461029a578063579bfc30146102ba57600080fd5b806301e83272146101525780631a2e4f831461017c5780631a3a4e51146101935780631da4c275146101a65780632d5d17fc146101d9575b600080fd5b61016561016036600461242c565b610457565b60405161017392919061257d565b60405180910390f35b61018561271081565b604051908152602001610173565b6101856101a136600461261d565b610788565b6101c96101b4366004612658565b60006020819052908152604090205460ff1681565b6040519015158152602001610173565b6101ec6101e7366004612702565b6107c5565b60405161017392919061280c565b6101857f544aa3c174f9ecffbec18ba512c499e0bd0d415375fa8427f1f88c76d69c03a881565b6102487f00000000000000000000000037807a2f031b3b44081f4b21500e5d70ebadadd581565b6040516001600160a01b039091168152602001610173565b61018561026e36600461261d565b6108b1565b6102487f0000000000000000000000008e6f44dea3c11d69c63655bdecba25fa986bce9d81565b6102ad6102a8366004612d17565b610931565b6040516101739190612dcb565b6102cd6102c8366004612dde565b61095d565b005b6102487f000000000000000000000000d52a2898d61636bb3eef0d145f05352ff543bdcc81565b610185610304366004612e00565b6109e3565b6101857fb11b3df6183cd24971e5da7838f641e16d335bf25f21303fc9be537fd3fd831981565b6102487f000000000000000000000000972204ff33348ee6889b2d0a3967db67d7b08e4c81565b6101857fcee126dd8ffd3034106fce2e54d8fb6605425b98b5b72e0027be628d8943944d81565b6102487f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6102487f000000000000000000000000000000000000000000000000000000000000000081565b6101857f73af92d8ed4d3261ba61cd686d2f8a9cceb2563cc7c4c5355eb121316fc5358d81565b6102487f0000000000000000000000008d5e90706e52a52853da9a14fa1c63889a41285181565b610185610428366004612e24565b610ab3565b610185600281565b6102ad604051806040016040528060038152602001620312e360ec1b81525081565b6000610461612339565b6000806104a38a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506107c592505050565b915091506104d97fb11b3df6183cd24971e5da7838f641e16d335bf25f21303fc9be537fd3fd83196104d484610ca3565b610e60565b935081610120015160000361050157604051636f0c8e4160e11b815260040160405180910390fd5b6101208201518151101561053e57805161012083015160405163d0b7539760e01b8152600481019290925260248201526044015b60405180910390fd5b60006105678360a00151836000015185602001518660c001518760e00151886101000151610ab3565b90506106518d8d878c8c8c8c604051806101e001604052808c602001516001600160a01b031681526020018c6040015181526020018c60600151151581526020018c6080015181526020018b6000015181526020018c610140015181526020018c610160015181526020018c6101e0015164ffffffffff1681526020018c61020001516001600160a01b031681526020018c61022001516001600160a01b031681526020018c6102600151151581526020018c610280015181526020018c6102a0015181526020018c6102c0015181526020018c6102e001516001600160a01b0316815250610ef1565b60405180610120016040528084610260015161066d578e610674565b8461022001515b6001600160a01b0316815260200184610260015161069757846102200151610699565b8e5b6001600160a01b031681526020016106b5856101c001516116ff565b63ffffffff1681526020016040518060800160405280866000015160038111156106e1576106e1612512565b815260200186602001516001600160a01b031681526020018660400151815260200184815250815260200161071e8560a001518560000151611762565b81526020018461018001518152602001846101a0015162ffffff16815260200184610260015161074f576000610756565b8461024001515b815260200184610260015161077057846102400151610773565b60005b81525093505050509850989650505050505050565b60006107bf7fb11b3df6183cd24971e5da7838f641e16d335bf25f21303fc9be537fd3fd83196104d46107ba85612ebe565b610ca3565b92915050565b604080516103008101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905260e0820152610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e08101829052610200810182905261022081018290526102408101829052610260810182905261028081018290526102a081018290526102c081018290526102e0810191909152604080516020810190915260008152828060200190518101906108a89190613015565b91509150915091565b60006108bc82610788565b90506108d9816108d461024085016102208601613205565b61179a565b6108eb61024083016102208401613205565b6001600160a01b0316817fa62ac4526c57de012f83edf020085de2c4e73bc9f96aebd6bfe11e0580b07f388460405161092491906132df565b60405180910390a3919050565b6060828260405160200161094692919061280c565b604051602081830303815290604052905092915050565b60405163f79924a960e01b81526001600160a01b037f000000000000000000000000972204ff33348ee6889b2d0a3967db67d7b08e4c169063f79924a9906109ad9033908690869060040161350f565b600060405180830381600087803b1580156109c757600080fd5b505af11580156109db573d6000803e3d6000fd5b505050505050565b60007fcee126dd8ffd3034106fce2e54d8fb6605425b98b5b72e0027be628d8943944d7f73af92d8ed4d3261ba61cd686d2f8a9cceb2563cc7c4c5355eb121316fc5358d83604051602001610a3b9151815260200190565b60408051601f1981840301815290829052610a599291602001613530565b60405160208183030381529060405280519060200120604051602001610a9692919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050919050565b6000610ae77f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166117ea565b600284511115610b17578351604051632553480760e11b8152600481019190915260026024820152604401610535565b600080610bfa7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03168a6001600160a01b031614610b5c5789610b72565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316896001600160a01b031614610bb15788610bc7565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee5b6001600160a01b037f0000000000000000000000008d5e90706e52a52853da9a14fa1c63889a41285116919089896118c8565b915091506000610c098a6119ab565b90506000610c16896119ab565b905081811115610c4257610c2a828261356c565b610c3590600a613663565b610c3f908b61366f565b99505b6000610c598b86610c5487600a61368e565b611a6d565b9050610c688161271089611a6d565b905082821015610c9457610c7c828461356c565b610c8790600a613663565b610c9190826136b3565b90505b9b9a5050505050505050505050565b6060816000015182602001518360400151846060015185608001518660a001518760c00151604051602001610cd891906136d5565b604051602081830303815290604052805190602001208860e00151604051602001610d039190613714565b604051602081830303815290604052805190602001208961010001518a61012001518b61014001518c6101600151604051602001610d4c9c9b9a99989796959493929190613740565b60408051601f19818403018152908290526101808401516101a08501516101c08601516101e08701516102008801516102208901516102408a01516102608b01516102808c01516102a08d01516102c08e01516102e08f01519b9d508d9c610e2c9c906020019b8c5262ffffff9a909a1660208c015263ffffffff9890981660408b015264ffffffffff9690961660608a01526001600160a01b0394851660808a015292841660a089015260c0880191909152151560e0870152610100860152610120850191909152610140840191909152166101608201526101800190565b60408051601f1981840301815290829052610e4a92916020016137b2565b6040516020818303038152906040529050919050565b60007f544aa3c174f9ecffbec18ba512c499e0bd0d415375fa8427f1f88c76d69c03a88383604051602001610e96929190613530565b60405160208183030381529060405280519060200120604051602001610ed392919061190160f01b81526002810192909252602282015260420190565b60405160208183030381529060405280519060200120905092915050565b806101c001516001600160a01b0316336001600160a01b031614610f40576101c081015160405163a4ce7f2960e01b81523360048201526001600160a01b039091166024820152604401610535565b6101c081015160405163680cabbd60e11b81526001600160a01b0391821660048201527f9e56ea094d7a53440eef11fa42b63159fbf703b4ee579494a6ae85afc560359460248201527f00000000000000000000000037807a2f031b3b44081f4b21500e5d70ebadadd59091169063d019577a90604401602060405180830381865afa158015610fd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff891906137e1565b61104d576101c0810151604051630b92eb2560e11b81526001600160a01b0390911660048201527f9e56ea094d7a53440eef11fa42b63159fbf703b4ee579494a6ae85afc56035946024820152604401610535565b60008490036110ed5760008681526020819052604090205460ff166110e8576110b28161012001518785858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611b5d92505050565b6110e8576101208101516040516301d2d55760e31b81526001600160a01b03909116600482015260248101879052604401610535565b61118f565b600061110f604051806020016040528061110889898c611d01565b90526109e3565b90506111578261012001518286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611b5d92505050565b61118d576101208201516040516301d2d55760e31b81526001600160a01b03909116600482015260248101829052604401610535565b505b876001600160a01b03168161012001516001600160a01b0316036111d1576040516326ab1a1d60e11b81526001600160a01b0389166004820152602401610535565b8660000361120b576101608101511561120657806101600151604051637a4b6f9760e11b815260040161053591815260200190565b611254565b80610160015187146112545761016081015115158061122d5750806101400151155b1561125457806101600151604051637a4b6f9760e11b815260040161053591815260200190565b8060e0015164ffffffffff1642106112945760e081015160405163aa2fd92560e01b815242600482015264ffffffffff9091166024820152604401610535565b7f000000000000000000000000972204ff33348ee6889b2d0a3967db67d7b08e4c6001600160a01b031663f291a62c826101200151836101800151846101a001516040518463ffffffff1660e01b81526004016112f39392919061350f565b602060405180830381865afa158015611310573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133491906137e1565b61136657806101200151816101800151826101a00151604051632108c30560e11b81526004016105359392919061350f565b6101008101516001600160a01b03161580159061139a57508061010001516001600160a01b0316886001600160a01b031614155b156113d257610100810151604051636075c95560e11b81526001600160a01b03808b1660048301529091166024820152604401610535565b8060a00151600003611474577f000000000000000000000000972204ff33348ee6889b2d0a3967db67d7b08e4c6001600160a01b031663f79924a9826101200151836101800151846101a001516040518463ffffffff1660e01b815260040161143d9392919061350f565b600060405180830381600087803b15801561145757600080fd5b505af115801561146b573d6000803e3d6000fd5b5050505061151c565b61012081015160c0820151608083015160a0840151604051638f8ea94960e01b81526001600160a01b0394851660048201526024810193909352604483019190915260648201527f0000000000000000000000008e6f44dea3c11d69c63655bdecba25fa986bce9d90911690638f8ea94990608401600060405180830381600087803b15801561150357600080fd5b505af1158015611517573d6000803e3d6000fd5b505050505b8060400151156116f5578051604051630b7e49eb60e21b81526001600160a01b03918216600482015260009182917f000000000000000000000000d52a2898d61636bb3eef0d145f05352ff543bdcc90911690632df927ac90602401602060405180830381865afa158015611595573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b991906137fe565b90506001600160a01b03811615611657578251602084015160405163ec2ce34560e01b81526001600160a01b0384169263ec2ce3459261160f926004016001600160a01b03929092168252602082015260400190565b602060405180830381865afa15801561162c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611650919061381b565b91506116be565b825161166a9063f511231560e01b611d4d565b156116a5578251602084015160405163f511231560e01b81526001600160a01b039092169163f51123159161160f9160040190815260200190565b60405163f3c0936360e01b815260040160405180910390fd5b818360600151146116f2576060830151604051633840fc0160e01b8152610535918491600401918252602082015260400190565b50505b5050505050505050565b6000633b9aca008263ffffffff1611611716575090565b428263ffffffff161115611734576107bf4263ffffffff841661356c565b60405163e5084aed60e01b815263ffffffff808416600483015242166024820152604401610535565b919050565b61176a612392565b506040805160808101825260008082526001600160a01b0394909416602082015290810192909252606082015290565b336001600160a01b038216146117ce57604051631144200360e31b81526001600160a01b0382166004820152602401610535565b506000908152602081905260409020805460ff19166001179055565b6001600160a01b038116156118c557600080826001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa15801561183a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185e919061384e565b505092509250508160010361188657604051631fcc003d60e31b815260040160405180910390fd5b6000611892824261356c565b905061025881116118c157604051631ea52c1d60e31b8152600481018290526102586024820152604401610535565b5050505b50565b600080835160016118d9919061389e565b8351146118f9576040516336cb02c760e01b815260040160405180910390fd5b60016000805b855181101561199c576119878a8484841561193d578a61192060018761356c565b81518110611930576119306138b1565b602002602001015161193f565b8c5b8b518614611966578b8681518110611959576119596138b1565b6020026020010151611968565b8c5b8b878151811061197a5761197a6138b1565b6020026020010151611d69565b9093509150611995816138c7565b90506118ff565b50909890975095505050505050565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b1790529051600091829182916001600160a01b038616916119f191906138e0565b600060405180830381855afa9150503d8060008114611a2c576040519150601f19603f3d011682016040523d82523d6000602084013e611a31565b606091505b5091509150811580611a4257508051155b15611a51575060009392505050565b80806020019051810190611a65919061381b565b949350505050565b6000808060001985870985870292508281108382030391505080600003611aa757838281611a9d57611a9d61369d565b0492505050611b56565b808411611aee5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b6044820152606401610535565b600084868809851960019081018716968790049682860381900495909211909303600082900391909104909201919091029190911760038402600290811880860282030280860282030280860282030280860282030280860282030280860290910302029150505b9392505050565b60006001600160a01b0384163b15611c5857600080856001600160a01b0316631626ba7e60e01b8686604051602401611b979291906138fc565b60408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909416939093179092529051611bd591906138e0565b600060405180830381855afa9150503d8060008114611c10576040519150601f19603f3d011682016040523d82523d6000602084013e611c15565b606091505b5091509150818015611c28575080516020145b8015611c4f57508051630b135d3f60e11b90611c4d908301602090810190840161381b565b145b92505050611b56565b60008060008451604103611c805750505060208201516040830151606084015160001a611cd7565b8451604003611cb957602085015160408601519093506001600160ff1b0381169250611cb160ff82901c601b61389e565b915050611cd7565b845160405163058676ad60e31b815260040161053591815260200190565b611ce386828585611deb565b6001600160a01b0316876001600160a01b0316149350505050611b56565b600081815b84811015611d4457611d3082878784818110611d2457611d246138b1565b90506020020135611e13565b915080611d3c816138c7565b915050611d06565b50949350505050565b6000611d5883611e42565b8015611b565750611b568383611e75565b600080600080611d918a86611d7e5788611d80565b875b87611d8b5788611efe565b89611efe565b91509150611da1898984846120bf565b919a5090935091508415611dcb57611dc489611dbe85600a61368e565b84611a6d565b9350611dde565b611ddb8983610c5486600a61368e565b93505b5050965096945050505050565b6000806000611dfc8787878761212b565b91509150611e09816121ef565b5095945050505050565b6000818310611e2f576000828152602084905260409020611b56565b6000838152602083905260409020611b56565b6000611e55826301ffc9a760e01b611e75565b80156107bf5750611e6e826001600160e01b0319611e75565b1592915050565b604080516001600160e01b03198316602480830191909152825180830390910181526044909101909152602080820180516001600160e01b03166301ffc9a760e01b178152825160009392849283928392918391908a617530fa92503d91506000519050828015611ee7575060208210155b8015611ef35750600081115b979650505050505050565b60405163d2edb6dd60e01b81526001600160a01b0383811660048301528281166024830152600091829182919087169063d2edb6dd90604401602060405180830381865afa158015611f54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f7891906137fe565b9050600080826001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fdf919061384e565b50935050925050600082121561200e5782828260405163db2ca65160e01b81526004016105359392919061350f565b6201518061201c824261356c565b111561204d57604051637b5a7a1760e11b81526001600160a01b038416600482015260248101829052604401610535565b81836001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561208c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b09190613915565b94509450505050935093915050565b6000806000808460ff168760ff1611156120fb5750856120df8582613938565b6120ea90600a61368e565b6120f4908761366f565b955061211f565b50836121078782613938565b61211290600a61368e565b61211c908961366f565b97505b96979496955050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561216257506000905060036121e6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156121b6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166121df576000600192509250506121e6565b9150600090505b94509492505050565b600081600481111561220357612203612512565b0361220b5750565b600181600481111561221f5761221f612512565b0361226c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610535565b600281600481111561228057612280612512565b036122cd5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610535565b60038160048111156122e1576122e1612512565b036118c55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610535565b60408051610120810182526000808252602082018190529181019190915260608101612363612392565b8152602001612370612392565b8152600060208201819052604082018190526060820181905260809091015290565b6040805160808101909152806000815260200160006001600160a01b0316815260200160008152602001600081525090565b6001600160a01b03811681146118c557600080fd5b803561175d816123c4565b60008083601f8401126123f657600080fd5b5081356001600160401b0381111561240d57600080fd5b60208301915083602082850101111561242557600080fd5b9250929050565b60008060008060008060008060a0898b03121561244857600080fd5b8835612453816123c4565b97506020890135965060408901356001600160401b038082111561247657600080fd5b6124828c838d016123e4565b909850965060608b013591508082111561249b57600080fd5b818b0191508b601f8301126124af57600080fd5b8135818111156124be57600080fd5b8c60208260051b85010111156124d357600080fd5b6020830196508095505060808b01359150808211156124f157600080fd5b506124fe8b828c016123e4565b999c989b5096995094979396929594505050565b634e487b7160e01b600052602160045260246000fd5b6004811061254657634e487b7160e01b600052602160045260246000fd5b9052565b612555828251612528565b6020818101516001600160a01b03169083015260408082015190830152606090810151910152565b82815281516001600160a01b03166020820152610200810160208301516001600160a01b038116604084015250604083015163ffffffff811660608401525060608301516125ce608084018261254a565b5060808301516101006125e38185018361254a565b60a085015161018085015260c085015162ffffff166101a085015260e08501516101c0850152909301516101e09092019190915292915050565b60006020828403121561262f57600080fd5b81356001600160401b0381111561264557600080fd5b82016103008185031215611b5657600080fd5b60006020828403121561266a57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b60405161030081016001600160401b03811182821017156126aa576126aa612671565b60405290565b604051602081016001600160401b03811182821017156126aa576126aa612671565b604051601f8201601f191681016001600160401b03811182821017156126fa576126fa612671565b604052919050565b6000602080838503121561271557600080fd5b82356001600160401b038082111561272c57600080fd5b818501915085601f83011261274057600080fd5b81358181111561275257612752612671565b612764601f8201601f191685016126d2565b9150808252868482850101111561277a57600080fd5b8084840185840137600090820190930192909252509392505050565b600081518084526020808501945080840160005b838110156127cf5781516001600160a01b0316875295820195908201906001016127aa565b509495945050505050565b600081518084526020808501945080840160005b838110156127cf5781511515875295820195908201906001016127ee565b6040815261281e604082018451612528565b6000602084015161283a60608401826001600160a01b03169052565b5060408401516080830152606084015180151560a084015250608084015160c083015260a08401516001600160a01b03811660e08401525060c08401516103006101008181860152612890610340860184612796565b925060e0870151610120603f1987860301818801526128af85836127da565b928901516101408881019190915290890151610160808901919091529089015161018080890191909152908901516101a080890191909152908901516101c0808901919091529089015192945090506101e06129118188018462ffffff169052565b9088015191506102009061292c8783018463ffffffff169052565b88015191506102206129468782018464ffffffffff169052565b90880151915061024090612964878301846001600160a01b03169052565b8801519150610260612980878201846001600160a01b03169052565b90880151610280878101919091529088015191506102a06129a48188018415159052565b908801516102c087810191909152908801516102e0808801919091529088015192860192909252508501516001600160a01b0316610320840152835160208401529050611b56565b600481106118c557600080fd5b803561175d816129ec565b80151581146118c557600080fd5b803561175d81612a04565b60006001600160401b03821115612a3657612a36612671565b5060051b60200190565b600082601f830112612a5157600080fd5b81356020612a66612a6183612a1d565b6126d2565b82815260059290921b84018101918181019086841115612a8557600080fd5b8286015b84811015612aa9578035612a9c816123c4565b8352918301918301612a89565b509695505050505050565b600082601f830112612ac557600080fd5b81356020612ad5612a6183612a1d565b82815260059290921b84018101918181019086841115612af457600080fd5b8286015b84811015612aa9578035612b0b81612a04565b8352918301918301612af8565b62ffffff811681146118c557600080fd5b803561175d81612b18565b63ffffffff811681146118c557600080fd5b803561175d81612b34565b64ffffffffff811681146118c557600080fd5b803561175d81612b51565b60006103008284031215612b8257600080fd5b612b8a612687565b9050612b95826129f9565b8152612ba3602083016123d9565b602082015260408201356040820152612bbe60608301612a12565b606082015260808201356080820152612bd960a083016123d9565b60a082015260c08201356001600160401b0380821115612bf857600080fd5b612c0485838601612a40565b60c084015260e0840135915080821115612c1d57600080fd5b50612c2a84828501612ab4565b60e083015250610100828101359082015261012080830135908201526101408083013590820152610160808301359082015261018080830135908201526101a0612c75818401612b29565b908201526101c0612c87838201612b46565b908201526101e0612c99838201612b64565b90820152610200612cab8382016123d9565b90820152610220612cbd8382016123d9565b908201526102408281013590820152610260612cda818401612a12565b9082015261028082810135908201526102a080830135908201526102c080830135908201526102e0612d0d8184016123d9565b9082015292915050565b6000808284036040811215612d2b57600080fd5b83356001600160401b03811115612d4157600080fd5b612d4d86828701612b6f565b9350506020601f1982011215612d6257600080fd5b50612d6b6126b0565b6020939093013583525092909150565b60005b83811015612d96578181015183820152602001612d7e565b50506000910152565b60008151808452612db7816020860160208601612d7b565b601f01601f19169290920160200192915050565b602081526000611b566020830184612d9f565b60008060408385031215612df157600080fd5b50508035926020909101359150565b600060208284031215612e1257600080fd5b612e1a6126b0565b9135825250919050565b60008060008060008060c08789031215612e3d57600080fd5b8635612e48816123c4565b9550602087013594506040870135612e5f816123c4565b935060608701356001600160401b0380821115612e7b57600080fd5b612e878a838b01612a40565b94506080890135915080821115612e9d57600080fd5b50612eaa89828a01612ab4565b92505060a087013590509295509295509295565b60006107bf3683612b6f565b805161175d816129ec565b805161175d816123c4565b805161175d81612a04565b600082601f830112612efc57600080fd5b81516020612f0c612a6183612a1d565b82815260059290921b84018101918181019086841115612f2b57600080fd5b8286015b84811015612aa9578051612f42816123c4565b8352918301918301612f2f565b600082601f830112612f6057600080fd5b81516020612f70612a6183612a1d565b82815260059290921b84018101918181019086841115612f8f57600080fd5b8286015b84811015612aa9578051612fa681612a04565b8352918301918301612f93565b805161175d81612b18565b805161175d81612b34565b805161175d81612b51565b600060208284031215612fe657600080fd5b604051602081018181106001600160401b038211171561300857613008612671565b6040529151825250919050565b6000806040838503121561302857600080fd5b82516001600160401b038082111561303f57600080fd5b90840190610300828703121561305457600080fd5b61305c612687565b61306583612eca565b815261307360208401612ed5565b60208201526040830151604082015261308e60608401612ee0565b6060820152608083015160808201526130a960a08401612ed5565b60a082015260c0830151828111156130c057600080fd5b6130cc88828601612eeb565b60c08301525060e0830151828111156130e457600080fd5b6130f088828601612f4f565b60e083015250610100838101519082015261012080840151908201526101408084015190820152610160808401519082015261018080840151908201526101a0915061313d828401612fb3565b828201526101c09150613151828401612fbe565b828201526101e09150613165828401612fc9565b828201526102009150613179828401612ed5565b82820152610220915061318d828401612ed5565b828201526102409150818301518282015261026091506131ae828401612ee0565b9181019190915261028082810151908201526102a080830151908201526102c080830151908201526102e0906131e5828401612ed5565b828201528094505050506131fc8460208501612fd4565b90509250929050565b60006020828403121561321757600080fd5b8135611b56816123c4565b6000808335601e1984360301811261323957600080fd5b83016020810192503590506001600160401b0381111561325857600080fd5b8060051b360382131561242557600080fd5b8183526000602080850194508260005b858110156127cf57813561328d816123c4565b6001600160a01b03168752958201959082019060010161327a565b8183526000602080850194508260005b858110156127cf5781356132cb81612a04565b1515875295820195908201906001016132b8565b602081526132f8602082016132f3846129f9565b612528565b6000613306602084016123d9565b6001600160a01b0381166040840152506040830135606083015261332c60608401612a12565b801515608084015250608083013560a083015261334b60a084016123d9565b6001600160a01b03811660c08401525061336860c0840184613222565b6103008060e08601526133806103208601838561326a565b925061338f60e0870187613222565b9250610100601f1987860301818801526133aa8585846132a8565b94506101209350808801358488015250506101408287013581870152610160925080870135838701525061018082870135818701526101a092508087013583870152506133f8828701612b29565b91506101c061340d8187018462ffffff169052565b613418818801612b46565b9250506101e061342f8187018463ffffffff169052565b61343a818801612b64565b9250506102006134528187018464ffffffffff169052565b61345d8188016123d9565b925050610220613477818701846001600160a01b03169052565b6134828188016123d9565b92505061024061349c818701846001600160a01b03169052565b61026092508087013583870152506134b5828701612a12565b91506102806134c78187018415159052565b6102a092508087013583870152506102c082870135818701526102e092508087013583870152506134f98287016123d9565b6001600160a01b03169401939093529392505050565b6001600160a01b039390931683526020830191909152604082015260600190565b82815260008251613548816020850160208701612d7b565b919091016020019392505050565b634e487b7160e01b600052601160045260246000fd5b818103818111156107bf576107bf613556565b600181815b808511156135ba5781600019048211156135a0576135a0613556565b808516156135ad57918102915b93841c9390800290613584565b509250929050565b6000826135d1575060016107bf565b816135de575060006107bf565b81600181146135f457600281146135fe5761361a565b60019150506107bf565b60ff84111561360f5761360f613556565b50506001821b6107bf565b5060208310610133831016604e8410600b841016171561363d575081810a6107bf565b613647838361357f565b806000190482111561365b5761365b613556565b029392505050565b6000611b5683836135c2565b600081600019048311821515161561368957613689613556565b500290565b6000611b5660ff8416836135c2565b634e487b7160e01b600052601260045260246000fd5b6000826136d057634e487b7160e01b600052601260045260246000fd5b500490565b815160009082906020808601845b838110156137085781516001600160a01b0316855293820193908201906001016136e3565b50929695505050505050565b815160009082906020808601845b83811015613708578151151585529382019390820190600101613722565b610180810161374f828f612528565b6001600160a01b039c8d166020830152604082019b909b5298151560608a015260808901979097529490981660a087015260c086019290925260e08501526101008401526101208301949094526101408201939093526101600191909152919050565b600083516137c4818460208801612d7b565b8351908301906137d8818360208801612d7b565b01949350505050565b6000602082840312156137f357600080fd5b8151611b5681612a04565b60006020828403121561381057600080fd5b8151611b56816123c4565b60006020828403121561382d57600080fd5b5051919050565b805169ffffffffffffffffffff8116811461175d57600080fd5b600080600080600060a0868803121561386657600080fd5b61386f86613834565b945060208601519350604086015192506060860151915061389260808701613834565b90509295509295909350565b808201808211156107bf576107bf613556565b634e487b7160e01b600052603260045260246000fd5b6000600182016138d9576138d9613556565b5060010190565b600082516138f2818460208701612d7b565b9190910192915050565b828152604060208201526000611a656040830184612d9f565b60006020828403121561392757600080fd5b815160ff81168114611b5657600080fd5b60ff82811682821603908111156107bf576107bf61355656fea2646970667358221220a16ed5c0701dad490402ba6ee4f3e8cff37886ed2d055b273a684365aca7714864736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000037807a2f031b3b44081f4b21500e5d70ebadadd5000000000000000000000000972204ff33348ee6889b2d0a3967db67d7b08e4c000000000000000000000000d52a2898d61636bb3eef0d145f05352ff543bdcc0000000000000000000000008e6f44dea3c11d69c63655bdecba25fa986bce9d0000000000000000000000008d5e90706e52a52853da9a14fa1c63889a4128510000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _hub (address): 0x37807A2F031b3B44081F4b21500E5D70EbaDAdd5
Arg [1] : _revokedNonce (address): 0x972204fF33348ee6889B2d0A3967dB67d7b08e4c
Arg [2] : _config (address): 0xd52a2898d61636bB3eEF0d145f05352FF543bdCC
Arg [3] : _utilizedCredit (address): 0x8E6F44DEa3c11d69C63655BDEcbA25Fa986BCE9D
Arg [4] : _chainlinkFeedRegistry (address): 0x8D5e90706E52a52853dA9A14fA1c63889a412851
Arg [5] : _l2SequencerUptimeFeed (address): 0x0000000000000000000000000000000000000000
Arg [6] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000037807a2f031b3b44081f4b21500e5d70ebadadd5
Arg [1] : 000000000000000000000000972204ff33348ee6889b2d0a3967db67d7b08e4c
Arg [2] : 000000000000000000000000d52a2898d61636bb3eef0d145f05352ff543bdcc
Arg [3] : 0000000000000000000000008e6f44dea3c11d69c63655bdecba25fa986bce9d
Arg [4] : 0000000000000000000000008d5e90706e52a52853da9a14fa1c63889a412851
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 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.