-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Description
eip: 2212
title: ERC-2212 Interest Earning Stakes
author: Paul Razvan Berg (@PaulRBerg) <paul@sablier.finance>
discussions-to: https://github.com/ethereum/EIPs/issues/2212
status: Draft
type: Standards Track
category: ERC
created: 2019-07-26
requires: 20
Simple Summary
We propose a new way to monetise decentralised apps that involves users staking tokens in exchange for a product or a service and creators earning interest on the pooled stakes through a continuous lending protocol such as Compound.
Abstract
The advent of decentralised lending brought to the web3 ecosystem a new primitive for designing business models. We herein describe a smart contract interface that accepts deposits ("stakes") in ERC20 tokens. These deposits are immediately lent on the market to earn interest either for just the owner of the contract, or for both them and the user. We assume that users get access to a product or a service for as long as they keep staking tokens.
Motivation
While most web3 business models rely on paying a percentage fee on transfers, or committing to a monthly subscription, we aim to flip the model on its head. Users are their own banks now, so, instead of charging them, we make them stake tokens that can be claimed back, in full, at any point in time. We view this as a win-win-win scenario for users, dapp creators and lending protocols.
It is worth it to mention PoolTogether, a "no-loss lottery" that launched recently. It works by having participants deposit money in their contracts, locking it up for a while and earning interest through Compound. Ultimately, they choose a lucky winner and return the deposits back to all other players. PoolTogether takes a 10% commission on the prize.
We wrote this specification because interest earning stakes are a powerful financial instrument and a community-vetted standard and implementation will reduce the cost of replication.
Use Cases
- Software products and services
- Charity pools
- Games
- Gym memberships
Specification
Assigning an owner is mandatory for this spec to make sense, thus we assume that a proper implementation would use a well-known contract such as OpenZeppelin's Ownable. For brevity, we haven't included any method for assigning or transferring ownership.
Methods
owner
Returns the owner of the contract.
function owner() external view returns (address);
fee
Returns the fee as a percentage value scaled by 1e18.
function fee() external view returns (uint256);
balanceOf
Returns the stake that consists of the initial deposit plus the interest accrued over time.
SHOULD revert if staker
doesn't have an active stake. SHOULD revert if tokenAddress
doesn't match either the cToken or the underlying of the stake.
function balanceOf(address staker, address tokenAddress) external view returns (uint256);
depositOf
Returns the initial deposit.
SHOULD revert if staker
doesn't have an active stake. SHOULD revert if tokenAddress
doesn't match either the cToken or the underlying of the stake.
function depositOf(address staker, address tokenAddress) external view returns (uint256);
whitelistCToken
Whitelists a cToken to automatically convert its underlying when deposited.
MUST revert if msg.sender
is not the owner.
Triggers Event: WhitelistCToken
function whitelistCToken(address cTokenAddress, address underlyingAddress) external;
discardCToken
Discards a cToken that has been whitelisted before.
MUST revert if msg.sender
is not the owner.
Triggers Event: DiscardCToken
function discardCToken(address cTokenAddress) external
resetAllowance
Resets the allowance granted to the cToken contract to spend from the underlying contract to the maximum value possible in the EVM.
function resetAllowance(address cTokenAddress, address underlyingAddress);
stake
Creates a new stake object for msg.sender
. Automatically converts an underlying to its cToken form so that the contract can earn interest.
MUST revert if msg.sender
already has an active stake. MUST revert if the cToken/ underlying pair has not been whitelisted.
Triggers Event: Stake
function stake(address tokenAddress, uint256 amount) external;
redeem
Returns the deposit plus any accrued interest to the staker and levies the fee for the owner
.
MUST revert if msg.sender
is not the staker or the owner.
Triggers Event: Redeem
function redeem(address staker) external;
takeEarnings
Withdraws the earnings accrued over time.
MUST revert if msg.sender
is not the owner.
Triggers Event: TakeEarnings
function takeEarnings(address tokenAddress, uint256 amount) external;
updateFee
Updates the fee practised by the contract. Has to be a percentage value scaled by 1e18. Can be anything between 0% and 100%.
MUST revert if msg.sender
is not the owner.
Triggers Event: UpdateFee
function updateFee(uint256 newFee) external;
Events
WhitelistCToken
MUST be triggered when whitelistCToken
is successfully called.
event WhitelistCToken(address indexed cTokenAddress, address underlyingAddress);
DiscardCToken
MUST be triggered when discardCToken
is successfully called.
event DiscardCToken(address indexed cTokenAddress);
Stake
MUST be triggered when stake
is successfully called.
event Stake(address indexed staker, address indexed cTokenAddress, address indexed underlyingAddress, bool converted, uint256 cTokenDeposit, uint256 exchangeRate);
Redeem
MUST be triggered when redeem
is successfully called.
event Redeem(address indexed staker, address indexed cTokenAddress, address indexed underlyingAddress, uint256 cTokenFee, uint256 cTokenWithdrawal, uint256 exchangeRate);
TakeEarnings
MUST be triggered when takeEarnings
is successfully called.
event TakeEarnings(address indexed tokenAddress, uint256 indexed amount);
UpdateFee
MUST be triggered when updateFee
is successfully called.
event UpdateFee(uint256 indexed fee);
Rationale
We designed these interest earning stakes with simplicity in mind, but we acknowledge that there are some missing features and obvious concerns which we discuss below.
Missing Features
Update
By and large, this is the most prominent missing feature. Dapp creators might want to update their staking requirements and the only way to achieve that would be to ask users to redeem their previous stake and put in the new amount.
We assume that most apps don't need this and the spec as it is now is sufficient for running the very first experiments. Yet, time will tell best. We are looking forward to making updates if need be.
Parallel Staking
Large enterprises have multiple sources of revenue, hence switching to a business model based on staking would require a smart contract that accepts multiple stakes per user.
However, the goal is to avoid writing an over-optimised standard. Parallel staking would require dapp creators to keep track of multiple stake ids, instead of only the user's account. Also, the user's interface would become more complex, as they would have to be aware of multiple stakes.
Beyond Compound
Some functions in the interface are highly specific to Compound, but the rationale behind that is simple. Compound is by far the best suited protocol for interest earning stakes. It is ultra-short term, which makes for frictionless business. We may update the interface when other continuous lending schemes, such as the Dai Savings Rate, will scale significantly.
Concerns
Loan Defaults
Lending never comes without risks, so interest earning stakes are not a good fit for the ultra-sensitive business applications. That said, dapp creators have an incentive to monitor the market for borrowers that go under the collateral requirements and liquidate them. By doing so, they secure the network for their own users and also earn a fee in the process.
Fluctuating Rates
The market rates for lending stablecoins hovered around 10% in early 2019, but this is not a given. Dapp creators can accommodate this issue by asking for a stake that generates interest reasonably above what they deem as an acceptable revenue stream.
Rent-Seeking
Interest earning stakes work best for products or services that are priced on time instead of quantity (imagine subscription-based SaaS). If a dapp is quota-based, its creators would be better off charging a fee on every transfer.
Implementation
Head to the Sablier organisation on GitHub for a WIP implementation.
Additional References
- Thread on cTokens
- Compound Protocol
- PoolTogether
- Pooled cDAI
- Lending Proxy by Luciano Bertenasco
- Web3 Revenue Primitives
Copyright
Copyright and related rights waived via CC0.
@PaulRBerg and @sablierhq ✌️