mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 12:38:30 +00:00
9 lines
233 B
C#
9 lines
233 B
C#
using NftFaucet.Models.Enums;
|
|
|
|
namespace NftFaucet.Services;
|
|
|
|
public interface ISolanaTransactionService
|
|
{
|
|
Task<string> MintNft(EthereumNetwork chain, string destinationAddress, string tokenUri, string name, double amount);
|
|
}
|