SplitRecipientInput
type SplitRecipientInput = { address: string; sharesBps: number };
The recipient address
type address = string;
the shares in basis point (5% = 500) that address is owed from the total funds
type sharesBps = number;
type SplitRecipientInput = { address: string; sharesBps: number };
The recipient address
type address = string;
the shares in basis point (5% = 500) that address is owed from the total funds
type sharesBps = number;