Links

CFA - Frontend Examples

Getting Started with the Constant Flow Agreement
Let's walk through creating Superfluid streams using the Superfluid Core-SDK. We'll get straight into the code with some examples, but you can scroll down to learn about how the SDK works in more detail.
NOTE: we recommend using the Superfluid Console and the Superfluid Dashboard as you go through these interactive tutorials. They'll help you view your streams in action.

Creating a Flow

Creating a flow requires you to call superToken.createFlow() and pass in the receiver and flowRate required for the flow. There's also an optional field you can use called userData - which you can learn more about in our guide on the topic.
See below for an example of how this works. You can enter your own Ethereum address and flowRate (i.e. how much DAIx you want to send in wei/second) to send yourself a stream of DAIx. Scroll down in the React App page (on the right side of the screen below) to see your flowRate converted into DAIx per month.
NOTE: these examples require test ether/MATIC and test super tokens. You can get some from our faucet here.

Updating a Flow

Updating a flow is very similar to creating one. You'll need to pass the same parameters that you passed in the create flow function to superToken.updateFlow()- except this time you'll need to pass in a new flowRate. If you attempt to edit a stream which does not currently exist, this function will revert. Give it a try:

Deleting a Flow

Finally, we can delete flows. To delete a flow, you'll just need to pass the sender, receiver to the superToken.deleteFlow() function. If you attempt to delete a flow which does not exist, it will revert.

Money Streaming

A money stream (or 'flow' - you'll see these terms used interchangeably) is a continuous stream of funds sent from one account to another. You can open up a stream by passing a two arguments to the superToken.createFlow() function within our SDK:
flowRate - the amount of tokens being streamed per second, denominated in wei (i.e. with 18 decimals)
receiver - the recipient of the money stream
superToken - the token being streamed
Once you call this function, the protocol will take a small deposit up front in escrow. On testnets, this amount is 1 hour worth of the stream, and on mainnets, it is 4 hours worth of the stream.
Note: if you send funds to a 'super app' contract, these deposit amounts will double. You can learn more about this in our Super App guide.
Once the stream is opened, it will stay open as long as the sender account has a balance > 0 of the superToken being used for the stream. If you let your balance hit zero, your deposit will be liquidated by the network, and your stream will be closed.
In the above examples, we've created a small React App which makes use of the Superfluid Core-SDK. You will see an example of creating, updating, and deleting flows. Each interactive section can be opened and forked for your own projects.
You'll see that we're importing the Superfluid SDK in each key component, then initializing the SDK using the following logic:
// initialization of the core SDK
const sf = await Framework.create({
chainId: Number,
provider: ethersProvider
});
In our case, we're using a link from Alchemy to get our own custom HTTP provider for the Kovan network. You could easily change this so that you use a web3Provider (i.e. a metamask connection in the browser) instead of an RPC URL. You can see the SDK's README for an example of this.
We've also provided an unlocked address that is loaded up with test net Super Tokens for example purposes. We've used the sf.createSigner() method to create a signer with this address.
// Creating a signer
const signer = sf.createSigner({
privateKey:
"0x...", //private key goes here
provider: customHttpProvider
});

FlowRates

The flowRate is the # of tokens you'd like to send per second, denominated in wei. You can use the calculator below to get the flowRate for an amount of tokens you want to send per month. You can pass this calculated flowRate into the examples above to create & update your streams.
Next, we'll follow a similar process for working with the Instant Distribution Agreement.