mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 13:05:40 +00:00
31 lines
1014 B
C#
31 lines
1014 B
C#
using CSharpFunctionalExtensions;
|
|
using NftFaucetRadzen.Components.CardList;
|
|
|
|
namespace NftFaucetRadzen.Plugins.UploadPlugins.NftStorage.Uploaders;
|
|
|
|
public class NftStorageUploader : IUploader
|
|
{
|
|
public Guid Id { get; } = Guid.Parse("ece2123a-cca7-4266-91e7-bc73680cf218");
|
|
public string Name { get; } = "nft.storage";
|
|
public string ShortName { get; } = "NftStorage";
|
|
public string ImageName { get; } = "nft-storage.svg";
|
|
public bool IsSupported { get; } = false;
|
|
public bool IsConfigured { get; } = false;
|
|
|
|
public CardListItemProperty[] GetProperties()
|
|
=> Array.Empty<CardListItemProperty>();
|
|
|
|
public IReadOnlyCollection<ConfigurationItem> GetConfigurationItems()
|
|
=> Array.Empty<ConfigurationItem>();
|
|
|
|
public Task<Result> TryInitialize(IReadOnlyCollection<ConfigurationItem> configurationItems)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<Result<Uri>> Upload(IToken token)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|