mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 04:28:29 +00:00
15 lines
358 B
C#
15 lines
358 B
C#
using Nethereum.ABI.FunctionEncoding.Attributes;
|
|
using NftFaucet.Attributes;
|
|
|
|
namespace NftFaucet.Models.Function;
|
|
|
|
[Function("safeMint"), FunctionHash("0xd204c45e")]
|
|
public class Erc721MintFunction : Function
|
|
{
|
|
[Parameter("address", "to", 1)]
|
|
public string To { get; set; }
|
|
|
|
[Parameter("string", "uri", 2)]
|
|
public string Uri { get; set; }
|
|
}
|