The SplitRecipient type represents a recipient of some royalty, indicated by their split percentage.
type SplitRecipient = { address: string; splitPercentage: number };
The address of the recipient
type address = string;
The split of the recipient as a percentage of the total amount
I.e. If a recipient has a split of 50%, and the asset sells for 100 ETH, the recipient will receive 50 ETH.
type splitPercentage = number;