mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 20:18:24 +00:00
11 lines
360 B
C#
11 lines
360 B
C#
using System.Numerics;
|
|
using NftFaucet.Models.Enums;
|
|
|
|
namespace NftFaucet.Services;
|
|
|
|
public interface IEthereumTransactionService
|
|
{
|
|
Task<string> MintErc721Token(EthereumNetwork network, string destinationAddress, string tokenUri);
|
|
Task<string> MintErc1155Token(EthereumNetwork network, string destinationAddress, BigInteger amount, string tokenUri);
|
|
}
|