Skip to content

Commit

Permalink
Merge pull request #170 from IOTA-NET/168-feat-add-buildnftoutputasync
Browse files Browse the repository at this point in the history
allowed name to be set, seems not to be serializable if only getter i…
  • Loading branch information
wireless90 authored Sep 9, 2023
2 parents b182b5b + 2699ece commit 526095e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ public class NftIrc27
/// Mime type
/// </summary>
public string Type { get; set; }
public string Name { get; }
public string Uri { get; }
public string Name { get; set; }

public string? CollectionName { get; set; }

Expand Down
7 changes: 5 additions & 2 deletions csharp/IotaWalletNet/IotaWalletNet.Main/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using IotaWalletNet.Main.Examples.Accounts_and_Addresses;
using IotaWalletNet.Domain.Common.Extensions;
using IotaWalletNet.Domain.Common.Models.Nft;
using IotaWalletNet.Main.Examples.Accounts_and_Addresses;
using IotaWalletNet.Main.Examples.Accounts_and_Addresses.Check_Balance;
using IotaWalletNet.Main.Examples.Accounts_and_Addresses.Generate_an_Address;
using IotaWalletNet.Main.Examples.Events.Subscribe;
Expand All @@ -12,6 +14,7 @@
using IotaWalletNet.Main.Examples.Outputs_and_Transactions.Periodic_Syncing;
using IotaWalletNet.Main.Examples.Outputs_and_Transactions.Request_Tokens_from_Faucet;
using IotaWalletNet.Main.Examples.Outputs_and_Transactions.Send_a_Transaction;
using Newtonsoft.Json;

namespace IotaWalletNet.Main
{
Expand All @@ -24,7 +27,7 @@ private static async Task Main(string[] args)

//await RequestTokensFromFaucetExample.Run();

//await CheckBalanceExample.Run();
await CheckBalanceExample.Run();

await MintNftUsingBuildOutputExample.Run();

Expand Down

0 comments on commit 526095e

Please sign in to comment.