SplitContractDeployMetadata
Options for deploying Split contract
type SplitContractDeployMetadata = {  app_uri: string;  defaultAdmin: string;  description: string;  external_link: string;  image: FileOrBufferOrString;  name: string;  recipients: Array<SplitRecipientInput>;  trusted_forwarders: Array<string>;};
The default app for this contract
type app_uri = string;
The default admin for this contract
type defaultAdmin = string;
Optional description of the contract
type description = string;
Optional url for the contract
type external_link = string;
Optional image for the contract
type image = FileOrBufferOrString;
name of the contract
type name = string;
The list of recipients and their share of the split
Custom gasless trusted forwarder addresses
type trusted_forwarders = Array<string>;