callAgreement
or callAgreementWithContext
function on the host contract (Superfluid.sol
), and pass in a few parameters:ISuperAgreement agreementClass
- the the agreement you're going to interact with (either the CFA or IDA)bytes memory calldata
- the transaction you're calling on the agreement you're interacting with, compiled to bytecode (using one of solidity's encoding methods)bytes memory userData
- any additional data you'd like to include with your function call. If you don't plan to add userData, you can pass in an empty bytes value (i.e. "0x"
). You can learn more about this parameter here.NOTE: If you're interacting with agreements inside of a Super App callback, this process will work differently. See this section for details.
msg.sender
when working with Superfluid from a contract. For example, developers will occasionally want to create a function which will let an account create a flow into the contract itself. So, they'll write a function that looks like this, expecting it to create a flow into the contract from the msg.sender
of the function:cfaV1.createFlow
function to be the contract's address. Under the hood, even though msg.sender
on the broader createFlowFail
function is an external address, the msg.sender on the cfa.createFlow
call to the Superfluid protocol is the address of the contract. The Superfluid callAgreement
function will see that the contract is trying to create a flow into itself, and revert. msg.sender
misunderstanding occurs when developers want to allow external accounts to create flows directly to other accounts via a function on the contract. For example:msg.sender
on the cfaV1.createFlow
function will be the contract's address, not the external address calling the broader createFlow2Receiver
function. If you're intending to create a flow from the contract to another address, then this code is what you need (just make sure your contract has a balance of Super tokens!). However, if you're running this with the expectation that it will open a flow directly from an external account calling the function to the intended receiver, it will not work as expected.