You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A wallet can control multiple accounts at once if they are of different types (buyer, seller, dispute resolver, agent, royalty recipient).
Funds for these accounts are tracked individually, so if a user wants to withdraw them, they must call withdrawFunds for every entity they control.
To make it more user friendly, we could change withdrawFunds to accept array of entity ids (uint256[] calldata _entityId) instead of a single value and withdraw all funds in a single transaction.
The text was updated successfully, but these errors were encountered:
A wallet can control multiple accounts at once if they are of different types (buyer, seller, dispute resolver, agent, royalty recipient).
Funds for these accounts are tracked individually, so if a user wants to withdraw them, they must call
withdrawFunds
for every entity they control.To make it more user friendly, we could change
withdrawFunds
to accept array of entity ids (uint256[] calldata _entityId
) instead of a single value and withdraw all funds in a single transaction.The text was updated successfully, but these errors were encountered: