Member Functions
This section covers the functions that can be called by members of a space.
deposit
Allows a member to deposit funds into a space.
function deposit(uint256 spaceId, uint256 amount) external payable;
depositFor
Allows a member to deposit funds into a space for another member.
function depositFor(uint256 spaceId, uint256 amount, address onBehalfOf) external payable;
withdraw
Allows a member to withdraw funds from a space.
function withdraw(uint256 spaceId, uint256 amount) external;