2022-03-31 22:16:43 +02:00
|
|
|
using NftFaucet.Models.Enums;
|
|
|
|
|
|
|
|
namespace NftFaucet.Models;
|
|
|
|
|
|
|
|
public class StateStorage
|
|
|
|
{
|
|
|
|
public string TokenName { get; set; }
|
|
|
|
public string TokenDescription { get; set; }
|
2022-04-05 12:14:45 +02:00
|
|
|
public IpfsGatewayType IpfsGatewayType { get; set; } = IpfsGatewayType.Infura;
|
2022-03-31 22:16:43 +02:00
|
|
|
public TokenType TokenType { get; set; } = TokenType.ERC721;
|
|
|
|
public double TokenAmount { get; set; } = 1;
|
|
|
|
public Uri LocalImageUrl { get; set; }
|
|
|
|
public bool CanPreviewTokenFile { get; set; }
|
|
|
|
public bool UploadIsInProgress { get; set; }
|
|
|
|
public Uri IpfsImageUrl { get; set; }
|
|
|
|
public string TokenMetadata { get; set; }
|
|
|
|
public string TokenUrl { get; set; }
|
|
|
|
public string DestinationAddress { get; set; }
|
2022-06-03 17:33:28 +03:00
|
|
|
public NetworkType NetworkType { get; set; }
|
|
|
|
public EthereumNetwork Network { get; set; }
|
|
|
|
public string TokenSymbol { get; set; } = "DFNT";
|
|
|
|
public bool IsTokenMutable { get; set; } = true;
|
|
|
|
public double SellerFeeBasisPoints { get; set; } = 88;
|
2022-06-06 11:31:38 +03:00
|
|
|
public bool IncludeMasterEdition { get; set; } = true;
|
2022-03-31 22:16:43 +02:00
|
|
|
}
|