Expand description
Module containing a contract’s types and functions.
interface ITempoStreamChannel {
function open(address payee, address token, uint128 deposit, bytes32 salt, address authorizedSigner) external returns (bytes32 channelId);
function close(bytes32 channelId, uint128 cumulativeAmount, bytes calldata signature) external;
}Structs§
- ITempo
Stream Channel Instance - A
ITempoStreamChannelinstance. - close
Call - Function with signature
close(bytes32,uint128,bytes)and selector0x0d65c51d. - close
Return - Container type for the return parameters of the
close(bytes32,uint128,bytes)function. - open
Call - Function with signature
open(address,address,uint128,bytes32,address)and selector0xc79ea485. - open
Return - Container type for the return parameters of the
open(address,address,uint128,bytes32,address)function.
Enums§
- ITempo
Stream Channel Calls - Container for all the
ITempoStreamChannelfunction calls.
Functions§
- new
- Creates a new wrapper around an on-chain
ITempoStreamChannelcontract instance.