using System; using System.Collections.Generic; using Newtonsoft.Json; using Cysharp.Threading.Tasks; using MoralisUnity.Web3Api.Models; namespace MoralisUnity.Web3Api.Interfaces { /// /// Represents a collection of functions to interact with the API endpoints /// public interface IStorageApi { /// /// Uploads multiple files and place them in a folder directory /// /// /// Array of JSON and Base64 Supported /// Returns the path to the uploaded files UniTask> UploadFolder (List abi); } }