mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 12:38:30 +00:00
17 lines
383 B
C#
17 lines
383 B
C#
using NftFaucet.Models.Enums;
|
|
|
|
namespace NftFaucet.Services;
|
|
|
|
public interface ISolanaTransactionService
|
|
{
|
|
Task<string> MintNft(NetworkChain chain,
|
|
string destinationAddress,
|
|
string tokenUri,
|
|
string name,
|
|
string symbol,
|
|
bool isTokenMutable,
|
|
bool includeMasterEdition,
|
|
uint sellerFeeBasisPoints,
|
|
ulong amount);
|
|
}
|