AddressFeeSplitManager
Initialization
/**
* Parameters passed during manager initialization.
*
* @member creatorShare The 5dp percentage share that a creator will earn from their token
* @member recipientShares Revenue recipients and their share
*/
struct InitializeParams {
uint creatorShare;
RecipientShare[] recipientShares;
}
/**
* Defines a revenue recipient and the share that they will receive.
*
* @member recipient The share recipient of revenue
* @member share The 5dp percentage that the recipient will receive
*/
struct RecipientShare {
address recipient;
uint share;
}Deposit
Public Read Calls
Public Write Calls
Protected Calls
Who is using the AddressFeeSplitManager?
Contract Addresses
Chain
Implementation Address
ABI
Last updated
Was this helpful?