mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 12:08:32 +00:00
11 lines
301 B
C#
11 lines
301 B
C#
using NftFaucet.Models.Enums;
|
|
|
|
namespace NftFaucet.Services;
|
|
|
|
public interface IIpfsService
|
|
{
|
|
Uri GetUrlToGateway(Uri ipfsUrl, IpfsGatewayType gateway);
|
|
Task<Uri> Upload(string fileName, string fileType, string url);
|
|
Task<Uri> Upload(string fileName, string fileType, byte[] fileBytes);
|
|
}
|