SplitContractParams
type SplitContractParams = { contractURI?: string; defaultAdmin?: string; description?: string; external_link?: string; image?: FileOrBufferOrString; name: string; payees: Array<string>; shares: Array<bigint>; social_urls?: Record<string, string>; symbol?: string; trustedForwarders?: Array<string>;};
type contractURI = string;
type defaultAdmin = string;
type description = string;
type external_link = string;
type image = FileOrBufferOrString;
type name = string;
An array of strings containing wallet addresses of the recipients For example:
["0x...123", "0x...456"];
type payees = Array<string>;
type social_urls = Record<string, string>;
type symbol = string;
type trustedForwarders = Array<string>;