eip: <to be assigned>
title: ERC-1620 Money Streaming
author: Paul Berg (@PaulRBerg) <[email protected]>
discussions-to: https://github.com/ethereum/EIPs/issues/1620
status: Draft
type: Standards Track
category: ERC
created: 2018-11-24
requires: 20
Money streaming represents the idea of continuous payments over a finite period of time. Block numbers are used as a proxy of time to continuously update balances.
The following describes a standard whereby time is measured using block numbers and streams are mappings in a master contract.
- A provider sets up a money streaming contract.
- A prospective payer can interact with the contract and start the stream right away by depositing the funds required for the chosen period.
- The payee is able to withdraw money from the contract based on its ongoing solvency. That is:
payment rate * (current block height - starting block height)
- The stream terms (payment rate, length, metadata) can be updated at any time if both parties pledge their signatures.
- The stream can be stopped at any point in time by any party without on-chain consensus.
- If the stream period ended and it was not previously stopped by any party, the payee is entitled to withdraw all the deposited funds.
This standardised interface aims to change the way we think about long-term financial commitments. Thanks to blockchains, payments need not be sent in chunks (e.g. monthly salaries), as there is much less overhead in paying-as-you-go. Money as a function of time would better align incentives in a host of scenarios.
This is just a preliminary list of use cases. There are other interesting ideas left to explore, such as time-dependent disincetivisation, but, for brevity, we have not included them here.
- Salaries
- Subscriptions
- Consultancies
- Rent
- Parking
- CDPs
RICOs, or Reversible ICOs, were introduced at Devcon4 by @frozeman. The idea is to endow investors with more power and safety guarantees by allowing them to "reverse" the investment based on the evolution of the project. We previously discussed a similar concept called SICOs, or Streamable ICOs, in this research thread.
Instead of investing a lump sum and giving the money away to the project developers, funds are held in a smart contract which allocates money based on the passage of time. Project developers can withdraw funds as the stream stays active, while investors have the power to get back a significant percentage of their initial commitment if the project halts.
Expand
The structure of a stream
should be as follows:
stream
sender
: theaddress
of the entity funding the streamrecipient
: theaddress
where the money is being delivered totokenAddress
: theaddress
of the ERC20 token used as payment assettimeframe
: as defined belowrate
: as defined belowbalance
: the total funds left in the stream
struct Stream {
address sender;
address recipient;
address tokenAddress;
Timeframe timeframe;
Rate rate;
uint256 balance;
}
timeframe
start
: the starting block number of the streamstop
: the stopping block number of the stream
struct Timeframe {
uint256 start;
uint256 stop;
}
rate
payment
: how much money moves fromsender
torecipient
interval
: how oftenpayment
moves fromsender
torecipient
struct Rate {
uint256 payment;
uint256 interval;
}
Returns available funds for the given stream id and address.
function balanceOf(uint256 _streamId, address _addr)
Returns the full stream data, if the id points to a valid stream.
function getStream(uint256 _streamId) returns (address sender, address recipient, address tokenAddress, uint256 balance, uint256 startBlock, uint256 stopBlock, uint256 payment, uint256 interval)
Creates a new stream between msg.sender
and _recipient
.
MUST allow senders to create multiple streams in parallel. SHOULD not accept Ether and only use ERC20-compatible tokens.
Triggers Event: CreateStream
function createStream(address _sender, address _recipient, address _tokenAddress, uint256 _startBlock, uint256 _stopBlock, uint256 _payment, uint256 _interval)
Withdraws all or a fraction of the available funds.
MUST allow only the recipient to perform this action.
Triggers Event: WithdrawFromStream
function withdrawFromStream(uint256 _streamId, uint256 _funds)
Redeems the stream by distributing the funds to the sender and the recipient.
SHOULD allow any party to redeem the stream.
Triggers Event: RedeemStream
function redeemStream(uint256 _streamId)
Signals one party's willingness to update the stream
SHOULD allow any party to do this but MUST NOT be executed without consent from all involved parties.
Triggers Event: ConfirmUpdate
Triggers Event: ExecuteUpdate when the last involved party calls this function
function confirmUpdate(uint256 _streamId, address _tokenAddress, uint256 _stopBlock, uint256 _payment, uint256 _interval)
Revokes an update proposed by one of the involved parties.
MUST allow any party to do this.
Triggers Event: RevokeUpdate
function revokeUpdate(uint256 _streamId, address _tokenAddress, uint256 _stopBlock, uint256 _payment, uint256 _interval)
MUST be triggered when create
is successfully called.
event CreateStream(uint256 indexed streamId, address indexed sender, address indexed recipient, address tokenAddress, uint256 startBlock, uint256 stopBlock, uint256 payment, uint256 interval)
MUST be triggered when withdraw
is successfully called.
event WithdrawFromStream(uint256 indexed streamId, address indexed recipient, uint256 amount)
MUST be triggered when redeem
is successfully called.
event RedeemStream(uint256 indexed streamId, address indexed sender, address indexed recipient, uint256 senderAmount, uint256 recipientAmount)
MUST be triggered when confirmUpdate
is successfully called.
event ConfirmUpdate(uint256 indexed streamId, address indexed confirmer, address newTokenAddress, uint256 newStopBlock, uint256 newPayment, uint256 newInterval);
MUST be triggered when revokeUpdate
is successfully called.
event RevokeUpdate(uint256 indexed streamId, address indexed revoker, address newTokenAddress, uint256 newStopBlock, uint256 newPayment, uint256 newInterval)
MUST be triggered when an update is approved by all involved parties.
event ExecuteUpdate(uint256 indexed streamId, address indexed sender, address indexed recipient, address newTokenAddress, uint256 newStopBlock, uint256 newPayment, uint256 newInterval)
This specification was designed to serve as an entry point to the quirky concept of money as a function of time and it is definitely not set in stone. Several other designs, including payment channels and Plasma chains were also considered, but they were eventually deemed dense in assumptions unnecessary for an initial version.
Block times are a reasonable, trustless proxy for time on the blockchain. Between 2016 and 2018, the Ethereum block time average value hovered around 14 seconds, excluding the last two quarters of 2017. Mathematically speaking, it would be ideal to have a standard deviation as close to 0 as possible, but that is not how things work in the real world. This has huge implications on the feasibility of this ERC which we shall investigate below.
When setting up a stream, a payer and a payee may want to make the total streaming duration a multiple of the "greatest common denominator" (GCD) of the chain they operate on; that is, the average block time. This is not imperative in the smart contracts per se, but there needs to be an off-chain process to map streams to real-world time units in order to create a sound and fair payment mechanism.
Because there is uncertainty regarding block times, streams may not be settled on the blockchain as initially planned. Let $d
be the total streaming duration measured in seconds, $t
the average block time before the stream started and $t'
the actual average block time over $d
after the stream started. We distinguish two undesirable scenarios:
-
$t
<$t'
: the payee will get their funds later than expected -
$t
>$t'
: the payee will get their funds sooner than expected
If the combined error delta is smaller than the payment rate (fifth parameter of the create
method, measured in wei), there is no problem at all. Conversely, we stumble upon trust issues because real-world time frames do not correspond to the stream terms. For instance, if an employee is normally entitled to withdraw all the funds from the stream at the end of the month, but block times cause case 1 from above to occur, the employee is in a financial disadvantage because their continuous effort is not compensated as promised.
Limiting the problem scope only to Ethereum, we propose two remedies:
-
Consensus on calling the
update
function to correct the stream terms. This might sound preposterous, but in most cases the stakes are low and stream participants are involved in long-term financial commitments. There is a high disincentive to refuse to cooperate. -
Autonomously fix significant error deltas. In theory, we could achieve this using previous blocks' timestamps, "checkpointing" the stream once in a predefined number of blocks. This is still an area of active research because of potentially high overheads in gas costs.
Nonetheless, it is important to note that this is still a major improvement on the traditional model where absolute trust is required.
It could be more efficient to implement this standard on independent sidechains like POA Network or xDai - thanks to their rather predictable nature. Admittedly, security is traded for scalability, but proper crypto-economic stakes could alleviate potential problems.
Furthermore, it is intriguing to explore the prospect of stream-specific sidechains.
The proposed specification uses block numbers to proxy time, but this need not be the only method. Albeit it would imply different trust assumptions, oracles could be used to provide a feed of timestamps. Coupled with the aforementioned idea of stream-specific sidechains, oracles could efficiently solve the problems outlined in Block Times.
Future or upgraded versions of this standard may describe "multi-hop" streams. If:
- There is a stream between A and B
- There is another stream between B and C
There could be a way to avoid running two different streams in parallel. That is, a fraction or all of the funds being streamed from A to B could be automatically wired to C. An interesting use case for this is taxes. Instead of manually moving money around, proactively calculating how much you owe and then transfer it, a stream could atomically perform those operations for you.
- Sablier Launch Thread
- Chronos Protocol Ethresear.ch Plasma Proposal
- Flipper: Streaming Salaries @ CryptoLife Hackathon
- SICOs or Streamed ICOs
- RICOs or Reversible ICOs
- Andreas Antonopoulos' Keynote on Bitcoin, Lightning and Money Streaming
Copyright and related rights waived via CC0.