PinLink is the first RWA-Tokenized DePIN platform, empowering users with fractionalized ownership of DePIN assets. This contest focuses on the PinlinkShop, a marketplace for buying/selling fractions of mining DePIN assets, to give everyone access to yield from crypto mining assets
Scope
On what chains are the smart contracts going to be deployed?
Ethereum mainnet only.
If you are integrating tokens, are you allowing only whitelisted tokens to work with the codebase or any complying with the standard? Are they assumed to have certain properties, e.g. be non-reentrant? Are there any types of weird tokens you want to integrate?
The PinlinkShop contract is expected to work with:
No other token is expected to interact with the system.
Are there any limitations on values set by admins (or other roles) in the codebase, including restrictions on array lengths?
feeReceiver
is a trusted address, and is a parameter that can be modified by DEFAULT_ADMIN_ROLE.purchaseFeePerc
is the fee taken on every purchase in PIN tokens. This value can be updated by DEFAULT_ADMIN_ROLE, but cannot exceed 10%.owner
of the CentralizedOracle
is trusted. That's the one allowed to update the price of the token PIN that will be used in the PinlinkShop to covert between PIN and USD pricing. To begin with, the CentralizedOracle
is centralized and operated by Pinlink. With time, this will be replaced with a TWAP oracle or even a Chainlink Price feed if possible.Are there any limitations on values set by admins (or other roles) in protocols you integrate with, including restrictions on array lengths?
No.
Is the codebase expected to comply with any specific EIPs?
The FractionalAsset
is expected to comply with ERC1155, of fixed (immutable) totalSupply for each of the tokenIds. Once minted, the number of fractions is immutable.
Are there any off-chain mechanisms involved in the protocol (e.g., keeper bots, arbitrage bots, etc.)? We assume these mechanisms will not misbehave, delay, or go offline unless otherwise specified.
The price given by the CentralizedOracle
will be set by a bot which checks the price from different sources (coingecko, Uniswap pool moving average, etc) and after some sanity checks it calls updateTokenPrice()
.
What properties/invariants do you want to hold even if breaking them has a low/unknown impact?
Rewards solvency:
getPendingRewards()
from all accounts and assets should be less or equal to the contract balance of USDC. Asset balances: for a given user and an asset, stakedBalance == listedBalance + unlistedBalance
Each fraction of an asset is always entitled to the same share of rewards, proportional to his stakedBalance in the PinlinkShop contract vs the totalSupply of that asset. This should still hold even when some users withdraw their assets outside PinlinkShop. In this case, rewards are not redistributed between the remaining stakers, but allocated to the PROXY_REWARDS_ACCOUNT, to be later claimed by an admin.
listed assets continue generating rewards for the seller until sold.
The total stakedBalance of an asset should not change once it is enabled, and should match the assetSupply.
Please discuss any design choices you made.
The PinlinkShop could have been split into multiple contracts (marketplace, staking, a manager…) but we decided to go for a simple architecture consists of a single contract in charge of the two functionalities:
This allowed an easy way of keep streaming rewards for holders of fractional assets while they are being listed for sale. Discontinuing rewards for sellers while being listed was not desired.
Users are allowed to withdraw the assets outside the PinlinkShop, to trade them in a different marketplace, but this doesn't entitle them to earn rewards anymore.
Please provide links to previous audits (if any).
There was an audit done to the first version of the protocol. However, the project has pivoted, so it is far from useful for this competition. In any case:
https://github.com/JacoboLansac/audits/blob/main/solo/pinlink-phase1-audit.md
Please list any relevant protocol resources.
None.
Additional audit information.
Total Rewards
Contest Pool
Lead Senior Watson
Judging Pool
Lead Judge
7,000 USDC
5,500 USDC
800 USDC
1,200 USDC
Status
Scope
Start Time
End Time
Judging Rules