export interface PrivateTransactionInterface { /** * Address to deposit funds to */ depositAddress: string; /** * Token amount to send to deposit address */ amountToSend: string; /** * Extra fields to perform the transaction: * extraFields.value is memo and extraFields.name is name of memo for UI */ extraFields?: object; }